kts-component-invoice-operate 2.0.2 → 2.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/IGood/index.d.ts +7 -7
- package/dist/index.esm.js +0 -1
- package/dist/index.js +0 -1
- package/docs-dist/umi.js +1 -1
- package/package.json +1 -1
- package/src/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/IGood/index.ts +7 -7
- package/src/Invoice/tools/itemName/index.ts +0 -1
package/dist/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/IGood/index.d.ts
CHANGED
|
@@ -6,19 +6,19 @@ export default interface IGood {
|
|
|
6
6
|
discountGroup?: string;
|
|
7
7
|
/** 发票ID */
|
|
8
8
|
id?: string;
|
|
9
|
-
/** 商品编码(
|
|
9
|
+
/** 商品编码(对方-购买方) */
|
|
10
10
|
itemCode?: string;
|
|
11
|
-
/** 货物名称(
|
|
11
|
+
/** 货物名称(对方-购买方) */
|
|
12
12
|
itemName?: string;
|
|
13
|
-
/** 单位(
|
|
13
|
+
/** 单位(对方-购买方) */
|
|
14
14
|
unit?: string;
|
|
15
|
-
/** 货物规格型号(
|
|
15
|
+
/** 货物规格型号(对方-购买方) */
|
|
16
16
|
itemModelName?: string;
|
|
17
|
-
/** 商品编码(
|
|
17
|
+
/** 商品编码(我方-销售) */
|
|
18
18
|
itemCodeSelf?: string;
|
|
19
|
-
/** 货物名称(
|
|
19
|
+
/** 货物名称(我方-销售) */
|
|
20
20
|
itemNameSelf?: string;
|
|
21
|
-
/** 货物规格型号(
|
|
21
|
+
/** 货物规格型号(我方-销售) */
|
|
22
22
|
itemModelNameSelf?: string;
|
|
23
23
|
/** 数量 */
|
|
24
24
|
quantity?: number;
|
package/dist/index.esm.js
CHANGED