添加市场

This commit is contained in:
liu
2026-08-20 15:39:39 +08:00
parent cd7007bc49
commit 22237a47e7
20 changed files with 134 additions and 239 deletions
+6
View File
@@ -17,6 +17,8 @@ export interface IPurchaseDetailRow {
unit: string;
supplier_id: number;
supplier?: { id: number; name: string } | null;
/** 市场(取商品档案) */
market?: string;
/** 成本 */
cost_price: number;
/** 合计数量 */
@@ -35,6 +37,8 @@ export interface IPurchaseSupplierItem {
/** 规格/包规 */
product_spec: string;
unit: string;
/** 市场(取商品档案) */
market?: string;
/** 成本价 */
cost_price: string;
/** 数量(包数) */
@@ -193,6 +197,8 @@ export interface IPurchaseStoreItem {
/** 规格/包规 */
product_spec: string;
unit: string;
/** 市场(取商品档案) */
market?: string;
/** 单价(每包;多笔单价时为加权平均,保证 单价×数量=预计金额) */
price: string;
/** 数量(包数) */