kts-component-invoice-operate 3.2.244 → 3.2.246

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 (278) 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/BRANCH.md +5 -0
  8. package/README.md +12 -12
  9. package/branch/3.2.x +1 -0
  10. package/dist/Invoice/ui/default/GoodsList/hook/useColumns/autoFillFn/index.d.ts +2 -0
  11. package/dist/Invoice/ui/digtal/StakeFarmerholder/index.d.ts +2 -0
  12. package/dist/index.esm.js +126 -7
  13. package/dist/index.js +126 -7
  14. package/docs/index.md +5 -5
  15. package/docs-dist/404.html +33 -33
  16. package/docs-dist/index.html +33 -33
  17. package/docs-dist/static/arrowDown.a1cbf0d8.svg +2 -2
  18. package/docs-dist/static/arrowUp.4c482054.svg +2 -2
  19. package/docs-dist/static/fork.5431267d.svg +11 -11
  20. package/docs-dist/static/plus.44013ce3.svg +11 -11
  21. package/docs-dist/static/plus.4fd1af30.svg +11 -11
  22. package/docs-dist/umi.css +18 -18
  23. package/index.html +12 -12
  24. package/package.json +62 -62
  25. package/src/Invoice/Invoice-digtal/_test/architecture/index.tsx +21 -21
  26. package/src/Invoice/Invoice-digtal/_test/disabled/index.tsx +40 -40
  27. package/src/Invoice/Invoice-digtal/_test/easiest/index.tsx +214 -214
  28. package/src/Invoice/Invoice-digtal/_test/freight/index.tsx +14580 -14580
  29. package/src/Invoice/Invoice-digtal/_test/header/index.tsx +84 -84
  30. package/src/Invoice/Invoice-digtal/_test/importGoods/index.tsx +868 -868
  31. package/src/Invoice/Invoice-digtal/_test/importStakeholder/index.tsx +18 -18
  32. package/src/Invoice/Invoice-digtal/_test/lineCredit/index.tsx +19 -19
  33. package/src/Invoice/Invoice-digtal/_test/pay/index.tsx +14636 -14636
  34. package/src/Invoice/Invoice-digtal/_test/prefab/index.tsx +150 -150
  35. package/src/Invoice/Invoice-digtal/_test/readOnly/index.tsx +55 -55
  36. package/src/Invoice/Invoice-digtal/_test/realEstateInfo/index.tsx +83 -83
  37. package/src/Invoice/Invoice-digtal/_test/stakeholder/index.tsx +12 -12
  38. package/src/Invoice/Invoice-digtal/_test/typeSelection/index.tsx +29 -29
  39. package/src/Invoice/Invoice-digtal/index.md +44 -44
  40. package/src/Invoice/InvoiceController/InvoiceControllerForm/index.ts +116 -116
  41. package/src/Invoice/InvoiceController/InvoiceControllerState/AutoComplete/index.ts +26 -26
  42. package/src/Invoice/InvoiceController/InvoiceControllerState/BuyerState/index.tsx +88 -88
  43. package/src/Invoice/InvoiceController/InvoiceControllerState/FreightListState/IColumnsReplenish/index.ts +10 -10
  44. package/src/Invoice/InvoiceController/InvoiceControllerState/FreightListState/IGood/index.ts +33 -33
  45. package/src/Invoice/InvoiceController/InvoiceControllerState/FreightListState/ImportGoods/index.ts +81 -81
  46. package/src/Invoice/InvoiceController/InvoiceControllerState/FreightListState/index.ts +39 -39
  47. package/src/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/Drag/index.ts +15 -15
  48. package/src/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/EndowCode/index.tsx +104 -104
  49. package/src/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/IColumnsReplenish/index.ts +10 -10
  50. package/src/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/IGood/index.ts +91 -90
  51. package/src/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/ImportGoods/index.ts +84 -84
  52. package/src/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/LineAttributeType/index.ts +7 -7
  53. package/src/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/ProductComparison/index.ts +9 -9
  54. package/src/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/index.ts +134 -134
  55. package/src/Invoice/InvoiceController/InvoiceControllerState/PayListState/IColumnsReplenish/index.ts +10 -10
  56. package/src/Invoice/InvoiceController/InvoiceControllerState/PayListState/IGood/index.ts +35 -35
  57. package/src/Invoice/InvoiceController/InvoiceControllerState/PayListState/ImportGoods/index.ts +81 -81
  58. package/src/Invoice/InvoiceController/InvoiceControllerState/PayListState/index.ts +39 -39
  59. package/src/Invoice/InvoiceController/InvoiceControllerState/Stakeholder/index.ts +13 -13
  60. package/src/Invoice/InvoiceController/InvoiceControllerState/index.ts +76 -76
  61. package/src/Invoice/InvoiceController/fns/addFreight.ts +11 -11
  62. package/src/Invoice/InvoiceController/fns/addGood.ts +11 -11
  63. package/src/Invoice/InvoiceController/fns/addGoodDiscount.ts +126 -126
  64. package/src/Invoice/InvoiceController/fns/addGoodDiscountV2.ts +86 -86
  65. package/src/Invoice/InvoiceController/fns/addPay.ts +11 -11
  66. package/src/Invoice/InvoiceController/fns/delFreight.ts +38 -38
  67. package/src/Invoice/InvoiceController/fns/delGood.ts +41 -41
  68. package/src/Invoice/InvoiceController/fns/delPay.ts +38 -38
  69. package/src/Invoice/InvoiceController/fns/getGoodsSearch.ts +26 -26
  70. package/src/Invoice/InvoiceController/fns/importGoodsDrawer.ts +79 -79
  71. package/src/Invoice/InvoiceController/fns/itemBlur.ts +40 -40
  72. package/src/Invoice/InvoiceController/fns/mergeDetails.ts +201 -201
  73. package/src/Invoice/InvoiceController/fns/mergeDiscount.ts +35 -35
  74. package/src/Invoice/InvoiceController/fns/saveEditFreight.ts +24 -24
  75. package/src/Invoice/InvoiceController/fns/saveEditGood.ts +24 -24
  76. package/src/Invoice/InvoiceController/fns/saveEditPay.ts +23 -23
  77. package/src/Invoice/InvoiceController/fns/setEditFreight.ts +16 -16
  78. package/src/Invoice/InvoiceController/fns/setEditGood.ts +16 -16
  79. package/src/Invoice/InvoiceController/fns/setEditPay.ts +16 -16
  80. package/src/Invoice/InvoiceController/fns/setFreight.ts +10 -10
  81. package/src/Invoice/InvoiceController/fns/setGoods.ts +10 -10
  82. package/src/Invoice/InvoiceController/fns/setPay.ts +10 -10
  83. package/src/Invoice/InvoiceController/fns/updateInvoiceNo.ts +8 -8
  84. package/src/Invoice/InvoiceController/index.ts +127 -127
  85. package/src/Invoice/_test/buyerNameSearch/index.tsx +42 -42
  86. package/src/Invoice/_test/children/index.tsx +214 -214
  87. package/src/Invoice/_test/deduction/index.tsx +956 -957
  88. package/src/Invoice/_test/draft/index.tsx +40 -40
  89. package/src/Invoice/_test/easiest/index.tsx +5 -5
  90. package/src/Invoice/_test/endowCode/index.tsx +1158 -1158
  91. package/src/Invoice/_test/goodsMenuExpand/index.tsx +32 -32
  92. package/src/Invoice/_test/importBuyer/index.tsx +74 -74
  93. package/src/Invoice/_test/importGoods/index.tsx +1197 -1197
  94. package/src/Invoice/_test/invoiceType/index.tsx +59 -59
  95. package/src/Invoice/_test/isInvoiceNo/index.tsx +12 -12
  96. package/src/Invoice/_test/replaceHead/index.tsx +22 -22
  97. package/src/Invoice/_test/retrieveData/index.tsx +22 -22
  98. package/src/Invoice/_test/seller/index.tsx +28 -28
  99. package/src/Invoice/_test/setDataSource/index.tsx +73 -73
  100. package/src/Invoice/_test/unit/index.tsx +19 -19
  101. package/src/Invoice/index.less +31 -31
  102. package/src/Invoice/index.md +56 -56
  103. package/src/Invoice/index.tsx +200 -200
  104. package/src/Invoice/tools/calculate/index.ts +144 -144
  105. package/src/Invoice/tools/coolingFn/index.ts +17 -17
  106. package/src/Invoice/tools/evaluate/index.ts +7 -7
  107. package/src/Invoice/tools/idGenerator/index.ts +2 -2
  108. package/src/Invoice/tools/itemName/index.ts +55 -55
  109. package/src/Invoice/tools/lazyFn/index.ts +19 -19
  110. package/src/Invoice/tools/mounting/index.ts +13 -13
  111. package/src/Invoice/tools/strringFn/index.ts +40 -40
  112. package/src/Invoice/tools/useToGenerateId/index.ts +12 -12
  113. package/src/Invoice/tools/utils/index.ts +1 -1
  114. package/src/Invoice/tools/utils/money/index.ts +20 -20
  115. package/src/Invoice/ui/default/AddComparisonDrawer/index.tsx +149 -149
  116. package/src/Invoice/ui/default/Buyer/index.less +219 -219
  117. package/src/Invoice/ui/default/Buyer/index.tsx +114 -114
  118. package/src/Invoice/ui/default/Buyer/ui/BuyerNameInput/index.tsx +166 -166
  119. package/src/Invoice/ui/default/Buyer/ui/ImportBuyerButton/index.tsx +21 -21
  120. package/src/Invoice/ui/default/EndowCodeDrawer/index.less +8 -8
  121. package/src/Invoice/ui/default/EndowCodeDrawer/index.tsx +612 -612
  122. package/src/Invoice/ui/default/GoodsList/hook/useColumns/autoFillFn/index.ts +681 -647
  123. package/src/Invoice/ui/default/GoodsList/hook/useColumns/index.tsx +769 -719
  124. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/Drag/index.less +20 -20
  125. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/Drag/index.tsx +205 -205
  126. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/Expand/index.tsx +57 -57
  127. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/ItemCodeInput/index.less +18 -18
  128. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/ItemCodeInput/index.tsx +49 -49
  129. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/ItemNameInput/index.less +17 -17
  130. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/ItemNameInput/index.tsx +91 -91
  131. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/RowEditButton/index.tsx +30 -30
  132. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/RowMenu/hook/_useAddComparison/index.tsx +43 -43
  133. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/RowMenu/hook/useAddDiscount/index.tsx +118 -118
  134. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/RowMenu/hook/useDelItem/dist/index.js +32 -32
  135. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/RowMenu/hook/useDelItem/index.tsx +41 -41
  136. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/RowMenu/hook/useEndowCode/index.tsx +25 -25
  137. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/RowMenu/index.less +13 -13
  138. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/RowMenu/index.tsx +99 -99
  139. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/RowSaveButton/index.tsx +14 -14
  140. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/TitleText/index.tsx +20 -20
  141. package/src/Invoice/ui/default/GoodsList/hook/useDeduction/index.tsx +24 -24
  142. package/src/Invoice/ui/default/GoodsList/hook/useOnRow/index.tsx +52 -52
  143. package/src/Invoice/ui/default/GoodsList/hook/useRowSelection/index.tsx +120 -120
  144. package/src/Invoice/ui/default/GoodsList/hook/useWindowClick/index.tsx +23 -23
  145. package/src/Invoice/ui/default/GoodsList/index.less +185 -185
  146. package/src/Invoice/ui/default/GoodsList/index.tsx +207 -207
  147. package/src/Invoice/ui/default/GoodsList/ui/AddRowButton/index.tsx +72 -72
  148. package/src/Invoice/ui/default/GoodsList/ui/BulkMenu/hooks/useAddDiscountRowButton/index.less +21 -21
  149. package/src/Invoice/ui/default/GoodsList/ui/BulkMenu/hooks/useAddDiscountRowButton/index.tsx +244 -244
  150. package/src/Invoice/ui/default/GoodsList/ui/BulkMenu/hooks/useCommodityComparisonButton/index.tsx +75 -75
  151. package/src/Invoice/ui/default/GoodsList/ui/BulkMenu/hooks/useDelRowButton/index.tsx +69 -69
  152. package/src/Invoice/ui/default/GoodsList/ui/BulkMenu/hooks/useEndowCodeButton/index.tsx +65 -65
  153. package/src/Invoice/ui/default/GoodsList/ui/BulkMenu/hooks/useMergeDetails/index.tsx +91 -91
  154. package/src/Invoice/ui/default/GoodsList/ui/BulkMenu/hooks/useMergeDiscount/index.tsx +36 -36
  155. package/src/Invoice/ui/default/GoodsList/ui/BulkMenu/hooks/useSalesDiscount/index.tsx +109 -109
  156. package/src/Invoice/ui/default/GoodsList/ui/BulkMenu/hooks/useSalesGifts/index.tsx +94 -94
  157. package/src/Invoice/ui/default/GoodsList/ui/BulkMenu/index.tsx +37 -37
  158. package/src/Invoice/ui/default/GoodsList/ui/DescribeSwitch/index.tsx +36 -36
  159. package/src/Invoice/ui/default/GoodsList/ui/Search/index.less +10 -10
  160. package/src/Invoice/ui/default/GoodsList/ui/Search/index.tsx +52 -52
  161. package/src/Invoice/ui/default/GoodsList/ui/Statistics/index.less +18 -18
  162. package/src/Invoice/ui/default/GoodsList/ui/Statistics/index.tsx +114 -114
  163. package/src/Invoice/ui/default/GoodsList/ui/TableRow/index.less +40 -40
  164. package/src/Invoice/ui/default/GoodsList/ui/TableRow/index.tsx +71 -71
  165. package/src/Invoice/ui/default/GoodsList/ui/TableVirtual/index.less +38 -38
  166. package/src/Invoice/ui/default/GoodsList/ui/TableVirtual/index.tsx +130 -130
  167. package/src/Invoice/ui/default/GoodsList/ui/TableVirtual.o/index.less +44 -44
  168. package/src/Invoice/ui/default/GoodsList/ui/TableVirtual.o/index.tsx +96 -96
  169. package/src/Invoice/ui/default/GoodsList/ui/TaxIncludedSwitch/index.tsx +31 -31
  170. package/src/Invoice/ui/default/ImportBuyerDrawer/index.tsx +75 -75
  171. package/src/Invoice/ui/default/ImportGoodsDrawer/index.tsx +201 -201
  172. package/src/Invoice/ui/default/InvoiceHeader/index.less +68 -68
  173. package/src/Invoice/ui/default/InvoiceHeader/index.tsx +246 -246
  174. package/src/Invoice/ui/default/Seller/index.less +113 -113
  175. package/src/Invoice/ui/default/Seller/index.tsx +98 -98
  176. package/src/Invoice/ui/default/Sign/index.less +14 -14
  177. package/src/Invoice/ui/default/Sign/index.tsx +71 -71
  178. package/src/Invoice/ui/digtal/Architecture/index.less +18 -18
  179. package/src/Invoice/ui/digtal/Architecture/index.tsx +177 -177
  180. package/src/Invoice/ui/digtal/FreightList/hook/useColumns/dist/index.js +616 -616
  181. package/src/Invoice/ui/digtal/FreightList/hook/useColumns/index.tsx +246 -246
  182. package/src/Invoice/ui/digtal/FreightList/hook/useColumns/ui/TitleText/index.tsx +20 -20
  183. package/src/Invoice/ui/digtal/FreightList/hook/useOnRow/index.tsx +37 -37
  184. package/src/Invoice/ui/digtal/FreightList/hook/useRowSelection/index.tsx +119 -119
  185. package/src/Invoice/ui/digtal/FreightList/hook/useWindowClick/index.tsx +23 -23
  186. package/src/Invoice/ui/digtal/FreightList/index.less +72 -72
  187. package/src/Invoice/ui/digtal/FreightList/index.tsx +129 -129
  188. package/src/Invoice/ui/digtal/FreightList/ui/AddRowButton/index.tsx +74 -74
  189. package/src/Invoice/ui/digtal/FreightList/ui/BulkMenu/hooks/useDelRowButton/index.tsx +50 -50
  190. package/src/Invoice/ui/digtal/FreightList/ui/BulkMenu/hooks/useEmptyRefill/index.tsx +36 -36
  191. package/src/Invoice/ui/digtal/FreightList/ui/TableRow/index.less +28 -28
  192. package/src/Invoice/ui/digtal/FreightList/ui/TableRow/index.tsx +20 -20
  193. package/src/Invoice/ui/digtal/FreightList/ui/TableVirtual/index.less +38 -38
  194. package/src/Invoice/ui/digtal/FreightList/ui/TableVirtual/index.tsx +108 -108
  195. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/autoFillFn/index.ts +683 -683
  196. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/dist/index.js +616 -616
  197. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/index.tsx +723 -724
  198. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/svg/plus.svg +11 -11
  199. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/Drag/index.less +20 -20
  200. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/Drag/index.tsx +205 -205
  201. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/ItemNameInput/index.less +9 -9
  202. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/ItemNameInput/index.tsx +87 -87
  203. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/RowEditButton/index.tsx +30 -30
  204. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/RowMenu/hook/_useAddComparison/index.tsx +43 -43
  205. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/RowMenu/hook/useAddDiscount/index.tsx +76 -76
  206. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/RowMenu/hook/useDelItem/index.tsx +41 -41
  207. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/RowMenu/hook/useEndowCode/index.tsx +34 -34
  208. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/RowMenu/index.less +13 -13
  209. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/RowMenu/index.tsx +98 -98
  210. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/RowSaveButton/index.tsx +14 -14
  211. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/TitleText/index.tsx +20 -20
  212. package/src/Invoice/ui/digtal/GoodsList/hook/useOnRow/index.tsx +51 -51
  213. package/src/Invoice/ui/digtal/GoodsList/hook/useRowSelection/index.tsx +121 -121
  214. package/src/Invoice/ui/digtal/GoodsList/hook/useWindowClick/index.tsx +23 -23
  215. package/src/Invoice/ui/digtal/GoodsList/index.less +56 -56
  216. package/src/Invoice/ui/digtal/GoodsList/index.tsx +181 -181
  217. package/src/Invoice/ui/digtal/GoodsList/ui/AddRowButton/index.tsx +87 -87
  218. package/src/Invoice/ui/digtal/GoodsList/ui/BulkMenu/hooks/useAddDiscountRowButton/index.tsx +340 -340
  219. package/src/Invoice/ui/digtal/GoodsList/ui/BulkMenu/hooks/useAddDiscountRowButton/svg/add.svg +11 -11
  220. package/src/Invoice/ui/digtal/GoodsList/ui/BulkMenu/hooks/useCommodityComparisonButton/index.tsx +75 -75
  221. package/src/Invoice/ui/digtal/GoodsList/ui/BulkMenu/hooks/useDelRowButton/index.tsx +50 -50
  222. package/src/Invoice/ui/digtal/GoodsList/ui/BulkMenu/hooks/useEmptyRefill/index.tsx +37 -37
  223. package/src/Invoice/ui/digtal/GoodsList/ui/BulkMenu/hooks/useEndowCodeButton/index.tsx +82 -82
  224. package/src/Invoice/ui/digtal/GoodsList/ui/BulkMenu/hooks/useReselectInvoiceType/index.tsx +57 -57
  225. package/src/Invoice/ui/digtal/GoodsList/ui/DescribeSwitch/index.tsx +36 -36
  226. package/src/Invoice/ui/digtal/GoodsList/ui/Search/index.less +11 -11
  227. package/src/Invoice/ui/digtal/GoodsList/ui/Search/index.tsx +60 -60
  228. package/src/Invoice/ui/digtal/GoodsList/ui/Statistics/index.less +53 -53
  229. package/src/Invoice/ui/digtal/GoodsList/ui/Statistics/index.tsx +98 -98
  230. package/src/Invoice/ui/digtal/GoodsList/ui/Statistics/svg/fork.svg +11 -11
  231. package/src/Invoice/ui/digtal/GoodsList/ui/TableRow/index.less +28 -28
  232. package/src/Invoice/ui/digtal/GoodsList/ui/TableRow/index.tsx +52 -52
  233. package/src/Invoice/ui/digtal/GoodsList/ui/TableVirtual/index.less +38 -38
  234. package/src/Invoice/ui/digtal/GoodsList/ui/TableVirtual/index.tsx +113 -113
  235. package/src/Invoice/ui/digtal/GoodsList/ui/TaxIncludedSwitch/index.tsx +34 -34
  236. package/src/Invoice/ui/digtal/InvoiceHeader/index.less +57 -57
  237. package/src/Invoice/ui/digtal/InvoiceHeader/index.tsx +77 -77
  238. package/src/Invoice/ui/digtal/PayList/hook/useColumns/dist/index.js +616 -616
  239. package/src/Invoice/ui/digtal/PayList/hook/useColumns/index.tsx +168 -168
  240. package/src/Invoice/ui/digtal/PayList/hook/useColumns/ui/TitleText/index.tsx +20 -20
  241. package/src/Invoice/ui/digtal/PayList/hook/useOnRow/index.tsx +37 -37
  242. package/src/Invoice/ui/digtal/PayList/hook/useRowSelection/index.tsx +119 -119
  243. package/src/Invoice/ui/digtal/PayList/hook/useWindowClick/index.tsx +19 -19
  244. package/src/Invoice/ui/digtal/PayList/index.less +72 -72
  245. package/src/Invoice/ui/digtal/PayList/index.tsx +132 -132
  246. package/src/Invoice/ui/digtal/PayList/ui/AddRowButton/index.tsx +74 -74
  247. package/src/Invoice/ui/digtal/PayList/ui/BulkMenu/hooks/useDelRowButton/index.tsx +50 -50
  248. package/src/Invoice/ui/digtal/PayList/ui/BulkMenu/hooks/useEmptyRefill/index.tsx +36 -36
  249. package/src/Invoice/ui/digtal/PayList/ui/TableRow/index.less +28 -28
  250. package/src/Invoice/ui/digtal/PayList/ui/TableRow/index.tsx +20 -20
  251. package/src/Invoice/ui/digtal/PayList/ui/TableVirtual/index.less +38 -38
  252. package/src/Invoice/ui/digtal/PayList/ui/TableVirtual/index.tsx +108 -108
  253. package/src/Invoice/ui/digtal/RealEstateInfo/index.less +21 -21
  254. package/src/Invoice/ui/digtal/RealEstateInfo/index.tsx +451 -451
  255. package/src/Invoice/ui/digtal/Sign/index.less +48 -48
  256. package/src/Invoice/ui/digtal/Sign/index.tsx +99 -99
  257. package/src/Invoice/ui/digtal/StakeFarmerholder/index.less +99 -99
  258. package/src/Invoice/ui/digtal/StakeFarmerholder/index.tsx +1102 -1096
  259. package/src/Invoice/ui/digtal/StakeFarmerholder/svg/arrowDown.svg +2 -2
  260. package/src/Invoice/ui/digtal/StakeFarmerholder/svg/arrowUp.svg +2 -2
  261. package/src/Invoice/ui/digtal/StakeFarmerholder/svg/plus.svg +11 -11
  262. package/src/Invoice/ui/digtal/Stakeholder/index.less +99 -99
  263. package/src/Invoice/ui/digtal/Stakeholder/index.tsx +453 -453
  264. package/src/Invoice/ui/digtal/Stakeholder/svg/arrowDown.svg +2 -2
  265. package/src/Invoice/ui/digtal/Stakeholder/svg/arrowUp.svg +2 -2
  266. package/src/Invoice/ui/digtal/Stakeholder/svg/plus.svg +11 -11
  267. package/src/InvoiceTypeModal/_test/easiest/index.tsx +31 -31
  268. package/src/InvoiceTypeModal/dist/index.js +92 -92
  269. package/src/InvoiceTypeModal/index.less +7 -7
  270. package/src/InvoiceTypeModal/index.md +5 -5
  271. package/src/InvoiceTypeModal/index.tsx +161 -161
  272. package/src/TaxClassificationCodeModal/_test/easiest/index.tsx +184 -184
  273. package/src/TaxClassificationCodeModal/index.less +17 -17
  274. package/src/TaxClassificationCodeModal/index.md +6 -6
  275. package/src/TaxClassificationCodeModal/index.tsx +152 -152
  276. package/src/index.ts +13 -13
  277. package/tsconfig.json +31 -31
  278. package/typings.d.ts +3 -3
