采购单优化
This commit is contained in:
@@ -16,9 +16,9 @@ class PurchaseOrderModel extends Model
|
||||
use HasFactory;
|
||||
|
||||
/** 状态:进行中(已生成,待完成) */
|
||||
public const STATUS_PENDING = 0;
|
||||
public const int STATUS_PENDING = 0;
|
||||
/** 状态:已完成 */
|
||||
public const STATUS_COMPLETED = 3;
|
||||
public const int STATUS_COMPLETED = 3;
|
||||
|
||||
protected $table = 'purchase_order';
|
||||
protected $primaryKey = 'id';
|
||||
|
||||
Reference in New Issue
Block a user