kts-component-invoice-operate 3.2.154 → 3.2.156

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.
Files changed (218) hide show
  1. package/.dumi/theme/builtins/API.tsx +66 -66
  2. package/.editorconfig +16 -16
  3. package/.fatherrc.ts +4 -4
  4. package/.prettierignore +7 -7
  5. package/.prettierrc +11 -11
  6. package/.umirc.ts +8 -8
  7. package/README.md +9 -9
  8. package/dist/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/IGood/index.d.ts +2 -0
  9. package/dist/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/index.d.ts +2 -0
  10. package/dist/Invoice/InvoiceController/index.d.ts +4 -0
  11. package/dist/index.esm.js +916 -819
  12. package/dist/index.js +916 -819
  13. package/docs/index.md +5 -5
  14. package/docs-dist/static/{arrowDown.22c7885c.svg → arrowDown.a1cbf0d8.svg} +2 -2
  15. package/docs-dist/static/{arrowUp.d707a3e4.svg → arrowUp.4c482054.svg} +2 -2
  16. package/docs-dist/static/{fork.43eb4ffa.svg → fork.5431267d.svg} +11 -11
  17. package/docs-dist/static/{plus.384f41d9.svg → plus.44013ce3.svg} +11 -11
  18. package/docs-dist/static/{plus.0e60e9ea.svg → plus.4fd1af30.svg} +11 -11
  19. package/docs-dist/umi.css +1 -1
  20. package/docs-dist/umi.js +1 -1
  21. package/index.html +12 -12
  22. package/package.json +61 -61
  23. package/src/Invoice/Invoice-digtal/_test/disabled/index.tsx +40 -40
  24. package/src/Invoice/Invoice-digtal/_test/easiest/index.tsx +16 -16
  25. package/src/Invoice/Invoice-digtal/_test/header/index.tsx +84 -84
  26. package/src/Invoice/Invoice-digtal/_test/importGoods/index.tsx +868 -868
  27. package/src/Invoice/Invoice-digtal/_test/importStakeholder/index.tsx +18 -18
  28. package/src/Invoice/Invoice-digtal/_test/lineCredit/index.tsx +19 -19
  29. package/src/Invoice/Invoice-digtal/_test/prefab/index.tsx +150 -150
  30. package/src/Invoice/Invoice-digtal/_test/readOnly/index.tsx +55 -55
  31. package/src/Invoice/Invoice-digtal/_test/realEstateInfo/index.tsx +21 -21
  32. package/src/Invoice/Invoice-digtal/_test/stakeholder/index.tsx +12 -12
  33. package/src/Invoice/Invoice-digtal/_test/typeSelection/index.tsx +29 -29
  34. package/src/Invoice/Invoice-digtal/index.md +34 -34
  35. package/src/Invoice/InvoiceController/InvoiceControllerForm/index.ts +95 -95
  36. package/src/Invoice/InvoiceController/InvoiceControllerState/AutoComplete/index.ts +20 -20
  37. package/src/Invoice/InvoiceController/InvoiceControllerState/BuyerState/index.tsx +88 -88
  38. package/src/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/Drag/index.ts +15 -15
  39. package/src/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/EndowCode/index.tsx +104 -104
  40. package/src/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/IColumnsReplenish/index.ts +10 -10
  41. package/src/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/IGood/index.ts +87 -84
  42. package/src/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/ImportGoods/index.ts +81 -81
  43. package/src/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/LineAttributeType/index.ts +7 -7
  44. package/src/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/ProductComparison/index.ts +9 -9
  45. package/src/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/index.ts +131 -128
  46. package/src/Invoice/InvoiceController/InvoiceControllerState/Stakeholder/index.ts +13 -13
  47. package/src/Invoice/InvoiceController/InvoiceControllerState/index.ts +65 -65
  48. package/src/Invoice/InvoiceController/fns/addGood.ts +11 -11
  49. package/src/Invoice/InvoiceController/fns/addGoodDiscount.ts +126 -126
  50. package/src/Invoice/InvoiceController/fns/addGoodDiscountV2.ts +86 -86
  51. package/src/Invoice/InvoiceController/fns/delGood.ts +41 -41
  52. package/src/Invoice/InvoiceController/fns/getGoodsSearch.ts +26 -26
  53. package/src/Invoice/InvoiceController/fns/importGoodsDrawer.ts +79 -79
  54. package/src/Invoice/InvoiceController/fns/itemBlur.ts +40 -40
  55. package/src/Invoice/InvoiceController/fns/mergeDetails.ts +201 -201
  56. package/src/Invoice/InvoiceController/fns/mergeDiscount.ts +35 -35
  57. package/src/Invoice/InvoiceController/fns/saveEditGood.ts +24 -24
  58. package/src/Invoice/InvoiceController/fns/setEditGood.ts +16 -16
  59. package/src/Invoice/InvoiceController/fns/setGoods.ts +10 -10
  60. package/src/Invoice/InvoiceController/fns/updateInvoiceNo.ts +8 -8
  61. package/src/Invoice/InvoiceController/index.ts +87 -81
  62. package/src/Invoice/_test/buyerNameSearch/index.tsx +42 -42
  63. package/src/Invoice/_test/children/index.tsx +214 -202
  64. package/src/Invoice/_test/deduction/index.tsx +935 -935
  65. package/src/Invoice/_test/draft/index.tsx +40 -40
  66. package/src/Invoice/_test/easiest/index.tsx +5 -5
  67. package/src/Invoice/_test/endowCode/index.tsx +1158 -1158
  68. package/src/Invoice/_test/goodsMenuExpand/index.tsx +32 -32
  69. package/src/Invoice/_test/importBuyer/index.tsx +74 -74
  70. package/src/Invoice/_test/importGoods/index.tsx +1197 -1197
  71. package/src/Invoice/_test/invoiceType/index.tsx +59 -59
  72. package/src/Invoice/_test/isInvoiceNo/index.tsx +12 -12
  73. package/src/Invoice/_test/replaceHead/index.tsx +22 -22
  74. package/src/Invoice/_test/retrieveData/index.tsx +22 -22
  75. package/src/Invoice/_test/seller/index.tsx +28 -28
  76. package/src/Invoice/_test/setDataSource/index.tsx +73 -73
  77. package/src/Invoice/_test/unit/index.tsx +19 -19
  78. package/src/Invoice/index.less +31 -31
  79. package/src/Invoice/index.md +56 -56
  80. package/src/Invoice/index.tsx +179 -179
  81. package/src/Invoice/tools/calculate/index.ts +132 -132
  82. package/src/Invoice/tools/coolingFn/index.ts +17 -17
  83. package/src/Invoice/tools/evaluate/index.ts +7 -7
  84. package/src/Invoice/tools/idGenerator/index.ts +2 -2
  85. package/src/Invoice/tools/itemName/index.ts +55 -55
  86. package/src/Invoice/tools/lazyFn/index.ts +19 -19
  87. package/src/Invoice/tools/mounting/index.ts +13 -13
  88. package/src/Invoice/tools/strringFn/index.ts +40 -40
  89. package/src/Invoice/tools/useToGenerateId/index.ts +8 -8
  90. package/src/Invoice/tools/utils/index.ts +1 -1
  91. package/src/Invoice/tools/utils/money/index.ts +20 -20
  92. package/src/Invoice/ui/default/AddComparisonDrawer/index.tsx +149 -149
  93. package/src/Invoice/ui/default/Buyer/index.less +219 -219
  94. package/src/Invoice/ui/default/Buyer/index.tsx +114 -114
  95. package/src/Invoice/ui/default/Buyer/ui/BuyerNameInput/index.tsx +166 -166
  96. package/src/Invoice/ui/default/Buyer/ui/ImportBuyerButton/index.tsx +21 -21
  97. package/src/Invoice/ui/default/EndowCodeDrawer/index.less +8 -8
  98. package/src/Invoice/ui/default/EndowCodeDrawer/index.tsx +586 -550
  99. package/src/Invoice/ui/default/GoodsList/hook/useColumns/autoFillFn/index.ts +647 -647
  100. package/src/Invoice/ui/default/GoodsList/hook/useColumns/index.tsx +711 -710
  101. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/Drag/index.less +20 -20
  102. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/Drag/index.tsx +205 -205
  103. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/Expand/index.tsx +57 -53
  104. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/ItemCodeInput/index.less +18 -18
  105. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/ItemCodeInput/index.tsx +49 -49
  106. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/ItemNameInput/index.less +17 -17
  107. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/ItemNameInput/index.tsx +91 -91
  108. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/RowEditButton/index.tsx +30 -30
  109. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/RowMenu/hook/_useAddComparison/index.tsx +43 -43
  110. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/RowMenu/hook/useAddDiscount/index.tsx +118 -118
  111. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/RowMenu/hook/useDelItem/dist/index.js +32 -0
  112. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/RowMenu/hook/useDelItem/index.tsx +41 -41
  113. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/RowMenu/hook/useEndowCode/index.tsx +25 -25
  114. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/RowMenu/index.less +13 -13
  115. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/RowMenu/index.tsx +99 -99
  116. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/RowSaveButton/index.tsx +14 -14
  117. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/TitleText/index.tsx +20 -20
  118. package/src/Invoice/ui/default/GoodsList/hook/useDeduction/index.tsx +24 -24
  119. package/src/Invoice/ui/default/GoodsList/hook/useOnRow/index.tsx +52 -40
  120. package/src/Invoice/ui/default/GoodsList/hook/useRowSelection/index.tsx +120 -120
  121. package/src/Invoice/ui/default/GoodsList/hook/useWindowClick/index.tsx +23 -23
  122. package/src/Invoice/ui/default/GoodsList/index.less +185 -185
  123. package/src/Invoice/ui/default/GoodsList/index.tsx +205 -205
  124. package/src/Invoice/ui/default/GoodsList/ui/AddRowButton/index.tsx +65 -65
  125. package/src/Invoice/ui/default/GoodsList/ui/BulkMenu/hooks/useAddDiscountRowButton/index.less +21 -21
  126. package/src/Invoice/ui/default/GoodsList/ui/BulkMenu/hooks/useAddDiscountRowButton/index.tsx +244 -244
  127. package/src/Invoice/ui/default/GoodsList/ui/BulkMenu/hooks/useCommodityComparisonButton/index.tsx +75 -75
  128. package/src/Invoice/ui/default/GoodsList/ui/BulkMenu/hooks/useDelRowButton/index.tsx +69 -69
  129. package/src/Invoice/ui/default/GoodsList/ui/BulkMenu/hooks/useEndowCodeButton/index.tsx +65 -65
  130. package/src/Invoice/ui/default/GoodsList/ui/BulkMenu/hooks/useMergeDetails/index.tsx +91 -91
  131. package/src/Invoice/ui/default/GoodsList/ui/BulkMenu/hooks/useMergeDiscount/index.tsx +36 -36
  132. package/src/Invoice/ui/default/GoodsList/ui/BulkMenu/hooks/useSalesDiscount/index.tsx +109 -109
  133. package/src/Invoice/ui/default/GoodsList/ui/BulkMenu/hooks/useSalesGifts/index.tsx +94 -94
  134. package/src/Invoice/ui/default/GoodsList/ui/BulkMenu/index.tsx +37 -37
  135. package/src/Invoice/ui/default/GoodsList/ui/DescribeSwitch/index.tsx +36 -36
  136. package/src/Invoice/ui/default/GoodsList/ui/Search/index.less +10 -10
  137. package/src/Invoice/ui/default/GoodsList/ui/Search/index.tsx +52 -52
  138. package/src/Invoice/ui/default/GoodsList/ui/Statistics/index.less +18 -18
  139. package/src/Invoice/ui/default/GoodsList/ui/Statistics/index.tsx +114 -114
  140. package/src/Invoice/ui/default/GoodsList/ui/TableRow/index.less +40 -29
  141. package/src/Invoice/ui/default/GoodsList/ui/TableRow/index.tsx +71 -57
  142. package/src/Invoice/ui/default/GoodsList/ui/TableVirtual/index.less +38 -38
  143. package/src/Invoice/ui/default/GoodsList/ui/TableVirtual/index.tsx +130 -131
  144. package/src/Invoice/ui/default/GoodsList/ui/TableVirtual.o/index.less +44 -44
  145. package/src/Invoice/ui/default/GoodsList/ui/TableVirtual.o/index.tsx +96 -96
  146. package/src/Invoice/ui/default/GoodsList/ui/TaxIncludedSwitch/index.tsx +31 -31
  147. package/src/Invoice/ui/default/ImportBuyerDrawer/index.tsx +75 -75
  148. package/src/Invoice/ui/default/ImportGoodsDrawer/index.tsx +198 -198
  149. package/src/Invoice/ui/default/InvoiceHeader/index.less +68 -68
  150. package/src/Invoice/ui/default/InvoiceHeader/index.tsx +246 -246
  151. package/src/Invoice/ui/default/Seller/index.less +113 -113
  152. package/src/Invoice/ui/default/Seller/index.tsx +98 -98
  153. package/src/Invoice/ui/default/Sign/index.less +14 -14
  154. package/src/Invoice/ui/default/Sign/index.tsx +71 -71
  155. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/autoFillFn/index.ts +639 -639
  156. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/index.tsx +660 -657
  157. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/svg/plus.svg +11 -11
  158. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/Drag/index.less +20 -20
  159. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/Drag/index.tsx +205 -205
  160. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/ItemNameInput/index.less +9 -9
  161. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/ItemNameInput/index.tsx +87 -87
  162. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/RowEditButton/index.tsx +30 -30
  163. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/RowMenu/hook/_useAddComparison/index.tsx +43 -43
  164. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/RowMenu/hook/useAddDiscount/index.tsx +76 -76
  165. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/RowMenu/hook/useDelItem/index.tsx +41 -41
  166. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/RowMenu/hook/useEndowCode/index.tsx +34 -34
  167. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/RowMenu/index.less +13 -13
  168. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/RowMenu/index.tsx +98 -98
  169. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/RowSaveButton/index.tsx +14 -14
  170. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/TitleText/index.tsx +20 -20
  171. package/src/Invoice/ui/digtal/GoodsList/hook/useOnRow/index.tsx +51 -39
  172. package/src/Invoice/ui/digtal/GoodsList/hook/useRowSelection/index.tsx +121 -121
  173. package/src/Invoice/ui/digtal/GoodsList/hook/useWindowClick/index.tsx +23 -23
  174. package/src/Invoice/ui/digtal/GoodsList/index.less +56 -56
  175. package/src/Invoice/ui/digtal/GoodsList/index.tsx +180 -180
  176. package/src/Invoice/ui/digtal/GoodsList/ui/AddRowButton/index.tsx +67 -67
  177. package/src/Invoice/ui/digtal/GoodsList/ui/BulkMenu/hooks/useAddDiscountRowButton/index.tsx +340 -340
  178. package/src/Invoice/ui/digtal/GoodsList/ui/BulkMenu/hooks/useAddDiscountRowButton/svg/add.svg +11 -11
  179. package/src/Invoice/ui/digtal/GoodsList/ui/BulkMenu/hooks/useCommodityComparisonButton/index.tsx +75 -75
  180. package/src/Invoice/ui/digtal/GoodsList/ui/BulkMenu/hooks/useDelRowButton/index.tsx +50 -50
  181. package/src/Invoice/ui/digtal/GoodsList/ui/BulkMenu/hooks/useEmptyRefill/index.tsx +37 -37
  182. package/src/Invoice/ui/digtal/GoodsList/ui/BulkMenu/hooks/useEndowCodeButton/index.tsx +82 -82
  183. package/src/Invoice/ui/digtal/GoodsList/ui/BulkMenu/hooks/useReselectInvoiceType/index.tsx +57 -57
  184. package/src/Invoice/ui/digtal/GoodsList/ui/DescribeSwitch/index.tsx +36 -36
  185. package/src/Invoice/ui/digtal/GoodsList/ui/Search/index.less +11 -11
  186. package/src/Invoice/ui/digtal/GoodsList/ui/Search/index.tsx +50 -50
  187. package/src/Invoice/ui/digtal/GoodsList/ui/Statistics/index.less +53 -53
  188. package/src/Invoice/ui/digtal/GoodsList/ui/Statistics/index.tsx +98 -98
  189. package/src/Invoice/ui/digtal/GoodsList/ui/Statistics/svg/fork.svg +11 -11
  190. package/src/Invoice/ui/digtal/GoodsList/ui/TableRow/index.less +28 -28
  191. package/src/Invoice/ui/digtal/GoodsList/ui/TableRow/index.tsx +53 -53
  192. package/src/Invoice/ui/digtal/GoodsList/ui/TableVirtual/index.less +38 -38
  193. package/src/Invoice/ui/digtal/GoodsList/ui/TableVirtual/index.tsx +108 -108
  194. package/src/Invoice/ui/digtal/GoodsList/ui/TaxIncludedSwitch/index.tsx +31 -31
  195. package/src/Invoice/ui/digtal/InvoiceHeader/index.less +57 -57
  196. package/src/Invoice/ui/digtal/InvoiceHeader/index.tsx +77 -77
  197. package/src/Invoice/ui/digtal/RealEstateInfo/index.less +14 -14
  198. package/src/Invoice/ui/digtal/RealEstateInfo/index.tsx +192 -194
  199. package/src/Invoice/ui/digtal/Sign/index.less +48 -48
  200. package/src/Invoice/ui/digtal/Sign/index.tsx +99 -99
  201. package/src/Invoice/ui/digtal/Stakeholder/index.less +99 -99
  202. package/src/Invoice/ui/digtal/Stakeholder/index.tsx +396 -396
  203. package/src/Invoice/ui/digtal/Stakeholder/svg/arrowDown.svg +2 -2
  204. package/src/Invoice/ui/digtal/Stakeholder/svg/arrowUp.svg +2 -2
  205. package/src/Invoice/ui/digtal/Stakeholder/svg/plus.svg +11 -11
  206. package/src/InvoiceTypeModal/_test/easiest/index.tsx +31 -31
  207. package/src/InvoiceTypeModal/index.less +7 -7
  208. package/src/InvoiceTypeModal/index.md +5 -5
  209. package/src/InvoiceTypeModal/index.tsx +153 -153
  210. package/src/TaxClassificationCodeModal/_test/easiest/index.tsx +177 -177
  211. package/src/TaxClassificationCodeModal/index.md +6 -6
  212. package/src/TaxClassificationCodeModal/index.tsx +74 -74
  213. package/src/index.ts +12 -12
  214. package/tsconfig.json +31 -31
  215. package/typings.d.ts +3 -3
  216. package/yarn.e.lock +14331 -14331
  217. package/docs-dist/static/I001.4ff48f20.svg +0 -1
  218. package/docs-dist/static/I002.38b94da1.svg +0 -1
