采购单优化

This commit is contained in:
liu
2026-08-12 18:08:23 +08:00
parent d4bdabb866
commit c2c56408a0
4 changed files with 23 additions and 133 deletions
+2 -2
View File
@@ -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';