the_mechanic/app/Models/PurchaseOrderChildModel.php
2024-09-25 09:12:05 +05:30

11 lines
425 B
PHP
Executable File

<?php
namespace App\Models;
use CodeIgniter\Model;
class PurchaseOrderChildModel extends Model
{
protected $table = 'purchase_order_child';
protected $primaryKey = 'purchase_order_child_id';
protected $allowedFields = ['purchase_order_child_id','is_selected','purchase_order_id','product_id','qty', 'received_qty','total','tax','net_price','amount','discount_type','selling_price','discount','isactive'];
}