kts-component-invoice-operate 3.1.14 → 3.1.16

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.
@@ -28,7 +28,7 @@ export default class InvoiceControllerState {
28
28
  /** 货物信息 */
29
29
  goodsListState: GoodsListState;
30
30
  /** 计算中启动字段 */
31
- calculating?: string;
31
+ calculatingField?: string;
32
32
  /** 数量,单价计算时保留的小数位,不传默认8位 */
33
33
  calculatingDigits?: number;
34
34
  /** 金额整数位限制,不传默认9位 */
@@ -24,9 +24,9 @@ export declare const onChangeTaxRate: (...par: any[]) => void;
24
24
  /** 小规模纳税人 1% 和 3% 自动赋码免税 */
25
25
  export declare function dutyFree(controller: InvoiceController, taxRate: number, form: WrappedFormUtils<any>, record: IGood): number | undefined;
26
26
  /** 含税 => 更新(不含税) */
27
- export declare const updateUnitPriceExcludingTax: (controller: InvoiceController, form: WrappedFormUtils, record: IGood) => void;
27
+ export declare const updateUnitPriceExcludingTax: (controller: InvoiceController, form: WrappedFormUtils, record: IGood) => Promise<unknown>;
28
28
  /** 不含税 => 更新(含税) */
29
- export declare const updateUnitPriceTax: (controller: InvoiceController, form: WrappedFormUtils, record: IGood) => void;
29
+ export declare const updateUnitPriceTax: (controller: InvoiceController, form: WrappedFormUtils, record: IGood) => Promise<unknown>;
30
30
  /** 保存到编辑货物 */
31
31
  export declare const onSaveEditGood: (...par: any[]) => void;
32
32
  /** 单调赋码 */