账单生成

This commit is contained in:
liu
2026-08-14 00:15:28 +08:00
parent 61a70319a0
commit e35c951a59
19 changed files with 728 additions and 631 deletions
+2 -12
View File
@@ -45,6 +45,8 @@ export default interface IStoreOrder {
store_id?: number;
purchase_id?: number;
statement_id?: number;
/** 关联账单ID(采购单完成后按门店生成账单时回写) */
bill_id?: number;
store?: {
id: number;
name: string;
@@ -56,18 +58,6 @@ export default interface IStoreOrder {
total_quantity?: number;
total_weight?: string;
total_amount?: string;
product_amount: string;
added_amount: string;
box_num: number;
tray_num: number;
/** 周转框单价(列表接口附加) */
box_price?: string;
/** 周转托盘单价(列表接口附加) */
tray_price?: string;
/** 周转框金额(列表接口附加) */
box_amount?: string;
/** 周转托盘金额(列表接口附加) */
tray_amount?: string;
/** 0待接单 1已接单 2采购中 3配送中 4已完成 9已取消 */
status?: number;
remark?: string;