kts-component-invoice-operate 3.2.181-31 → 3.2.181-33
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/ui/default/GoodsList/hook/useColumns/autoFillFn/index.d.ts +2 -0
- package/dist/index.esm.js +331 -194
- package/dist/index.js +331 -194
- package/package.json +1 -1
- package/src/Invoice/ui/default/GoodsList/hook/useColumns/autoFillFn/index.ts +70 -0
- package/src/Invoice/ui/default/GoodsList/hook/useColumns/index.tsx +7 -6
|
@@ -21,6 +21,8 @@ export declare const onChangeLineAmountIncludeTax: (...par: any[]) => void;
|
|
|
21
21
|
export declare const onChangeLineAmountExcludeTax: (...par: any[]) => void;
|
|
22
22
|
/** 税率 */
|
|
23
23
|
export declare const onChangeTaxRate: (...par: any[]) => void;
|
|
24
|
+
/** 税额 */
|
|
25
|
+
export declare const onChangeTaxAmount: (...par: any[]) => void;
|
|
24
26
|
/** 小规模纳税人 1% 和 3% 自动赋码免税 */
|
|
25
27
|
export declare function dutyFree(controller: InvoiceController, taxRate: number, form: WrappedFormUtils<any>, record: IGood): number | undefined;
|
|
26
28
|
/** 含税 => 更新(不含税) */
|