添加市场
This commit is contained in:
@@ -21,6 +21,8 @@ export default interface IProduct {
|
||||
category_id?: number;
|
||||
/** 供应商ID */
|
||||
supplier_id?: number;
|
||||
/** 市场(如:新发地、岳各庄) */
|
||||
market?: string;
|
||||
/** 商品名称 */
|
||||
name?: string;
|
||||
/** 规格/包规 */
|
||||
|
||||
@@ -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;
|
||||
/** 数量(包数) */
|
||||
|
||||
Reference in New Issue
Block a user