kts-component-invoice-operate 3.2.155 → 3.2.157
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/index.d.ts +2 -0
- package/dist/Invoice/index.d.ts +2 -0
- package/dist/Invoice/ui/digtal/StakeFarmerholder/index.d.ts +20 -0
- package/dist/index.esm.js +806 -226
- package/dist/index.js +806 -226
- package/docs-dist/umi.css +1 -1
- package/docs-dist/umi.js +1 -1
- package/package.json +1 -1
- package/src/Invoice/Invoice-digtal/_test/easiest/index.tsx +1 -0
- package/src/Invoice/InvoiceController/index.ts +2 -0
- package/src/Invoice/_test/children/index.tsx +12 -0
- package/src/Invoice/index.tsx +4 -0
- package/src/Invoice/ui/default/GoodsList/hook/useColumns/index.tsx +3 -2
- 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/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 +0 -1
- package/src/Invoice/ui/digtal/RealEstateInfo/index.tsx +6 -8
- package/src/Invoice/ui/digtal/StakeFarmerholder/index.less +100 -0
- package/src/Invoice/ui/digtal/StakeFarmerholder/index.tsx +398 -0
- package/src/Invoice/ui/digtal/StakeFarmerholder/svg/arrowDown.svg +3 -0
- package/src/Invoice/ui/digtal/StakeFarmerholder/svg/arrowUp.svg +3 -0
- package/src/Invoice/ui/digtal/StakeFarmerholder/svg/plus.svg +12 -0
- 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
|
@@ -42,4 +42,6 @@ export default class InvoiceController extends InvoiceControllerForm {
|
|
|
42
42
|
getGoodsSearch: typeof getGoodsSearch;
|
|
43
43
|
/** 获取货物的税率可选列表, 如果没传taxClassificationCode,返回undefined */
|
|
44
44
|
getGoodsTaxRateList?: (taxClassificationCode: string) => Promise<number[] | undefined | null>;
|
|
45
|
+
/** 商品列表配置器 */
|
|
46
|
+
setColumnsConfig?: (columns: any[]) => any[];
|
|
45
47
|
}
|
package/dist/Invoice/index.d.ts
CHANGED
|
@@ -48,6 +48,8 @@ export default class Invoice extends React.PureComponent<IInvoiceProps> {
|
|
|
48
48
|
static readonly InvoiceHeaderDigtal: React.FunctionComponent<import("./ui/digtal/InvoiceHeader").IInvoiceHeader>;
|
|
49
49
|
/** 干系人(数电) */
|
|
50
50
|
static readonly Stakeholder: React.FunctionComponent<import("./ui/digtal/Stakeholder").IStakeholder>;
|
|
51
|
+
/** 农产品干系人(数电) */
|
|
52
|
+
static readonly StakeFarmerholder: React.FunctionComponent<import("./ui/digtal/StakeFarmerholder").IStakeholder>;
|
|
51
53
|
/** 落款(数电) */
|
|
52
54
|
static readonly SignDigtal: React.FunctionComponent<import("./ui/digtal/Sign").IBuyerProps>;
|
|
53
55
|
/** 特殊信息-不动产经营租赁服务(数电) */
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import InvoiceController from "../../../InvoiceController";
|
|
3
|
+
import './index.less';
|
|
4
|
+
export interface IStakeholder {
|
|
5
|
+
/** 是否显示导入按钮 */
|
|
6
|
+
isShowImportButton?: boolean;
|
|
7
|
+
/** 点击了 */
|
|
8
|
+
onClickImportButton?: (e: InvoiceController) => void;
|
|
9
|
+
/** 查看当前可用授信额度 */
|
|
10
|
+
lineCredit?: React.ReactNode;
|
|
11
|
+
/** 票种类型 */
|
|
12
|
+
isVatNormal?: boolean;
|
|
13
|
+
/** 是否可以选择自然人 */
|
|
14
|
+
isNaturalPerson?: boolean;
|
|
15
|
+
/** 是否展开 */
|
|
16
|
+
isExpand?: boolean;
|
|
17
|
+
}
|
|
18
|
+
/** 农产品干系人 */
|
|
19
|
+
declare const _default: React.FunctionComponent<IStakeholder>;
|
|
20
|
+
export default _default;
|