@@ -1,1159 +1,1159 @@
1
- import React from 'react';
2
- import Invoice from '../..';
3
- import idGenerator from '../../tools/idGenerator';
4
- import { LineAttributeType } from '../../InvoiceController';
5
- import { Button, Switch } from 'kts-components-antd-x3';
6
-
7
- export default () => {
8
- const controller1 = React.useMemo(() => new MyController1(), []);
9
-
10
- const controller2 = React.useMemo(() => new MyController2(), []);
11
-
12
- const [controller, setController] = React.useState(controller1)
13
-
14
- const onClick1 = React.useCallback(() => {
15
- controller.pipeline(async (s) => {
16
- s.goodsListState.goodsList = goodsList.slice();
17
- })();
18
- }, [controller]);
19
-
20
- const onClick5 = React.useCallback(() => {
21
- controller.pipeline(async (s) => {
22
- s.goodsListState.goodsList = goodsList.slice(0, 500);
23
- })();
24
- }, [controller]);
25
-
26
- const onClick2 = React.useCallback(() => {
27
- controller.pipeline(async (s) => {
28
- s.goodsListState.goodsList = lines.map(e => {
29
- return {
30
- $index: idGenerator(),
31
- ...e,
32
- }
33
- });
34
- })();
35
- }, [controller]);
36
-
37
- const onClick6 = React.useCallback(async () => {
38
- console.log('===> 当前组件状态', await controller.validateFields());
39
- }, []);
40
-
41
- return (
42
- <div>
43
- <Button onClick={onClick1} style={{ marginBottom: 20 }}>
44
- 载入1W数据
45
- </Button>
46
- <Button onClick={onClick5} style={{ marginBottom: 20 }}>
47
- 载入500数据
48
- </Button>
49
- <Button onClick={onClick2} style={{ marginBottom: 20 }}>
50
- 模拟生成数据
51
- </Button>
52
- <Button onClick={onClick6} style={{ marginBottom: 10 }}>获取数据</Button>
53
- <Switch checkedChildren="预制" unCheckedChildren="默认" onChange={e => { e ? setController(controller2) : setController(controller1) }} ></Switch>
54
- <Button onClick={controller.pipeline(async s => { s.goodsListState.endowCode.getReadOnlyTaxRate = s.goodsListState.endowCode.readOnlyTaxRateMap.DRAFT })} >税率(草稿)</Button>
55
- <Button onClick={controller.pipeline(async s => { s.goodsListState.endowCode.getReadOnlyTaxRate = () => true })} >税率(预制)</Button>
56
- <Invoice controller={controller} />
57
- </div>
58
- );
59
- };
60
-
61
- // 税收分类编码列表
62
- class MyController1 extends Invoice.InvoiceController {
63
-
64
- constructor() {
65
- super()
66
- this.state.model = 'default'
67
- this.state.goodsListState.isMergeDetails = true;
68
- this.state.goodsListState.isSalesDiscount = true;
69
- this.state.goodsListState.isMergeDiscount = true;
70
- this.state.goodsListState.isSalesGifts = true;
71
- this.state.goodsListState.drag.isStart = true;
72
- this.state.calculatingDigits = 15;
73
- this.state.goodsListState.columnshide = [];
74
- }
75
-
76
- getTaxCategoryCodeList = this.pipeline(async (s) => {
77
- console.log('===> 准备赋码的货物索引列表', s.goodsListState.endowCode.endowcodeGoodIndex);
78
- s.goodsListState.endowCode.getTaxCategoryCodeTree = async (taxCategoryCode?: string | undefined, val?: string | undefined) => {
79
- if (!taxCategoryCode && !val) return [];
80
- return moke.map(e => {
81
- return {
82
- label: `${e.taxCategoryCode}-${e.shorthand}`,
83
- shorthand: e.shorthand,
84
- id: e.taxCategoryCode,
85
- pid: e.pid
86
- }
87
- })
88
- };;
89
- });
90
- }
91
-
92
-
93
- class MyController2 extends Invoice.InvoiceController {
94
-
95
- constructor() {
96
- super()
97
- this.state.model = 'prefab'
98
- this.state.goodsListState.isMergeDetails = true;
99
- this.state.goodsListState.isSalesDiscount = true;
100
- this.state.goodsListState.isMergeDiscount = true;
101
- this.state.goodsListState.isSalesGifts = true;
102
- this.state.goodsListState.drag.isStart = true;
103
- this.state.calculatingDigits = 15;
104
- this.state.goodsListState.columnshide = [];
105
- }
106
-
107
- getTaxCategoryCodeList = this.pipeline(async (s) => {
108
- console.log('===> 准备赋码的货物索引列表', s.goodsListState.endowCode.endowcodeGoodIndex);
109
-
110
- s.goodsListState.endowCode.getTaxCategoryCodeList = async (value) => {
111
- console.log('===>搜索条件', value);
112
- return [
113
- { label: '3040201990000000000/aaa/bbb', value: '3040201990000000000', taxRate: 3, shorthand: 'aaa' },
114
- { label: '3040201990000000001/aaa/bbb', value: '3040201990000000001', taxRate: 3, shorthand: 'aaa' },
115
- { label: '3040201990000000002/aaa/bbb', value: '3040201990000000002', taxRate: 3, shorthand: 'aaa' },
116
- { label: '3040201990000000003/aaa/bbb', value: '3040201990000000003', taxRate: 3, shorthand: 'aaa' },
117
- { label: '3040201990000000004/aaa/bbb', value: '3040201990000000004', taxRate: 3, shorthand: 'aaa' },
118
- { label: '3040201990000000005/aaa/bbb', value: '3040201990000000005', taxRate: 3, shorthand: 'aaa' },
119
- { label: '3040201990000000006/aaa/bbb', value: '3040201990000000006', taxRate: 3, shorthand: 'aaa' },
120
- { label: '3040201990000000007/aaa/bbb', value: '3040201990000000007', taxRate: 3, shorthand: 'aaa' },
121
- { label: '3040201990000000008/aaa/bbb', value: '3040201990000000008', taxRate: 3, shorthand: 'aaa' },
122
- { label: '3040201990000000009/aaa/bbb', value: '3040201990000000009', taxRate: 3, shorthand: 'aaa' },
123
- { label: '3040201990000000010/aaa/bbb', value: '3040201990000000010', taxRate: 3, shorthand: 'aaa' },
124
- { label: '3040201990000000011/aaa/bbb', value: '3040201990000000011', taxRate: 3, shorthand: 'aaa' },
125
- ]
126
- };
127
- });
128
- }
129
-
130
- const goodsList: any[] = [];
131
- for (let i = 0; i <= 10000; i++) {
132
- goodsList.push({
133
- $index: idGenerator(),
134
- itemName: `项目名称${i}`,
135
- lineAttribute: LineAttributeType.正常,
136
- lineAmountExcludeTax: 9.99,
137
- lineAmountIncludeTax: 10.29,
138
- taxRate: 3,
139
- taxAmount: 0.3,
140
- });
141
- }
142
-
143
- const lines: any[] = [
144
- {
145
- "serialNumber": "1714491422279110656",
146
- "lineNumber": 1,
147
- "taxCode": "3070401000000000000",
148
- "taxName": "信息技术服务",
149
- "specification": null,
150
- "itemName": "技术服务费",
151
- "itemCode": "z",
152
- "unit": "套",
153
- "quantity": 1.0000000000001,
154
- "taxRate": 0.06,
155
- "priceExcludeTax": 0.0000000000001,
156
- "priceIncludeTax": 2.12,
157
- "amountTax": 0.3,
158
- "lineAmountExcludeTax": 5,
159
- "lineAmountIncludeTax": 5.3,
160
- "lineAttribute": LineAttributeType.被折扣行,
161
- "discountGroup": "1714491422291693568",
162
- "favouredPolicyMark": false,
163
- "favouredPolicyName": null,
164
- "zeroTaxRateFlag": null,
165
- "referenceLines": null,
166
- "version": 0,
167
- "taxAmount": 1
168
- },
169
- {
170
- "serialNumber": "1714491422279110656",
171
- "lineNumber": 2,
172
- "taxCode": "3070401000000000000",
173
- "taxName": "信息技术服务",
174
- "specification": "",
175
- "itemName": "技术服务费",
176
- "itemCode": "z",
177
- "unit": "",
178
- "quantity": -1,
179
- "taxRate": 0.06,
180
- "priceExcludeTax": null,
181
- "priceIncludeTax": null,
182
- "amountTax": -0.06,
183
- "lineAmountExcludeTax": 2,
184
- "lineAmountIncludeTax": 2.3,
185
- "lineAttribute": LineAttributeType.折扣行,
186
- "discountGroup": "1714491422291693568",
187
- "favouredPolicyMark": false,
188
- "favouredPolicyName": null,
189
- "zeroTaxRateFlag": null,
190
- "referenceLines": null,
191
- "version": 0,
192
- "taxAmount": 1
193
- },
194
- {
195
- "serialNumber": "1714491422279110656",
196
- "lineNumber": 3,
197
- "taxCode": "3070401000000000000",
198
- "taxName": "信息技术服务",
199
- "specification": null,
200
- "itemName": "技术服务费",
201
- "itemCode": "z",
202
- "unit": "套",
203
- "quantity": 1,
204
- "taxRate": 0.06,
205
- "priceExcludeTax": 2,
206
- "priceIncludeTax": 2.12,
207
- "amountTax": 0.12,
208
- "lineAmountExcludeTax": 5,
209
- "lineAmountIncludeTax": 5.3,
210
- "lineAttribute": LineAttributeType.正常,
211
- "discountGroup": null,
212
- "favouredPolicyMark": false,
213
- "favouredPolicyName": null,
214
- "zeroTaxRateFlag": null,
215
- "referenceLines": null,
216
- "version": 0,
217
- "taxAmount": 1
218
- },
219
- {
220
- "serialNumber": "1714491422279110656",
221
- "lineNumber": 3,
222
- "taxCode": "3070401000000000000",
223
- "taxName": "信息技术服务",
224
- "specification": null,
225
- "itemName": "技术服务费",
226
- "itemCode": "z",
227
- "unit": "套",
228
- "quantity": 1,
229
- "taxRate": 0.06,
230
- "priceExcludeTax": 2,
231
- "priceIncludeTax": 2.12,
232
- "amountTax": 0.12,
233
- "lineAmountExcludeTax": 5,
234
- "lineAmountIncludeTax": 5.3,
235
- "lineAttribute": LineAttributeType.折让行,
236
- "discountGroup": null,
237
- "favouredPolicyMark": false,
238
- "favouredPolicyName": null,
239
- "zeroTaxRateFlag": null,
240
- "referenceLines": null,
241
- "version": 0,
242
- "taxAmount": 1
243
- },
244
- {
245
- "serialNumber": "1714491422279110656",
246
- "lineNumber": 3,
247
- "taxCode": "3070401000000000000",
248
- "taxName": "信息技术服务",
249
- "specification": null,
250
- "itemName": "技术服务费",
251
- "itemCode": "z",
252
- "unit": "套",
253
- "quantity": 1,
254
- "taxRate": 0.06,
255
- "priceExcludeTax": 2,
256
- "priceIncludeTax": 2.12,
257
- "amountTax": 0.12,
258
- "lineAmountExcludeTax": 5,
259
- "lineAmountIncludeTax": 5.3,
260
- "lineAttribute": LineAttributeType.折让行,
261
- "discountGroup": null,
262
- "favouredPolicyMark": false,
263
- "favouredPolicyName": null,
264
- "zeroTaxRateFlag": null,
265
- "referenceLines": null,
266
- "version": 0,
267
- "taxAmount": 1
268
- },
269
- {
270
- "serialNumber": "1714491422279110656",
271
- "lineNumber": 3,
272
- "taxCode": "3070401000000000000",
273
- "taxName": "信息技术服务",
274
- "specification": null,
275
- "itemName": "技术服务费",
276
- "itemCode": "z",
277
- "unit": "套",
278
- "quantity": 1,
279
- "taxRate": 0.06,
280
- "priceExcludeTax": 2,
281
- "priceIncludeTax": 2.12,
282
- "amountTax": 0.12,
283
- "lineAmountExcludeTax": 5,
284
- "lineAmountIncludeTax": 5.3,
285
- "lineAttribute": LineAttributeType.赠品行,
286
- "discountGroup": null,
287
- "favouredPolicyMark": false,
288
- "favouredPolicyName": null,
289
- "zeroTaxRateFlag": null,
290
- "referenceLines": null,
291
- "version": 0,
292
- "shorthand": "布料",
293
- "taxAmount": 1
294
- }
295
- ]
296
-
297
- const moke = [
298
- {
299
- "bbh": "34.0",
300
- "createTime": "2019-09-12 08:54:16.0",
301
- "gjz": "稻谷、早籼稻、晚籼稻、中籼稻、粳稻、糯稻",
302
- "gxsj": "20200601",
303
- "hzx": "N",
304
- "id": 50550,
305
- "pid": "1010101000000000000",
306
- "productName": "稻谷",
307
- "qysj": "20190401",
308
- "shorthand": "谷物",
309
- "sm": "包括早籼稻、晚籼稻、中籼稻、粳稻、糯稻、其他稻谷。",
310
- "specification": null,
311
- "ssflbbh": "32.0",
312
- "statusDesc": null,
313
- "taxCategoryCode": "1010101010000000000",
314
- "updateTime": "2021-08-17 15:12:33.0",
315
- "zzssl": "9%",
316
- "zzstsgl": "免税",
317
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
318
- },
319
- {
320
- "bbh": "34.0",
321
- "createTime": "2019-09-12 08:54:16.0",
322
- "gjz": "小麦、硬质小麦、软质小麦",
323
- "gxsj": "20200601",
324
- "hzx": "N",
325
- "id": 50551,
326
- "pid": "1010101000000000000",
327
- "productName": "小麦",
328
- "qysj": "20190401",
329
- "shorthand": "谷物",
330
- "sm": "包括硬质小麦、软质小麦、其他小麦。",
331
- "specification": null,
332
- "ssflbbh": "32.0",
333
- "statusDesc": null,
334
- "taxCategoryCode": "1010101020000000000",
335
- "updateTime": "2021-08-17 15:12:22.0",
336
- "zzssl": "9%",
337
- "zzstsgl": "免税",
338
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
339
- },
340
- {
341
- "bbh": "34.0",
342
- "createTime": "2019-09-12 08:54:16.0",
343
- "gjz": "玉米、白玉米、黄玉米、糯玉米、甜玉米",
344
- "gxsj": "20200601",
345
- "hzx": "N",
346
- "id": 50552,
347
- "pid": "1010101000000000000",
348
- "productName": "玉米",
349
- "qysj": "20190401",
350
- "shorthand": "谷物",
351
- "sm": "包括白玉米、黄玉米、糯玉米、甜玉米、其他玉米。",
352
- "specification": null,
353
- "ssflbbh": "32.0",
354
- "statusDesc": null,
355
- "taxCategoryCode": "1010101030000000000",
356
- "updateTime": "2021-08-17 15:12:27.0",
357
- "zzssl": "9%",
358
- "zzstsgl": "免税",
359
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)、《财政部、国家税务总局关于免征蔬菜流通环节增值税有关问题的通知》(财税〔2011〕137号)"
360
- },
361
- {
362
- "bbh": "34.0",
363
- "createTime": "2019-09-12 08:54:16.0",
364
- "gjz": "谷子、硬谷子、糯谷子",
365
- "gxsj": "20200601",
366
- "hzx": "N",
367
- "id": 50553,
368
- "pid": "1010101000000000000",
369
- "productName": "谷子",
370
- "qysj": "20190401",
371
- "shorthand": "谷物",
372
- "sm": "包括硬谷子、糯谷子、其他谷子。",
373
- "specification": null,
374
- "ssflbbh": "32.0",
375
- "statusDesc": null,
376
- "taxCategoryCode": "1010101040000000000",
377
- "updateTime": "2021-08-17 15:12:12.0",
378
- "zzssl": "9%",
379
- "zzstsgl": "免税",
380
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
381
- },
382
- {
383
- "bbh": "34.0",
384
- "createTime": "2019-09-12 08:54:16.0",
385
- "gjz": "高粱、红粒高粱、白粒高粱、糯高粱",
386
- "gxsj": "20200601",
387
- "hzx": "N",
388
- "id": 50554,
389
- "pid": "1010101000000000000",
390
- "productName": "高粱",
391
- "qysj": "20190401",
392
- "shorthand": "谷物",
393
- "sm": "包括红粒高粱、白粒高粱、糯高粱、其他高粱。",
394
- "specification": null,
395
- "ssflbbh": "32.0",
396
- "statusDesc": null,
397
- "taxCategoryCode": "1010101050000000000",
398
- "updateTime": "2021-08-17 15:12:30.0",
399
- "zzssl": "9%",
400
- "zzstsgl": "免税",
401
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
402
- },
403
- {
404
- "bbh": "34.0",
405
- "createTime": "2019-09-12 08:54:16.0",
406
- "gjz": "大麦、裸大麦、皮大麦",
407
- "gxsj": "20200601",
408
- "hzx": "N",
409
- "id": 50555,
410
- "pid": "1010101000000000000",
411
- "productName": "大麦",
412
- "qysj": "20190401",
413
- "shorthand": "谷物",
414
- "sm": "包括裸大麦、皮大麦。",
415
- "specification": null,
416
- "ssflbbh": "32.0",
417
- "statusDesc": null,
418
- "taxCategoryCode": "1010101060000000000",
419
- "updateTime": "2021-08-17 15:12:08.0",
420
- "zzssl": "9%",
421
- "zzstsgl": "免税",
422
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
423
- },
424
- {
425
- "bbh": "34.0",
426
- "createTime": "2019-09-12 08:54:16.0",
427
- "gjz": "裸燕麦、皮燕麦",
428
- "gxsj": "20200601",
429
- "hzx": "N",
430
- "id": 50556,
431
- "pid": "1010101000000000000",
432
- "productName": "燕麦",
433
- "qysj": "20190401",
434
- "shorthand": "谷物",
435
- "sm": "包括裸燕麦、皮燕麦。",
436
- "specification": null,
437
- "ssflbbh": "32.0",
438
- "statusDesc": null,
439
- "taxCategoryCode": "1010101070000000000",
440
- "updateTime": "2021-08-17 15:12:29.0",
441
- "zzssl": "9%",
442
- "zzstsgl": "免税",
443
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
444
- },
445
- {
446
- "bbh": "34.0",
447
- "createTime": "2019-09-12 08:54:16.0",
448
- "gjz": "黑麦",
449
- "gxsj": "20200601",
450
- "hzx": "N",
451
- "id": 50557,
452
- "pid": "1010101000000000000",
453
- "productName": "黑麦",
454
- "qysj": "20190401",
455
- "shorthand": "谷物",
456
- "sm": "",
457
- "specification": null,
458
- "ssflbbh": "32.0",
459
- "statusDesc": null,
460
- "taxCategoryCode": "1010101080000000000",
461
- "updateTime": "2021-08-17 15:12:11.0",
462
- "zzssl": "9%",
463
- "zzstsgl": "免税",
464
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
465
- },
466
- {
467
- "bbh": "34.0",
468
- "createTime": "2019-09-12 08:54:16.0",
469
- "gjz": "荞麦、甜荞麦、苦荞麦",
470
- "gxsj": "20200601",
471
- "hzx": "N",
472
- "id": 50558,
473
- "pid": "1010101000000000000",
474
- "productName": "荞麦",
475
- "qysj": "20190401",
476
- "shorthand": "谷物",
477
- "sm": "包括甜荞麦、苦荞麦。",
478
- "specification": null,
479
- "ssflbbh": "32.0",
480
- "statusDesc": null,
481
- "taxCategoryCode": "1010101090000000000",
482
- "updateTime": "2021-08-17 15:12:30.0",
483
- "zzssl": "9%",
484
- "zzstsgl": "免税",
485
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
486
- },
487
- {
488
- "bbh": "34.0",
489
- "createTime": "2019-09-12 08:54:16.0",
490
- "gjz": "糜子、硬糜子、糯糜子、紫米、薏苡",
491
- "gxsj": "20200601",
492
- "hzx": "N",
493
- "id": 50559,
494
- "pid": "1010101000000000000",
495
- "productName": "其他谷物",
496
- "qysj": "20190401",
497
- "shorthand": "谷物",
498
- "sm": "包括糜子(硬糜子、糯糜子)、紫米、薏苡等。",
499
- "specification": null,
500
- "ssflbbh": "32.0",
501
- "statusDesc": null,
502
- "taxCategoryCode": "1010101990000000000",
503
- "updateTime": "2021-08-17 15:12:19.0",
504
- "zzssl": "9%",
505
- "zzstsgl": "免税",
506
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
507
- },
508
- {
509
- "bbh": "34.0",
510
- "createTime": "2019-09-12 08:54:16.0",
511
- "gjz": "种用谷物、种用皮大麦、种用裸大麦、种用糯高粱、种用红粒高粱、种用白粒高粱、种用甜玉米、种用糯玉米、种用黄玉米、种用白玉米、种用硬质小麦、种用软质小麦、种用中籼稻、种用早籼稻、种用晚籼稻、种用糯稻、种用粳稻",
512
- "gxsj": "20200601",
513
- "hzx": "N",
514
- "id": 50683,
515
- "pid": "1010119000000000000",
516
- "productName": "种用谷物",
517
- "qysj": "20190401",
518
- "shorthand": "种子种苗",
519
- "sm": "包括种用硬质小麦、种用甜玉米、种用软质小麦、种用皮大麦、种用糯玉米、种用糯高粱、种用裸大麦、种用黄玉米、种用红粒高粱、种用白玉米、种用白粒高粱、其他种用玉米、其他种用小麦、其他种用高粱、种用中籼稻、种用早籼稻、种用晚籼稻、种用糯稻、种用粳稻、其他种用稻谷。",
520
- "specification": null,
521
- "ssflbbh": "32.0",
522
- "statusDesc": null,
523
- "taxCategoryCode": "1010119010000000000",
524
- "updateTime": "2021-08-17 15:12:24.0",
525
- "zzssl": "9%",
526
- "zzstsgl": "免税",
527
- "zzszcyj": "《财政部、国家税务总局关于若干农业生产资料征免增值税政策的通知》(财税〔2001〕113号)"
528
- },
529
- {
530
- "bbh": "34.0",
531
- "createTime": "2019-09-12 08:54:16.0",
532
- "gjz": "小麦粉、小麦专用粉、小麦自发粉",
533
- "gxsj": "20200601",
534
- "hzx": "N",
535
- "id": 50923,
536
- "pid": "1030101000000000000",
537
- "productName": "小麦粉",
538
- "qysj": "20190401",
539
- "shorthand": "谷物细粉",
540
- "sm": "",
541
- "specification": null,
542
- "ssflbbh": "32.0",
543
- "statusDesc": null,
544
- "taxCategoryCode": "1030101010000000000",
545
- "updateTime": "2021-08-17 15:12:14.0",
546
- "zzssl": "9%",
547
- "zzstsgl": "免税",
548
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
549
- },
550
- {
551
- "bbh": "34.0",
552
- "createTime": "2019-09-12 08:54:16.0",
553
- "gjz": "大米粉、籼米细粉、粳米细粉",
554
- "gxsj": "20200601",
555
- "hzx": "N",
556
- "id": 50924,
557
- "pid": "1030101000000000000",
558
- "productName": "大米粉",
559
- "qysj": "20190401",
560
- "shorthand": "谷物细粉",
561
- "sm": "",
562
- "specification": null,
563
- "ssflbbh": "32.0",
564
- "statusDesc": null,
565
- "taxCategoryCode": "1030101020000000000",
566
- "updateTime": "2021-08-17 15:12:08.0",
567
- "zzssl": "9%",
568
- "zzstsgl": "免税",
569
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
570
- },
571
- {
572
- "bbh": "34.0",
573
- "createTime": "2019-09-12 08:54:16.0",
574
- "gjz": "玉米细粉、糯米细粉、荞麦细粉、黑麦细粉、莜麦细粉、高粱细粉、大麦细粉",
575
- "gxsj": "20200601",
576
- "hzx": "N",
577
- "id": 50925,
578
- "pid": "1030101000000000000",
579
- "productName": "其他谷物细粉",
580
- "qysj": "20190401",
581
- "shorthand": "谷物细粉",
582
- "sm": "",
583
- "specification": null,
584
- "ssflbbh": "32.0",
585
- "statusDesc": null,
586
- "taxCategoryCode": "1030101990000000000",
587
- "updateTime": "2021-08-17 15:12:08.0",
588
- "zzssl": "9%",
589
- "zzstsgl": "免税",
590
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
591
- },
592
- {
593
- "bbh": "34.0",
594
- "createTime": "2019-09-12 08:54:16.0",
595
- "gjz": "籼米、粳米",
596
- "gxsj": "20200601",
597
- "hzx": "N",
598
- "id": 50928,
599
- "pid": "1030102010000000000",
600
- "productName": "大米",
601
- "qysj": "20190401",
602
- "shorthand": "谷物加工品",
603
- "sm": "",
604
- "specification": null,
605
- "ssflbbh": "32.0",
606
- "statusDesc": null,
607
- "taxCategoryCode": "1030102010100000000",
608
- "updateTime": "2021-08-17 15:12:11.0",
609
- "zzssl": "9%",
610
- "zzstsgl": "免税",
611
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
612
- },
613
- {
614
- "bbh": "34.0",
615
- "createTime": "2019-09-12 08:54:16.0",
616
- "gjz": "大米",
617
- "gxsj": "20200601",
618
- "hzx": "N",
619
- "id": 50929,
620
- "pid": "1030102010000000000",
621
- "productName": "小米",
622
- "qysj": "20190401",
623
- "shorthand": "谷物加工品",
624
- "sm": "",
625
- "specification": null,
626
- "ssflbbh": "32.0",
627
- "statusDesc": null,
628
- "taxCategoryCode": "1030102010200000000",
629
- "updateTime": "2021-08-17 15:12:25.0",
630
- "zzssl": "9%",
631
- "zzstsgl": "免税",
632
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
633
- },
634
- {
635
- "bbh": "34.0",
636
- "createTime": "2019-09-12 08:54:16.0",
637
- "gjz": "糯米",
638
- "gxsj": "20200601",
639
- "hzx": "N",
640
- "id": 50930,
641
- "pid": "1030102010000000000",
642
- "productName": "糯米",
643
- "qysj": "20190401",
644
- "shorthand": "谷物加工品",
645
- "sm": "",
646
- "specification": null,
647
- "ssflbbh": "32.0",
648
- "statusDesc": null,
649
- "taxCategoryCode": "1030102010300000000",
650
- "updateTime": "2021-08-17 15:12:14.0",
651
- "zzssl": "9%",
652
- "zzstsgl": "免税",
653
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
654
- },
655
- {
656
- "bbh": "34.0",
657
- "createTime": "2019-09-12 08:54:16.0",
658
- "gjz": "高粱米",
659
- "gxsj": "20200601",
660
- "hzx": "N",
661
- "id": 50931,
662
- "pid": "1030102010000000000",
663
- "productName": "高粱米",
664
- "qysj": "20190401",
665
- "shorthand": "谷物加工品",
666
- "sm": "",
667
- "specification": null,
668
- "ssflbbh": "32.0",
669
- "statusDesc": null,
670
- "taxCategoryCode": "1030102010400000000",
671
- "updateTime": "2021-08-17 15:12:13.0",
672
- "zzssl": "9%",
673
- "zzstsgl": "免税",
674
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
675
- },
676
- {
677
- "bbh": "34.0",
678
- "createTime": "2019-09-12 08:54:16.0",
679
- "gjz": "脱壳燕麦",
680
- "gxsj": "20200601",
681
- "hzx": "N",
682
- "id": 50932,
683
- "pid": "1030102010000000000",
684
- "productName": "脱壳燕麦",
685
- "qysj": "20190401",
686
- "shorthand": "谷物加工品",
687
- "sm": "指已脱壳但未去皮的燕麦。",
688
- "specification": null,
689
- "ssflbbh": "32.0",
690
- "statusDesc": null,
691
- "taxCategoryCode": "1030102010500000000",
692
- "updateTime": "2021-08-17 15:12:06.0",
693
- "zzssl": "9%",
694
- "zzstsgl": "免税",
695
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
696
- },
697
- {
698
- "bbh": "34.0",
699
- "createTime": "2019-09-12 08:54:16.0",
700
- "gjz": "脱壳青稞",
701
- "gxsj": "20200601",
702
- "hzx": "N",
703
- "id": 50933,
704
- "pid": "1030102010000000000",
705
- "productName": "脱壳青稞",
706
- "qysj": "20190401",
707
- "shorthand": "谷物加工品",
708
- "sm": "",
709
- "specification": null,
710
- "ssflbbh": "32.0",
711
- "statusDesc": null,
712
- "taxCategoryCode": "1030102010600000000",
713
- "updateTime": "2021-08-17 15:12:11.0",
714
- "zzssl": "9%",
715
- "zzstsgl": "免税",
716
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
717
- },
718
- {
719
- "bbh": "34.0",
720
- "createTime": "2019-09-12 08:54:16.0",
721
- "gjz": "珠粒大麦",
722
- "gxsj": "20200601",
723
- "hzx": "N",
724
- "id": 50934,
725
- "pid": "1030102010000000000",
726
- "productName": "珠粒大麦",
727
- "qysj": "20190401",
728
- "shorthand": "谷物加工品",
729
- "sm": "",
730
- "specification": null,
731
- "ssflbbh": "32.0",
732
- "statusDesc": null,
733
- "taxCategoryCode": "1030102010700000000",
734
- "updateTime": "2021-08-17 15:12:12.0",
735
- "zzssl": "9%",
736
- "zzstsgl": "免税",
737
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
738
- },
739
- {
740
- "bbh": "34.0",
741
- "createTime": "2019-09-12 08:54:16.0",
742
- "gjz": "",
743
- "gxsj": "20200601",
744
- "hzx": "N",
745
- "id": 50935,
746
- "pid": "1030102010000000000",
747
- "productName": "其他碾磨、脱壳谷物",
748
- "qysj": "20190401",
749
- "shorthand": "谷物加工品",
750
- "sm": "",
751
- "specification": null,
752
- "ssflbbh": "32.0",
753
- "statusDesc": null,
754
- "taxCategoryCode": "1030102019900000000",
755
- "updateTime": "2021-08-17 15:12:21.0",
756
- "zzssl": "9%",
757
- "zzstsgl": "免税",
758
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
759
- },
760
- {
761
- "bbh": "34.0",
762
- "createTime": "2019-09-12 08:54:16.0",
763
- "gjz": "小麦粗磨、大米粗磨、玉米粗磨、燕麦粗磨",
764
- "gxsj": "20200601",
765
- "hzx": "N",
766
- "id": 50936,
767
- "pid": "1030102000000000000",
768
- "productName": "粗磨谷物",
769
- "qysj": "20190401",
770
- "shorthand": "谷物加工品",
771
- "sm": "包括谷物去壳谷粉、粗粉及团粒。",
772
- "specification": null,
773
- "ssflbbh": "32.0",
774
- "statusDesc": null,
775
- "taxCategoryCode": "1030102020000000000",
776
- "updateTime": "2021-08-17 15:12:15.0",
777
- "zzssl": "9%",
778
- "zzstsgl": "免税",
779
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
780
- },
781
- {
782
- "bbh": "34.0",
783
- "createTime": "2019-09-12 08:54:16.0",
784
- "gjz": "燕麦片、大麦片、玉米片、谷物胚芽",
785
- "gxsj": "20200601",
786
- "hzx": "N",
787
- "id": 50937,
788
- "pid": "1030102000000000000",
789
- "productName": "谷物加工制品",
790
- "qysj": "20190401",
791
- "shorthand": "谷物加工品",
792
- "sm": "包括燕麦片、大麦片、玉米片,谷物胚芽等。",
793
- "specification": null,
794
- "ssflbbh": "32.0",
795
- "statusDesc": null,
796
- "taxCategoryCode": "1030102030000000000",
797
- "updateTime": "2021-08-17 15:12:19.0",
798
- "zzssl": "13%、9%",
799
- "zzstsgl": "免税",
800
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
801
- },
802
- {
803
- "bbh": "34.0",
804
- "createTime": "2019-09-12 08:54:16.0",
805
- "gjz": "谷物制品类罐头、甜玉米罐头、米粥罐头、米饭罐头、八宝粥罐头、蔬菜粥罐头、八宝饭罐头",
806
- "gxsj": "20200601",
807
- "hzx": "N",
808
- "id": 51065,
809
- "pid": "1030205000000000000",
810
- "productName": "谷物制品类罐头",
811
- "qysj": "20190401",
812
- "shorthand": "罐头",
813
- "sm": "指经过处理后的谷类、干果及其他原料(桂圆、枸杞、蔬菜等)装罐制成的罐头产品",
814
- "specification": null,
815
- "ssflbbh": "32.0",
816
- "statusDesc": null,
817
- "taxCategoryCode": "1030205080000000000",
818
- "updateTime": "2021-08-17 15:12:25.0",
819
- "zzssl": "13%",
820
- "zzstsgl": "",
821
- "zzszcyj": ""
822
- },
823
- {
824
- "bbh": "34.0",
825
- "createTime": "2019-09-12 08:54:16.0",
826
- "gjz": "谷物磨粉工业用筛、谷物磨粉工业用筛架、混合滚筒、分离滚筒、谷物磨粉机的滚筒、谷物磨粉机的变换器、谷物磨粉工业用机械零件",
827
- "gxsj": "20200601",
828
- "hzx": "N",
829
- "id": 53402,
830
- "pid": "1090220000000000000",
831
- "productName": "谷物磨粉工业用机械零件",
832
- "qysj": "20190401",
833
- "shorthand": "食品制造机械",
834
- "sm": "包括谷物磨粉工业用筛及筛架、混合或分离滚筒、谷物磨粉机的滚筒或变换器、其他谷物磨粉工业用机械零件",
835
- "specification": null,
836
- "ssflbbh": "32.0",
837
- "statusDesc": null,
838
- "taxCategoryCode": "1090220050000000000",
839
- "updateTime": "2021-08-17 15:12:11.0",
840
- "zzssl": "13%",
841
- "zzstsgl": "",
842
- "zzszcyj": ""
843
- },
844
- {
845
- "bbh": "34.0",
846
- "createTime": "2019-09-12 08:54:16.0",
847
- "gjz": "",
848
- "gxsj": "20200601",
849
- "hzx": "Y",
850
- "id": 50549,
851
- "pid": "1010100000000000000",
852
- "productName": "谷物",
853
- "qysj": "20190401",
854
- "shorthand": "谷物",
855
- "sm": "包括稻谷、小麦、玉米、谷子、高粱、大麦、燕麦、黑麦、荞麦、其他谷物,不包括种用谷物(详见101011901)。",
856
- "specification": null,
857
- "ssflbbh": "32.0",
858
- "statusDesc": null,
859
- "taxCategoryCode": "1010101000000000000",
860
- "updateTime": "2021-08-17 15:12:22.0",
861
- "zzssl": "",
862
- "zzstsgl": "",
863
- "zzszcyj": ""
864
- },
865
- {
866
- "bbh": "34.0",
867
- "createTime": "2019-09-12 08:54:16.0",
868
- "gjz": "种子、种苗、种用谷物、种用薯类、种用油料、种用豆类、种用饲料作物、蔬菜籽、花草种、水果籽",
869
- "gxsj": "20200601",
870
- "hzx": "Y",
871
- "id": 50682,
872
- "pid": "1010100000000000000",
873
- "productName": "种子、种苗",
874
- "qysj": "20190401",
875
- "shorthand": "种子种苗",
876
- "sm": "包括种用谷物、种用薯类、种用油料、种用豆类、种用饲料作物、蔬菜籽、花草种、水果籽及其他种子、种苗",
877
- "specification": null,
878
- "ssflbbh": "32.0",
879
- "statusDesc": null,
880
- "taxCategoryCode": "1010119000000000000",
881
- "updateTime": "2021-08-17 15:12:22.0",
882
- "zzssl": "",
883
- "zzstsgl": "",
884
- "zzszcyj": ""
885
- },
886
- {
887
- "bbh": "34.0",
888
- "createTime": "2019-09-12 08:54:16.0",
889
- "gjz": "",
890
- "gxsj": "20200601",
891
- "hzx": "Y",
892
- "id": 50922,
893
- "pid": "1030100000000000000",
894
- "productName": "谷物细粉",
895
- "qysj": "20190401",
896
- "shorthand": "谷物细粉",
897
- "sm": "",
898
- "specification": null,
899
- "ssflbbh": "32.0",
900
- "statusDesc": null,
901
- "taxCategoryCode": "1030101000000000000",
902
- "updateTime": "2021-08-17 15:12:09.0",
903
- "zzssl": "",
904
- "zzstsgl": "",
905
- "zzszcyj": ""
906
- },
907
- {
908
- "bbh": "34.0",
909
- "createTime": "2019-09-12 08:54:16.0",
910
- "gjz": "",
911
- "gxsj": "20200601",
912
- "hzx": "Y",
913
- "id": 50927,
914
- "pid": "1030102000000000000",
915
- "productName": "碾磨、脱壳谷物",
916
- "qysj": "20190401",
917
- "shorthand": "谷物加工品",
918
- "sm": "",
919
- "specification": null,
920
- "ssflbbh": "32.0",
921
- "statusDesc": null,
922
- "taxCategoryCode": "1030102010000000000",
923
- "updateTime": "2021-08-17 15:12:07.0",
924
- "zzssl": "",
925
- "zzstsgl": "",
926
- "zzszcyj": ""
927
- },
928
- {
929
- "bbh": "34.0",
930
- "createTime": "2019-09-12 08:54:16.0",
931
- "gjz": "",
932
- "gxsj": "20200601",
933
- "hzx": "Y",
934
- "id": 51057,
935
- "pid": "1030200000000000000",
936
- "productName": "罐头",
937
- "qysj": "20190401",
938
- "shorthand": "罐头",
939
- "sm": "",
940
- "specification": null,
941
- "ssflbbh": "32.0",
942
- "statusDesc": null,
943
- "taxCategoryCode": "1030205000000000000",
944
- "updateTime": "2021-08-17 15:12:13.0",
945
- "zzssl": "",
946
- "zzstsgl": "",
947
- "zzszcyj": ""
948
- },
949
- {
950
- "bbh": "34.0",
951
- "createTime": "2019-09-12 08:54:16.0",
952
- "gjz": "",
953
- "gxsj": "20200601",
954
- "hzx": "Y",
955
- "id": 53397,
956
- "pid": "1090200000000000000",
957
- "productName": "食品、饮料、烟草专用生产设备零件",
958
- "qysj": "20190401",
959
- "shorthand": "食品制造机械",
960
- "sm": "",
961
- "specification": null,
962
- "ssflbbh": "32.0",
963
- "statusDesc": null,
964
- "taxCategoryCode": "1090220000000000000",
965
- "updateTime": "2021-08-17 15:12:09.0",
966
- "zzssl": "",
967
- "zzstsgl": "",
968
- "zzszcyj": ""
969
- },
970
- {
971
- "bbh": "34.0",
972
- "createTime": "2019-09-12 08:54:16.0",
973
- "gjz": "",
974
- "gxsj": "20200601",
975
- "hzx": "Y",
976
- "id": 50548,
977
- "pid": "1010000000000000000",
978
- "productName": "农业产品",
979
- "qysj": "20190401",
980
- "shorthand": "农业产品",
981
- "sm": "",
982
- "specification": null,
983
- "ssflbbh": "32.0",
984
- "statusDesc": null,
985
- "taxCategoryCode": "1010100000000000000",
986
- "updateTime": "2021-08-17 15:12:32.0",
987
- "zzssl": "",
988
- "zzstsgl": "",
989
- "zzszcyj": ""
990
- },
991
- {
992
- "bbh": "34.0",
993
- "createTime": "2019-09-12 08:54:16.0",
994
- "gjz": "",
995
- "gxsj": "20200601",
996
- "hzx": "Y",
997
- "id": 50921,
998
- "pid": "1030000000000000000",
999
- "productName": "农副食品,动、植物油制品",
1000
- "qysj": "20190401",
1001
- "shorthand": "农副食品",
1002
- "sm": "",
1003
- "specification": null,
1004
- "ssflbbh": "32.0",
1005
- "statusDesc": null,
1006
- "taxCategoryCode": "1030100000000000000",
1007
- "updateTime": "2021-08-17 15:12:23.0",
1008
- "zzssl": "",
1009
- "zzstsgl": "",
1010
- "zzszcyj": ""
1011
- },
1012
- {
1013
- "bbh": "34.0",
1014
- "createTime": "2019-09-12 08:54:16.0",
1015
- "gjz": "",
1016
- "gxsj": "20200601",
1017
- "hzx": "Y",
1018
- "id": 50926,
1019
- "pid": "1030100000000000000",
1020
- "productName": "碾磨谷物及谷物加工品",
1021
- "qysj": "20190401",
1022
- "shorthand": "谷物加工品",
1023
- "sm": "",
1024
- "specification": null,
1025
- "ssflbbh": "32.0",
1026
- "statusDesc": null,
1027
- "taxCategoryCode": "1030102000000000000",
1028
- "updateTime": "2021-08-17 15:12:20.0",
1029
- "zzssl": "",
1030
- "zzstsgl": "",
1031
- "zzszcyj": ""
1032
- },
1033
- {
1034
- "bbh": "34.0",
1035
- "createTime": "2019-09-12 08:54:16.0",
1036
- "gjz": "",
1037
- "gxsj": "20200601",
1038
- "hzx": "Y",
1039
- "id": 51032,
1040
- "pid": "1030000000000000000",
1041
- "productName": "食品及加工盐",
1042
- "qysj": "20190401",
1043
- "shorthand": "食品",
1044
- "sm": "",
1045
- "specification": null,
1046
- "ssflbbh": "32.0",
1047
- "statusDesc": null,
1048
- "taxCategoryCode": "1030200000000000000",
1049
- "updateTime": "2021-08-17 15:12:30.0",
1050
- "zzssl": "",
1051
- "zzstsgl": "",
1052
- "zzszcyj": ""
1053
- },
1054
- {
1055
- "bbh": "34.0",
1056
- "createTime": "2019-09-12 08:54:16.0",
1057
- "gjz": "",
1058
- "gxsj": "20200601",
1059
- "hzx": "Y",
1060
- "id": 53261,
1061
- "pid": "1090000000000000000",
1062
- "productName": "专用设备",
1063
- "qysj": "20190401",
1064
- "shorthand": "专用设备",
1065
- "sm": "指只在一个特定产业,用来生产、加工、处理特定产品或者改变特定物质形态的机械设备及其专门配套件",
1066
- "specification": null,
1067
- "ssflbbh": "32.0",
1068
- "statusDesc": null,
1069
- "taxCategoryCode": "1090200000000000000",
1070
- "updateTime": "2021-08-17 15:12:15.0",
1071
- "zzssl": "",
1072
- "zzstsgl": "",
1073
- "zzszcyj": ""
1074
- },
1075
- {
1076
- "bbh": "34.0",
1077
- "createTime": "2019-09-12 08:54:16.0",
1078
- "gjz": "",
1079
- "gxsj": "20200601",
1080
- "hzx": "Y",
1081
- "id": 50547,
1082
- "pid": "1000000000000000000",
1083
- "productName": "农、林、牧、渔业类产品",
1084
- "qysj": "20190401",
1085
- "shorthand": "农产品",
1086
- "sm": "",
1087
- "specification": null,
1088
- "ssflbbh": "32.0",
1089
- "statusDesc": null,
1090
- "taxCategoryCode": "1010000000000000000",
1091
- "updateTime": "2021-08-17 15:12:19.0",
1092
- "zzssl": "",
1093
- "zzstsgl": "",
1094
- "zzszcyj": ""
1095
- },
1096
- {
1097
- "bbh": "34.0",
1098
- "createTime": "2019-09-12 08:54:16.0",
1099
- "gjz": "",
1100
- "gxsj": "20200601",
1101
- "hzx": "Y",
1102
- "id": 50920,
1103
- "pid": "1000000000000000000",
1104
- "productName": "食品、饮料、烟、酒类产品",
1105
- "qysj": "20190401",
1106
- "shorthand": "食品类产品",
1107
- "sm": "",
1108
- "specification": null,
1109
- "ssflbbh": "32.0",
1110
- "statusDesc": null,
1111
- "taxCategoryCode": "1030000000000000000",
1112
- "updateTime": "2021-08-17 15:12:07.0",
1113
- "zzssl": "",
1114
- "zzstsgl": "",
1115
- "zzszcyj": ""
1116
- },
1117
- {
1118
- "bbh": "34.0",
1119
- "createTime": "2019-09-12 08:54:16.0",
1120
- "gjz": "",
1121
- "gxsj": "20200601",
1122
- "hzx": "Y",
1123
- "id": 53022,
1124
- "pid": "1000000000000000000",
1125
- "productName": "机械、设备类产品",
1126
- "qysj": "20190401",
1127
- "shorthand": "机械设备",
1128
- "sm": "",
1129
- "specification": null,
1130
- "ssflbbh": "32.0",
1131
- "statusDesc": null,
1132
- "taxCategoryCode": "1090000000000000000",
1133
- "updateTime": "2021-08-17 15:12:15.0",
1134
- "zzssl": "",
1135
- "zzstsgl": "",
1136
- "zzszcyj": ""
1137
- },
1138
- {
1139
- "bbh": "34.0",
1140
- "createTime": "2019-09-12 08:54:16.0",
1141
- "gjz": "",
1142
- "gxsj": "20200601",
1143
- "hzx": "Y",
1144
- "id": 50546,
1145
- "pid": "0",
1146
- "productName": "货物",
1147
- "qysj": "20190401",
1148
- "shorthand": "货物",
1149
- "sm": "",
1150
- "specification": null,
1151
- "ssflbbh": "32.0",
1152
- "statusDesc": null,
1153
- "taxCategoryCode": "1000000000000000000",
1154
- "updateTime": "2021-08-17 15:12:12.0",
1155
- "zzssl": "",
1156
- "zzstsgl": "",
1157
- "zzszcyj": ""
1158
- }
1
+ import React from 'react';
2
+ import Invoice from '../..';
3
+ import idGenerator from '../../tools/idGenerator';
4
+ import { LineAttributeType } from '../../InvoiceController';
5
+ import { Button, Switch } from 'kts-components-antd-x3';
6
+
7
+ export default () => {
8
+ const controller1 = React.useMemo(() => new MyController1(), []);
9
+
10
+ const controller2 = React.useMemo(() => new MyController2(), []);
11
+
12
+ const [controller, setController] = React.useState(controller1)
13
+
14
+ const onClick1 = React.useCallback(() => {
15
+ controller.pipeline(async (s) => {
16
+ s.goodsListState.goodsList = goodsList.slice();
17
+ })();
18
+ }, [controller]);
19
+
20
+ const onClick5 = React.useCallback(() => {
21
+ controller.pipeline(async (s) => {
22
+ s.goodsListState.goodsList = goodsList.slice(0, 500);
23
+ })();
24
+ }, [controller]);
25
+
26
+ const onClick2 = React.useCallback(() => {
27
+ controller.pipeline(async (s) => {
28
+ s.goodsListState.goodsList = lines.map(e => {
29
+ return {
30
+ $index: idGenerator(),
31
+ ...e,
32
+ }
33
+ });
34
+ })();
35
+ }, [controller]);
36
+
37
+ const onClick6 = React.useCallback(async () => {
38
+ console.log('===> 当前组件状态', await controller.validateFields());
39
+ }, []);
40
+
41
+ return (
42
+ <div>
43
+ <Button onClick={onClick1} style={{ marginBottom: 20 }}>
44
+ 载入1W数据
45
+ </Button>
46
+ <Button onClick={onClick5} style={{ marginBottom: 20 }}>
47
+ 载入500数据
48
+ </Button>
49
+ <Button onClick={onClick2} style={{ marginBottom: 20 }}>
50
+ 模拟生成数据
51
+ </Button>
52
+ <Button onClick={onClick6} style={{ marginBottom: 10 }}>获取数据</Button>
53
+ <Switch checkedChildren="预制" unCheckedChildren="默认" onChange={e => { e ? setController(controller2) : setController(controller1) }} ></Switch>
54
+ <Button onClick={controller.pipeline(async s => { s.goodsListState.endowCode.getReadOnlyTaxRate = s.goodsListState.endowCode.readOnlyTaxRateMap.DRAFT })} >税率(草稿)</Button>
55
+ <Button onClick={controller.pipeline(async s => { s.goodsListState.endowCode.getReadOnlyTaxRate = () => true })} >税率(预制)</Button>
56
+ <Invoice controller={controller} />
57
+ </div>
58
+ );
59
+ };
60
+
61
+ // 税收分类编码列表
62
+ class MyController1 extends Invoice.InvoiceController {
63
+
64
+ constructor() {
65
+ super()
66
+ this.state.model = 'default'
67
+ this.state.goodsListState.isMergeDetails = true;
68
+ this.state.goodsListState.isSalesDiscount = true;
69
+ this.state.goodsListState.isMergeDiscount = true;
70
+ this.state.goodsListState.isSalesGifts = true;
71
+ this.state.goodsListState.drag.isStart = true;
72
+ this.state.calculatingDigits = 15;
73
+ this.state.goodsListState.columnshide = [];
74
+ }
75
+
76
+ getTaxCategoryCodeList = this.pipeline(async (s) => {
77
+ console.log('===> 准备赋码的货物索引列表', s.goodsListState.endowCode.endowcodeGoodIndex);
78
+ s.goodsListState.endowCode.getTaxCategoryCodeTree = async (taxCategoryCode?: string | undefined, val?: string | undefined) => {
79
+ if (!taxCategoryCode && !val) return [];
80
+ return moke.map(e => {
81
+ return {
82
+ label: `${e.taxCategoryCode}-${e.shorthand}`,
83
+ shorthand: e.shorthand,
84
+ id: e.taxCategoryCode,
85
+ pid: e.pid
86
+ }
87
+ })
88
+ };;
89
+ });
90
+ }
91
+
92
+
93
+ class MyController2 extends Invoice.InvoiceController {
94
+
95
+ constructor() {
96
+ super()
97
+ this.state.model = 'prefab'
98
+ this.state.goodsListState.isMergeDetails = true;
99
+ this.state.goodsListState.isSalesDiscount = true;
100
+ this.state.goodsListState.isMergeDiscount = true;
101
+ this.state.goodsListState.isSalesGifts = true;
102
+ this.state.goodsListState.drag.isStart = true;
103
+ this.state.calculatingDigits = 15;
104
+ this.state.goodsListState.columnshide = [];
105
+ }
106
+
107
+ getTaxCategoryCodeList = this.pipeline(async (s) => {
108
+ console.log('===> 准备赋码的货物索引列表', s.goodsListState.endowCode.endowcodeGoodIndex);
109
+
110
+ s.goodsListState.endowCode.getTaxCategoryCodeList = async (value) => {
111
+ console.log('===>搜索条件', value);
112
+ return [
113
+ { label: '3040201990000000000/aaa/bbb', value: '3040201990000000000', taxRate: 3, shorthand: 'aaa' },
114
+ { label: '3040201990000000001/aaa/bbb', value: '3040201990000000001', taxRate: 3, shorthand: 'aaa' },
115
+ { label: '3040201990000000002/aaa/bbb', value: '3040201990000000002', taxRate: 3, shorthand: 'aaa' },
116
+ { label: '3040201990000000003/aaa/bbb', value: '3040201990000000003', taxRate: 3, shorthand: 'aaa' },
117
+ { label: '3040201990000000004/aaa/bbb', value: '3040201990000000004', taxRate: 3, shorthand: 'aaa' },
118
+ { label: '3040201990000000005/aaa/bbb', value: '3040201990000000005', taxRate: 3, shorthand: 'aaa' },
119
+ { label: '3040201990000000006/aaa/bbb', value: '3040201990000000006', taxRate: 3, shorthand: 'aaa' },
120
+ { label: '3040201990000000007/aaa/bbb', value: '3040201990000000007', taxRate: 3, shorthand: 'aaa' },
121
+ { label: '3040201990000000008/aaa/bbb', value: '3040201990000000008', taxRate: 3, shorthand: 'aaa' },
122
+ { label: '3040201990000000009/aaa/bbb', value: '3040201990000000009', taxRate: 3, shorthand: 'aaa' },
123
+ { label: '3040201990000000010/aaa/bbb', value: '3040201990000000010', taxRate: 3, shorthand: 'aaa' },
124
+ { label: '3040201990000000011/aaa/bbb', value: '3040201990000000011', taxRate: 3, shorthand: 'aaa' },
125
+ ]
126
+ };
127
+ });
128
+ }
129
+
130
+ const goodsList: any[] = [];
131
+ for (let i = 0; i <= 10000; i++) {
132
+ goodsList.push({
133
+ $index: idGenerator(),
134
+ itemName: `项目名称${i}`,
135
+ lineAttribute: LineAttributeType.正常,
136
+ lineAmountExcludeTax: 9.99,
137
+ lineAmountIncludeTax: 10.29,
138
+ taxRate: 3,
139
+ taxAmount: 0.3,
140
+ });
141
+ }
142
+
143
+ const lines: any[] = [
144
+ {
145
+ "serialNumber": "1714491422279110656",
146
+ "lineNumber": 1,
147
+ "taxCode": "3070401000000000000",
148
+ "taxName": "信息技术服务",
149
+ "specification": null,
150
+ "itemName": "技术服务费",
151
+ "itemCode": "z",
152
+ "unit": "套",
153
+ "quantity": 1.0000000000001,
154
+ "taxRate": 0.06,
155
+ "priceExcludeTax": 0.0000000000001,
156
+ "priceIncludeTax": 2.12,
157
+ "amountTax": 0.3,
158
+ "lineAmountExcludeTax": 5,
159
+ "lineAmountIncludeTax": 5.3,
160
+ "lineAttribute": LineAttributeType.被折扣行,
161
+ "discountGroup": "1714491422291693568",
162
+ "favouredPolicyMark": false,
163
+ "favouredPolicyName": null,
164
+ "zeroTaxRateFlag": null,
165
+ "referenceLines": null,
166
+ "version": 0,
167
+ "taxAmount": 1
168
+ },
169
+ {
170
+ "serialNumber": "1714491422279110656",
171
+ "lineNumber": 2,
172
+ "taxCode": "3070401000000000000",
173
+ "taxName": "信息技术服务",
174
+ "specification": "",
175
+ "itemName": "技术服务费",
176
+ "itemCode": "z",
177
+ "unit": "",
178
+ "quantity": -1,
179
+ "taxRate": 0.06,
180
+ "priceExcludeTax": null,
181
+ "priceIncludeTax": null,
182
+ "amountTax": -0.06,
183
+ "lineAmountExcludeTax": 2,
184
+ "lineAmountIncludeTax": 2.3,
185
+ "lineAttribute": LineAttributeType.折扣行,
186
+ "discountGroup": "1714491422291693568",
187
+ "favouredPolicyMark": false,
188
+ "favouredPolicyName": null,
189
+ "zeroTaxRateFlag": null,
190
+ "referenceLines": null,
191
+ "version": 0,
192
+ "taxAmount": 1
193
+ },
194
+ {
195
+ "serialNumber": "1714491422279110656",
196
+ "lineNumber": 3,
197
+ "taxCode": "3070401000000000000",
198
+ "taxName": "信息技术服务",
199
+ "specification": null,
200
+ "itemName": "技术服务费",
201
+ "itemCode": "z",
202
+ "unit": "套",
203
+ "quantity": 1,
204
+ "taxRate": 0.06,
205
+ "priceExcludeTax": 2,
206
+ "priceIncludeTax": 2.12,
207
+ "amountTax": 0.12,
208
+ "lineAmountExcludeTax": 5,
209
+ "lineAmountIncludeTax": 5.3,
210
+ "lineAttribute": LineAttributeType.正常,
211
+ "discountGroup": null,
212
+ "favouredPolicyMark": false,
213
+ "favouredPolicyName": null,
214
+ "zeroTaxRateFlag": null,
215
+ "referenceLines": null,
216
+ "version": 0,
217
+ "taxAmount": 1
218
+ },
219
+ {
220
+ "serialNumber": "1714491422279110656",
221
+ "lineNumber": 3,
222
+ "taxCode": "3070401000000000000",
223
+ "taxName": "信息技术服务",
224
+ "specification": null,
225
+ "itemName": "技术服务费",
226
+ "itemCode": "z",
227
+ "unit": "套",
228
+ "quantity": 1,
229
+ "taxRate": 0.06,
230
+ "priceExcludeTax": 2,
231
+ "priceIncludeTax": 2.12,
232
+ "amountTax": 0.12,
233
+ "lineAmountExcludeTax": 5,
234
+ "lineAmountIncludeTax": 5.3,
235
+ "lineAttribute": LineAttributeType.折让行,
236
+ "discountGroup": null,
237
+ "favouredPolicyMark": false,
238
+ "favouredPolicyName": null,
239
+ "zeroTaxRateFlag": null,
240
+ "referenceLines": null,
241
+ "version": 0,
242
+ "taxAmount": 1
243
+ },
244
+ {
245
+ "serialNumber": "1714491422279110656",
246
+ "lineNumber": 3,
247
+ "taxCode": "3070401000000000000",
248
+ "taxName": "信息技术服务",
249
+ "specification": null,
250
+ "itemName": "技术服务费",
251
+ "itemCode": "z",
252
+ "unit": "套",
253
+ "quantity": 1,
254
+ "taxRate": 0.06,
255
+ "priceExcludeTax": 2,
256
+ "priceIncludeTax": 2.12,
257
+ "amountTax": 0.12,
258
+ "lineAmountExcludeTax": 5,
259
+ "lineAmountIncludeTax": 5.3,
260
+ "lineAttribute": LineAttributeType.折让行,
261
+ "discountGroup": null,
262
+ "favouredPolicyMark": false,
263
+ "favouredPolicyName": null,
264
+ "zeroTaxRateFlag": null,
265
+ "referenceLines": null,
266
+ "version": 0,
267
+ "taxAmount": 1
268
+ },
269
+ {
270
+ "serialNumber": "1714491422279110656",
271
+ "lineNumber": 3,
272
+ "taxCode": "3070401000000000000",
273
+ "taxName": "信息技术服务",
274
+ "specification": null,
275
+ "itemName": "技术服务费",
276
+ "itemCode": "z",
277
+ "unit": "套",
278
+ "quantity": 1,
279
+ "taxRate": 0.06,
280
+ "priceExcludeTax": 2,
281
+ "priceIncludeTax": 2.12,
282
+ "amountTax": 0.12,
283
+ "lineAmountExcludeTax": 5,
284
+ "lineAmountIncludeTax": 5.3,
285
+ "lineAttribute": LineAttributeType.赠品行,
286
+ "discountGroup": null,
287
+ "favouredPolicyMark": false,
288
+ "favouredPolicyName": null,
289
+ "zeroTaxRateFlag": null,
290
+ "referenceLines": null,
291
+ "version": 0,
292
+ "shorthand": "布料",
293
+ "taxAmount": 1
294
+ }
295
+ ]
296
+
297
+ const moke = [
298
+ {
299
+ "bbh": "34.0",
300
+ "createTime": "2019-09-12 08:54:16.0",
301
+ "gjz": "稻谷、早籼稻、晚籼稻、中籼稻、粳稻、糯稻",
302
+ "gxsj": "20200601",
303
+ "hzx": "N",
304
+ "id": 50550,
305
+ "pid": "1010101000000000000",
306
+ "productName": "稻谷",
307
+ "qysj": "20190401",
308
+ "shorthand": "谷物",
309
+ "sm": "包括早籼稻、晚籼稻、中籼稻、粳稻、糯稻、其他稻谷。",
310
+ "specification": null,
311
+ "ssflbbh": "32.0",
312
+ "statusDesc": null,
313
+ "taxCategoryCode": "1010101010000000000",
314
+ "updateTime": "2021-08-17 15:12:33.0",
315
+ "zzssl": "9%",
316
+ "zzstsgl": "免税",
317
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
318
+ },
319
+ {
320
+ "bbh": "34.0",
321
+ "createTime": "2019-09-12 08:54:16.0",
322
+ "gjz": "小麦、硬质小麦、软质小麦",
323
+ "gxsj": "20200601",
324
+ "hzx": "N",
325
+ "id": 50551,
326
+ "pid": "1010101000000000000",
327
+ "productName": "小麦",
328
+ "qysj": "20190401",
329
+ "shorthand": "谷物",
330
+ "sm": "包括硬质小麦、软质小麦、其他小麦。",
331
+ "specification": null,
332
+ "ssflbbh": "32.0",
333
+ "statusDesc": null,
334
+ "taxCategoryCode": "1010101020000000000",
335
+ "updateTime": "2021-08-17 15:12:22.0",
336
+ "zzssl": "9%",
337
+ "zzstsgl": "免税",
338
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
339
+ },
340
+ {
341
+ "bbh": "34.0",
342
+ "createTime": "2019-09-12 08:54:16.0",
343
+ "gjz": "玉米、白玉米、黄玉米、糯玉米、甜玉米",
344
+ "gxsj": "20200601",
345
+ "hzx": "N",
346
+ "id": 50552,
347
+ "pid": "1010101000000000000",
348
+ "productName": "玉米",
349
+ "qysj": "20190401",
350
+ "shorthand": "谷物",
351
+ "sm": "包括白玉米、黄玉米、糯玉米、甜玉米、其他玉米。",
352
+ "specification": null,
353
+ "ssflbbh": "32.0",
354
+ "statusDesc": null,
355
+ "taxCategoryCode": "1010101030000000000",
356
+ "updateTime": "2021-08-17 15:12:27.0",
357
+ "zzssl": "9%",
358
+ "zzstsgl": "免税",
359
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)、《财政部、国家税务总局关于免征蔬菜流通环节增值税有关问题的通知》(财税〔2011〕137号)"
360
+ },
361
+ {
362
+ "bbh": "34.0",
363
+ "createTime": "2019-09-12 08:54:16.0",
364
+ "gjz": "谷子、硬谷子、糯谷子",
365
+ "gxsj": "20200601",
366
+ "hzx": "N",
367
+ "id": 50553,
368
+ "pid": "1010101000000000000",
369
+ "productName": "谷子",
370
+ "qysj": "20190401",
371
+ "shorthand": "谷物",
372
+ "sm": "包括硬谷子、糯谷子、其他谷子。",
373
+ "specification": null,
374
+ "ssflbbh": "32.0",
375
+ "statusDesc": null,
376
+ "taxCategoryCode": "1010101040000000000",
377
+ "updateTime": "2021-08-17 15:12:12.0",
378
+ "zzssl": "9%",
379
+ "zzstsgl": "免税",
380
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
381
+ },
382
+ {
383
+ "bbh": "34.0",
384
+ "createTime": "2019-09-12 08:54:16.0",
385
+ "gjz": "高粱、红粒高粱、白粒高粱、糯高粱",
386
+ "gxsj": "20200601",
387
+ "hzx": "N",
388
+ "id": 50554,
389
+ "pid": "1010101000000000000",
390
+ "productName": "高粱",
391
+ "qysj": "20190401",
392
+ "shorthand": "谷物",
393
+ "sm": "包括红粒高粱、白粒高粱、糯高粱、其他高粱。",
394
+ "specification": null,
395
+ "ssflbbh": "32.0",
396
+ "statusDesc": null,
397
+ "taxCategoryCode": "1010101050000000000",
398
+ "updateTime": "2021-08-17 15:12:30.0",
399
+ "zzssl": "9%",
400
+ "zzstsgl": "免税",
401
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
402
+ },
403
+ {
404
+ "bbh": "34.0",
405
+ "createTime": "2019-09-12 08:54:16.0",
406
+ "gjz": "大麦、裸大麦、皮大麦",
407
+ "gxsj": "20200601",
408
+ "hzx": "N",
409
+ "id": 50555,
410
+ "pid": "1010101000000000000",
411
+ "productName": "大麦",
412
+ "qysj": "20190401",
413
+ "shorthand": "谷物",
414
+ "sm": "包括裸大麦、皮大麦。",
415
+ "specification": null,
416
+ "ssflbbh": "32.0",
417
+ "statusDesc": null,
418
+ "taxCategoryCode": "1010101060000000000",
419
+ "updateTime": "2021-08-17 15:12:08.0",
420
+ "zzssl": "9%",
421
+ "zzstsgl": "免税",
422
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
423
+ },
424
+ {
425
+ "bbh": "34.0",
426
+ "createTime": "2019-09-12 08:54:16.0",
427
+ "gjz": "裸燕麦、皮燕麦",
428
+ "gxsj": "20200601",
429
+ "hzx": "N",
430
+ "id": 50556,
431
+ "pid": "1010101000000000000",
432
+ "productName": "燕麦",
433
+ "qysj": "20190401",
434
+ "shorthand": "谷物",
435
+ "sm": "包括裸燕麦、皮燕麦。",
436
+ "specification": null,
437
+ "ssflbbh": "32.0",
438
+ "statusDesc": null,
439
+ "taxCategoryCode": "1010101070000000000",
440
+ "updateTime": "2021-08-17 15:12:29.0",
441
+ "zzssl": "9%",
442
+ "zzstsgl": "免税",
443
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
444
+ },
445
+ {
446
+ "bbh": "34.0",
447
+ "createTime": "2019-09-12 08:54:16.0",
448
+ "gjz": "黑麦",
449
+ "gxsj": "20200601",
450
+ "hzx": "N",
451
+ "id": 50557,
452
+ "pid": "1010101000000000000",
453
+ "productName": "黑麦",
454
+ "qysj": "20190401",
455
+ "shorthand": "谷物",
456
+ "sm": "",
457
+ "specification": null,
458
+ "ssflbbh": "32.0",
459
+ "statusDesc": null,
460
+ "taxCategoryCode": "1010101080000000000",
461
+ "updateTime": "2021-08-17 15:12:11.0",
462
+ "zzssl": "9%",
463
+ "zzstsgl": "免税",
464
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
465
+ },
466
+ {
467
+ "bbh": "34.0",
468
+ "createTime": "2019-09-12 08:54:16.0",
469
+ "gjz": "荞麦、甜荞麦、苦荞麦",
470
+ "gxsj": "20200601",
471
+ "hzx": "N",
472
+ "id": 50558,
473
+ "pid": "1010101000000000000",
474
+ "productName": "荞麦",
475
+ "qysj": "20190401",
476
+ "shorthand": "谷物",
477
+ "sm": "包括甜荞麦、苦荞麦。",
478
+ "specification": null,
479
+ "ssflbbh": "32.0",
480
+ "statusDesc": null,
481
+ "taxCategoryCode": "1010101090000000000",
482
+ "updateTime": "2021-08-17 15:12:30.0",
483
+ "zzssl": "9%",
484
+ "zzstsgl": "免税",
485
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
486
+ },
487
+ {
488
+ "bbh": "34.0",
489
+ "createTime": "2019-09-12 08:54:16.0",
490
+ "gjz": "糜子、硬糜子、糯糜子、紫米、薏苡",
491
+ "gxsj": "20200601",
492
+ "hzx": "N",
493
+ "id": 50559,
494
+ "pid": "1010101000000000000",
495
+ "productName": "其他谷物",
496
+ "qysj": "20190401",
497
+ "shorthand": "谷物",
498
+ "sm": "包括糜子(硬糜子、糯糜子)、紫米、薏苡等。",
499
+ "specification": null,
500
+ "ssflbbh": "32.0",
501
+ "statusDesc": null,
502
+ "taxCategoryCode": "1010101990000000000",
503
+ "updateTime": "2021-08-17 15:12:19.0",
504
+ "zzssl": "9%",
505
+ "zzstsgl": "免税",
506
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
507
+ },
508
+ {
509
+ "bbh": "34.0",
510
+ "createTime": "2019-09-12 08:54:16.0",
511
+ "gjz": "种用谷物、种用皮大麦、种用裸大麦、种用糯高粱、种用红粒高粱、种用白粒高粱、种用甜玉米、种用糯玉米、种用黄玉米、种用白玉米、种用硬质小麦、种用软质小麦、种用中籼稻、种用早籼稻、种用晚籼稻、种用糯稻、种用粳稻",
512
+ "gxsj": "20200601",
513
+ "hzx": "N",
514
+ "id": 50683,
515
+ "pid": "1010119000000000000",
516
+ "productName": "种用谷物",
517
+ "qysj": "20190401",
518
+ "shorthand": "种子种苗",
519
+ "sm": "包括种用硬质小麦、种用甜玉米、种用软质小麦、种用皮大麦、种用糯玉米、种用糯高粱、种用裸大麦、种用黄玉米、种用红粒高粱、种用白玉米、种用白粒高粱、其他种用玉米、其他种用小麦、其他种用高粱、种用中籼稻、种用早籼稻、种用晚籼稻、种用糯稻、种用粳稻、其他种用稻谷。",
520
+ "specification": null,
521
+ "ssflbbh": "32.0",
522
+ "statusDesc": null,
523
+ "taxCategoryCode": "1010119010000000000",
524
+ "updateTime": "2021-08-17 15:12:24.0",
525
+ "zzssl": "9%",
526
+ "zzstsgl": "免税",
527
+ "zzszcyj": "《财政部、国家税务总局关于若干农业生产资料征免增值税政策的通知》(财税〔2001〕113号)"
528
+ },
529
+ {
530
+ "bbh": "34.0",
531
+ "createTime": "2019-09-12 08:54:16.0",
532
+ "gjz": "小麦粉、小麦专用粉、小麦自发粉",
533
+ "gxsj": "20200601",
534
+ "hzx": "N",
535
+ "id": 50923,
536
+ "pid": "1030101000000000000",
537
+ "productName": "小麦粉",
538
+ "qysj": "20190401",
539
+ "shorthand": "谷物细粉",
540
+ "sm": "",
541
+ "specification": null,
542
+ "ssflbbh": "32.0",
543
+ "statusDesc": null,
544
+ "taxCategoryCode": "1030101010000000000",
545
+ "updateTime": "2021-08-17 15:12:14.0",
546
+ "zzssl": "9%",
547
+ "zzstsgl": "免税",
548
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
549
+ },
550
+ {
551
+ "bbh": "34.0",
552
+ "createTime": "2019-09-12 08:54:16.0",
553
+ "gjz": "大米粉、籼米细粉、粳米细粉",
554
+ "gxsj": "20200601",
555
+ "hzx": "N",
556
+ "id": 50924,
557
+ "pid": "1030101000000000000",
558
+ "productName": "大米粉",
559
+ "qysj": "20190401",
560
+ "shorthand": "谷物细粉",
561
+ "sm": "",
562
+ "specification": null,
563
+ "ssflbbh": "32.0",
564
+ "statusDesc": null,
565
+ "taxCategoryCode": "1030101020000000000",
566
+ "updateTime": "2021-08-17 15:12:08.0",
567
+ "zzssl": "9%",
568
+ "zzstsgl": "免税",
569
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
570
+ },
571
+ {
572
+ "bbh": "34.0",
573
+ "createTime": "2019-09-12 08:54:16.0",
574
+ "gjz": "玉米细粉、糯米细粉、荞麦细粉、黑麦细粉、莜麦细粉、高粱细粉、大麦细粉",
575
+ "gxsj": "20200601",
576
+ "hzx": "N",
577
+ "id": 50925,
578
+ "pid": "1030101000000000000",
579
+ "productName": "其他谷物细粉",
580
+ "qysj": "20190401",
581
+ "shorthand": "谷物细粉",
582
+ "sm": "",
583
+ "specification": null,
584
+ "ssflbbh": "32.0",
585
+ "statusDesc": null,
586
+ "taxCategoryCode": "1030101990000000000",
587
+ "updateTime": "2021-08-17 15:12:08.0",
588
+ "zzssl": "9%",
589
+ "zzstsgl": "免税",
590
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
591
+ },
592
+ {
593
+ "bbh": "34.0",
594
+ "createTime": "2019-09-12 08:54:16.0",
595
+ "gjz": "籼米、粳米",
596
+ "gxsj": "20200601",
597
+ "hzx": "N",
598
+ "id": 50928,
599
+ "pid": "1030102010000000000",
600
+ "productName": "大米",
601
+ "qysj": "20190401",
602
+ "shorthand": "谷物加工品",
603
+ "sm": "",
604
+ "specification": null,
605
+ "ssflbbh": "32.0",
606
+ "statusDesc": null,
607
+ "taxCategoryCode": "1030102010100000000",
608
+ "updateTime": "2021-08-17 15:12:11.0",
609
+ "zzssl": "9%",
610
+ "zzstsgl": "免税",
611
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
612
+ },
613
+ {
614
+ "bbh": "34.0",
615
+ "createTime": "2019-09-12 08:54:16.0",
616
+ "gjz": "大米",
617
+ "gxsj": "20200601",
618
+ "hzx": "N",
619
+ "id": 50929,
620
+ "pid": "1030102010000000000",
621
+ "productName": "小米",
622
+ "qysj": "20190401",
623
+ "shorthand": "谷物加工品",
624
+ "sm": "",
625
+ "specification": null,
626
+ "ssflbbh": "32.0",
627
+ "statusDesc": null,
628
+ "taxCategoryCode": "1030102010200000000",
629
+ "updateTime": "2021-08-17 15:12:25.0",
630
+ "zzssl": "9%",
631
+ "zzstsgl": "免税",
632
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
633
+ },
634
+ {
635
+ "bbh": "34.0",
636
+ "createTime": "2019-09-12 08:54:16.0",
637
+ "gjz": "糯米",
638
+ "gxsj": "20200601",
639
+ "hzx": "N",
640
+ "id": 50930,
641
+ "pid": "1030102010000000000",
642
+ "productName": "糯米",
643
+ "qysj": "20190401",
644
+ "shorthand": "谷物加工品",
645
+ "sm": "",
646
+ "specification": null,
647
+ "ssflbbh": "32.0",
648
+ "statusDesc": null,
649
+ "taxCategoryCode": "1030102010300000000",
650
+ "updateTime": "2021-08-17 15:12:14.0",
651
+ "zzssl": "9%",
652
+ "zzstsgl": "免税",
653
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
654
+ },
655
+ {
656
+ "bbh": "34.0",
657
+ "createTime": "2019-09-12 08:54:16.0",
658
+ "gjz": "高粱米",
659
+ "gxsj": "20200601",
660
+ "hzx": "N",
661
+ "id": 50931,
662
+ "pid": "1030102010000000000",
663
+ "productName": "高粱米",
664
+ "qysj": "20190401",
665
+ "shorthand": "谷物加工品",
666
+ "sm": "",
667
+ "specification": null,
668
+ "ssflbbh": "32.0",
669
+ "statusDesc": null,
670
+ "taxCategoryCode": "1030102010400000000",
671
+ "updateTime": "2021-08-17 15:12:13.0",
672
+ "zzssl": "9%",
673
+ "zzstsgl": "免税",
674
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
675
+ },
676
+ {
677
+ "bbh": "34.0",
678
+ "createTime": "2019-09-12 08:54:16.0",
679
+ "gjz": "脱壳燕麦",
680
+ "gxsj": "20200601",
681
+ "hzx": "N",
682
+ "id": 50932,
683
+ "pid": "1030102010000000000",
684
+ "productName": "脱壳燕麦",
685
+ "qysj": "20190401",
686
+ "shorthand": "谷物加工品",
687
+ "sm": "指已脱壳但未去皮的燕麦。",
688
+ "specification": null,
689
+ "ssflbbh": "32.0",
690
+ "statusDesc": null,
691
+ "taxCategoryCode": "1030102010500000000",
692
+ "updateTime": "2021-08-17 15:12:06.0",
693
+ "zzssl": "9%",
694
+ "zzstsgl": "免税",
695
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
696
+ },
697
+ {
698
+ "bbh": "34.0",
699
+ "createTime": "2019-09-12 08:54:16.0",
700
+ "gjz": "脱壳青稞",
701
+ "gxsj": "20200601",
702
+ "hzx": "N",
703
+ "id": 50933,
704
+ "pid": "1030102010000000000",
705
+ "productName": "脱壳青稞",
706
+ "qysj": "20190401",
707
+ "shorthand": "谷物加工品",
708
+ "sm": "",
709
+ "specification": null,
710
+ "ssflbbh": "32.0",
711
+ "statusDesc": null,
712
+ "taxCategoryCode": "1030102010600000000",
713
+ "updateTime": "2021-08-17 15:12:11.0",
714
+ "zzssl": "9%",
715
+ "zzstsgl": "免税",
716
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
717
+ },
718
+ {
719
+ "bbh": "34.0",
720
+ "createTime": "2019-09-12 08:54:16.0",
721
+ "gjz": "珠粒大麦",
722
+ "gxsj": "20200601",
723
+ "hzx": "N",
724
+ "id": 50934,
725
+ "pid": "1030102010000000000",
726
+ "productName": "珠粒大麦",
727
+ "qysj": "20190401",
728
+ "shorthand": "谷物加工品",
729
+ "sm": "",
730
+ "specification": null,
731
+ "ssflbbh": "32.0",
732
+ "statusDesc": null,
733
+ "taxCategoryCode": "1030102010700000000",
734
+ "updateTime": "2021-08-17 15:12:12.0",
735
+ "zzssl": "9%",
736
+ "zzstsgl": "免税",
737
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
738
+ },
739
+ {
740
+ "bbh": "34.0",
741
+ "createTime": "2019-09-12 08:54:16.0",
742
+ "gjz": "",
743
+ "gxsj": "20200601",
744
+ "hzx": "N",
745
+ "id": 50935,
746
+ "pid": "1030102010000000000",
747
+ "productName": "其他碾磨、脱壳谷物",
748
+ "qysj": "20190401",
749
+ "shorthand": "谷物加工品",
750
+ "sm": "",
751
+ "specification": null,
752
+ "ssflbbh": "32.0",
753
+ "statusDesc": null,
754
+ "taxCategoryCode": "1030102019900000000",
755
+ "updateTime": "2021-08-17 15:12:21.0",
756
+ "zzssl": "9%",
757
+ "zzstsgl": "免税",
758
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
759
+ },
760
+ {
761
+ "bbh": "34.0",
762
+ "createTime": "2019-09-12 08:54:16.0",
763
+ "gjz": "小麦粗磨、大米粗磨、玉米粗磨、燕麦粗磨",
764
+ "gxsj": "20200601",
765
+ "hzx": "N",
766
+ "id": 50936,
767
+ "pid": "1030102000000000000",
768
+ "productName": "粗磨谷物",
769
+ "qysj": "20190401",
770
+ "shorthand": "谷物加工品",
771
+ "sm": "包括谷物去壳谷粉、粗粉及团粒。",
772
+ "specification": null,
773
+ "ssflbbh": "32.0",
774
+ "statusDesc": null,
775
+ "taxCategoryCode": "1030102020000000000",
776
+ "updateTime": "2021-08-17 15:12:15.0",
777
+ "zzssl": "9%",
778
+ "zzstsgl": "免税",
779
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
780
+ },
781
+ {
782
+ "bbh": "34.0",
783
+ "createTime": "2019-09-12 08:54:16.0",
784
+ "gjz": "燕麦片、大麦片、玉米片、谷物胚芽",
785
+ "gxsj": "20200601",
786
+ "hzx": "N",
787
+ "id": 50937,
788
+ "pid": "1030102000000000000",
789
+ "productName": "谷物加工制品",
790
+ "qysj": "20190401",
791
+ "shorthand": "谷物加工品",
792
+ "sm": "包括燕麦片、大麦片、玉米片,谷物胚芽等。",
793
+ "specification": null,
794
+ "ssflbbh": "32.0",
795
+ "statusDesc": null,
796
+ "taxCategoryCode": "1030102030000000000",
797
+ "updateTime": "2021-08-17 15:12:19.0",
798
+ "zzssl": "13%、9%",
799
+ "zzstsgl": "免税",
800
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
801
+ },
802
+ {
803
+ "bbh": "34.0",
804
+ "createTime": "2019-09-12 08:54:16.0",
805
+ "gjz": "谷物制品类罐头、甜玉米罐头、米粥罐头、米饭罐头、八宝粥罐头、蔬菜粥罐头、八宝饭罐头",
806
+ "gxsj": "20200601",
807
+ "hzx": "N",
808
+ "id": 51065,
809
+ "pid": "1030205000000000000",
810
+ "productName": "谷物制品类罐头",
811
+ "qysj": "20190401",
812
+ "shorthand": "罐头",
813
+ "sm": "指经过处理后的谷类、干果及其他原料(桂圆、枸杞、蔬菜等)装罐制成的罐头产品",
814
+ "specification": null,
815
+ "ssflbbh": "32.0",
816
+ "statusDesc": null,
817
+ "taxCategoryCode": "1030205080000000000",
818
+ "updateTime": "2021-08-17 15:12:25.0",
819
+ "zzssl": "13%",
820
+ "zzstsgl": "",
821
+ "zzszcyj": ""
822
+ },
823
+ {
824
+ "bbh": "34.0",
825
+ "createTime": "2019-09-12 08:54:16.0",
826
+ "gjz": "谷物磨粉工业用筛、谷物磨粉工业用筛架、混合滚筒、分离滚筒、谷物磨粉机的滚筒、谷物磨粉机的变换器、谷物磨粉工业用机械零件",
827
+ "gxsj": "20200601",
828
+ "hzx": "N",
829
+ "id": 53402,
830
+ "pid": "1090220000000000000",
831
+ "productName": "谷物磨粉工业用机械零件",
832
+ "qysj": "20190401",
833
+ "shorthand": "食品制造机械",
834
+ "sm": "包括谷物磨粉工业用筛及筛架、混合或分离滚筒、谷物磨粉机的滚筒或变换器、其他谷物磨粉工业用机械零件",
835
+ "specification": null,
836
+ "ssflbbh": "32.0",
837
+ "statusDesc": null,
838
+ "taxCategoryCode": "1090220050000000000",
839
+ "updateTime": "2021-08-17 15:12:11.0",
840
+ "zzssl": "13%",
841
+ "zzstsgl": "",
842
+ "zzszcyj": ""
843
+ },
844
+ {
845
+ "bbh": "34.0",
846
+ "createTime": "2019-09-12 08:54:16.0",
847
+ "gjz": "",
848
+ "gxsj": "20200601",
849
+ "hzx": "Y",
850
+ "id": 50549,
851
+ "pid": "1010100000000000000",
852
+ "productName": "谷物",
853
+ "qysj": "20190401",
854
+ "shorthand": "谷物",
855
+ "sm": "包括稻谷、小麦、玉米、谷子、高粱、大麦、燕麦、黑麦、荞麦、其他谷物,不包括种用谷物(详见101011901)。",
856
+ "specification": null,
857
+ "ssflbbh": "32.0",
858
+ "statusDesc": null,
859
+ "taxCategoryCode": "1010101000000000000",
860
+ "updateTime": "2021-08-17 15:12:22.0",
861
+ "zzssl": "",
862
+ "zzstsgl": "",
863
+ "zzszcyj": ""
864
+ },
865
+ {
866
+ "bbh": "34.0",
867
+ "createTime": "2019-09-12 08:54:16.0",
868
+ "gjz": "种子、种苗、种用谷物、种用薯类、种用油料、种用豆类、种用饲料作物、蔬菜籽、花草种、水果籽",
869
+ "gxsj": "20200601",
870
+ "hzx": "Y",
871
+ "id": 50682,
872
+ "pid": "1010100000000000000",
873
+ "productName": "种子、种苗",
874
+ "qysj": "20190401",
875
+ "shorthand": "种子种苗",
876
+ "sm": "包括种用谷物、种用薯类、种用油料、种用豆类、种用饲料作物、蔬菜籽、花草种、水果籽及其他种子、种苗",
877
+ "specification": null,
878
+ "ssflbbh": "32.0",
879
+ "statusDesc": null,
880
+ "taxCategoryCode": "1010119000000000000",
881
+ "updateTime": "2021-08-17 15:12:22.0",
882
+ "zzssl": "",
883
+ "zzstsgl": "",
884
+ "zzszcyj": ""
885
+ },
886
+ {
887
+ "bbh": "34.0",
888
+ "createTime": "2019-09-12 08:54:16.0",
889
+ "gjz": "",
890
+ "gxsj": "20200601",
891
+ "hzx": "Y",
892
+ "id": 50922,
893
+ "pid": "1030100000000000000",
894
+ "productName": "谷物细粉",
895
+ "qysj": "20190401",
896
+ "shorthand": "谷物细粉",
897
+ "sm": "",
898
+ "specification": null,
899
+ "ssflbbh": "32.0",
900
+ "statusDesc": null,
901
+ "taxCategoryCode": "1030101000000000000",
902
+ "updateTime": "2021-08-17 15:12:09.0",
903
+ "zzssl": "",
904
+ "zzstsgl": "",
905
+ "zzszcyj": ""
906
+ },
907
+ {
908
+ "bbh": "34.0",
909
+ "createTime": "2019-09-12 08:54:16.0",
910
+ "gjz": "",
911
+ "gxsj": "20200601",
912
+ "hzx": "Y",
913
+ "id": 50927,
914
+ "pid": "1030102000000000000",
915
+ "productName": "碾磨、脱壳谷物",
916
+ "qysj": "20190401",
917
+ "shorthand": "谷物加工品",
918
+ "sm": "",
919
+ "specification": null,
920
+ "ssflbbh": "32.0",
921
+ "statusDesc": null,
922
+ "taxCategoryCode": "1030102010000000000",
923
+ "updateTime": "2021-08-17 15:12:07.0",
924
+ "zzssl": "",
925
+ "zzstsgl": "",
926
+ "zzszcyj": ""
927
+ },
928
+ {
929
+ "bbh": "34.0",
930
+ "createTime": "2019-09-12 08:54:16.0",
931
+ "gjz": "",
932
+ "gxsj": "20200601",
933
+ "hzx": "Y",
934
+ "id": 51057,
935
+ "pid": "1030200000000000000",
936
+ "productName": "罐头",
937
+ "qysj": "20190401",
938
+ "shorthand": "罐头",
939
+ "sm": "",
940
+ "specification": null,
941
+ "ssflbbh": "32.0",
942
+ "statusDesc": null,
943
+ "taxCategoryCode": "1030205000000000000",
944
+ "updateTime": "2021-08-17 15:12:13.0",
945
+ "zzssl": "",
946
+ "zzstsgl": "",
947
+ "zzszcyj": ""
948
+ },
949
+ {
950
+ "bbh": "34.0",
951
+ "createTime": "2019-09-12 08:54:16.0",
952
+ "gjz": "",
953
+ "gxsj": "20200601",
954
+ "hzx": "Y",
955
+ "id": 53397,
956
+ "pid": "1090200000000000000",
957
+ "productName": "食品、饮料、烟草专用生产设备零件",
958
+ "qysj": "20190401",
959
+ "shorthand": "食品制造机械",
960
+ "sm": "",
961
+ "specification": null,
962
+ "ssflbbh": "32.0",
963
+ "statusDesc": null,
964
+ "taxCategoryCode": "1090220000000000000",
965
+ "updateTime": "2021-08-17 15:12:09.0",
966
+ "zzssl": "",
967
+ "zzstsgl": "",
968
+ "zzszcyj": ""
969
+ },
970
+ {
971
+ "bbh": "34.0",
972
+ "createTime": "2019-09-12 08:54:16.0",
973
+ "gjz": "",
974
+ "gxsj": "20200601",
975
+ "hzx": "Y",
976
+ "id": 50548,
977
+ "pid": "1010000000000000000",
978
+ "productName": "农业产品",
979
+ "qysj": "20190401",
980
+ "shorthand": "农业产品",
981
+ "sm": "",
982
+ "specification": null,
983
+ "ssflbbh": "32.0",
984
+ "statusDesc": null,
985
+ "taxCategoryCode": "1010100000000000000",
986
+ "updateTime": "2021-08-17 15:12:32.0",
987
+ "zzssl": "",
988
+ "zzstsgl": "",
989
+ "zzszcyj": ""
990
+ },
991
+ {
992
+ "bbh": "34.0",
993
+ "createTime": "2019-09-12 08:54:16.0",
994
+ "gjz": "",
995
+ "gxsj": "20200601",
996
+ "hzx": "Y",
997
+ "id": 50921,
998
+ "pid": "1030000000000000000",
999
+ "productName": "农副食品,动、植物油制品",
1000
+ "qysj": "20190401",
1001
+ "shorthand": "农副食品",
1002
+ "sm": "",
1003
+ "specification": null,
1004
+ "ssflbbh": "32.0",
1005
+ "statusDesc": null,
1006
+ "taxCategoryCode": "1030100000000000000",
1007
+ "updateTime": "2021-08-17 15:12:23.0",
1008
+ "zzssl": "",
1009
+ "zzstsgl": "",
1010
+ "zzszcyj": ""
1011
+ },
1012
+ {
1013
+ "bbh": "34.0",
1014
+ "createTime": "2019-09-12 08:54:16.0",
1015
+ "gjz": "",
1016
+ "gxsj": "20200601",
1017
+ "hzx": "Y",
1018
+ "id": 50926,
1019
+ "pid": "1030100000000000000",
1020
+ "productName": "碾磨谷物及谷物加工品",
1021
+ "qysj": "20190401",
1022
+ "shorthand": "谷物加工品",
1023
+ "sm": "",
1024
+ "specification": null,
1025
+ "ssflbbh": "32.0",
1026
+ "statusDesc": null,
1027
+ "taxCategoryCode": "1030102000000000000",
1028
+ "updateTime": "2021-08-17 15:12:20.0",
1029
+ "zzssl": "",
1030
+ "zzstsgl": "",
1031
+ "zzszcyj": ""
1032
+ },
1033
+ {
1034
+ "bbh": "34.0",
1035
+ "createTime": "2019-09-12 08:54:16.0",
1036
+ "gjz": "",
1037
+ "gxsj": "20200601",
1038
+ "hzx": "Y",
1039
+ "id": 51032,
1040
+ "pid": "1030000000000000000",
1041
+ "productName": "食品及加工盐",
1042
+ "qysj": "20190401",
1043
+ "shorthand": "食品",
1044
+ "sm": "",
1045
+ "specification": null,
1046
+ "ssflbbh": "32.0",
1047
+ "statusDesc": null,
1048
+ "taxCategoryCode": "1030200000000000000",
1049
+ "updateTime": "2021-08-17 15:12:30.0",
1050
+ "zzssl": "",
1051
+ "zzstsgl": "",
1052
+ "zzszcyj": ""
1053
+ },
1054
+ {
1055
+ "bbh": "34.0",
1056
+ "createTime": "2019-09-12 08:54:16.0",
1057
+ "gjz": "",
1058
+ "gxsj": "20200601",
1059
+ "hzx": "Y",
1060
+ "id": 53261,
1061
+ "pid": "1090000000000000000",
1062
+ "productName": "专用设备",
1063
+ "qysj": "20190401",
1064
+ "shorthand": "专用设备",
1065
+ "sm": "指只在一个特定产业,用来生产、加工、处理特定产品或者改变特定物质形态的机械设备及其专门配套件",
1066
+ "specification": null,
1067
+ "ssflbbh": "32.0",
1068
+ "statusDesc": null,
1069
+ "taxCategoryCode": "1090200000000000000",
1070
+ "updateTime": "2021-08-17 15:12:15.0",
1071
+ "zzssl": "",
1072
+ "zzstsgl": "",
1073
+ "zzszcyj": ""
1074
+ },
1075
+ {
1076
+ "bbh": "34.0",
1077
+ "createTime": "2019-09-12 08:54:16.0",
1078
+ "gjz": "",
1079
+ "gxsj": "20200601",
1080
+ "hzx": "Y",
1081
+ "id": 50547,
1082
+ "pid": "1000000000000000000",
1083
+ "productName": "农、林、牧、渔业类产品",
1084
+ "qysj": "20190401",
1085
+ "shorthand": "农产品",
1086
+ "sm": "",
1087
+ "specification": null,
1088
+ "ssflbbh": "32.0",
1089
+ "statusDesc": null,
1090
+ "taxCategoryCode": "1010000000000000000",
1091
+ "updateTime": "2021-08-17 15:12:19.0",
1092
+ "zzssl": "",
1093
+ "zzstsgl": "",
1094
+ "zzszcyj": ""
1095
+ },
1096
+ {
1097
+ "bbh": "34.0",
1098
+ "createTime": "2019-09-12 08:54:16.0",
1099
+ "gjz": "",
1100
+ "gxsj": "20200601",
1101
+ "hzx": "Y",
1102
+ "id": 50920,
1103
+ "pid": "1000000000000000000",
1104
+ "productName": "食品、饮料、烟、酒类产品",
1105
+ "qysj": "20190401",
1106
+ "shorthand": "食品类产品",
1107
+ "sm": "",
1108
+ "specification": null,
1109
+ "ssflbbh": "32.0",
1110
+ "statusDesc": null,
1111
+ "taxCategoryCode": "1030000000000000000",
1112
+ "updateTime": "2021-08-17 15:12:07.0",
1113
+ "zzssl": "",
1114
+ "zzstsgl": "",
1115
+ "zzszcyj": ""
1116
+ },
1117
+ {
1118
+ "bbh": "34.0",
1119
+ "createTime": "2019-09-12 08:54:16.0",
1120
+ "gjz": "",
1121
+ "gxsj": "20200601",
1122
+ "hzx": "Y",
1123
+ "id": 53022,
1124
+ "pid": "1000000000000000000",
1125
+ "productName": "机械、设备类产品",
1126
+ "qysj": "20190401",
1127
+ "shorthand": "机械设备",
1128
+ "sm": "",
1129
+ "specification": null,
1130
+ "ssflbbh": "32.0",
1131
+ "statusDesc": null,
1132
+ "taxCategoryCode": "1090000000000000000",
1133
+ "updateTime": "2021-08-17 15:12:15.0",
1134
+ "zzssl": "",
1135
+ "zzstsgl": "",
1136
+ "zzszcyj": ""
1137
+ },
1138
+ {
1139
+ "bbh": "34.0",
1140
+ "createTime": "2019-09-12 08:54:16.0",
1141
+ "gjz": "",
1142
+ "gxsj": "20200601",
1143
+ "hzx": "Y",
1144
+ "id": 50546,
1145
+ "pid": "0",
1146
+ "productName": "货物",
1147
+ "qysj": "20190401",
1148
+ "shorthand": "货物",
1149
+ "sm": "",
1150
+ "specification": null,
1151
+ "ssflbbh": "32.0",
1152
+ "statusDesc": null,
1153
+ "taxCategoryCode": "1000000000000000000",
1154
+ "updateTime": "2021-08-17 15:12:12.0",
1155
+ "zzssl": "",
1156
+ "zzstsgl": "",
1157
+ "zzszcyj": ""
1158
+ }
1159
1159
  ].map(e => ({ ...e, "zeroTaxRateFlag": 'dddddd' }))