kts-component-invoice-operate 3.2.154 → 3.2.156-1
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 +2 -0
- package/dist/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/index.d.ts +2 -0
- package/dist/Invoice/InvoiceController/index.d.ts +4 -0
- package/dist/index.esm.js +312 -215
- package/dist/index.js +312 -215
- package/docs-dist/umi.css +1 -1
- package/docs-dist/umi.js +1 -1
- package/package.json +1 -1
- package/src/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/IGood/index.ts +3 -0
- package/src/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/index.ts +3 -0
- package/src/Invoice/InvoiceController/index.ts +6 -0
- package/src/Invoice/_test/children/index.tsx +12 -0
- package/src/Invoice/ui/default/EndowCodeDrawer/index.tsx +39 -3
- package/src/Invoice/ui/default/GoodsList/hook/useColumns/index.tsx +4 -3
- package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/Expand/index.tsx +10 -6
- package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/RowMenu/hook/useDelItem/dist/index.js +32 -0
- package/src/Invoice/ui/default/GoodsList/hook/useOnRow/index.tsx +12 -0
- package/src/Invoice/ui/default/GoodsList/hook/useRowSelection/index.tsx +1 -1
- package/src/Invoice/ui/default/GoodsList/ui/TableRow/index.less +12 -1
- package/src/Invoice/ui/default/GoodsList/ui/TableRow/index.tsx +19 -5
- package/src/Invoice/ui/default/GoodsList/ui/TableVirtual/index.tsx +1 -2
- package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/index.tsx +14 -11
- package/src/Invoice/ui/digtal/GoodsList/hook/useOnRow/index.tsx +13 -1
- package/src/Invoice/ui/digtal/RealEstateInfo/index.tsx +6 -8
- package/src/Invoice/ui/digtal/Stakeholder/index.tsx +1 -1
- package/docs-dist/static/I001.4ff48f20.svg +0 -1
- package/docs-dist/static/I002.38b94da1.svg +0 -1
- /package/docs-dist/static/{arrowDown.22c7885c.svg → arrowDown.a1cbf0d8.svg} +0 -0
- /package/docs-dist/static/{arrowUp.d707a3e4.svg → arrowUp.4c482054.svg} +0 -0
- /package/docs-dist/static/{fork.43eb4ffa.svg → fork.5431267d.svg} +0 -0
- /package/docs-dist/static/{plus.384f41d9.svg → plus.44013ce3.svg} +0 -0
- /package/docs-dist/static/{plus.0e60e9ea.svg → plus.4fd1af30.svg} +0 -0
|
@@ -40,4 +40,8 @@ export default class InvoiceController extends InvoiceControllerForm {
|
|
|
40
40
|
getTaxCategoryCodeList?: () => Promise<any>;
|
|
41
41
|
/** 获取筛选后的列表 */
|
|
42
42
|
getGoodsSearch: typeof getGoodsSearch;
|
|
43
|
+
/** 获取货物的税率可选列表, 如果没传taxClassificationCode,返回undefined */
|
|
44
|
+
getGoodsTaxRateList?: (taxClassificationCode: string) => Promise<number[] | undefined | null>;
|
|
45
|
+
/** 商品列表配置器 */
|
|
46
|
+
setColumnsConfig?: (columns: any[]) => any[];
|
|
43
47
|
}
|