修复BUG

This commit is contained in:
liu
2026-08-27 14:20:09 +08:00
parent 513cc568a9
commit 52dc6efadf
203 changed files with 576 additions and 1130 deletions
+5 -1
View File
@@ -25,12 +25,16 @@ export interface PurchaseCellUpdateParams {
weight?: number;
}
/** 生成账单:单个门店的配送费/周转筐/托盘数量 */
/** 生成账单:单个门店的配送费/周转筐/托盘数量与售后/备注 */
export interface BillGenerateStoreParams {
store_id: number;
delivery_fee: number;
box_num: number;
tray_num: number;
/** 售后说明(文本,仅记录) */
after_sale?: string;
/** 备注 */
remark?: string;
}