kts-component-invoice-operate 3.2.29 → 3.2.31
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/AutoComplete/index.d.ts +1 -1
- package/dist/Invoice/ui/default/GoodsList/hook/useColumns/ui/ItemCodeInput/index.d.ts +1 -1
- package/dist/Invoice/ui/default/GoodsList/ui/TableRow/index.d.ts +1 -0
- package/dist/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/Drag/index.d.ts +7 -0
- package/dist/Invoice/ui/digtal/GoodsList/ui/TableRow/index.d.ts +1 -0
- package/dist/index.esm.js +4604 -3793
- package/dist/index.js +4604 -3793
- package/package.json +1 -1
- package/src/Invoice/InvoiceController/InvoiceControllerState/AutoComplete/index.ts +1 -1
- package/src/Invoice/_test/endowCode/index.tsx +1 -1
- package/src/Invoice/ui/default/GoodsList/hook/useColumns/index.tsx +12 -11
- package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/Drag/index.less +18 -0
- package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/Drag/index.tsx +143 -4
- package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/ItemCodeInput/index.tsx +15 -5
- package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/ItemNameInput/index.tsx +1 -1
- package/src/Invoice/ui/default/GoodsList/ui/TableRow/index.less +14 -0
- package/src/Invoice/ui/default/GoodsList/ui/TableRow/index.tsx +22 -3
- package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/index.tsx +8 -0
- package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/Drag/index.less +21 -0
- package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/Drag/index.tsx +187 -0
- package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/Drag/svg/I001.svg +1 -0
- package/src/Invoice/ui/digtal/GoodsList/ui/TableRow/index.less +14 -0
- package/src/Invoice/ui/digtal/GoodsList/ui/TableRow/index.tsx +18 -5
|
@@ -8,5 +8,5 @@ export default class AutoComplete {
|
|
|
8
8
|
/** 统一社会信用代码/纳税人识别号 */
|
|
9
9
|
onBuyerTaxIdSearch?: (searchText: string) => Promise<any[]>;
|
|
10
10
|
/** 商品编码自动补全 */
|
|
11
|
-
onItemCodeSearch?: (searchText: string) => Promise<any[]>;
|
|
11
|
+
onItemCodeSearch?: (searchText: string, itemName: any) => Promise<any[]>;
|
|
12
12
|
}
|