kts-component-invoice-operate 3.2.237 → 3.2.238-fuling

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 (34) hide show
  1. package/README.md +0 -4
  2. package/dist/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/IGood/index.d.ts +0 -1
  3. package/dist/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/ImportGoods/index.d.ts +0 -2
  4. package/dist/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/index.d.ts +0 -2
  5. package/dist/Invoice/ui/default/GoodsList/index.d.ts +0 -1
  6. package/dist/Invoice/ui/default/GoodsList/ui/AddRowButton/index.d.ts +1 -1
  7. package/dist/Invoice/ui/digtal/GoodsList/index.d.ts +0 -1
  8. package/dist/Invoice/ui/digtal/GoodsList/ui/TaxIncludedSwitch/index.d.ts +1 -4
  9. package/dist/index.esm.js +305 -707
  10. package/dist/index.js +304 -706
  11. package/package.json +1 -1
  12. package/src/Invoice/Invoice-digtal/_test/easiest/index.tsx +1 -1
  13. package/src/Invoice/Invoice-digtal/_test/realEstateInfo/index.tsx +7 -69
  14. package/src/Invoice/Invoice-digtal/index.md +9 -2
  15. package/src/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/IGood/index.ts +0 -2
  16. package/src/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/ImportGoods/index.ts +0 -3
  17. package/src/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/index.ts +0 -3
  18. package/src/Invoice/InvoiceController/fns/saveEditGood.ts +2 -2
  19. package/src/Invoice/_test/deduction/index.tsx +6 -28
  20. package/src/Invoice/index.md +4 -4
  21. package/src/Invoice/ui/default/GoodsList/index.tsx +1 -3
  22. package/src/Invoice/ui/default/GoodsList/ui/AddRowButton/index.tsx +1 -8
  23. package/src/Invoice/ui/default/ImportGoodsDrawer/index.tsx +1 -4
  24. package/src/Invoice/ui/digtal/Architecture/index.tsx +1 -1
  25. package/src/Invoice/ui/digtal/FreightList/index.tsx +1 -1
  26. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/index.tsx +23 -37
  27. package/src/Invoice/ui/digtal/GoodsList/index.tsx +1 -3
  28. package/src/Invoice/ui/digtal/GoodsList/ui/AddRowButton/index.tsx +10 -20
  29. package/src/Invoice/ui/digtal/GoodsList/ui/TableVirtual/index.tsx +6 -11
  30. package/src/Invoice/ui/digtal/GoodsList/ui/TaxIncludedSwitch/index.tsx +2 -5
  31. package/src/Invoice/ui/digtal/RealEstateInfo/index.less +0 -7
  32. package/src/Invoice/ui/digtal/RealEstateInfo/index.tsx +104 -363
  33. package/src/Invoice/ui/digtal/StakeFarmerholder/index.tsx +65 -9
  34. package/src/Invoice/ui/digtal/Stakeholder/index.tsx +4 -22
package/README.md CHANGED
@@ -7,7 +7,3 @@
7
7
 
8
8
 
9
9
  node 16.20.2
10
-
11
- version 4.0.1
12
- 这个版本升级主要是为了支持途虎的特殊票种,但是标准版暂时不能升级,数据结构发生了变化,22升级会导致报错,
13
- 这是一个不兼容的升级
@@ -56,5 +56,4 @@ export default interface IGood {
56
56
  productName?: string;
57
57
  /** 孩子 */
58
58
  children?: IGood[];
59
- cd?: number;
60
59
  }
@@ -14,8 +14,6 @@ export default class ImportGoods<ColumnType = any> {
14
14
  pagination: PaginationConfig;
15
15
  /** 是否显示导入 */
16
16
  isVisibleDrawer: boolean;
17
- /** 搜索条件 */
18
- filter: any;
19
17
  /** 顶部扩展 */
20
18
  topExpand?: React.ReactNode;
21
19
  /** 导入时校验函数 */
@@ -91,6 +91,4 @@ export default class GoodsListState {
91
91
  addComparisonIndex?: string;
92
92
  /** 商品拖拽数据 */
93
93
  drag: Drag;
94
- /** 商品校验是否关闭,默认开启 */
95
- isValidateGood: boolean;
96
94
  }
@@ -11,7 +11,6 @@ export interface IGoodsListProps {
11
11
  isAddDiscount?: boolean;
12
12
  /** 是否可以切换(含税/不含税)状态 */
13
13
  isSwitchTax?: boolean;
14
- addGoodsCheck?: () => void;
15
14
  }
16
15
  export default class GoodsList extends React.Component<IGoodsListProps> {
17
16
  render(): JSX.Element;
@@ -1,3 +1,3 @@
1
1
  /// <reference types="react" />
2
- declare const _default: (props: any) => JSX.Element;
2
+ declare const _default: () => JSX.Element;
3
3
  export default _default;
@@ -11,7 +11,6 @@ export interface IGoodsListProps {
11
11
  isAddDiscount?: boolean;
12
12
  /** 是否可以切换(含税/不含税)状态 */
13
13
  isSwitchTax?: boolean;
14
- onTaxSwitchChange?: (e: any) => void;
15
14
  }
16
15
  export default class GoodsList extends React.Component<IGoodsListProps> {
17
16
  render(): JSX.Element;
@@ -1,6 +1,3 @@
1
1
  /// <reference types="react" />
2
- interface IProps {
3
- onChange?: (e: any) => void;
4
- }
5
- declare const _default: (props: IProps) => JSX.Element;
2
+ declare const _default: () => JSX.Element;
6
3
  export default _default;