kts-component-invoice-operate 3.2.121 → 3.2.123

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.
@@ -14,6 +14,8 @@ export default class GoodsListState {
14
14
  goodMax?: number;
15
15
  /** 是否可以切换(含税/不含税)状态 */
16
16
  isSwitchTax?: boolean;
17
+ /** 切换含税时是否重新计算 */
18
+ isRecalculateWhenSwitchTax: boolean;
17
19
  /** 是否能添加折扣行 */
18
20
  isAddDiscount?: boolean;
19
21
  /** 是否可以添加行 */
@@ -35,3 +35,5 @@ export declare const endowCode: (controller: InvoiceController, goods: IGood) =>
35
35
  export declare const onChangeItemName: (controller: InvoiceController, form: WrappedFormUtils<any>, record: IGood) => Promise<void>;
36
36
  /** 修改了 商品编码 */
37
37
  export declare const onChangeItemCode: (controller: InvoiceController, form: WrappedFormUtils<any>, record: IGood) => Promise<void>;
38
+ /** 修改了含税开关 重新计算 */
39
+ export declare const onChangeSwitchTax: (controller: InvoiceController, isTaxIncluded: boolean) => Promise<void>;
@@ -33,3 +33,5 @@ export declare const onSaveEditGood: (...par: any[]) => void;
33
33
  export declare const endowCode: (controller: InvoiceController, goods: IGood) => Promise<void>;
34
34
  /** 修改了 项目名称 */
35
35
  export declare const onChangeItemName: (controller: InvoiceController, form: WrappedFormUtils<any>, record: IGood) => Promise<void>;
36
+ /** 修改了含税开关 重新计算 */
37
+ export declare const onChangeSwitchTax: (controller: InvoiceController, isTaxIncluded: boolean) => Promise<void>;