kts-component-invoice-operate 3.2.227 → 3.2.228-fuling
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/README.md +0 -4
- package/dist/Invoice/Invoice-digtal/_test/pay/index.d.ts +4 -0
- package/dist/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/IGood/index.d.ts +0 -1
- package/dist/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/ImportGoods/index.d.ts +0 -2
- package/dist/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/index.d.ts +0 -2
- package/dist/Invoice/InvoiceController/InvoiceControllerState/PayListState/IColumnsReplenish/index.d.ts +6 -0
- package/dist/Invoice/InvoiceController/InvoiceControllerState/PayListState/IGood/index.d.ts +12 -0
- package/dist/Invoice/InvoiceController/InvoiceControllerState/PayListState/ImportGoods/index.d.ts +21 -0
- package/dist/Invoice/InvoiceController/InvoiceControllerState/PayListState/index.d.ts +31 -0
- package/dist/Invoice/InvoiceController/InvoiceControllerState/index.d.ts +2 -0
- package/dist/Invoice/InvoiceController/fns/addPay.d.ts +6 -0
- package/dist/Invoice/InvoiceController/fns/delPay.d.ts +6 -0
- package/dist/Invoice/InvoiceController/fns/saveEditPay.d.ts +6 -0
- package/dist/Invoice/InvoiceController/fns/setEditPay.d.ts +6 -0
- package/dist/Invoice/InvoiceController/fns/setPay.d.ts +6 -0
- package/dist/Invoice/InvoiceController/index.d.ts +6 -0
- package/dist/Invoice/index.d.ts +2 -0
- package/dist/Invoice/ui/default/GoodsList/index.d.ts +0 -1
- package/dist/Invoice/ui/default/GoodsList/ui/AddRowButton/index.d.ts +1 -1
- package/dist/Invoice/ui/digtal/GoodsList/index.d.ts +0 -1
- package/dist/Invoice/ui/digtal/GoodsList/ui/TaxIncludedSwitch/index.d.ts +1 -4
- package/dist/Invoice/ui/digtal/PayList/hook/useColumns/index.d.ts +3 -0
- package/dist/Invoice/ui/digtal/PayList/hook/useColumns/ui/TitleText/index.d.ts +8 -0
- package/dist/Invoice/ui/digtal/PayList/hook/useOnRow/index.d.ts +8 -0
- package/dist/Invoice/ui/digtal/PayList/hook/useRowSelection/index.d.ts +8 -0
- package/dist/Invoice/ui/digtal/PayList/hook/useWindowClick/index.d.ts +5 -0
- package/dist/Invoice/ui/digtal/PayList/index.d.ts +18 -0
- package/dist/Invoice/ui/digtal/PayList/ui/AddRowButton/index.d.ts +3 -0
- package/dist/Invoice/ui/digtal/PayList/ui/BulkMenu/hooks/useDelRowButton/index.d.ts +6 -0
- package/dist/Invoice/ui/digtal/PayList/ui/BulkMenu/hooks/useEmptyRefill/index.d.ts +6 -0
- package/dist/Invoice/ui/digtal/PayList/ui/TableRow/index.d.ts +3 -0
- package/dist/Invoice/ui/digtal/PayList/ui/TableVirtual/index.d.ts +4 -0
- package/dist/index.esm.js +8097 -6065
- package/dist/index.js +8096 -6064
- package/package.json +1 -1
- package/src/Invoice/Invoice-digtal/_test/easiest/index.tsx +41 -9
- package/src/Invoice/Invoice-digtal/_test/freight/index.tsx +23 -17
- package/src/Invoice/Invoice-digtal/_test/pay/index.tsx +14637 -0
- package/src/Invoice/Invoice-digtal/_test/realEstateInfo/index.tsx +7 -69
- package/src/Invoice/Invoice-digtal/index.md +16 -8
- package/src/Invoice/InvoiceController/InvoiceControllerForm/index.ts +11 -0
- package/src/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/IGood/index.ts +0 -2
- package/src/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/ImportGoods/index.ts +0 -3
- package/src/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/index.ts +0 -3
- package/src/Invoice/InvoiceController/InvoiceControllerState/PayListState/IColumnsReplenish/index.ts +10 -0
- package/src/Invoice/InvoiceController/InvoiceControllerState/PayListState/IGood/index.ts +35 -0
- package/src/Invoice/InvoiceController/InvoiceControllerState/PayListState/ImportGoods/index.ts +81 -0
- package/src/Invoice/InvoiceController/InvoiceControllerState/PayListState/index.ts +40 -0
- package/src/Invoice/InvoiceController/InvoiceControllerState/index.ts +3 -0
- package/src/Invoice/InvoiceController/fns/addPay.ts +11 -0
- package/src/Invoice/InvoiceController/fns/delPay.ts +38 -0
- package/src/Invoice/InvoiceController/fns/saveEditGood.ts +2 -2
- package/src/Invoice/InvoiceController/fns/saveEditPay.ts +23 -0
- package/src/Invoice/InvoiceController/fns/setEditPay.ts +16 -0
- package/src/Invoice/InvoiceController/fns/setPay.ts +11 -0
- package/src/Invoice/InvoiceController/index.ts +21 -0
- package/src/Invoice/_test/deduction/index.tsx +6 -28
- package/src/Invoice/index.md +4 -4
- package/src/Invoice/index.tsx +3 -0
- package/src/Invoice/tools/useToGenerateId/index.ts +2 -0
- package/src/Invoice/ui/default/GoodsList/index.tsx +1 -3
- package/src/Invoice/ui/default/GoodsList/ui/AddRowButton/index.tsx +1 -8
- package/src/Invoice/ui/default/ImportGoodsDrawer/index.tsx +1 -4
- package/src/Invoice/ui/digtal/Architecture/index.tsx +1 -1
- package/src/Invoice/ui/digtal/FreightList/index.tsx +1 -1
- package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/index.tsx +23 -37
- package/src/Invoice/ui/digtal/GoodsList/index.tsx +1 -3
- package/src/Invoice/ui/digtal/GoodsList/ui/AddRowButton/index.tsx +10 -20
- package/src/Invoice/ui/digtal/GoodsList/ui/TableVirtual/index.tsx +6 -11
- package/src/Invoice/ui/digtal/GoodsList/ui/TaxIncludedSwitch/index.tsx +2 -5
- package/src/Invoice/ui/digtal/PayList/hook/useColumns/dist/index.js +616 -0
- package/src/Invoice/ui/digtal/PayList/hook/useColumns/index.tsx +168 -0
- package/src/Invoice/ui/digtal/PayList/hook/useColumns/ui/TitleText/index.tsx +20 -0
- package/src/Invoice/ui/digtal/PayList/hook/useOnRow/index.tsx +37 -0
- package/src/Invoice/ui/digtal/PayList/hook/useRowSelection/index.tsx +120 -0
- package/src/Invoice/ui/digtal/PayList/hook/useWindowClick/index.tsx +19 -0
- package/src/Invoice/ui/digtal/PayList/index.less +73 -0
- package/src/Invoice/ui/digtal/PayList/index.tsx +132 -0
- package/src/Invoice/ui/digtal/PayList/ui/AddRowButton/index.tsx +75 -0
- package/src/Invoice/ui/digtal/PayList/ui/BulkMenu/hooks/useDelRowButton/index.tsx +50 -0
- package/src/Invoice/ui/digtal/PayList/ui/BulkMenu/hooks/useEmptyRefill/index.tsx +37 -0
- package/src/Invoice/ui/digtal/PayList/ui/TableRow/index.less +29 -0
- package/src/Invoice/ui/digtal/PayList/ui/TableRow/index.tsx +21 -0
- package/src/Invoice/ui/digtal/PayList/ui/TableVirtual/index.less +39 -0
- package/src/Invoice/ui/digtal/PayList/ui/TableVirtual/index.tsx +109 -0
- package/src/Invoice/ui/digtal/RealEstateInfo/index.less +0 -7
- package/src/Invoice/ui/digtal/RealEstateInfo/index.tsx +104 -363
- package/src/Invoice/ui/digtal/StakeFarmerholder/index.less +1 -1
- package/src/Invoice/ui/digtal/StakeFarmerholder/index.tsx +528 -207
- package/src/Invoice/ui/digtal/Stakeholder/index.tsx +4 -22
|
@@ -200,7 +200,7 @@ export default decorator<IStakeholder, IStakeholder & FormComponentProps>(Form.c
|
|
|
200
200
|
</Form.Item>
|
|
201
201
|
</Col>
|
|
202
202
|
|
|
203
|
-
<Col span={10+
|
|
203
|
+
<Col span={10+riskspanW} style={{ display: isExpand ? undefined : 'none' }} >
|
|
204
204
|
<Form.Item label='购买方地址' colon={false}>
|
|
205
205
|
{getFieldDecorator('buyerAddress', {
|
|
206
206
|
rules: getRules('buyerAddress', [{ max: 100, message: '购买方地址内容超长' }])
|
|
@@ -208,22 +208,13 @@ export default decorator<IStakeholder, IStakeholder & FormComponentProps>(Form.c
|
|
|
208
208
|
</Form.Item>
|
|
209
209
|
</Col>
|
|
210
210
|
|
|
211
|
-
<Col span={10+
|
|
211
|
+
<Col span={10+riskspanW} style={{ display: isExpand ? undefined : 'none' }} >
|
|
212
212
|
<Form.Item label='电话' colon={false} className='telephone'>
|
|
213
213
|
{getFieldDecorator('buyerPhone', {
|
|
214
214
|
rules: getRules('buyerPhone', RULES.buyerTelPhone('购买方电话'))
|
|
215
215
|
})(<MyInput readOnly={isReadOnly('buyerPhone')} placeholder="请输入电话" autoComplete="off" />)}
|
|
216
216
|
</Form.Item>
|
|
217
217
|
</Col>
|
|
218
|
-
{(props.leqi) &&
|
|
219
|
-
<Col span={4} style={{ display: isExpand ? undefined : 'none' }}>
|
|
220
|
-
<Form.Item colon={false}>
|
|
221
|
-
{getFieldDecorator('buyerAddressPhoneFlag', {
|
|
222
|
-
valuePropName: 'checked',
|
|
223
|
-
})(<Checkbox onChange={props?.invoiceMarkCallback} disabled={isReadOnly('buyerAddressPhoneFlag')} style={{whiteSpace:'nowrap'}}>是否展示</Checkbox>)}
|
|
224
|
-
</Form.Item>
|
|
225
|
-
</Col>
|
|
226
|
-
}
|
|
227
218
|
<Col span={10 + leqispanW} style={{ display: isExpand ? undefined : 'none' }} >
|
|
228
219
|
<Form.Item label='购买方开户银行' colon={false}>
|
|
229
220
|
{getFieldDecorator('buyerBank', {
|
|
@@ -290,7 +281,7 @@ export default decorator<IStakeholder, IStakeholder & FormComponentProps>(Form.c
|
|
|
290
281
|
</Form.Item>
|
|
291
282
|
</Col>
|
|
292
283
|
|
|
293
|
-
<Col span={10+
|
|
284
|
+
<Col span={10+riskspanW} style={{ display: isExpand ? undefined : 'none' }} >
|
|
294
285
|
<Form.Item label='销售方地址' colon={false}>
|
|
295
286
|
{getFieldDecorator('sellerAddress', {
|
|
296
287
|
rules: getRules('sellerAddress', [{ max: 300, message: '销售方地址内容超长' }])
|
|
@@ -298,22 +289,13 @@ export default decorator<IStakeholder, IStakeholder & FormComponentProps>(Form.c
|
|
|
298
289
|
</Form.Item>
|
|
299
290
|
</Col>
|
|
300
291
|
|
|
301
|
-
<Col span={10+
|
|
292
|
+
<Col span={10+riskspanW} style={{ display: isExpand ? undefined : 'none' }} >
|
|
302
293
|
<Form.Item label='电话' colon={false} className='telephone' >
|
|
303
294
|
{getFieldDecorator('sellerPhone', {
|
|
304
295
|
rules: getRules('sellerPhone', RULES.sellerTelPhone('销售方电话'))
|
|
305
296
|
})(<MyInput readOnly={isReadOnly('sellerPhone')} placeholder="请输入电话" autoComplete="off" />)}
|
|
306
297
|
</Form.Item>
|
|
307
298
|
</Col>
|
|
308
|
-
{(props.leqi) &&
|
|
309
|
-
<Col span={4} style={{ display: isExpand ? undefined : 'none' }}>
|
|
310
|
-
<Form.Item colon={false}>
|
|
311
|
-
{getFieldDecorator('sellerAddressPhoneFlag', {
|
|
312
|
-
valuePropName: 'checked',
|
|
313
|
-
})(<Checkbox onChange={props?.invoiceMarkCallback} disabled={isReadOnly('sellerAddressPhoneFlag')} style={{whiteSpace:'nowrap'}}>是否展示</Checkbox>)}
|
|
314
|
-
</Form.Item>
|
|
315
|
-
</Col>
|
|
316
|
-
}
|
|
317
299
|
<Col span={10 + leqispanW} style={{ display: isExpand ? undefined : 'none' }} >
|
|
318
300
|
<Form.Item label='销售方开户银行' colon={false}>
|
|
319
301
|
{getFieldDecorator('sellerBank', {
|