kts-component-invoice-operate 3.2.155 → 3.2.156-10

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.
Files changed (32) hide show
  1. package/dist/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/IGood/index.d.ts +1 -0
  2. package/dist/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/index.d.ts +1 -0
  3. package/dist/Invoice/InvoiceController/index.d.ts +2 -0
  4. package/dist/index.esm.js +3698 -3961
  5. package/dist/index.js +3344 -3607
  6. package/docs-dist/static/arrowDown.a1cbf0d8.svg +3 -0
  7. package/docs-dist/static/arrowUp.4c482054.svg +3 -0
  8. package/docs-dist/static/download.18f10f45.svg +1 -0
  9. package/docs-dist/static/fork.5431267d.svg +12 -0
  10. package/docs-dist/static/plus.44013ce3.svg +12 -0
  11. package/docs-dist/static/plus.4fd1af30.svg +12 -0
  12. package/docs-dist/static/upload.d7ea1893.svg +1 -0
  13. package/docs-dist/umi.css +1 -1
  14. package/docs-dist/umi.js +1 -1
  15. package/package.json +1 -1
  16. package/src/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/IGood/index.ts +2 -0
  17. package/src/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/index.ts +1 -0
  18. package/src/Invoice/InvoiceController/index.ts +2 -0
  19. package/src/Invoice/_test/children/index.tsx +12 -0
  20. package/src/Invoice/_test/endowCode/index.tsx +34 -4
  21. package/src/Invoice/ui/default/GoodsList/hook/useColumns/index.tsx +30 -10
  22. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/Expand/index.tsx +10 -6
  23. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/RowMenu/hook/useDelItem/dist/index.js +32 -0
  24. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/RowMenu/hook/useDelItem/index.tsx +6 -3
  25. package/src/Invoice/ui/default/GoodsList/hook/useOnRow/index.tsx +40 -10
  26. package/src/Invoice/ui/default/GoodsList/ui/BulkMenu/hooks/useDelRowButton/index.tsx +3 -3
  27. package/src/Invoice/ui/default/GoodsList/ui/TableRow/index.less +12 -1
  28. package/src/Invoice/ui/default/GoodsList/ui/TableRow/index.tsx +19 -5
  29. package/src/Invoice/ui/default/GoodsList/ui/TableVirtual/index.tsx +0 -1
  30. package/src/Invoice/ui/digtal/RealEstateInfo/index.tsx +6 -8
  31. package/docs-dist/static/I001.4ff48f20.svg +0 -1
  32. package/docs-dist/static/I002.38b94da1.svg +0 -1
@@ -56,4 +56,5 @@ export default interface IGood {
56
56
  productName?: string;
57
57
  /** 孩子 */
58
58
  children?: IGood[];
59
+ referenceLines?: any[];
59
60
  }
@@ -24,6 +24,7 @@ export default class GoodsListState {
24
24
  isAddRow: boolean;
25
25
  /** 是否可以删除行 */
26
26
  isRemRow: boolean;
27
+ isBatchRemRow: boolean;
27
28
  /** 是否含税 */
28
29
  isTaxIncluded: boolean;
29
30
  /**
@@ -42,4 +42,6 @@ export default class InvoiceController extends InvoiceControllerForm {
42
42
  getGoodsSearch: typeof getGoodsSearch;
43
43
  /** 获取货物的税率可选列表, 如果没传taxClassificationCode,返回undefined */
44
44
  getGoodsTaxRateList?: (taxClassificationCode: string) => Promise<number[] | undefined | null>;
45
+ /** 商品列表配置器 */
46
+ setColumnsConfig?: (columns: any[]) => any[];
45
47
  }