售后金额

This commit is contained in:
liu
2026-08-29 13:54:06 +08:00
parent c3ec416a77
commit d0ce897a0f
25 changed files with 175 additions and 58 deletions
+3 -3
View File
@@ -25,14 +25,14 @@ export interface PurchaseCellUpdateParams {
weight?: number;
}
/** 生成账单:单个门店的配送费/周转筐/托盘数量与售后/备注 */
/** 生成账单:单个门店的配送费/周转筐/托盘数量与售后金额/备注 */
export interface BillGenerateStoreParams {
store_id: number;
delivery_fee: number;
box_num: number;
tray_num: number;
/** 售后说明(文本,仅记录 */
after_sale?: string;
/** 售后金额(可正负,计入总金额;正数=加收,负数=售后减免 */
after_sale?: number;
/** 备注 */
remark?: string;
}