@@ -1,396 +1,396 @@
1
-
2
- import React from 'react';
3
- import Icon from '@ant-design/icons';
4
- import { decorator } from "grey-react-box";
5
- import { Form } from "kts-components-antd-x3";
6
- import { AutoComplete, Button, Checkbox, Col, Input, InputProps, Row, Tooltip } from 'kts-xui'
7
- import { CheckboxChangeEvent } from 'kts-components-antd-x4/lib/checkbox';
8
- import { FormComponentProps } from "kts-components-antd-x3/lib/form";
9
- import { WrappedFormUtils } from 'kts-components-antd-x3/lib/form/Form';
10
- import { ReactComponent as ArrowUpSvg } from './svg/arrowUp.svg';
11
- import { ReactComponent as ArrowDownSvg } from './svg/arrowDown.svg';
12
- import { ReactComponent as PlusSvg } from './svg/plus.svg'
13
- import InvoiceController from "../../../InvoiceController";
14
- import Invoice from "../../../../Invoice";
15
- import './index.less';
16
- import classNames from 'classnames';
17
-
18
- const RULES = {
19
- companyName: (label: string) => [
20
- { required: true, message: `${label}必填` },
21
- { max: 100, message: `${label}内容超长` }
22
- ],
23
- taxId: (label: string) => [
24
- { max: 20, message: `${label}内容超长` },
25
- { pattern: /^([a-zA-Z0-9])*$/g, message: `${label}仅能数字、英文` }
26
- ],
27
- buyerTelPhone: (label: string) => [
28
- { max: 100, message: `${label}内容超长` },
29
- { pattern: /^[0-9\s\-\+]+$/g, message: `${label}仅能数字、空格、-、+` }
30
- ],
31
- sellerTelPhone: (label: string) => [
32
- { required: true, message: `${label}必填` },
33
- { max: 100, message: `${label}内容超长` },
34
- { pattern: /^[0-9\s\-\+]+$/g, message: `${label}仅能数字、空格、-、+` }
35
- ],
36
- bankName: (label: string) => [
37
- { max: 100, message: `${label}内容超长` }
38
- ],
39
- bankAccount: (label: string) => [
40
- { max: 100, message: `${label}内容超长` },
41
- { pattern: /^([0-9a-zA-Z-\s])*$/g, message: `${label}仅能数字、字母、-、空格` }
42
- ]
43
- }
44
-
45
- const formatCompanyName = (e: any) => {
46
- const value = e?.target?.value;
47
- if (value) {
48
- return value.replace('(', '(').replace(')', ')').replace(' ', '');
49
- }
50
- }
51
-
52
- export interface IStakeholder {
53
-
54
- /** 是否显示导入按钮 */
55
- isShowImportButton?: boolean;
56
-
57
- /** 点击了 */
58
- onClickImportButton?: (e: InvoiceController) => void
59
-
60
- /** 查看当前可用授信额度 */
61
- lineCredit?: React.ReactNode;
62
-
63
- /** 票种类型 */
64
- isVatNormal?: boolean;
65
-
66
- /** 是否可以选择自然人 */
67
- isNaturalPerson?: boolean;
68
-
69
- /** 是否展开 */
70
- isExpand?: boolean;
71
- }
72
-
73
- /** 干系人 */
74
- export default decorator<IStakeholder, IStakeholder & FormComponentProps>(Form.create())(props => {
75
-
76
- const { form, isShowImportButton, onClickImportButton, isVatNormal = false } = props;
77
-
78
- const [isExpand, setExpand] = React.useState(typeof props.isExpand === 'boolean' ? props.isExpand : true);
79
-
80
- const { getFieldDecorator } = form;
81
-
82
- const controller = Invoice.useInvoiceController();
83
-
84
- const model = controller.useMemo(s => s.model, []);
85
-
86
- const disableds = controller.useMemo(s => s.stakeholder.disableds || [], []);
87
-
88
- const rulesMap = controller.useMemo(s => s.stakeholder.rulesMap || {}, []);
89
-
90
- const readOnly = React.useMemo(() => {
91
- if (model === 'readOnly') return true;
92
- if (model === 'prefab') return true;
93
- return false;
94
- }, [model]);
95
-
96
- const onExpand = React.useCallback(() => { setExpand(e => !e) }, []);
97
-
98
- const isReadOnly = React.useCallback(field => readOnly || disableds.indexOf(field) >= 0, [disableds, readOnly]);
99
-
100
- const getRules = React.useCallback((field, defaultRules) => {
101
- if (isReadOnly(field)) return [];
102
- return rulesMap[field] || defaultRules;
103
- }, [rulesMap, isReadOnly, isReadOnly]);
104
-
105
- controller.useForm('stakeholder', form);
106
-
107
- // props.isExpand 变化的时候更新
108
- React.useEffect(() => {
109
- setExpand(typeof props.isExpand === 'boolean' ? props.isExpand : true);
110
- }, [props.isExpand])
111
-
112
- return (
113
- <div className={classNames("kts-invoice-operate-invoice-digtal-stakeholder", { readOnly: readOnly })} >
114
- <div>
115
- {'购买方信息'.split('').map(e => <span>{e}</span>)}
116
- {
117
- !readOnly &&
118
- <Icon
119
- className="digtal-stakeholder-expand-button"
120
- component={isExpand ? ArrowUpSvg : ArrowDownSvg}
121
- onClick={onExpand}
122
- />
123
- }
124
- </div>
125
- <div>
126
- <div style={{ marginTop: 20 }} className='natural-person-flag' >
127
- {
128
- props.isNaturalPerson === true &&
129
- <Form.Item colon={false}>
130
- {getFieldDecorator('naturalPersonFlag', {
131
- })(
132
- <NaturalPersonFlag readOnly={isReadOnly('naturalPersonFlag')} />
133
- )}
134
- </Form.Item>
135
- }
136
- </div>
137
- <Form className="digtal-stakeholder-form" >
138
- <Row gutter={[16, 0]}>
139
- <Col span={24} >
140
- <Form.Item label='名称' colon={false}>
141
- {getFieldDecorator('buyerName', {
142
- rules: getRules('buyerName', RULES.companyName('购买方名称')),
143
- })(
144
- <BuyerNameInput
145
- myform={form}
146
- fieldName='buyerName'
147
- readOnly={isReadOnly('buyerName')}
148
- placeholder="请输入名称"
149
- autoComplete="off"
150
- suffix={
151
- isShowImportButton === true &&
152
- <Button
153
- type='link'
154
- style={{ padding: 0, width: 20, height: '100%' }}
155
- icon={<Icon component={PlusSvg} />}
156
- onClick={() => { onClickImportButton && onClickImportButton(controller) }}
157
- />
158
- }
159
- />
160
- )}
161
- </Form.Item>
162
- </Col>
163
-
164
- <Col span={24} >
165
- <Form.Item label='统一社会信用代码/纳税人识别号' colon={false}>
166
- {getFieldDecorator('buyerTaxId', {
167
- rules: getRules('buyerTaxId', [{ required: !isVatNormal, message: '购买方纳税人识别号必填' }, ...RULES.taxId('购买方纳税人识别号')])
168
- })(
169
- <BuyerNameInput
170
- myform={form}
171
- fieldName='buyerTaxId'
172
- readOnly={isReadOnly('buyerTaxId')}
173
- placeholder="请输入统一社会信用代码/纳税人识别号"
174
- autoComplete="off"
175
- />
176
- )}
177
- </Form.Item>
178
- </Col>
179
-
180
- <Col span={14} style={{ display: isExpand ? undefined : 'none' }} >
181
- <Form.Item label='购买方地址' colon={false}>
182
- {getFieldDecorator('buyerAddress', {
183
- rules: getRules('buyerAddress', [{ max: 100, message: '购买方地址内容超长' }])
184
- })(<MyInput readOnly={isReadOnly('buyerAddress')} placeholder="请输入购买方地址" autoComplete="off" />)}
185
- </Form.Item>
186
- </Col>
187
-
188
- <Col span={10} style={{ display: isExpand ? undefined : 'none' }} >
189
- <Form.Item label='电话' colon={false} className='telephone'>
190
- {getFieldDecorator('buyerPhone', {
191
- rules: getRules('buyerPhone', RULES.buyerTelPhone('购买方电话'))
192
- })(<MyInput readOnly={isReadOnly('buyerPhone')} placeholder="请输入电话" autoComplete="off" />)}
193
- </Form.Item>
194
- </Col>
195
-
196
- <Col span={14} style={{ display: isExpand ? undefined : 'none' }} >
197
- <Form.Item label='购买方开户银行' colon={false}>
198
- {getFieldDecorator('buyerBank', {
199
- rules: getRules('buyerBank', RULES.bankName('购买方开户银行'))
200
- })(<MyInput readOnly={isReadOnly('buyerBank')} placeholder="请输入购买方开户银行" autoComplete="off" />)}
201
- </Form.Item>
202
- </Col>
203
-
204
- <Col span={10} style={{ display: isExpand ? undefined : 'none' }} >
205
- <Form.Item label='银行账号' colon={false}>
206
- {getFieldDecorator('buyerAccount', {
207
- rules: getRules('buyerAccount', RULES.bankAccount('购买方银行账号'))
208
- })(<MyInput readOnly={isReadOnly('buyerAccount')} placeholder="请输入银行账号" autoComplete="off" />)}
209
- </Form.Item>
210
- </Col>
211
- </Row>
212
- </Form>
213
- </div>
214
- <div>
215
- {'销售方信息'.split('').map(e => <span>{e}</span>)}
216
- {
217
- !readOnly &&
218
- <Icon
219
- className="digtal-stakeholder-expand-button"
220
- component={isExpand ? ArrowUpSvg : ArrowDownSvg}
221
- onClick={onExpand}
222
- />
223
- }
224
- </div>
225
- <div>
226
- {
227
- !readOnly && props.lineCredit &&
228
- <div style={{ marginTop: 20 }} >
229
- <Tooltip trigger="click" title={props.lineCredit} >
230
- <Button type="link" style={{ padding: `0px 8px` }} >查看当前可用授信额度</Button>
231
- </Tooltip>
232
- </div>
233
- }
234
- <Form className="digtal-stakeholder-form" >
235
- <Row gutter={[16, 0]}>
236
- <Col span={24} >
237
- <Form.Item label='名称' colon={false}>
238
- {getFieldDecorator('supplierName', {
239
- rules: getRules('supplierName', RULES.companyName('销售方名称')),
240
- getValueFromEvent: formatCompanyName
241
- })(<MyInput readOnly={isReadOnly('supplierName')} placeholder="请输入名称" autoComplete="off" />)}
242
- </Form.Item>
243
- </Col>
244
-
245
- <Col span={24} >
246
- <Form.Item label='统一社会信用代码/纳税人识别号' colon={false}>
247
- {getFieldDecorator('supplierTaxId', {
248
- rules: getRules('supplierTaxId', [{ required: true, message: '销售方纳税人识别号必填' }, ...RULES.taxId('销售方纳税人识别号')])
249
- })(<MyInput readOnly={isReadOnly('supplierTaxId')} placeholder="请输入统一社会信用代码/纳税人识别号" autoComplete="off" />)}
250
- </Form.Item>
251
- </Col>
252
-
253
- <Col span={12} style={{ display: isExpand ? undefined : 'none' }} >
254
- <Form.Item label='销售方地址' colon={false}>
255
- {getFieldDecorator('sellerAddress', {
256
- rules: getRules('sellerAddress', [{ max: 300, message: '销售方地址内容超长' }])
257
- })(<MyInput readOnly={isReadOnly('sellerAddress')} placeholder="请输入销售方地址" autoComplete="off" />)}
258
- </Form.Item>
259
- </Col>
260
-
261
- <Col span={12} style={{ display: isExpand ? undefined : 'none' }} >
262
- <Form.Item label='电话' colon={false} className='telephone' >
263
- {getFieldDecorator('sellerPhone', {
264
- rules: getRules('sellerPhone', RULES.sellerTelPhone('销售方电话'))
265
- })(<MyInput readOnly={isReadOnly('sellerPhone')} placeholder="请输入电话" autoComplete="off" />)}
266
- </Form.Item>
267
- </Col>
268
-
269
- <Col span={12} style={{ display: isExpand ? undefined : 'none' }} >
270
- <Form.Item label='销售方开户银行' colon={false}>
271
- {getFieldDecorator('sellerBank', {
272
- rules: getRules('sellerBank', RULES.bankName('销售方开户银行'))
273
- })(<MyInput readOnly={isReadOnly('sellerBank')} placeholder="请输入销售方开户银行" autoComplete="off" />)}
274
- </Form.Item>
275
- </Col>
276
-
277
- <Col span={12} style={{ display: isExpand ? undefined : 'none' }} >
278
- <Form.Item label='银行账号' colon={false}>
279
- {getFieldDecorator('sellerAccount', {
280
- rules: getRules('sellerAccount', RULES.bankAccount('销售方银行账号'))
281
- })(<MyInput readOnly={isReadOnly('sellerAccount')} placeholder="请输入银行账号" autoComplete="off" />)}
282
- </Form.Item>
283
- </Col>
284
- </Row>
285
- </Form>
286
- </div>
287
- </div>
288
- )
289
- })
290
-
291
- function NaturalPersonFlag(props: {
292
- // NATURAL("自然人"), COMPANY("非自然人");
293
- value?: 'COMPANY' | 'NATURAL',
294
- onChange?: (e: 'COMPANY' | 'NATURAL') => void
295
- readOnly?: boolean;
296
- }) {
297
-
298
- const [value, setValue] = React.useState(props.value || 'COMPANY');
299
-
300
- const onChange = React.useCallback((e: CheckboxChangeEvent) => {
301
- if (props.readOnly) return;
302
- setValue(e.target.checked ? 'NATURAL' : 'COMPANY');
303
- props.onChange && props.onChange(e.target.checked ? 'NATURAL' : 'COMPANY');
304
- }, [props.onChange, props.readOnly])
305
-
306
- React.useEffect(() => {
307
- setValue(props.value || 'COMPANY')
308
- }, [props.value])
309
-
310
- return (
311
- <Checkbox
312
- disabled={props.readOnly}
313
- checked={value === 'NATURAL'}
314
- onChange={onChange}
315
- >
316
- 是否开票给自然人
317
- </Checkbox>
318
- )
319
- }
320
-
321
- function BuyerNameInput(props: InputProps & { fieldName: string; myform: WrappedFormUtils<any> }) {
322
-
323
- const { fieldName, myform: form } = props;
324
-
325
- const controller = Invoice.useInvoiceController();
326
-
327
- const rootElement = controller.useMemo(s => s.rootElement, []);
328
-
329
- const autoComplete = controller.useMemo(s => s.autoComplete, [])
330
-
331
- const [options, setOptions] = React.useState<any[]>([])
332
-
333
- const onChangeAutoComplete = React.useCallback(value => {
334
- const record = options.filter(e => e[fieldName] === value)[0] as any;
335
- if (!record || !form) return;
336
-
337
- form.setFieldsValue(record);
338
- setOptions([])
339
- }, [options, fieldName, form])
340
-
341
- const onSearch = React.useCallback(async (searchText: string) => {
342
- await Discontinue.start();
343
- try {
344
- if (fieldName === 'buyerName') {
345
- if (autoComplete.onBuyerNameSearch) {
346
- setOptions(await autoComplete.onBuyerNameSearch(searchText));
347
- }
348
- } else if (fieldName === 'buyerTaxId') {
349
- if (autoComplete.onBuyerTaxIdSearch) {
350
- setOptions(await autoComplete.onBuyerTaxIdSearch(searchText));
351
- }
352
- }
353
-
354
- } catch (error) {
355
- setOptions([]);
356
- throw error;
357
- }
358
- }, [autoComplete.onBuyerNameSearch, fieldName])
359
-
360
- if (props.readOnly) return <span className='digtal-stakeholder-form-text'>{props.value}</span>;
361
-
362
- return (
363
- <AutoComplete
364
- onSearch={onSearch}
365
- options={options.map(e => ({ value: e[fieldName] }))}
366
- onChange={onChangeAutoComplete}
367
- value={props.value}
368
- getPopupContainer={() => rootElement || document.body}
369
- style={{ width: '100%' }}
370
- >
371
- <Input {...props} style={{ width: '100%', ...props.style }} />
372
- </AutoComplete>
373
- )
374
- }
375
-
376
- class MyInput extends React.Component<InputProps>{
377
- render() {
378
- const props = this.props;
379
- if (props.readOnly) {
380
- return <span className='digtal-stakeholder-form-text'>{props.value}</span>
381
- } else {
382
- return <Input {...props} />
383
- }
384
- }
385
- }
386
-
387
- class Discontinue {
388
-
389
- private static timer: any;
390
-
391
- static start = (interval = 200) => new Promise<void>(resolve => {
392
- clearTimeout(Discontinue.timer);
393
- Discontinue.timer = setTimeout(resolve, interval);
394
- })
395
- }
396
-
1
+
2
+ import React from 'react';
3
+ import Icon from '@ant-design/icons';
4
+ import { decorator } from "grey-react-box";
5
+ import { Form } from "kts-components-antd-x3";
6
+ import { AutoComplete, Button, Checkbox, Col, Input, InputProps, Row, Tooltip } from 'kts-xui'
7
+ import { CheckboxChangeEvent } from 'kts-components-antd-x4/lib/checkbox';
8
+ import { FormComponentProps } from "kts-components-antd-x3/lib/form";
9
+ import { WrappedFormUtils } from 'kts-components-antd-x3/lib/form/Form';
10
+ import { ReactComponent as ArrowUpSvg } from './svg/arrowUp.svg';
11
+ import { ReactComponent as ArrowDownSvg } from './svg/arrowDown.svg';
12
+ import { ReactComponent as PlusSvg } from './svg/plus.svg'
13
+ import InvoiceController from "../../../InvoiceController";
14
+ import Invoice from "../../../../Invoice";
15
+ import './index.less';
16
+ import classNames from 'classnames';
17
+
18
+ const RULES = {
19
+ companyName: (label: string) => [
20
+ { required: true, message: `${label}必填` },
21
+ { max: 100, message: `${label}内容超长` }
22
+ ],
23
+ taxId: (label: string) => [
24
+ { max: 20, message: `${label}内容超长` },
25
+ { pattern: /^([a-zA-Z0-9])*$/g, message: `${label}仅能数字、英文` }
26
+ ],
27
+ buyerTelPhone: (label: string) => [
28
+ { max: 100, message: `${label}内容超长` },
29
+ { pattern: /^[0-9\s\-\+]+$/g, message: `${label}仅能数字、空格、-、+` }
30
+ ],
31
+ sellerTelPhone: (label: string) => [
32
+ { required: true, message: `${label}必填` },
33
+ { max: 100, message: `${label}内容超长` },
34
+ { pattern: /^[0-9\s\-\+]+$/g, message: `${label}仅能数字、空格、-、+` }
35
+ ],
36
+ bankName: (label: string) => [
37
+ { max: 100, message: `${label}内容超长` }
38
+ ],
39
+ bankAccount: (label: string) => [
40
+ { max: 100, message: `${label}内容超长` },
41
+ { pattern: /^([0-9a-zA-Z-\s])*$/g, message: `${label}仅能数字、字母、-、空格` }
42
+ ]
43
+ }
44
+
45
+ const formatCompanyName = (e: any) => {
46
+ const value = e?.target?.value;
47
+ if (value) {
48
+ return value.replace('(', '(').replace(')', ')').replace(' ', '');
49
+ }
50
+ }
51
+
52
+ export interface IStakeholder {
53
+
54
+ /** 是否显示导入按钮 */
55
+ isShowImportButton?: boolean;
56
+
57
+ /** 点击了 */
58
+ onClickImportButton?: (e: InvoiceController) => void
59
+
60
+ /** 查看当前可用授信额度 */
61
+ lineCredit?: React.ReactNode;
62
+
63
+ /** 票种类型 */
64
+ isVatNormal?: boolean;
65
+
66
+ /** 是否可以选择自然人 */
67
+ isNaturalPerson?: boolean;
68
+
69
+ /** 是否展开 */
70
+ isExpand?: boolean;
71
+ }
72
+
73
+ /** 干系人 */
74
+ export default decorator<IStakeholder, IStakeholder & FormComponentProps>(Form.create())(props => {
75
+
76
+ const { form, isShowImportButton, onClickImportButton, isVatNormal = false } = props;
77
+
78
+ const [isExpand, setExpand] = React.useState(typeof props.isExpand === 'boolean' ? props.isExpand : true);
79
+
80
+ const { getFieldDecorator } = form;
81
+
82
+ const controller = Invoice.useInvoiceController();
83
+
84
+ const model = controller.useMemo(s => s.model, []);
85
+
86
+ const disableds = controller.useMemo(s => s.stakeholder.disableds || [], []);
87
+
88
+ const rulesMap = controller.useMemo(s => s.stakeholder.rulesMap || {}, []);
89
+
90
+ const readOnly = React.useMemo(() => {
91
+ if (model === 'readOnly') return true;
92
+ if (model === 'prefab') return true;
93
+ return false;
94
+ }, [model]);
95
+
96
+ const onExpand = React.useCallback(() => { setExpand(e => !e) }, []);
97
+
98
+ const isReadOnly = React.useCallback(field => readOnly || disableds.indexOf(field) >= 0, [disableds, readOnly]);
99
+
100
+ const getRules = React.useCallback((field, defaultRules) => {
101
+ if (isReadOnly(field)) return [];
102
+ return rulesMap[field] || defaultRules;
103
+ }, [rulesMap, isReadOnly, isReadOnly]);
104
+
105
+ controller.useForm('stakeholder', form);
106
+
107
+ // props.isExpand 变化的时候更新
108
+ React.useEffect(() => {
109
+ setExpand(typeof props.isExpand === 'boolean' ? props.isExpand : true);
110
+ }, [props.isExpand])
111
+
112
+ return (
113
+ <div className={classNames("kts-invoice-operate-invoice-digtal-stakeholder", { readOnly: readOnly })} >
114
+ <div>
115
+ {'购买方信息'.split('').map(e => <span>{e}</span>)}
116
+ {
117
+ !readOnly &&
118
+ <Icon
119
+ className="digtal-stakeholder-expand-button"
120
+ component={isExpand ? ArrowUpSvg : ArrowDownSvg}
121
+ onClick={onExpand}
122
+ />
123
+ }
124
+ </div>
125
+ <div>
126
+ <div style={{ marginTop: 20 }} className='natural-person-flag' >
127
+ {
128
+ props.isNaturalPerson === true &&
129
+ <Form.Item colon={false}>
130
+ {getFieldDecorator('naturalPersonFlag', {
131
+ })(
132
+ <NaturalPersonFlag readOnly={isReadOnly('naturalPersonFlag')} />
133
+ )}
134
+ </Form.Item>
135
+ }
136
+ </div>
137
+ <Form className="digtal-stakeholder-form" >
138
+ <Row gutter={[16, 0]}>
139
+ <Col span={24} >
140
+ <Form.Item label='名称' colon={false}>
141
+ {getFieldDecorator('buyerName', {
142
+ rules: getRules('buyerName', RULES.companyName('购买方名称')),
143
+ })(
144
+ <BuyerNameInput
145
+ myform={form}
146
+ fieldName='buyerName'
147
+ readOnly={isReadOnly('buyerName')}
148
+ placeholder="请输入名称"
149
+ autoComplete="off"
150
+ suffix={
151
+ isShowImportButton === true &&
152
+ <Button
153
+ type='link'
154
+ style={{ padding: 0, width: 20, height: '100%' }}
155
+ icon={<Icon component={PlusSvg} />}
156
+ onClick={() => { onClickImportButton && onClickImportButton(controller) }}
157
+ />
158
+ }
159
+ />
160
+ )}
161
+ </Form.Item>
162
+ </Col>
163
+
164
+ <Col span={24} >
165
+ <Form.Item label='统一社会信用代码/纳税人识别号' colon={false}>
166
+ {getFieldDecorator('buyerTaxId', {
167
+ rules: getRules('buyerTaxId', [{ required: !isVatNormal, message: '购买方纳税人识别号必填' }, ...RULES.taxId('购买方纳税人识别号')])
168
+ })(
169
+ <BuyerNameInput
170
+ myform={form}
171
+ fieldName='buyerTaxId'
172
+ readOnly={isReadOnly('buyerTaxId')}
173
+ placeholder="请输入统一社会信用代码/纳税人识别号"
174
+ autoComplete="off"
175
+ />
176
+ )}
177
+ </Form.Item>
178
+ </Col>
179
+
180
+ <Col span={14} style={{ display: isExpand ? undefined : 'none' }} >
181
+ <Form.Item label='购买方地址' colon={false}>
182
+ {getFieldDecorator('buyerAddress', {
183
+ rules: getRules('buyerAddress', [{ max: 100, message: '购买方地址内容超长' }])
184
+ })(<MyInput readOnly={isReadOnly('buyerAddress')} placeholder="请输入购买方地址" autoComplete="off" />)}
185
+ </Form.Item>
186
+ </Col>
187
+
188
+ <Col span={10} style={{ display: isExpand ? undefined : 'none' }} >
189
+ <Form.Item label='电话' colon={false} className='telephone'>
190
+ {getFieldDecorator('buyerPhone', {
191
+ rules: getRules('buyerPhone', RULES.buyerTelPhone('购买方电话'))
192
+ })(<MyInput readOnly={isReadOnly('buyerPhone')} placeholder="请输入电话" autoComplete="off" />)}
193
+ </Form.Item>
194
+ </Col>
195
+
196
+ <Col span={14} style={{ display: isExpand ? undefined : 'none' }} >
197
+ <Form.Item label='购买方开户银行' colon={false}>
198
+ {getFieldDecorator('buyerBank', {
199
+ rules: getRules('buyerBank', RULES.bankName('购买方开户银行'))
200
+ })(<MyInput readOnly={isReadOnly('buyerBank')} placeholder="请输入购买方开户银行" autoComplete="off" />)}
201
+ </Form.Item>
202
+ </Col>
203
+
204
+ <Col span={10} style={{ display: isExpand ? undefined : 'none' }} >
205
+ <Form.Item label='银行账号' colon={false}>
206
+ {getFieldDecorator('buyerAccount', {
207
+ rules: getRules('buyerAccount', RULES.bankAccount('购买方银行账号'))
208
+ })(<MyInput readOnly={isReadOnly('buyerAccount')} placeholder="请输入银行账号" autoComplete="off" />)}
209
+ </Form.Item>
210
+ </Col>
211
+ </Row>
212
+ </Form>
213
+ </div>
214
+ <div>
215
+ {'销售方信息'.split('').map(e => <span>{e}</span>)}
216
+ {
217
+ !readOnly &&
218
+ <Icon
219
+ className="digtal-stakeholder-expand-button"
220
+ component={isExpand ? ArrowUpSvg : ArrowDownSvg}
221
+ onClick={onExpand}
222
+ />
223
+ }
224
+ </div>
225
+ <div>
226
+ {
227
+ !readOnly && props.lineCredit &&
228
+ <div style={{ marginTop: 20 }} >
229
+ <Tooltip trigger="click" title={props.lineCredit} >
230
+ <Button type="link" style={{ padding: `0px 8px` }} >查看当前可用授信额度</Button>
231
+ </Tooltip>
232
+ </div>
233
+ }
234
+ <Form className="digtal-stakeholder-form" >
235
+ <Row gutter={[16, 0]}>
236
+ <Col span={24} >
237
+ <Form.Item label='名称' colon={false}>
238
+ {getFieldDecorator('supplierName', {
239
+ rules: getRules('supplierName', RULES.companyName('销售方名称')),
240
+ getValueFromEvent: formatCompanyName
241
+ })(<MyInput readOnly={isReadOnly('supplierName')} placeholder="请输入名称" autoComplete="off" />)}
242
+ </Form.Item>
243
+ </Col>
244
+
245
+ <Col span={24} >
246
+ <Form.Item label='统一社会信用代码/纳税人识别号' colon={false}>
247
+ {getFieldDecorator('supplierTaxId', {
248
+ rules: getRules('supplierTaxId', [{ required: true, message: '销售方纳税人识别号必填' }, ...RULES.taxId('销售方纳税人识别号')])
249
+ })(<MyInput readOnly={isReadOnly('supplierTaxId')} placeholder="请输入统一社会信用代码/纳税人识别号" autoComplete="off" />)}
250
+ </Form.Item>
251
+ </Col>
252
+
253
+ <Col span={12} style={{ display: isExpand ? undefined : 'none' }} >
254
+ <Form.Item label='销售方地址' colon={false}>
255
+ {getFieldDecorator('sellerAddress', {
256
+ rules: getRules('sellerAddress', [{ max: 300, message: '销售方地址内容超长' }])
257
+ })(<MyInput readOnly={isReadOnly('sellerAddress')} placeholder="请输入销售方地址" autoComplete="off" />)}
258
+ </Form.Item>
259
+ </Col>
260
+
261
+ <Col span={12} style={{ display: isExpand ? undefined : 'none' }} >
262
+ <Form.Item label='电话' colon={false} className='telephone' >
263
+ {getFieldDecorator('sellerPhone', {
264
+ rules: getRules('sellerPhone', RULES.sellerTelPhone('销售方电话'))
265
+ })(<MyInput readOnly={isReadOnly('sellerPhone')} placeholder="请输入电话" autoComplete="off" />)}
266
+ </Form.Item>
267
+ </Col>
268
+
269
+ <Col span={12} style={{ display: isExpand ? undefined : 'none' }} >
270
+ <Form.Item label='销售方开户银行' colon={false}>
271
+ {getFieldDecorator('sellerBank', {
272
+ rules: getRules('sellerBank', RULES.bankName('销售方开户银行'))
273
+ })(<MyInput readOnly={isReadOnly('sellerBank')} placeholder="请输入销售方开户银行" autoComplete="off" />)}
274
+ </Form.Item>
275
+ </Col>
276
+
277
+ <Col span={12} style={{ display: isExpand ? undefined : 'none' }} >
278
+ <Form.Item label='银行账号' colon={false}>
279
+ {getFieldDecorator('sellerAccount', {
280
+ rules: getRules('sellerAccount', RULES.bankAccount('销售方银行账号'))
281
+ })(<MyInput readOnly={isReadOnly('sellerAccount')} placeholder="请输入银行账号" autoComplete="off" />)}
282
+ </Form.Item>
283
+ </Col>
284
+ </Row>
285
+ </Form>
286
+ </div>
287
+ </div>
288
+ )
289
+ })
290
+
291
+ function NaturalPersonFlag(props: {
292
+ // NATURAL("自然人"), COMPANY("非自然人");
293
+ value?: 'COMPANY' | 'NATURAL',
294
+ onChange?: (e: 'COMPANY' | 'NATURAL') => void
295
+ readOnly?: boolean;
296
+ }) {
297
+
298
+ const [value, setValue] = React.useState(props.value || 'COMPANY');
299
+
300
+ const onChange = React.useCallback((e: CheckboxChangeEvent) => {
301
+ if (props.readOnly) return;
302
+ setValue(e.target.checked ? 'NATURAL' : 'COMPANY');
303
+ props.onChange && props.onChange(e.target.checked ? 'NATURAL' : 'COMPANY');
304
+ }, [props.onChange, props.readOnly])
305
+
306
+ React.useEffect(() => {
307
+ setValue(props.value || 'COMPANY')
308
+ }, [props.value])
309
+
310
+ return (
311
+ <Checkbox
312
+ disabled={props.readOnly}
313
+ checked={value === 'NATURAL'}
314
+ onChange={onChange}
315
+ >
316
+ 是否开票给自然人
317
+ </Checkbox>
318
+ )
319
+ }
320
+
321
+ function BuyerNameInput(props: InputProps & { fieldName: string; myform: WrappedFormUtils<any> }) {
322
+
323
+ const { fieldName, myform: form } = props;
324
+
325
+ const controller = Invoice.useInvoiceController();
326
+
327
+ const rootElement = controller.useMemo(s => s.rootElement, []);
328
+
329
+ const autoComplete = controller.useMemo(s => s.autoComplete, [])
330
+
331
+ const [options, setOptions] = React.useState<any[]>([])
332
+
333
+ const onChangeAutoComplete = React.useCallback(value => {
334
+ const record = options.filter(e => e[fieldName] === value)[0] as any;
335
+ if (!record || !form) return;
336
+
337
+ form.setFieldsValue(record);
338
+ setOptions([])
339
+ }, [options, fieldName, form])
340
+
341
+ const onSearch = React.useCallback(async (searchText: string) => {
342
+ await Discontinue.start();
343
+ try {
344
+ if (fieldName === 'buyerName') {
345
+ if (autoComplete.onBuyerNameSearch) {
346
+ setOptions(await autoComplete.onBuyerNameSearch(searchText));
347
+ }
348
+ } else if (fieldName === 'buyerTaxId') {
349
+ if (autoComplete.onBuyerTaxIdSearch) {
350
+ setOptions(await autoComplete.onBuyerTaxIdSearch(searchText));
351
+ }
352
+ }
353
+
354
+ } catch (error) {
355
+ setOptions([]);
356
+ throw error;
357
+ }
358
+ }, [autoComplete.onBuyerNameSearch, fieldName])
359
+
360
+ if (props.readOnly) return <span className='digtal-stakeholder-form-text'>{props.value}</span>;
361
+
362
+ return (
363
+ <AutoComplete
364
+ onSearch={onSearch}
365
+ options={options.map(e => ({ value: e[fieldName] }))}
366
+ onChange={onChangeAutoComplete}
367
+ value={props.value}
368
+ getPopupContainer={() => rootElement || document.body}
369
+ style={{ width: '100%' }}
370
+ >
371
+ <Input {...props} style={{ width: '100%', ...props.style }} />
372
+ </AutoComplete>
373
+ )
374
+ }
375
+
376
+ class MyInput extends React.Component<InputProps>{
377
+ render() {
378
+ const props = this.props;
379
+ if (props.readOnly) {
380
+ return <span className='digtal-stakeholder-form-text'>{props.value}</span>
381
+ } else {
382
+ return <Input {...props} />
383
+ }
384
+ }
385
+ }
386
+
387
+ class Discontinue {
388
+
389
+ private static timer: any;
390
+
391
+ static start = (interval = 200) => new Promise<void>(resolve => {
392
+ clearTimeout(Discontinue.timer);
393
+ Discontinue.timer = setTimeout(resolve, interval);
394
+ })
395
+ }
396
+