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,958 +1,957 @@
1
- import React from 'react';
2
- import { Input, message } from 'kts-components-antd-x3';
3
- import Invoice from '../../';
4
- import 'antd/dist/antd.css';
5
-
6
- export default () => {
7
-
8
- const controller = React.useMemo(() => new MyController1(), [])
9
- React.useEffect(() => {
10
- controller.run(async s => {
11
- s.addGoodsCheck=checkGood;
12
-
13
-
14
- })
15
- }, [])
16
- const [deduction, setDeduction] = React.useState<number | undefined>(0);
17
-
18
- const [goodMax, setgoodMax] = React.useState(0);
19
-
20
- const onChange = React.useCallback((e: React.ChangeEvent<HTMLInputElement>) => {
21
- const num = e.target.value ? parseFloat(e.target.value) : undefined;
22
- if (typeof num === 'number' && `${num}` !== 'NaN') {
23
- setgoodMax(1);
24
- setDeduction(num);
25
- } else {
26
- setgoodMax(0);
27
- setDeduction(undefined);
28
- }
29
- }, [])
30
-
31
- const menuExpansion = React.useMemo(() => {
32
- return (
33
- <span style={{ marginRight: 10 }} >
34
- <Input size="small" placeholder='扣除额' onChange={onChange} />
35
- </span>
36
- )
37
- }, [])
38
- const checkGood = async () => {
39
- await new Promise((resolve,) => {
40
- setTimeout(() => {
41
- const a = Math.random();
42
- if (a > 0.5) {
43
- message.error('请先填写发票行信息,再添加新的行');
44
- return false;
45
- } else {
46
- resolve(true)
47
- console.log(11112)
48
- }
49
-
50
- }, 1000)
51
- })
52
- }
53
- return (
54
- <Invoice
55
- controller={controller}
56
- goodsList={
57
- <Invoice.GoodsList
58
-
59
- // addGoodsCheck={checkGood}
60
- // isSwitchTax={false} // 是否可以切换(含税/不含税)状态
61
- // isAddDiscount={false} // 不能添加折扣行
62
- // goodMax={goodMax} // 控制能可以添加的货物函数
63
- // deduction={deduction} // 扣除额
64
- // menuExpansion={menuExpansion} // 扩展
65
- />
66
- }
67
- />
68
- )
69
- };
70
-
71
-
72
- // 税收分类编码列表
73
- class MyController1 extends Invoice.InvoiceController {
74
-
75
- constructor() {
76
- super()
77
- this.state.model = 'default'
78
- }
79
-
80
- getTaxCategoryCodeList = this.pipeline(async (s) => {
81
- console.log('===> 准备赋码的货物索引列表', s.goodsListState.endowCode.endowcodeGoodIndex);
82
-
83
- s.goodsListState.endowCode.getTaxCategoryCodeTree = async (value) => {
84
- return moke.map(e => {
85
- return {
86
- label: `${e.taxCategoryCode}-${e.shorthand}`,
87
- shorthand: e.shorthand,
88
- id: e.taxCategoryCode,
89
- pid: e.pid
90
- }
91
- })
92
- };
93
- });
94
- }
95
-
96
- const moke = [
97
- {
98
- "bbh": "34.0",
99
- "createTime": "2019-09-12 08:54:16.0",
100
- "gjz": "稻谷、早籼稻、晚籼稻、中籼稻、粳稻、糯稻",
101
- "gxsj": "20200601",
102
- "hzx": "N",
103
- "id": 50550,
104
- "pid": "1010101000000000000",
105
- "productName": "稻谷",
106
- "qysj": "20190401",
107
- "shorthand": "谷物",
108
- "sm": "包括早籼稻、晚籼稻、中籼稻、粳稻、糯稻、其他稻谷。",
109
- "specification": null,
110
- "ssflbbh": "32.0",
111
- "statusDesc": null,
112
- "taxCategoryCode": "1010101010000000000",
113
- "updateTime": "2021-08-17 15:12:33.0",
114
- "zzssl": "9%",
115
- "zzstsgl": "免税",
116
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
117
- },
118
- {
119
- "bbh": "34.0",
120
- "createTime": "2019-09-12 08:54:16.0",
121
- "gjz": "小麦、硬质小麦、软质小麦",
122
- "gxsj": "20200601",
123
- "hzx": "N",
124
- "id": 50551,
125
- "pid": "1010101000000000000",
126
- "productName": "小麦",
127
- "qysj": "20190401",
128
- "shorthand": "谷物",
129
- "sm": "包括硬质小麦、软质小麦、其他小麦。",
130
- "specification": null,
131
- "ssflbbh": "32.0",
132
- "statusDesc": null,
133
- "taxCategoryCode": "1010101020000000000",
134
- "updateTime": "2021-08-17 15:12:22.0",
135
- "zzssl": "9%",
136
- "zzstsgl": "免税",
137
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
138
- },
139
- {
140
- "bbh": "34.0",
141
- "createTime": "2019-09-12 08:54:16.0",
142
- "gjz": "玉米、白玉米、黄玉米、糯玉米、甜玉米",
143
- "gxsj": "20200601",
144
- "hzx": "N",
145
- "id": 50552,
146
- "pid": "1010101000000000000",
147
- "productName": "玉米",
148
- "qysj": "20190401",
149
- "shorthand": "谷物",
150
- "sm": "包括白玉米、黄玉米、糯玉米、甜玉米、其他玉米。",
151
- "specification": null,
152
- "ssflbbh": "32.0",
153
- "statusDesc": null,
154
- "taxCategoryCode": "1010101030000000000",
155
- "updateTime": "2021-08-17 15:12:27.0",
156
- "zzssl": "9%",
157
- "zzstsgl": "免税",
158
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)、《财政部、国家税务总局关于免征蔬菜流通环节增值税有关问题的通知》(财税〔2011〕137号)"
159
- },
160
- {
161
- "bbh": "34.0",
162
- "createTime": "2019-09-12 08:54:16.0",
163
- "gjz": "谷子、硬谷子、糯谷子",
164
- "gxsj": "20200601",
165
- "hzx": "N",
166
- "id": 50553,
167
- "pid": "1010101000000000000",
168
- "productName": "谷子",
169
- "qysj": "20190401",
170
- "shorthand": "谷物",
171
- "sm": "包括硬谷子、糯谷子、其他谷子。",
172
- "specification": null,
173
- "ssflbbh": "32.0",
174
- "statusDesc": null,
175
- "taxCategoryCode": "1010101040000000000",
176
- "updateTime": "2021-08-17 15:12:12.0",
177
- "zzssl": "9%",
178
- "zzstsgl": "免税",
179
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
180
- },
181
- {
182
- "bbh": "34.0",
183
- "createTime": "2019-09-12 08:54:16.0",
184
- "gjz": "高粱、红粒高粱、白粒高粱、糯高粱",
185
- "gxsj": "20200601",
186
- "hzx": "N",
187
- "id": 50554,
188
- "pid": "1010101000000000000",
189
- "productName": "高粱",
190
- "qysj": "20190401",
191
- "shorthand": "谷物",
192
- "sm": "包括红粒高粱、白粒高粱、糯高粱、其他高粱。",
193
- "specification": null,
194
- "ssflbbh": "32.0",
195
- "statusDesc": null,
196
- "taxCategoryCode": "1010101050000000000",
197
- "updateTime": "2021-08-17 15:12:30.0",
198
- "zzssl": "9%",
199
- "zzstsgl": "免税",
200
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
201
- },
202
- {
203
- "bbh": "34.0",
204
- "createTime": "2019-09-12 08:54:16.0",
205
- "gjz": "大麦、裸大麦、皮大麦",
206
- "gxsj": "20200601",
207
- "hzx": "N",
208
- "id": 50555,
209
- "pid": "1010101000000000000",
210
- "productName": "大麦",
211
- "qysj": "20190401",
212
- "shorthand": "谷物",
213
- "sm": "包括裸大麦、皮大麦。",
214
- "specification": null,
215
- "ssflbbh": "32.0",
216
- "statusDesc": null,
217
- "taxCategoryCode": "1010101060000000000",
218
- "updateTime": "2021-08-17 15:12:08.0",
219
- "zzssl": "9%",
220
- "zzstsgl": "免税",
221
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
222
- },
223
- {
224
- "bbh": "34.0",
225
- "createTime": "2019-09-12 08:54:16.0",
226
- "gjz": "裸燕麦、皮燕麦",
227
- "gxsj": "20200601",
228
- "hzx": "N",
229
- "id": 50556,
230
- "pid": "1010101000000000000",
231
- "productName": "燕麦",
232
- "qysj": "20190401",
233
- "shorthand": "谷物",
234
- "sm": "包括裸燕麦、皮燕麦。",
235
- "specification": null,
236
- "ssflbbh": "32.0",
237
- "statusDesc": null,
238
- "taxCategoryCode": "1010101070000000000",
239
- "updateTime": "2021-08-17 15:12:29.0",
240
- "zzssl": "9%",
241
- "zzstsgl": "免税",
242
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
243
- },
244
- {
245
- "bbh": "34.0",
246
- "createTime": "2019-09-12 08:54:16.0",
247
- "gjz": "黑麦",
248
- "gxsj": "20200601",
249
- "hzx": "N",
250
- "id": 50557,
251
- "pid": "1010101000000000000",
252
- "productName": "黑麦",
253
- "qysj": "20190401",
254
- "shorthand": "谷物",
255
- "sm": "",
256
- "specification": null,
257
- "ssflbbh": "32.0",
258
- "statusDesc": null,
259
- "taxCategoryCode": "1010101080000000000",
260
- "updateTime": "2021-08-17 15:12:11.0",
261
- "zzssl": "9%",
262
- "zzstsgl": "免税",
263
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
264
- },
265
- {
266
- "bbh": "34.0",
267
- "createTime": "2019-09-12 08:54:16.0",
268
- "gjz": "荞麦、甜荞麦、苦荞麦",
269
- "gxsj": "20200601",
270
- "hzx": "N",
271
- "id": 50558,
272
- "pid": "1010101000000000000",
273
- "productName": "荞麦",
274
- "qysj": "20190401",
275
- "shorthand": "谷物",
276
- "sm": "包括甜荞麦、苦荞麦。",
277
- "specification": null,
278
- "ssflbbh": "32.0",
279
- "statusDesc": null,
280
- "taxCategoryCode": "1010101090000000000",
281
- "updateTime": "2021-08-17 15:12:30.0",
282
- "zzssl": "9%",
283
- "zzstsgl": "免税",
284
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
285
- },
286
- {
287
- "bbh": "34.0",
288
- "createTime": "2019-09-12 08:54:16.0",
289
- "gjz": "糜子、硬糜子、糯糜子、紫米、薏苡",
290
- "gxsj": "20200601",
291
- "hzx": "N",
292
- "id": 50559,
293
- "pid": "1010101000000000000",
294
- "productName": "其他谷物",
295
- "qysj": "20190401",
296
- "shorthand": "谷物",
297
- "sm": "包括糜子(硬糜子、糯糜子)、紫米、薏苡等。",
298
- "specification": null,
299
- "ssflbbh": "32.0",
300
- "statusDesc": null,
301
- "taxCategoryCode": "1010101990000000000",
302
- "updateTime": "2021-08-17 15:12:19.0",
303
- "zzssl": "9%",
304
- "zzstsgl": "免税",
305
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
306
- },
307
- {
308
- "bbh": "34.0",
309
- "createTime": "2019-09-12 08:54:16.0",
310
- "gjz": "种用谷物、种用皮大麦、种用裸大麦、种用糯高粱、种用红粒高粱、种用白粒高粱、种用甜玉米、种用糯玉米、种用黄玉米、种用白玉米、种用硬质小麦、种用软质小麦、种用中籼稻、种用早籼稻、种用晚籼稻、种用糯稻、种用粳稻",
311
- "gxsj": "20200601",
312
- "hzx": "N",
313
- "id": 50683,
314
- "pid": "1010119000000000000",
315
- "productName": "种用谷物",
316
- "qysj": "20190401",
317
- "shorthand": "种子种苗",
318
- "sm": "包括种用硬质小麦、种用甜玉米、种用软质小麦、种用皮大麦、种用糯玉米、种用糯高粱、种用裸大麦、种用黄玉米、种用红粒高粱、种用白玉米、种用白粒高粱、其他种用玉米、其他种用小麦、其他种用高粱、种用中籼稻、种用早籼稻、种用晚籼稻、种用糯稻、种用粳稻、其他种用稻谷。",
319
- "specification": null,
320
- "ssflbbh": "32.0",
321
- "statusDesc": null,
322
- "taxCategoryCode": "1010119010000000000",
323
- "updateTime": "2021-08-17 15:12:24.0",
324
- "zzssl": "9%",
325
- "zzstsgl": "免税",
326
- "zzszcyj": "《财政部、国家税务总局关于若干农业生产资料征免增值税政策的通知》(财税〔2001〕113号)"
327
- },
328
- {
329
- "bbh": "34.0",
330
- "createTime": "2019-09-12 08:54:16.0",
331
- "gjz": "小麦粉、小麦专用粉、小麦自发粉",
332
- "gxsj": "20200601",
333
- "hzx": "N",
334
- "id": 50923,
335
- "pid": "1030101000000000000",
336
- "productName": "小麦粉",
337
- "qysj": "20190401",
338
- "shorthand": "谷物细粉",
339
- "sm": "",
340
- "specification": null,
341
- "ssflbbh": "32.0",
342
- "statusDesc": null,
343
- "taxCategoryCode": "1030101010000000000",
344
- "updateTime": "2021-08-17 15:12:14.0",
345
- "zzssl": "9%",
346
- "zzstsgl": "免税",
347
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
348
- },
349
- {
350
- "bbh": "34.0",
351
- "createTime": "2019-09-12 08:54:16.0",
352
- "gjz": "大米粉、籼米细粉、粳米细粉",
353
- "gxsj": "20200601",
354
- "hzx": "N",
355
- "id": 50924,
356
- "pid": "1030101000000000000",
357
- "productName": "大米粉",
358
- "qysj": "20190401",
359
- "shorthand": "谷物细粉",
360
- "sm": "",
361
- "specification": null,
362
- "ssflbbh": "32.0",
363
- "statusDesc": null,
364
- "taxCategoryCode": "1030101020000000000",
365
- "updateTime": "2021-08-17 15:12:08.0",
366
- "zzssl": "9%",
367
- "zzstsgl": "免税",
368
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
369
- },
370
- {
371
- "bbh": "34.0",
372
- "createTime": "2019-09-12 08:54:16.0",
373
- "gjz": "玉米细粉、糯米细粉、荞麦细粉、黑麦细粉、莜麦细粉、高粱细粉、大麦细粉",
374
- "gxsj": "20200601",
375
- "hzx": "N",
376
- "id": 50925,
377
- "pid": "1030101000000000000",
378
- "productName": "其他谷物细粉",
379
- "qysj": "20190401",
380
- "shorthand": "谷物细粉",
381
- "sm": "",
382
- "specification": null,
383
- "ssflbbh": "32.0",
384
- "statusDesc": null,
385
- "taxCategoryCode": "1030101990000000000",
386
- "updateTime": "2021-08-17 15:12:08.0",
387
- "zzssl": "9%",
388
- "zzstsgl": "免税",
389
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
390
- },
391
- {
392
- "bbh": "34.0",
393
- "createTime": "2019-09-12 08:54:16.0",
394
- "gjz": "籼米、粳米",
395
- "gxsj": "20200601",
396
- "hzx": "N",
397
- "id": 50928,
398
- "pid": "1030102010000000000",
399
- "productName": "大米",
400
- "qysj": "20190401",
401
- "shorthand": "谷物加工品",
402
- "sm": "",
403
- "specification": null,
404
- "ssflbbh": "32.0",
405
- "statusDesc": null,
406
- "taxCategoryCode": "1030102010100000000",
407
- "updateTime": "2021-08-17 15:12:11.0",
408
- "zzssl": "9%",
409
- "zzstsgl": "免税",
410
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
411
- },
412
- {
413
- "bbh": "34.0",
414
- "createTime": "2019-09-12 08:54:16.0",
415
- "gjz": "大米",
416
- "gxsj": "20200601",
417
- "hzx": "N",
418
- "id": 50929,
419
- "pid": "1030102010000000000",
420
- "productName": "小米",
421
- "qysj": "20190401",
422
- "shorthand": "谷物加工品",
423
- "sm": "",
424
- "specification": null,
425
- "ssflbbh": "32.0",
426
- "statusDesc": null,
427
- "taxCategoryCode": "1030102010200000000",
428
- "updateTime": "2021-08-17 15:12:25.0",
429
- "zzssl": "9%",
430
- "zzstsgl": "免税",
431
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
432
- },
433
- {
434
- "bbh": "34.0",
435
- "createTime": "2019-09-12 08:54:16.0",
436
- "gjz": "糯米",
437
- "gxsj": "20200601",
438
- "hzx": "N",
439
- "id": 50930,
440
- "pid": "1030102010000000000",
441
- "productName": "糯米",
442
- "qysj": "20190401",
443
- "shorthand": "谷物加工品",
444
- "sm": "",
445
- "specification": null,
446
- "ssflbbh": "32.0",
447
- "statusDesc": null,
448
- "taxCategoryCode": "1030102010300000000",
449
- "updateTime": "2021-08-17 15:12:14.0",
450
- "zzssl": "9%",
451
- "zzstsgl": "免税",
452
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
453
- },
454
- {
455
- "bbh": "34.0",
456
- "createTime": "2019-09-12 08:54:16.0",
457
- "gjz": "高粱米",
458
- "gxsj": "20200601",
459
- "hzx": "N",
460
- "id": 50931,
461
- "pid": "1030102010000000000",
462
- "productName": "高粱米",
463
- "qysj": "20190401",
464
- "shorthand": "谷物加工品",
465
- "sm": "",
466
- "specification": null,
467
- "ssflbbh": "32.0",
468
- "statusDesc": null,
469
- "taxCategoryCode": "1030102010400000000",
470
- "updateTime": "2021-08-17 15:12:13.0",
471
- "zzssl": "9%",
472
- "zzstsgl": "免税",
473
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
474
- },
475
- {
476
- "bbh": "34.0",
477
- "createTime": "2019-09-12 08:54:16.0",
478
- "gjz": "脱壳燕麦",
479
- "gxsj": "20200601",
480
- "hzx": "N",
481
- "id": 50932,
482
- "pid": "1030102010000000000",
483
- "productName": "脱壳燕麦",
484
- "qysj": "20190401",
485
- "shorthand": "谷物加工品",
486
- "sm": "指已脱壳但未去皮的燕麦。",
487
- "specification": null,
488
- "ssflbbh": "32.0",
489
- "statusDesc": null,
490
- "taxCategoryCode": "1030102010500000000",
491
- "updateTime": "2021-08-17 15:12:06.0",
492
- "zzssl": "9%",
493
- "zzstsgl": "免税",
494
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
495
- },
496
- {
497
- "bbh": "34.0",
498
- "createTime": "2019-09-12 08:54:16.0",
499
- "gjz": "脱壳青稞",
500
- "gxsj": "20200601",
501
- "hzx": "N",
502
- "id": 50933,
503
- "pid": "1030102010000000000",
504
- "productName": "脱壳青稞",
505
- "qysj": "20190401",
506
- "shorthand": "谷物加工品",
507
- "sm": "",
508
- "specification": null,
509
- "ssflbbh": "32.0",
510
- "statusDesc": null,
511
- "taxCategoryCode": "1030102010600000000",
512
- "updateTime": "2021-08-17 15:12:11.0",
513
- "zzssl": "9%",
514
- "zzstsgl": "免税",
515
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
516
- },
517
- {
518
- "bbh": "34.0",
519
- "createTime": "2019-09-12 08:54:16.0",
520
- "gjz": "珠粒大麦",
521
- "gxsj": "20200601",
522
- "hzx": "N",
523
- "id": 50934,
524
- "pid": "1030102010000000000",
525
- "productName": "珠粒大麦",
526
- "qysj": "20190401",
527
- "shorthand": "谷物加工品",
528
- "sm": "",
529
- "specification": null,
530
- "ssflbbh": "32.0",
531
- "statusDesc": null,
532
- "taxCategoryCode": "1030102010700000000",
533
- "updateTime": "2021-08-17 15:12:12.0",
534
- "zzssl": "9%",
535
- "zzstsgl": "免税",
536
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
537
- },
538
- {
539
- "bbh": "34.0",
540
- "createTime": "2019-09-12 08:54:16.0",
541
- "gjz": "",
542
- "gxsj": "20200601",
543
- "hzx": "N",
544
- "id": 50935,
545
- "pid": "1030102010000000000",
546
- "productName": "其他碾磨、脱壳谷物",
547
- "qysj": "20190401",
548
- "shorthand": "谷物加工品",
549
- "sm": "",
550
- "specification": null,
551
- "ssflbbh": "32.0",
552
- "statusDesc": null,
553
- "taxCategoryCode": "1030102019900000000",
554
- "updateTime": "2021-08-17 15:12:21.0",
555
- "zzssl": "9%",
556
- "zzstsgl": "免税",
557
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
558
- },
559
- {
560
- "bbh": "34.0",
561
- "createTime": "2019-09-12 08:54:16.0",
562
- "gjz": "小麦粗磨、大米粗磨、玉米粗磨、燕麦粗磨",
563
- "gxsj": "20200601",
564
- "hzx": "N",
565
- "id": 50936,
566
- "pid": "1030102000000000000",
567
- "productName": "粗磨谷物",
568
- "qysj": "20190401",
569
- "shorthand": "谷物加工品",
570
- "sm": "包括谷物去壳谷粉、粗粉及团粒。",
571
- "specification": null,
572
- "ssflbbh": "32.0",
573
- "statusDesc": null,
574
- "taxCategoryCode": "1030102020000000000",
575
- "updateTime": "2021-08-17 15:12:15.0",
576
- "zzssl": "9%",
577
- "zzstsgl": "免税",
578
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
579
- },
580
- {
581
- "bbh": "34.0",
582
- "createTime": "2019-09-12 08:54:16.0",
583
- "gjz": "燕麦片、大麦片、玉米片、谷物胚芽",
584
- "gxsj": "20200601",
585
- "hzx": "N",
586
- "id": 50937,
587
- "pid": "1030102000000000000",
588
- "productName": "谷物加工制品",
589
- "qysj": "20190401",
590
- "shorthand": "谷物加工品",
591
- "sm": "包括燕麦片、大麦片、玉米片,谷物胚芽等。",
592
- "specification": null,
593
- "ssflbbh": "32.0",
594
- "statusDesc": null,
595
- "taxCategoryCode": "1030102030000000000",
596
- "updateTime": "2021-08-17 15:12:19.0",
597
- "zzssl": "13%、9%",
598
- "zzstsgl": "免税",
599
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
600
- },
601
- {
602
- "bbh": "34.0",
603
- "createTime": "2019-09-12 08:54:16.0",
604
- "gjz": "谷物制品类罐头、甜玉米罐头、米粥罐头、米饭罐头、八宝粥罐头、蔬菜粥罐头、八宝饭罐头",
605
- "gxsj": "20200601",
606
- "hzx": "N",
607
- "id": 51065,
608
- "pid": "1030205000000000000",
609
- "productName": "谷物制品类罐头",
610
- "qysj": "20190401",
611
- "shorthand": "罐头",
612
- "sm": "指经过处理后的谷类、干果及其他原料(桂圆、枸杞、蔬菜等)装罐制成的罐头产品",
613
- "specification": null,
614
- "ssflbbh": "32.0",
615
- "statusDesc": null,
616
- "taxCategoryCode": "1030205080000000000",
617
- "updateTime": "2021-08-17 15:12:25.0",
618
- "zzssl": "13%",
619
- "zzstsgl": "",
620
- "zzszcyj": ""
621
- },
622
- {
623
- "bbh": "34.0",
624
- "createTime": "2019-09-12 08:54:16.0",
625
- "gjz": "谷物磨粉工业用筛、谷物磨粉工业用筛架、混合滚筒、分离滚筒、谷物磨粉机的滚筒、谷物磨粉机的变换器、谷物磨粉工业用机械零件",
626
- "gxsj": "20200601",
627
- "hzx": "N",
628
- "id": 53402,
629
- "pid": "1090220000000000000",
630
- "productName": "谷物磨粉工业用机械零件",
631
- "qysj": "20190401",
632
- "shorthand": "食品制造机械",
633
- "sm": "包括谷物磨粉工业用筛及筛架、混合或分离滚筒、谷物磨粉机的滚筒或变换器、其他谷物磨粉工业用机械零件",
634
- "specification": null,
635
- "ssflbbh": "32.0",
636
- "statusDesc": null,
637
- "taxCategoryCode": "1090220050000000000",
638
- "updateTime": "2021-08-17 15:12:11.0",
639
- "zzssl": "13%",
640
- "zzstsgl": "",
641
- "zzszcyj": ""
642
- },
643
- {
644
- "bbh": "34.0",
645
- "createTime": "2019-09-12 08:54:16.0",
646
- "gjz": "",
647
- "gxsj": "20200601",
648
- "hzx": "Y",
649
- "id": 50549,
650
- "pid": "1010100000000000000",
651
- "productName": "谷物",
652
- "qysj": "20190401",
653
- "shorthand": "谷物",
654
- "sm": "包括稻谷、小麦、玉米、谷子、高粱、大麦、燕麦、黑麦、荞麦、其他谷物,不包括种用谷物(详见101011901)。",
655
- "specification": null,
656
- "ssflbbh": "32.0",
657
- "statusDesc": null,
658
- "taxCategoryCode": "1010101000000000000",
659
- "updateTime": "2021-08-17 15:12:22.0",
660
- "zzssl": "",
661
- "zzstsgl": "",
662
- "zzszcyj": ""
663
- },
664
- {
665
- "bbh": "34.0",
666
- "createTime": "2019-09-12 08:54:16.0",
667
- "gjz": "种子、种苗、种用谷物、种用薯类、种用油料、种用豆类、种用饲料作物、蔬菜籽、花草种、水果籽",
668
- "gxsj": "20200601",
669
- "hzx": "Y",
670
- "id": 50682,
671
- "pid": "1010100000000000000",
672
- "productName": "种子、种苗",
673
- "qysj": "20190401",
674
- "shorthand": "种子种苗",
675
- "sm": "包括种用谷物、种用薯类、种用油料、种用豆类、种用饲料作物、蔬菜籽、花草种、水果籽及其他种子、种苗",
676
- "specification": null,
677
- "ssflbbh": "32.0",
678
- "statusDesc": null,
679
- "taxCategoryCode": "1010119000000000000",
680
- "updateTime": "2021-08-17 15:12:22.0",
681
- "zzssl": "",
682
- "zzstsgl": "",
683
- "zzszcyj": ""
684
- },
685
- {
686
- "bbh": "34.0",
687
- "createTime": "2019-09-12 08:54:16.0",
688
- "gjz": "",
689
- "gxsj": "20200601",
690
- "hzx": "Y",
691
- "id": 50922,
692
- "pid": "1030100000000000000",
693
- "productName": "谷物细粉",
694
- "qysj": "20190401",
695
- "shorthand": "谷物细粉",
696
- "sm": "",
697
- "specification": null,
698
- "ssflbbh": "32.0",
699
- "statusDesc": null,
700
- "taxCategoryCode": "1030101000000000000",
701
- "updateTime": "2021-08-17 15:12:09.0",
702
- "zzssl": "",
703
- "zzstsgl": "",
704
- "zzszcyj": ""
705
- },
706
- {
707
- "bbh": "34.0",
708
- "createTime": "2019-09-12 08:54:16.0",
709
- "gjz": "",
710
- "gxsj": "20200601",
711
- "hzx": "Y",
712
- "id": 50927,
713
- "pid": "1030102000000000000",
714
- "productName": "碾磨、脱壳谷物",
715
- "qysj": "20190401",
716
- "shorthand": "谷物加工品",
717
- "sm": "",
718
- "specification": null,
719
- "ssflbbh": "32.0",
720
- "statusDesc": null,
721
- "taxCategoryCode": "1030102010000000000",
722
- "updateTime": "2021-08-17 15:12:07.0",
723
- "zzssl": "",
724
- "zzstsgl": "",
725
- "zzszcyj": ""
726
- },
727
- {
728
- "bbh": "34.0",
729
- "createTime": "2019-09-12 08:54:16.0",
730
- "gjz": "",
731
- "gxsj": "20200601",
732
- "hzx": "Y",
733
- "id": 51057,
734
- "pid": "1030200000000000000",
735
- "productName": "罐头",
736
- "qysj": "20190401",
737
- "shorthand": "罐头",
738
- "sm": "",
739
- "specification": null,
740
- "ssflbbh": "32.0",
741
- "statusDesc": null,
742
- "taxCategoryCode": "1030205000000000000",
743
- "updateTime": "2021-08-17 15:12:13.0",
744
- "zzssl": "",
745
- "zzstsgl": "",
746
- "zzszcyj": ""
747
- },
748
- {
749
- "bbh": "34.0",
750
- "createTime": "2019-09-12 08:54:16.0",
751
- "gjz": "",
752
- "gxsj": "20200601",
753
- "hzx": "Y",
754
- "id": 53397,
755
- "pid": "1090200000000000000",
756
- "productName": "食品、饮料、烟草专用生产设备零件",
757
- "qysj": "20190401",
758
- "shorthand": "食品制造机械",
759
- "sm": "",
760
- "specification": null,
761
- "ssflbbh": "32.0",
762
- "statusDesc": null,
763
- "taxCategoryCode": "1090220000000000000",
764
- "updateTime": "2021-08-17 15:12:09.0",
765
- "zzssl": "",
766
- "zzstsgl": "",
767
- "zzszcyj": ""
768
- },
769
- {
770
- "bbh": "34.0",
771
- "createTime": "2019-09-12 08:54:16.0",
772
- "gjz": "",
773
- "gxsj": "20200601",
774
- "hzx": "Y",
775
- "id": 50548,
776
- "pid": "1010000000000000000",
777
- "productName": "农业产品",
778
- "qysj": "20190401",
779
- "shorthand": "农业产品",
780
- "sm": "",
781
- "specification": null,
782
- "ssflbbh": "32.0",
783
- "statusDesc": null,
784
- "taxCategoryCode": "1010100000000000000",
785
- "updateTime": "2021-08-17 15:12:32.0",
786
- "zzssl": "",
787
- "zzstsgl": "",
788
- "zzszcyj": ""
789
- },
790
- {
791
- "bbh": "34.0",
792
- "createTime": "2019-09-12 08:54:16.0",
793
- "gjz": "",
794
- "gxsj": "20200601",
795
- "hzx": "Y",
796
- "id": 50921,
797
- "pid": "1030000000000000000",
798
- "productName": "农副食品,动、植物油制品",
799
- "qysj": "20190401",
800
- "shorthand": "农副食品",
801
- "sm": "",
802
- "specification": null,
803
- "ssflbbh": "32.0",
804
- "statusDesc": null,
805
- "taxCategoryCode": "1030100000000000000",
806
- "updateTime": "2021-08-17 15:12:23.0",
807
- "zzssl": "",
808
- "zzstsgl": "",
809
- "zzszcyj": ""
810
- },
811
- {
812
- "bbh": "34.0",
813
- "createTime": "2019-09-12 08:54:16.0",
814
- "gjz": "",
815
- "gxsj": "20200601",
816
- "hzx": "Y",
817
- "id": 50926,
818
- "pid": "1030100000000000000",
819
- "productName": "碾磨谷物及谷物加工品",
820
- "qysj": "20190401",
821
- "shorthand": "谷物加工品",
822
- "sm": "",
823
- "specification": null,
824
- "ssflbbh": "32.0",
825
- "statusDesc": null,
826
- "taxCategoryCode": "1030102000000000000",
827
- "updateTime": "2021-08-17 15:12:20.0",
828
- "zzssl": "",
829
- "zzstsgl": "",
830
- "zzszcyj": ""
831
- },
832
- {
833
- "bbh": "34.0",
834
- "createTime": "2019-09-12 08:54:16.0",
835
- "gjz": "",
836
- "gxsj": "20200601",
837
- "hzx": "Y",
838
- "id": 51032,
839
- "pid": "1030000000000000000",
840
- "productName": "食品及加工盐",
841
- "qysj": "20190401",
842
- "shorthand": "食品",
843
- "sm": "",
844
- "specification": null,
845
- "ssflbbh": "32.0",
846
- "statusDesc": null,
847
- "taxCategoryCode": "1030200000000000000",
848
- "updateTime": "2021-08-17 15:12:30.0",
849
- "zzssl": "",
850
- "zzstsgl": "",
851
- "zzszcyj": ""
852
- },
853
- {
854
- "bbh": "34.0",
855
- "createTime": "2019-09-12 08:54:16.0",
856
- "gjz": "",
857
- "gxsj": "20200601",
858
- "hzx": "Y",
859
- "id": 53261,
860
- "pid": "1090000000000000000",
861
- "productName": "专用设备",
862
- "qysj": "20190401",
863
- "shorthand": "专用设备",
864
- "sm": "指只在一个特定产业,用来生产、加工、处理特定产品或者改变特定物质形态的机械设备及其专门配套件",
865
- "specification": null,
866
- "ssflbbh": "32.0",
867
- "statusDesc": null,
868
- "taxCategoryCode": "1090200000000000000",
869
- "updateTime": "2021-08-17 15:12:15.0",
870
- "zzssl": "",
871
- "zzstsgl": "",
872
- "zzszcyj": ""
873
- },
874
- {
875
- "bbh": "34.0",
876
- "createTime": "2019-09-12 08:54:16.0",
877
- "gjz": "",
878
- "gxsj": "20200601",
879
- "hzx": "Y",
880
- "id": 50547,
881
- "pid": "1000000000000000000",
882
- "productName": "农、林、牧、渔业类产品",
883
- "qysj": "20190401",
884
- "shorthand": "农产品",
885
- "sm": "",
886
- "specification": null,
887
- "ssflbbh": "32.0",
888
- "statusDesc": null,
889
- "taxCategoryCode": "1010000000000000000",
890
- "updateTime": "2021-08-17 15:12:19.0",
891
- "zzssl": "",
892
- "zzstsgl": "",
893
- "zzszcyj": ""
894
- },
895
- {
896
- "bbh": "34.0",
897
- "createTime": "2019-09-12 08:54:16.0",
898
- "gjz": "",
899
- "gxsj": "20200601",
900
- "hzx": "Y",
901
- "id": 50920,
902
- "pid": "1000000000000000000",
903
- "productName": "食品、饮料、烟、酒类产品",
904
- "qysj": "20190401",
905
- "shorthand": "食品类产品",
906
- "sm": "",
907
- "specification": null,
908
- "ssflbbh": "32.0",
909
- "statusDesc": null,
910
- "taxCategoryCode": "1030000000000000000",
911
- "updateTime": "2021-08-17 15:12:07.0",
912
- "zzssl": "",
913
- "zzstsgl": "",
914
- "zzszcyj": ""
915
- },
916
- {
917
- "bbh": "34.0",
918
- "createTime": "2019-09-12 08:54:16.0",
919
- "gjz": "",
920
- "gxsj": "20200601",
921
- "hzx": "Y",
922
- "id": 53022,
923
- "pid": "1000000000000000000",
924
- "productName": "机械、设备类产品",
925
- "qysj": "20190401",
926
- "shorthand": "机械设备",
927
- "sm": "",
928
- "specification": null,
929
- "ssflbbh": "32.0",
930
- "statusDesc": null,
931
- "taxCategoryCode": "1090000000000000000",
932
- "updateTime": "2021-08-17 15:12:15.0",
933
- "zzssl": "",
934
- "zzstsgl": "",
935
- "zzszcyj": ""
936
- },
937
- {
938
- "bbh": "34.0",
939
- "createTime": "2019-09-12 08:54:16.0",
940
- "gjz": "",
941
- "gxsj": "20200601",
942
- "hzx": "Y",
943
- "id": 50546,
944
- "pid": "0",
945
- "productName": "货物",
946
- "qysj": "20190401",
947
- "shorthand": "货物",
948
- "sm": "",
949
- "specification": null,
950
- "ssflbbh": "32.0",
951
- "statusDesc": null,
952
- "taxCategoryCode": "1000000000000000000",
953
- "updateTime": "2021-08-17 15:12:12.0",
954
- "zzssl": "",
955
- "zzstsgl": "",
956
- "zzszcyj": ""
957
- }
1
+ import React from 'react';
2
+ import { Input, message } from 'kts-components-antd-x3';
3
+ import Invoice from '../../';
4
+ import 'antd/dist/antd.css';
5
+
6
+ export default () => {
7
+
8
+ const controller = React.useMemo(() => new MyController1(), [])
9
+ React.useEffect(() => {
10
+ controller.run(async s => {
11
+ s.addGoodsCheck=checkGood;
12
+ s.stakeholder.enables = ['taxAmount'];
13
+ })
14
+ }, [])
15
+ const [deduction, setDeduction] = React.useState<number | undefined>(0);
16
+
17
+ const [goodMax, setgoodMax] = React.useState(0);
18
+
19
+ const onChange = React.useCallback((e: React.ChangeEvent<HTMLInputElement>) => {
20
+ const num = e.target.value ? parseFloat(e.target.value) : undefined;
21
+ if (typeof num === 'number' && `${num}` !== 'NaN') {
22
+ setgoodMax(1);
23
+ setDeduction(num);
24
+ } else {
25
+ setgoodMax(0);
26
+ setDeduction(undefined);
27
+ }
28
+ }, [])
29
+
30
+ const menuExpansion = React.useMemo(() => {
31
+ return (
32
+ <span style={{ marginRight: 10 }} >
33
+ <Input size="small" placeholder='扣除额' onChange={onChange} />
34
+ </span>
35
+ )
36
+ }, [])
37
+ const checkGood = async () => {
38
+ await new Promise((resolve,) => {
39
+ setTimeout(() => {
40
+ const a = Math.random();
41
+ if (a > 0.5) {
42
+ message.error('请先填写发票行信息,再添加新的行');
43
+ return false;
44
+ } else {
45
+ resolve(true)
46
+ console.log(11112)
47
+ }
48
+
49
+ }, 1000)
50
+ })
51
+ }
52
+ return (
53
+ <Invoice
54
+ controller={controller}
55
+ goodsList={
56
+ <Invoice.GoodsList
57
+
58
+ // addGoodsCheck={checkGood}
59
+ // isSwitchTax={false} // 是否可以切换(含税/不含税)状态
60
+ // isAddDiscount={false} // 不能添加折扣行
61
+ // goodMax={goodMax} // 控制能可以添加的货物函数
62
+ // deduction={deduction} // 扣除额
63
+ // menuExpansion={menuExpansion} // 扩展
64
+ />
65
+ }
66
+ />
67
+ )
68
+ };
69
+
70
+
71
+ // 税收分类编码列表
72
+ class MyController1 extends Invoice.InvoiceController {
73
+
74
+ constructor() {
75
+ super()
76
+ this.state.model = 'default'
77
+ }
78
+
79
+ getTaxCategoryCodeList = this.pipeline(async (s) => {
80
+ console.log('===> 准备赋码的货物索引列表', s.goodsListState.endowCode.endowcodeGoodIndex);
81
+
82
+ s.goodsListState.endowCode.getTaxCategoryCodeTree = async (value) => {
83
+ return moke.map(e => {
84
+ return {
85
+ label: `${e.taxCategoryCode}-${e.shorthand}`,
86
+ shorthand: e.shorthand,
87
+ id: e.taxCategoryCode,
88
+ pid: e.pid
89
+ }
90
+ })
91
+ };
92
+ });
93
+ }
94
+
95
+ const moke = [
96
+ {
97
+ "bbh": "34.0",
98
+ "createTime": "2019-09-12 08:54:16.0",
99
+ "gjz": "稻谷、早籼稻、晚籼稻、中籼稻、粳稻、糯稻",
100
+ "gxsj": "20200601",
101
+ "hzx": "N",
102
+ "id": 50550,
103
+ "pid": "1010101000000000000",
104
+ "productName": "稻谷",
105
+ "qysj": "20190401",
106
+ "shorthand": "谷物",
107
+ "sm": "包括早籼稻、晚籼稻、中籼稻、粳稻、糯稻、其他稻谷。",
108
+ "specification": null,
109
+ "ssflbbh": "32.0",
110
+ "statusDesc": null,
111
+ "taxCategoryCode": "1010101010000000000",
112
+ "updateTime": "2021-08-17 15:12:33.0",
113
+ "zzssl": "9%",
114
+ "zzstsgl": "免税",
115
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
116
+ },
117
+ {
118
+ "bbh": "34.0",
119
+ "createTime": "2019-09-12 08:54:16.0",
120
+ "gjz": "小麦、硬质小麦、软质小麦",
121
+ "gxsj": "20200601",
122
+ "hzx": "N",
123
+ "id": 50551,
124
+ "pid": "1010101000000000000",
125
+ "productName": "小麦",
126
+ "qysj": "20190401",
127
+ "shorthand": "谷物",
128
+ "sm": "包括硬质小麦、软质小麦、其他小麦。",
129
+ "specification": null,
130
+ "ssflbbh": "32.0",
131
+ "statusDesc": null,
132
+ "taxCategoryCode": "1010101020000000000",
133
+ "updateTime": "2021-08-17 15:12:22.0",
134
+ "zzssl": "9%",
135
+ "zzstsgl": "免税",
136
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
137
+ },
138
+ {
139
+ "bbh": "34.0",
140
+ "createTime": "2019-09-12 08:54:16.0",
141
+ "gjz": "玉米、白玉米、黄玉米、糯玉米、甜玉米",
142
+ "gxsj": "20200601",
143
+ "hzx": "N",
144
+ "id": 50552,
145
+ "pid": "1010101000000000000",
146
+ "productName": "玉米",
147
+ "qysj": "20190401",
148
+ "shorthand": "谷物",
149
+ "sm": "包括白玉米、黄玉米、糯玉米、甜玉米、其他玉米。",
150
+ "specification": null,
151
+ "ssflbbh": "32.0",
152
+ "statusDesc": null,
153
+ "taxCategoryCode": "1010101030000000000",
154
+ "updateTime": "2021-08-17 15:12:27.0",
155
+ "zzssl": "9%",
156
+ "zzstsgl": "免税",
157
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)、《财政部、国家税务总局关于免征蔬菜流通环节增值税有关问题的通知》(财税〔2011〕137号)"
158
+ },
159
+ {
160
+ "bbh": "34.0",
161
+ "createTime": "2019-09-12 08:54:16.0",
162
+ "gjz": "谷子、硬谷子、糯谷子",
163
+ "gxsj": "20200601",
164
+ "hzx": "N",
165
+ "id": 50553,
166
+ "pid": "1010101000000000000",
167
+ "productName": "谷子",
168
+ "qysj": "20190401",
169
+ "shorthand": "谷物",
170
+ "sm": "包括硬谷子、糯谷子、其他谷子。",
171
+ "specification": null,
172
+ "ssflbbh": "32.0",
173
+ "statusDesc": null,
174
+ "taxCategoryCode": "1010101040000000000",
175
+ "updateTime": "2021-08-17 15:12:12.0",
176
+ "zzssl": "9%",
177
+ "zzstsgl": "免税",
178
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
179
+ },
180
+ {
181
+ "bbh": "34.0",
182
+ "createTime": "2019-09-12 08:54:16.0",
183
+ "gjz": "高粱、红粒高粱、白粒高粱、糯高粱",
184
+ "gxsj": "20200601",
185
+ "hzx": "N",
186
+ "id": 50554,
187
+ "pid": "1010101000000000000",
188
+ "productName": "高粱",
189
+ "qysj": "20190401",
190
+ "shorthand": "谷物",
191
+ "sm": "包括红粒高粱、白粒高粱、糯高粱、其他高粱。",
192
+ "specification": null,
193
+ "ssflbbh": "32.0",
194
+ "statusDesc": null,
195
+ "taxCategoryCode": "1010101050000000000",
196
+ "updateTime": "2021-08-17 15:12:30.0",
197
+ "zzssl": "9%",
198
+ "zzstsgl": "免税",
199
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
200
+ },
201
+ {
202
+ "bbh": "34.0",
203
+ "createTime": "2019-09-12 08:54:16.0",
204
+ "gjz": "大麦、裸大麦、皮大麦",
205
+ "gxsj": "20200601",
206
+ "hzx": "N",
207
+ "id": 50555,
208
+ "pid": "1010101000000000000",
209
+ "productName": "大麦",
210
+ "qysj": "20190401",
211
+ "shorthand": "谷物",
212
+ "sm": "包括裸大麦、皮大麦。",
213
+ "specification": null,
214
+ "ssflbbh": "32.0",
215
+ "statusDesc": null,
216
+ "taxCategoryCode": "1010101060000000000",
217
+ "updateTime": "2021-08-17 15:12:08.0",
218
+ "zzssl": "9%",
219
+ "zzstsgl": "免税",
220
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
221
+ },
222
+ {
223
+ "bbh": "34.0",
224
+ "createTime": "2019-09-12 08:54:16.0",
225
+ "gjz": "裸燕麦、皮燕麦",
226
+ "gxsj": "20200601",
227
+ "hzx": "N",
228
+ "id": 50556,
229
+ "pid": "1010101000000000000",
230
+ "productName": "燕麦",
231
+ "qysj": "20190401",
232
+ "shorthand": "谷物",
233
+ "sm": "包括裸燕麦、皮燕麦。",
234
+ "specification": null,
235
+ "ssflbbh": "32.0",
236
+ "statusDesc": null,
237
+ "taxCategoryCode": "1010101070000000000",
238
+ "updateTime": "2021-08-17 15:12:29.0",
239
+ "zzssl": "9%",
240
+ "zzstsgl": "免税",
241
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
242
+ },
243
+ {
244
+ "bbh": "34.0",
245
+ "createTime": "2019-09-12 08:54:16.0",
246
+ "gjz": "黑麦",
247
+ "gxsj": "20200601",
248
+ "hzx": "N",
249
+ "id": 50557,
250
+ "pid": "1010101000000000000",
251
+ "productName": "黑麦",
252
+ "qysj": "20190401",
253
+ "shorthand": "谷物",
254
+ "sm": "",
255
+ "specification": null,
256
+ "ssflbbh": "32.0",
257
+ "statusDesc": null,
258
+ "taxCategoryCode": "1010101080000000000",
259
+ "updateTime": "2021-08-17 15:12:11.0",
260
+ "zzssl": "9%",
261
+ "zzstsgl": "免税",
262
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
263
+ },
264
+ {
265
+ "bbh": "34.0",
266
+ "createTime": "2019-09-12 08:54:16.0",
267
+ "gjz": "荞麦、甜荞麦、苦荞麦",
268
+ "gxsj": "20200601",
269
+ "hzx": "N",
270
+ "id": 50558,
271
+ "pid": "1010101000000000000",
272
+ "productName": "荞麦",
273
+ "qysj": "20190401",
274
+ "shorthand": "谷物",
275
+ "sm": "包括甜荞麦、苦荞麦。",
276
+ "specification": null,
277
+ "ssflbbh": "32.0",
278
+ "statusDesc": null,
279
+ "taxCategoryCode": "1010101090000000000",
280
+ "updateTime": "2021-08-17 15:12:30.0",
281
+ "zzssl": "9%",
282
+ "zzstsgl": "免税",
283
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
284
+ },
285
+ {
286
+ "bbh": "34.0",
287
+ "createTime": "2019-09-12 08:54:16.0",
288
+ "gjz": "糜子、硬糜子、糯糜子、紫米、薏苡",
289
+ "gxsj": "20200601",
290
+ "hzx": "N",
291
+ "id": 50559,
292
+ "pid": "1010101000000000000",
293
+ "productName": "其他谷物",
294
+ "qysj": "20190401",
295
+ "shorthand": "谷物",
296
+ "sm": "包括糜子(硬糜子、糯糜子)、紫米、薏苡等。",
297
+ "specification": null,
298
+ "ssflbbh": "32.0",
299
+ "statusDesc": null,
300
+ "taxCategoryCode": "1010101990000000000",
301
+ "updateTime": "2021-08-17 15:12:19.0",
302
+ "zzssl": "9%",
303
+ "zzstsgl": "免税",
304
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
305
+ },
306
+ {
307
+ "bbh": "34.0",
308
+ "createTime": "2019-09-12 08:54:16.0",
309
+ "gjz": "种用谷物、种用皮大麦、种用裸大麦、种用糯高粱、种用红粒高粱、种用白粒高粱、种用甜玉米、种用糯玉米、种用黄玉米、种用白玉米、种用硬质小麦、种用软质小麦、种用中籼稻、种用早籼稻、种用晚籼稻、种用糯稻、种用粳稻",
310
+ "gxsj": "20200601",
311
+ "hzx": "N",
312
+ "id": 50683,
313
+ "pid": "1010119000000000000",
314
+ "productName": "种用谷物",
315
+ "qysj": "20190401",
316
+ "shorthand": "种子种苗",
317
+ "sm": "包括种用硬质小麦、种用甜玉米、种用软质小麦、种用皮大麦、种用糯玉米、种用糯高粱、种用裸大麦、种用黄玉米、种用红粒高粱、种用白玉米、种用白粒高粱、其他种用玉米、其他种用小麦、其他种用高粱、种用中籼稻、种用早籼稻、种用晚籼稻、种用糯稻、种用粳稻、其他种用稻谷。",
318
+ "specification": null,
319
+ "ssflbbh": "32.0",
320
+ "statusDesc": null,
321
+ "taxCategoryCode": "1010119010000000000",
322
+ "updateTime": "2021-08-17 15:12:24.0",
323
+ "zzssl": "9%",
324
+ "zzstsgl": "免税",
325
+ "zzszcyj": "《财政部、国家税务总局关于若干农业生产资料征免增值税政策的通知》(财税〔2001〕113号)"
326
+ },
327
+ {
328
+ "bbh": "34.0",
329
+ "createTime": "2019-09-12 08:54:16.0",
330
+ "gjz": "小麦粉、小麦专用粉、小麦自发粉",
331
+ "gxsj": "20200601",
332
+ "hzx": "N",
333
+ "id": 50923,
334
+ "pid": "1030101000000000000",
335
+ "productName": "小麦粉",
336
+ "qysj": "20190401",
337
+ "shorthand": "谷物细粉",
338
+ "sm": "",
339
+ "specification": null,
340
+ "ssflbbh": "32.0",
341
+ "statusDesc": null,
342
+ "taxCategoryCode": "1030101010000000000",
343
+ "updateTime": "2021-08-17 15:12:14.0",
344
+ "zzssl": "9%",
345
+ "zzstsgl": "免税",
346
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
347
+ },
348
+ {
349
+ "bbh": "34.0",
350
+ "createTime": "2019-09-12 08:54:16.0",
351
+ "gjz": "大米粉、籼米细粉、粳米细粉",
352
+ "gxsj": "20200601",
353
+ "hzx": "N",
354
+ "id": 50924,
355
+ "pid": "1030101000000000000",
356
+ "productName": "大米粉",
357
+ "qysj": "20190401",
358
+ "shorthand": "谷物细粉",
359
+ "sm": "",
360
+ "specification": null,
361
+ "ssflbbh": "32.0",
362
+ "statusDesc": null,
363
+ "taxCategoryCode": "1030101020000000000",
364
+ "updateTime": "2021-08-17 15:12:08.0",
365
+ "zzssl": "9%",
366
+ "zzstsgl": "免税",
367
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
368
+ },
369
+ {
370
+ "bbh": "34.0",
371
+ "createTime": "2019-09-12 08:54:16.0",
372
+ "gjz": "玉米细粉、糯米细粉、荞麦细粉、黑麦细粉、莜麦细粉、高粱细粉、大麦细粉",
373
+ "gxsj": "20200601",
374
+ "hzx": "N",
375
+ "id": 50925,
376
+ "pid": "1030101000000000000",
377
+ "productName": "其他谷物细粉",
378
+ "qysj": "20190401",
379
+ "shorthand": "谷物细粉",
380
+ "sm": "",
381
+ "specification": null,
382
+ "ssflbbh": "32.0",
383
+ "statusDesc": null,
384
+ "taxCategoryCode": "1030101990000000000",
385
+ "updateTime": "2021-08-17 15:12:08.0",
386
+ "zzssl": "9%",
387
+ "zzstsgl": "免税",
388
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
389
+ },
390
+ {
391
+ "bbh": "34.0",
392
+ "createTime": "2019-09-12 08:54:16.0",
393
+ "gjz": "籼米、粳米",
394
+ "gxsj": "20200601",
395
+ "hzx": "N",
396
+ "id": 50928,
397
+ "pid": "1030102010000000000",
398
+ "productName": "大米",
399
+ "qysj": "20190401",
400
+ "shorthand": "谷物加工品",
401
+ "sm": "",
402
+ "specification": null,
403
+ "ssflbbh": "32.0",
404
+ "statusDesc": null,
405
+ "taxCategoryCode": "1030102010100000000",
406
+ "updateTime": "2021-08-17 15:12:11.0",
407
+ "zzssl": "9%",
408
+ "zzstsgl": "免税",
409
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
410
+ },
411
+ {
412
+ "bbh": "34.0",
413
+ "createTime": "2019-09-12 08:54:16.0",
414
+ "gjz": "大米",
415
+ "gxsj": "20200601",
416
+ "hzx": "N",
417
+ "id": 50929,
418
+ "pid": "1030102010000000000",
419
+ "productName": "小米",
420
+ "qysj": "20190401",
421
+ "shorthand": "谷物加工品",
422
+ "sm": "",
423
+ "specification": null,
424
+ "ssflbbh": "32.0",
425
+ "statusDesc": null,
426
+ "taxCategoryCode": "1030102010200000000",
427
+ "updateTime": "2021-08-17 15:12:25.0",
428
+ "zzssl": "9%",
429
+ "zzstsgl": "免税",
430
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
431
+ },
432
+ {
433
+ "bbh": "34.0",
434
+ "createTime": "2019-09-12 08:54:16.0",
435
+ "gjz": "糯米",
436
+ "gxsj": "20200601",
437
+ "hzx": "N",
438
+ "id": 50930,
439
+ "pid": "1030102010000000000",
440
+ "productName": "糯米",
441
+ "qysj": "20190401",
442
+ "shorthand": "谷物加工品",
443
+ "sm": "",
444
+ "specification": null,
445
+ "ssflbbh": "32.0",
446
+ "statusDesc": null,
447
+ "taxCategoryCode": "1030102010300000000",
448
+ "updateTime": "2021-08-17 15:12:14.0",
449
+ "zzssl": "9%",
450
+ "zzstsgl": "免税",
451
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
452
+ },
453
+ {
454
+ "bbh": "34.0",
455
+ "createTime": "2019-09-12 08:54:16.0",
456
+ "gjz": "高粱米",
457
+ "gxsj": "20200601",
458
+ "hzx": "N",
459
+ "id": 50931,
460
+ "pid": "1030102010000000000",
461
+ "productName": "高粱米",
462
+ "qysj": "20190401",
463
+ "shorthand": "谷物加工品",
464
+ "sm": "",
465
+ "specification": null,
466
+ "ssflbbh": "32.0",
467
+ "statusDesc": null,
468
+ "taxCategoryCode": "1030102010400000000",
469
+ "updateTime": "2021-08-17 15:12:13.0",
470
+ "zzssl": "9%",
471
+ "zzstsgl": "免税",
472
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
473
+ },
474
+ {
475
+ "bbh": "34.0",
476
+ "createTime": "2019-09-12 08:54:16.0",
477
+ "gjz": "脱壳燕麦",
478
+ "gxsj": "20200601",
479
+ "hzx": "N",
480
+ "id": 50932,
481
+ "pid": "1030102010000000000",
482
+ "productName": "脱壳燕麦",
483
+ "qysj": "20190401",
484
+ "shorthand": "谷物加工品",
485
+ "sm": "指已脱壳但未去皮的燕麦。",
486
+ "specification": null,
487
+ "ssflbbh": "32.0",
488
+ "statusDesc": null,
489
+ "taxCategoryCode": "1030102010500000000",
490
+ "updateTime": "2021-08-17 15:12:06.0",
491
+ "zzssl": "9%",
492
+ "zzstsgl": "免税",
493
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
494
+ },
495
+ {
496
+ "bbh": "34.0",
497
+ "createTime": "2019-09-12 08:54:16.0",
498
+ "gjz": "脱壳青稞",
499
+ "gxsj": "20200601",
500
+ "hzx": "N",
501
+ "id": 50933,
502
+ "pid": "1030102010000000000",
503
+ "productName": "脱壳青稞",
504
+ "qysj": "20190401",
505
+ "shorthand": "谷物加工品",
506
+ "sm": "",
507
+ "specification": null,
508
+ "ssflbbh": "32.0",
509
+ "statusDesc": null,
510
+ "taxCategoryCode": "1030102010600000000",
511
+ "updateTime": "2021-08-17 15:12:11.0",
512
+ "zzssl": "9%",
513
+ "zzstsgl": "免税",
514
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
515
+ },
516
+ {
517
+ "bbh": "34.0",
518
+ "createTime": "2019-09-12 08:54:16.0",
519
+ "gjz": "珠粒大麦",
520
+ "gxsj": "20200601",
521
+ "hzx": "N",
522
+ "id": 50934,
523
+ "pid": "1030102010000000000",
524
+ "productName": "珠粒大麦",
525
+ "qysj": "20190401",
526
+ "shorthand": "谷物加工品",
527
+ "sm": "",
528
+ "specification": null,
529
+ "ssflbbh": "32.0",
530
+ "statusDesc": null,
531
+ "taxCategoryCode": "1030102010700000000",
532
+ "updateTime": "2021-08-17 15:12:12.0",
533
+ "zzssl": "9%",
534
+ "zzstsgl": "免税",
535
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
536
+ },
537
+ {
538
+ "bbh": "34.0",
539
+ "createTime": "2019-09-12 08:54:16.0",
540
+ "gjz": "",
541
+ "gxsj": "20200601",
542
+ "hzx": "N",
543
+ "id": 50935,
544
+ "pid": "1030102010000000000",
545
+ "productName": "其他碾磨、脱壳谷物",
546
+ "qysj": "20190401",
547
+ "shorthand": "谷物加工品",
548
+ "sm": "",
549
+ "specification": null,
550
+ "ssflbbh": "32.0",
551
+ "statusDesc": null,
552
+ "taxCategoryCode": "1030102019900000000",
553
+ "updateTime": "2021-08-17 15:12:21.0",
554
+ "zzssl": "9%",
555
+ "zzstsgl": "免税",
556
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
557
+ },
558
+ {
559
+ "bbh": "34.0",
560
+ "createTime": "2019-09-12 08:54:16.0",
561
+ "gjz": "小麦粗磨、大米粗磨、玉米粗磨、燕麦粗磨",
562
+ "gxsj": "20200601",
563
+ "hzx": "N",
564
+ "id": 50936,
565
+ "pid": "1030102000000000000",
566
+ "productName": "粗磨谷物",
567
+ "qysj": "20190401",
568
+ "shorthand": "谷物加工品",
569
+ "sm": "包括谷物去壳谷粉、粗粉及团粒。",
570
+ "specification": null,
571
+ "ssflbbh": "32.0",
572
+ "statusDesc": null,
573
+ "taxCategoryCode": "1030102020000000000",
574
+ "updateTime": "2021-08-17 15:12:15.0",
575
+ "zzssl": "9%",
576
+ "zzstsgl": "免税",
577
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
578
+ },
579
+ {
580
+ "bbh": "34.0",
581
+ "createTime": "2019-09-12 08:54:16.0",
582
+ "gjz": "燕麦片、大麦片、玉米片、谷物胚芽",
583
+ "gxsj": "20200601",
584
+ "hzx": "N",
585
+ "id": 50937,
586
+ "pid": "1030102000000000000",
587
+ "productName": "谷物加工制品",
588
+ "qysj": "20190401",
589
+ "shorthand": "谷物加工品",
590
+ "sm": "包括燕麦片、大麦片、玉米片,谷物胚芽等。",
591
+ "specification": null,
592
+ "ssflbbh": "32.0",
593
+ "statusDesc": null,
594
+ "taxCategoryCode": "1030102030000000000",
595
+ "updateTime": "2021-08-17 15:12:19.0",
596
+ "zzssl": "13%、9%",
597
+ "zzstsgl": "免税",
598
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
599
+ },
600
+ {
601
+ "bbh": "34.0",
602
+ "createTime": "2019-09-12 08:54:16.0",
603
+ "gjz": "谷物制品类罐头、甜玉米罐头、米粥罐头、米饭罐头、八宝粥罐头、蔬菜粥罐头、八宝饭罐头",
604
+ "gxsj": "20200601",
605
+ "hzx": "N",
606
+ "id": 51065,
607
+ "pid": "1030205000000000000",
608
+ "productName": "谷物制品类罐头",
609
+ "qysj": "20190401",
610
+ "shorthand": "罐头",
611
+ "sm": "指经过处理后的谷类、干果及其他原料(桂圆、枸杞、蔬菜等)装罐制成的罐头产品",
612
+ "specification": null,
613
+ "ssflbbh": "32.0",
614
+ "statusDesc": null,
615
+ "taxCategoryCode": "1030205080000000000",
616
+ "updateTime": "2021-08-17 15:12:25.0",
617
+ "zzssl": "13%",
618
+ "zzstsgl": "",
619
+ "zzszcyj": ""
620
+ },
621
+ {
622
+ "bbh": "34.0",
623
+ "createTime": "2019-09-12 08:54:16.0",
624
+ "gjz": "谷物磨粉工业用筛、谷物磨粉工业用筛架、混合滚筒、分离滚筒、谷物磨粉机的滚筒、谷物磨粉机的变换器、谷物磨粉工业用机械零件",
625
+ "gxsj": "20200601",
626
+ "hzx": "N",
627
+ "id": 53402,
628
+ "pid": "1090220000000000000",
629
+ "productName": "谷物磨粉工业用机械零件",
630
+ "qysj": "20190401",
631
+ "shorthand": "食品制造机械",
632
+ "sm": "包括谷物磨粉工业用筛及筛架、混合或分离滚筒、谷物磨粉机的滚筒或变换器、其他谷物磨粉工业用机械零件",
633
+ "specification": null,
634
+ "ssflbbh": "32.0",
635
+ "statusDesc": null,
636
+ "taxCategoryCode": "1090220050000000000",
637
+ "updateTime": "2021-08-17 15:12:11.0",
638
+ "zzssl": "13%",
639
+ "zzstsgl": "",
640
+ "zzszcyj": ""
641
+ },
642
+ {
643
+ "bbh": "34.0",
644
+ "createTime": "2019-09-12 08:54:16.0",
645
+ "gjz": "",
646
+ "gxsj": "20200601",
647
+ "hzx": "Y",
648
+ "id": 50549,
649
+ "pid": "1010100000000000000",
650
+ "productName": "谷物",
651
+ "qysj": "20190401",
652
+ "shorthand": "谷物",
653
+ "sm": "包括稻谷、小麦、玉米、谷子、高粱、大麦、燕麦、黑麦、荞麦、其他谷物,不包括种用谷物(详见101011901)。",
654
+ "specification": null,
655
+ "ssflbbh": "32.0",
656
+ "statusDesc": null,
657
+ "taxCategoryCode": "1010101000000000000",
658
+ "updateTime": "2021-08-17 15:12:22.0",
659
+ "zzssl": "",
660
+ "zzstsgl": "",
661
+ "zzszcyj": ""
662
+ },
663
+ {
664
+ "bbh": "34.0",
665
+ "createTime": "2019-09-12 08:54:16.0",
666
+ "gjz": "种子、种苗、种用谷物、种用薯类、种用油料、种用豆类、种用饲料作物、蔬菜籽、花草种、水果籽",
667
+ "gxsj": "20200601",
668
+ "hzx": "Y",
669
+ "id": 50682,
670
+ "pid": "1010100000000000000",
671
+ "productName": "种子、种苗",
672
+ "qysj": "20190401",
673
+ "shorthand": "种子种苗",
674
+ "sm": "包括种用谷物、种用薯类、种用油料、种用豆类、种用饲料作物、蔬菜籽、花草种、水果籽及其他种子、种苗",
675
+ "specification": null,
676
+ "ssflbbh": "32.0",
677
+ "statusDesc": null,
678
+ "taxCategoryCode": "1010119000000000000",
679
+ "updateTime": "2021-08-17 15:12:22.0",
680
+ "zzssl": "",
681
+ "zzstsgl": "",
682
+ "zzszcyj": ""
683
+ },
684
+ {
685
+ "bbh": "34.0",
686
+ "createTime": "2019-09-12 08:54:16.0",
687
+ "gjz": "",
688
+ "gxsj": "20200601",
689
+ "hzx": "Y",
690
+ "id": 50922,
691
+ "pid": "1030100000000000000",
692
+ "productName": "谷物细粉",
693
+ "qysj": "20190401",
694
+ "shorthand": "谷物细粉",
695
+ "sm": "",
696
+ "specification": null,
697
+ "ssflbbh": "32.0",
698
+ "statusDesc": null,
699
+ "taxCategoryCode": "1030101000000000000",
700
+ "updateTime": "2021-08-17 15:12:09.0",
701
+ "zzssl": "",
702
+ "zzstsgl": "",
703
+ "zzszcyj": ""
704
+ },
705
+ {
706
+ "bbh": "34.0",
707
+ "createTime": "2019-09-12 08:54:16.0",
708
+ "gjz": "",
709
+ "gxsj": "20200601",
710
+ "hzx": "Y",
711
+ "id": 50927,
712
+ "pid": "1030102000000000000",
713
+ "productName": "碾磨、脱壳谷物",
714
+ "qysj": "20190401",
715
+ "shorthand": "谷物加工品",
716
+ "sm": "",
717
+ "specification": null,
718
+ "ssflbbh": "32.0",
719
+ "statusDesc": null,
720
+ "taxCategoryCode": "1030102010000000000",
721
+ "updateTime": "2021-08-17 15:12:07.0",
722
+ "zzssl": "",
723
+ "zzstsgl": "",
724
+ "zzszcyj": ""
725
+ },
726
+ {
727
+ "bbh": "34.0",
728
+ "createTime": "2019-09-12 08:54:16.0",
729
+ "gjz": "",
730
+ "gxsj": "20200601",
731
+ "hzx": "Y",
732
+ "id": 51057,
733
+ "pid": "1030200000000000000",
734
+ "productName": "罐头",
735
+ "qysj": "20190401",
736
+ "shorthand": "罐头",
737
+ "sm": "",
738
+ "specification": null,
739
+ "ssflbbh": "32.0",
740
+ "statusDesc": null,
741
+ "taxCategoryCode": "1030205000000000000",
742
+ "updateTime": "2021-08-17 15:12:13.0",
743
+ "zzssl": "",
744
+ "zzstsgl": "",
745
+ "zzszcyj": ""
746
+ },
747
+ {
748
+ "bbh": "34.0",
749
+ "createTime": "2019-09-12 08:54:16.0",
750
+ "gjz": "",
751
+ "gxsj": "20200601",
752
+ "hzx": "Y",
753
+ "id": 53397,
754
+ "pid": "1090200000000000000",
755
+ "productName": "食品、饮料、烟草专用生产设备零件",
756
+ "qysj": "20190401",
757
+ "shorthand": "食品制造机械",
758
+ "sm": "",
759
+ "specification": null,
760
+ "ssflbbh": "32.0",
761
+ "statusDesc": null,
762
+ "taxCategoryCode": "1090220000000000000",
763
+ "updateTime": "2021-08-17 15:12:09.0",
764
+ "zzssl": "",
765
+ "zzstsgl": "",
766
+ "zzszcyj": ""
767
+ },
768
+ {
769
+ "bbh": "34.0",
770
+ "createTime": "2019-09-12 08:54:16.0",
771
+ "gjz": "",
772
+ "gxsj": "20200601",
773
+ "hzx": "Y",
774
+ "id": 50548,
775
+ "pid": "1010000000000000000",
776
+ "productName": "农业产品",
777
+ "qysj": "20190401",
778
+ "shorthand": "农业产品",
779
+ "sm": "",
780
+ "specification": null,
781
+ "ssflbbh": "32.0",
782
+ "statusDesc": null,
783
+ "taxCategoryCode": "1010100000000000000",
784
+ "updateTime": "2021-08-17 15:12:32.0",
785
+ "zzssl": "",
786
+ "zzstsgl": "",
787
+ "zzszcyj": ""
788
+ },
789
+ {
790
+ "bbh": "34.0",
791
+ "createTime": "2019-09-12 08:54:16.0",
792
+ "gjz": "",
793
+ "gxsj": "20200601",
794
+ "hzx": "Y",
795
+ "id": 50921,
796
+ "pid": "1030000000000000000",
797
+ "productName": "农副食品,动、植物油制品",
798
+ "qysj": "20190401",
799
+ "shorthand": "农副食品",
800
+ "sm": "",
801
+ "specification": null,
802
+ "ssflbbh": "32.0",
803
+ "statusDesc": null,
804
+ "taxCategoryCode": "1030100000000000000",
805
+ "updateTime": "2021-08-17 15:12:23.0",
806
+ "zzssl": "",
807
+ "zzstsgl": "",
808
+ "zzszcyj": ""
809
+ },
810
+ {
811
+ "bbh": "34.0",
812
+ "createTime": "2019-09-12 08:54:16.0",
813
+ "gjz": "",
814
+ "gxsj": "20200601",
815
+ "hzx": "Y",
816
+ "id": 50926,
817
+ "pid": "1030100000000000000",
818
+ "productName": "碾磨谷物及谷物加工品",
819
+ "qysj": "20190401",
820
+ "shorthand": "谷物加工品",
821
+ "sm": "",
822
+ "specification": null,
823
+ "ssflbbh": "32.0",
824
+ "statusDesc": null,
825
+ "taxCategoryCode": "1030102000000000000",
826
+ "updateTime": "2021-08-17 15:12:20.0",
827
+ "zzssl": "",
828
+ "zzstsgl": "",
829
+ "zzszcyj": ""
830
+ },
831
+ {
832
+ "bbh": "34.0",
833
+ "createTime": "2019-09-12 08:54:16.0",
834
+ "gjz": "",
835
+ "gxsj": "20200601",
836
+ "hzx": "Y",
837
+ "id": 51032,
838
+ "pid": "1030000000000000000",
839
+ "productName": "食品及加工盐",
840
+ "qysj": "20190401",
841
+ "shorthand": "食品",
842
+ "sm": "",
843
+ "specification": null,
844
+ "ssflbbh": "32.0",
845
+ "statusDesc": null,
846
+ "taxCategoryCode": "1030200000000000000",
847
+ "updateTime": "2021-08-17 15:12:30.0",
848
+ "zzssl": "",
849
+ "zzstsgl": "",
850
+ "zzszcyj": ""
851
+ },
852
+ {
853
+ "bbh": "34.0",
854
+ "createTime": "2019-09-12 08:54:16.0",
855
+ "gjz": "",
856
+ "gxsj": "20200601",
857
+ "hzx": "Y",
858
+ "id": 53261,
859
+ "pid": "1090000000000000000",
860
+ "productName": "专用设备",
861
+ "qysj": "20190401",
862
+ "shorthand": "专用设备",
863
+ "sm": "指只在一个特定产业,用来生产、加工、处理特定产品或者改变特定物质形态的机械设备及其专门配套件",
864
+ "specification": null,
865
+ "ssflbbh": "32.0",
866
+ "statusDesc": null,
867
+ "taxCategoryCode": "1090200000000000000",
868
+ "updateTime": "2021-08-17 15:12:15.0",
869
+ "zzssl": "",
870
+ "zzstsgl": "",
871
+ "zzszcyj": ""
872
+ },
873
+ {
874
+ "bbh": "34.0",
875
+ "createTime": "2019-09-12 08:54:16.0",
876
+ "gjz": "",
877
+ "gxsj": "20200601",
878
+ "hzx": "Y",
879
+ "id": 50547,
880
+ "pid": "1000000000000000000",
881
+ "productName": "农、林、牧、渔业类产品",
882
+ "qysj": "20190401",
883
+ "shorthand": "农产品",
884
+ "sm": "",
885
+ "specification": null,
886
+ "ssflbbh": "32.0",
887
+ "statusDesc": null,
888
+ "taxCategoryCode": "1010000000000000000",
889
+ "updateTime": "2021-08-17 15:12:19.0",
890
+ "zzssl": "",
891
+ "zzstsgl": "",
892
+ "zzszcyj": ""
893
+ },
894
+ {
895
+ "bbh": "34.0",
896
+ "createTime": "2019-09-12 08:54:16.0",
897
+ "gjz": "",
898
+ "gxsj": "20200601",
899
+ "hzx": "Y",
900
+ "id": 50920,
901
+ "pid": "1000000000000000000",
902
+ "productName": "食品、饮料、烟、酒类产品",
903
+ "qysj": "20190401",
904
+ "shorthand": "食品类产品",
905
+ "sm": "",
906
+ "specification": null,
907
+ "ssflbbh": "32.0",
908
+ "statusDesc": null,
909
+ "taxCategoryCode": "1030000000000000000",
910
+ "updateTime": "2021-08-17 15:12:07.0",
911
+ "zzssl": "",
912
+ "zzstsgl": "",
913
+ "zzszcyj": ""
914
+ },
915
+ {
916
+ "bbh": "34.0",
917
+ "createTime": "2019-09-12 08:54:16.0",
918
+ "gjz": "",
919
+ "gxsj": "20200601",
920
+ "hzx": "Y",
921
+ "id": 53022,
922
+ "pid": "1000000000000000000",
923
+ "productName": "机械、设备类产品",
924
+ "qysj": "20190401",
925
+ "shorthand": "机械设备",
926
+ "sm": "",
927
+ "specification": null,
928
+ "ssflbbh": "32.0",
929
+ "statusDesc": null,
930
+ "taxCategoryCode": "1090000000000000000",
931
+ "updateTime": "2021-08-17 15:12:15.0",
932
+ "zzssl": "",
933
+ "zzstsgl": "",
934
+ "zzszcyj": ""
935
+ },
936
+ {
937
+ "bbh": "34.0",
938
+ "createTime": "2019-09-12 08:54:16.0",
939
+ "gjz": "",
940
+ "gxsj": "20200601",
941
+ "hzx": "Y",
942
+ "id": 50546,
943
+ "pid": "0",
944
+ "productName": "货物",
945
+ "qysj": "20190401",
946
+ "shorthand": "货物",
947
+ "sm": "",
948
+ "specification": null,
949
+ "ssflbbh": "32.0",
950
+ "statusDesc": null,
951
+ "taxCategoryCode": "1000000000000000000",
952
+ "updateTime": "2021-08-17 15:12:12.0",
953
+ "zzssl": "",
954
+ "zzstsgl": "",
955
+ "zzszcyj": ""
956
+ }
958
957
  ]