kts-component-invoice-operate 3.2.192 → 3.2.194

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 (244) hide show
  1. package/.dumi/theme/builtins/API.tsx +66 -66
  2. package/.editorconfig +16 -16
  3. package/.fatherrc.ts +4 -4
  4. package/.prettierignore +7 -7
  5. package/.prettierrc +11 -11
  6. package/.umirc.ts +8 -8
  7. package/README.md +9 -9
  8. package/dist/Invoice/ui/digtal/StakeFarmerholder/index.d.ts +3 -0
  9. package/dist/index.esm.js +829 -774
  10. package/dist/index.js +829 -774
  11. package/docs/index.md +5 -5
  12. package/docs-dist/static/arrowDown.a1cbf0d8.svg +2 -2
  13. package/docs-dist/static/arrowUp.4c482054.svg +2 -2
  14. package/docs-dist/static/fork.5431267d.svg +11 -11
  15. package/docs-dist/static/plus.44013ce3.svg +11 -11
  16. package/docs-dist/static/plus.4fd1af30.svg +11 -11
  17. package/index.html +12 -12
  18. package/package.json +62 -62
  19. package/src/Invoice/Invoice-digtal/_test/architecture/index.tsx +21 -21
  20. package/src/Invoice/Invoice-digtal/_test/disabled/index.tsx +40 -40
  21. package/src/Invoice/Invoice-digtal/_test/easiest/index.tsx +29 -29
  22. package/src/Invoice/Invoice-digtal/_test/freight/index.tsx +14574 -14574
  23. package/src/Invoice/Invoice-digtal/_test/header/index.tsx +84 -84
  24. package/src/Invoice/Invoice-digtal/_test/importGoods/index.tsx +868 -868
  25. package/src/Invoice/Invoice-digtal/_test/importStakeholder/index.tsx +18 -18
  26. package/src/Invoice/Invoice-digtal/_test/lineCredit/index.tsx +19 -19
  27. package/src/Invoice/Invoice-digtal/_test/prefab/index.tsx +150 -150
  28. package/src/Invoice/Invoice-digtal/_test/readOnly/index.tsx +55 -55
  29. package/src/Invoice/Invoice-digtal/_test/realEstateInfo/index.tsx +21 -21
  30. package/src/Invoice/Invoice-digtal/_test/stakeholder/index.tsx +12 -12
  31. package/src/Invoice/Invoice-digtal/_test/typeSelection/index.tsx +29 -29
  32. package/src/Invoice/Invoice-digtal/index.md +41 -41
  33. package/src/Invoice/InvoiceController/InvoiceControllerForm/index.ts +105 -105
  34. package/src/Invoice/InvoiceController/InvoiceControllerState/AutoComplete/index.ts +26 -26
  35. package/src/Invoice/InvoiceController/InvoiceControllerState/BuyerState/index.tsx +88 -88
  36. package/src/Invoice/InvoiceController/InvoiceControllerState/FreightListState/IColumnsReplenish/index.ts +10 -10
  37. package/src/Invoice/InvoiceController/InvoiceControllerState/FreightListState/IGood/index.ts +33 -33
  38. package/src/Invoice/InvoiceController/InvoiceControllerState/FreightListState/ImportGoods/index.ts +81 -81
  39. package/src/Invoice/InvoiceController/InvoiceControllerState/FreightListState/index.ts +39 -39
  40. package/src/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/Drag/index.ts +15 -15
  41. package/src/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/EndowCode/index.tsx +104 -104
  42. package/src/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/IColumnsReplenish/index.ts +10 -10
  43. package/src/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/IGood/index.ts +87 -87
  44. package/src/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/ImportGoods/index.ts +81 -81
  45. package/src/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/LineAttributeType/index.ts +7 -7
  46. package/src/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/ProductComparison/index.ts +9 -9
  47. package/src/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/index.ts +131 -131
  48. package/src/Invoice/InvoiceController/InvoiceControllerState/Stakeholder/index.ts +13 -13
  49. package/src/Invoice/InvoiceController/InvoiceControllerState/index.ts +71 -71
  50. package/src/Invoice/InvoiceController/fns/addFreight.ts +11 -11
  51. package/src/Invoice/InvoiceController/fns/addGood.ts +11 -11
  52. package/src/Invoice/InvoiceController/fns/addGoodDiscount.ts +126 -126
  53. package/src/Invoice/InvoiceController/fns/addGoodDiscountV2.ts +86 -86
  54. package/src/Invoice/InvoiceController/fns/delFreight.ts +38 -38
  55. package/src/Invoice/InvoiceController/fns/delGood.ts +41 -41
  56. package/src/Invoice/InvoiceController/fns/getGoodsSearch.ts +26 -26
  57. package/src/Invoice/InvoiceController/fns/importGoodsDrawer.ts +79 -79
  58. package/src/Invoice/InvoiceController/fns/itemBlur.ts +40 -40
  59. package/src/Invoice/InvoiceController/fns/mergeDetails.ts +201 -201
  60. package/src/Invoice/InvoiceController/fns/mergeDiscount.ts +35 -35
  61. package/src/Invoice/InvoiceController/fns/saveEditFreight.ts +24 -24
  62. package/src/Invoice/InvoiceController/fns/saveEditGood.ts +24 -24
  63. package/src/Invoice/InvoiceController/fns/setEditFreight.ts +16 -16
  64. package/src/Invoice/InvoiceController/fns/setEditGood.ts +16 -16
  65. package/src/Invoice/InvoiceController/fns/setFreight.ts +10 -10
  66. package/src/Invoice/InvoiceController/fns/setGoods.ts +10 -10
  67. package/src/Invoice/InvoiceController/fns/updateInvoiceNo.ts +8 -8
  68. package/src/Invoice/InvoiceController/index.ts +106 -106
  69. package/src/Invoice/_test/buyerNameSearch/index.tsx +42 -42
  70. package/src/Invoice/_test/children/index.tsx +214 -214
  71. package/src/Invoice/_test/deduction/index.tsx +935 -935
  72. package/src/Invoice/_test/draft/index.tsx +40 -40
  73. package/src/Invoice/_test/easiest/index.tsx +5 -5
  74. package/src/Invoice/_test/endowCode/index.tsx +1158 -1158
  75. package/src/Invoice/_test/goodsMenuExpand/index.tsx +32 -32
  76. package/src/Invoice/_test/importBuyer/index.tsx +74 -74
  77. package/src/Invoice/_test/importGoods/index.tsx +1197 -1197
  78. package/src/Invoice/_test/invoiceType/index.tsx +59 -59
  79. package/src/Invoice/_test/isInvoiceNo/index.tsx +12 -12
  80. package/src/Invoice/_test/replaceHead/index.tsx +22 -22
  81. package/src/Invoice/_test/retrieveData/index.tsx +22 -22
  82. package/src/Invoice/_test/seller/index.tsx +28 -28
  83. package/src/Invoice/_test/setDataSource/index.tsx +73 -73
  84. package/src/Invoice/_test/unit/index.tsx +19 -19
  85. package/src/Invoice/index.less +31 -31
  86. package/src/Invoice/index.md +56 -56
  87. package/src/Invoice/index.tsx +190 -190
  88. package/src/Invoice/tools/calculate/index.ts +132 -132
  89. package/src/Invoice/tools/coolingFn/index.ts +17 -17
  90. package/src/Invoice/tools/evaluate/index.ts +7 -7
  91. package/src/Invoice/tools/idGenerator/index.ts +2 -2
  92. package/src/Invoice/tools/itemName/index.ts +55 -55
  93. package/src/Invoice/tools/lazyFn/index.ts +19 -19
  94. package/src/Invoice/tools/mounting/index.ts +13 -13
  95. package/src/Invoice/tools/strringFn/index.ts +40 -40
  96. package/src/Invoice/tools/useToGenerateId/index.ts +10 -10
  97. package/src/Invoice/tools/utils/index.ts +1 -1
  98. package/src/Invoice/tools/utils/money/index.ts +20 -20
  99. package/src/Invoice/ui/default/AddComparisonDrawer/index.tsx +149 -149
  100. package/src/Invoice/ui/default/Buyer/index.less +219 -219
  101. package/src/Invoice/ui/default/Buyer/index.tsx +114 -114
  102. package/src/Invoice/ui/default/Buyer/ui/BuyerNameInput/index.tsx +166 -166
  103. package/src/Invoice/ui/default/Buyer/ui/ImportBuyerButton/index.tsx +21 -21
  104. package/src/Invoice/ui/default/EndowCodeDrawer/index.less +8 -8
  105. package/src/Invoice/ui/default/EndowCodeDrawer/index.tsx +607 -607
  106. package/src/Invoice/ui/default/GoodsList/hook/useColumns/autoFillFn/index.ts +647 -647
  107. package/src/Invoice/ui/default/GoodsList/hook/useColumns/index.tsx +711 -711
  108. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/Drag/index.less +20 -20
  109. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/Drag/index.tsx +205 -205
  110. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/Expand/index.tsx +57 -57
  111. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/ItemCodeInput/index.less +18 -18
  112. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/ItemCodeInput/index.tsx +49 -49
  113. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/ItemNameInput/index.less +17 -17
  114. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/ItemNameInput/index.tsx +91 -91
  115. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/RowEditButton/index.tsx +30 -30
  116. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/RowMenu/hook/_useAddComparison/index.tsx +43 -43
  117. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/RowMenu/hook/useAddDiscount/index.tsx +118 -118
  118. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/RowMenu/hook/useDelItem/index.tsx +41 -41
  119. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/RowMenu/hook/useEndowCode/index.tsx +25 -25
  120. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/RowMenu/index.less +13 -13
  121. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/RowMenu/index.tsx +99 -99
  122. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/RowSaveButton/index.tsx +14 -14
  123. package/src/Invoice/ui/default/GoodsList/hook/useColumns/ui/TitleText/index.tsx +20 -20
  124. package/src/Invoice/ui/default/GoodsList/hook/useDeduction/index.tsx +24 -24
  125. package/src/Invoice/ui/default/GoodsList/hook/useOnRow/index.tsx +52 -52
  126. package/src/Invoice/ui/default/GoodsList/hook/useRowSelection/index.tsx +120 -120
  127. package/src/Invoice/ui/default/GoodsList/hook/useWindowClick/index.tsx +23 -23
  128. package/src/Invoice/ui/default/GoodsList/index.less +185 -185
  129. package/src/Invoice/ui/default/GoodsList/index.tsx +205 -205
  130. package/src/Invoice/ui/default/GoodsList/ui/AddRowButton/index.tsx +65 -65
  131. package/src/Invoice/ui/default/GoodsList/ui/BulkMenu/hooks/useAddDiscountRowButton/index.less +21 -21
  132. package/src/Invoice/ui/default/GoodsList/ui/BulkMenu/hooks/useAddDiscountRowButton/index.tsx +244 -244
  133. package/src/Invoice/ui/default/GoodsList/ui/BulkMenu/hooks/useCommodityComparisonButton/index.tsx +75 -75
  134. package/src/Invoice/ui/default/GoodsList/ui/BulkMenu/hooks/useDelRowButton/index.tsx +69 -69
  135. package/src/Invoice/ui/default/GoodsList/ui/BulkMenu/hooks/useEndowCodeButton/index.tsx +65 -65
  136. package/src/Invoice/ui/default/GoodsList/ui/BulkMenu/hooks/useMergeDetails/index.tsx +91 -91
  137. package/src/Invoice/ui/default/GoodsList/ui/BulkMenu/hooks/useMergeDiscount/index.tsx +36 -36
  138. package/src/Invoice/ui/default/GoodsList/ui/BulkMenu/hooks/useSalesDiscount/index.tsx +109 -109
  139. package/src/Invoice/ui/default/GoodsList/ui/BulkMenu/hooks/useSalesGifts/index.tsx +94 -94
  140. package/src/Invoice/ui/default/GoodsList/ui/BulkMenu/index.tsx +37 -37
  141. package/src/Invoice/ui/default/GoodsList/ui/DescribeSwitch/index.tsx +36 -36
  142. package/src/Invoice/ui/default/GoodsList/ui/Search/index.less +10 -10
  143. package/src/Invoice/ui/default/GoodsList/ui/Search/index.tsx +52 -52
  144. package/src/Invoice/ui/default/GoodsList/ui/Statistics/index.less +18 -18
  145. package/src/Invoice/ui/default/GoodsList/ui/Statistics/index.tsx +114 -114
  146. package/src/Invoice/ui/default/GoodsList/ui/TableRow/index.less +40 -40
  147. package/src/Invoice/ui/default/GoodsList/ui/TableRow/index.tsx +71 -71
  148. package/src/Invoice/ui/default/GoodsList/ui/TableVirtual/index.less +38 -38
  149. package/src/Invoice/ui/default/GoodsList/ui/TableVirtual/index.tsx +130 -130
  150. package/src/Invoice/ui/default/GoodsList/ui/TableVirtual.o/index.less +44 -44
  151. package/src/Invoice/ui/default/GoodsList/ui/TableVirtual.o/index.tsx +96 -96
  152. package/src/Invoice/ui/default/GoodsList/ui/TaxIncludedSwitch/index.tsx +31 -31
  153. package/src/Invoice/ui/default/ImportBuyerDrawer/index.tsx +75 -75
  154. package/src/Invoice/ui/default/ImportGoodsDrawer/index.tsx +198 -198
  155. package/src/Invoice/ui/default/InvoiceHeader/index.less +68 -68
  156. package/src/Invoice/ui/default/InvoiceHeader/index.tsx +246 -246
  157. package/src/Invoice/ui/default/Seller/index.less +113 -113
  158. package/src/Invoice/ui/default/Seller/index.tsx +98 -98
  159. package/src/Invoice/ui/default/Sign/index.less +14 -14
  160. package/src/Invoice/ui/default/Sign/index.tsx +71 -71
  161. package/src/Invoice/ui/digtal/Architecture/index.less +18 -18
  162. package/src/Invoice/ui/digtal/Architecture/index.tsx +177 -177
  163. package/src/Invoice/ui/digtal/FreightList/hook/useColumns/dist/index.js +616 -616
  164. package/src/Invoice/ui/digtal/FreightList/hook/useColumns/index.tsx +246 -246
  165. package/src/Invoice/ui/digtal/FreightList/hook/useColumns/ui/TitleText/index.tsx +20 -20
  166. package/src/Invoice/ui/digtal/FreightList/hook/useOnRow/index.tsx +37 -37
  167. package/src/Invoice/ui/digtal/FreightList/hook/useRowSelection/index.tsx +119 -119
  168. package/src/Invoice/ui/digtal/FreightList/hook/useWindowClick/index.tsx +23 -23
  169. package/src/Invoice/ui/digtal/FreightList/index.less +72 -72
  170. package/src/Invoice/ui/digtal/FreightList/index.tsx +129 -129
  171. package/src/Invoice/ui/digtal/FreightList/ui/AddRowButton/index.tsx +64 -64
  172. package/src/Invoice/ui/digtal/FreightList/ui/BulkMenu/hooks/useDelRowButton/index.tsx +50 -50
  173. package/src/Invoice/ui/digtal/FreightList/ui/BulkMenu/hooks/useEmptyRefill/index.tsx +36 -36
  174. package/src/Invoice/ui/digtal/FreightList/ui/TableRow/index.less +28 -28
  175. package/src/Invoice/ui/digtal/FreightList/ui/TableRow/index.tsx +20 -20
  176. package/src/Invoice/ui/digtal/FreightList/ui/TableVirtual/index.less +38 -38
  177. package/src/Invoice/ui/digtal/FreightList/ui/TableVirtual/index.tsx +108 -108
  178. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/autoFillFn/index.ts +673 -673
  179. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/index.tsx +673 -673
  180. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/svg/plus.svg +11 -11
  181. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/Drag/index.less +20 -20
  182. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/Drag/index.tsx +205 -205
  183. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/ItemNameInput/index.less +9 -9
  184. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/ItemNameInput/index.tsx +87 -87
  185. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/RowEditButton/index.tsx +30 -30
  186. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/RowMenu/hook/_useAddComparison/index.tsx +43 -43
  187. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/RowMenu/hook/useAddDiscount/index.tsx +76 -76
  188. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/RowMenu/hook/useDelItem/index.tsx +41 -41
  189. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/RowMenu/hook/useEndowCode/index.tsx +34 -34
  190. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/RowMenu/index.less +13 -13
  191. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/RowMenu/index.tsx +98 -98
  192. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/RowSaveButton/index.tsx +14 -14
  193. package/src/Invoice/ui/digtal/GoodsList/hook/useColumns/ui/TitleText/index.tsx +20 -20
  194. package/src/Invoice/ui/digtal/GoodsList/hook/useOnRow/index.tsx +51 -51
  195. package/src/Invoice/ui/digtal/GoodsList/hook/useRowSelection/index.tsx +121 -121
  196. package/src/Invoice/ui/digtal/GoodsList/hook/useWindowClick/index.tsx +23 -23
  197. package/src/Invoice/ui/digtal/GoodsList/index.less +56 -56
  198. package/src/Invoice/ui/digtal/GoodsList/index.tsx +179 -179
  199. package/src/Invoice/ui/digtal/GoodsList/ui/AddRowButton/index.tsx +67 -67
  200. package/src/Invoice/ui/digtal/GoodsList/ui/BulkMenu/hooks/useAddDiscountRowButton/index.tsx +340 -340
  201. package/src/Invoice/ui/digtal/GoodsList/ui/BulkMenu/hooks/useAddDiscountRowButton/svg/add.svg +11 -11
  202. package/src/Invoice/ui/digtal/GoodsList/ui/BulkMenu/hooks/useCommodityComparisonButton/index.tsx +75 -75
  203. package/src/Invoice/ui/digtal/GoodsList/ui/BulkMenu/hooks/useDelRowButton/index.tsx +50 -50
  204. package/src/Invoice/ui/digtal/GoodsList/ui/BulkMenu/hooks/useEmptyRefill/index.tsx +37 -37
  205. package/src/Invoice/ui/digtal/GoodsList/ui/BulkMenu/hooks/useEndowCodeButton/index.tsx +82 -82
  206. package/src/Invoice/ui/digtal/GoodsList/ui/BulkMenu/hooks/useReselectInvoiceType/index.tsx +57 -57
  207. package/src/Invoice/ui/digtal/GoodsList/ui/DescribeSwitch/index.tsx +36 -36
  208. package/src/Invoice/ui/digtal/GoodsList/ui/Search/index.less +11 -11
  209. package/src/Invoice/ui/digtal/GoodsList/ui/Search/index.tsx +50 -50
  210. package/src/Invoice/ui/digtal/GoodsList/ui/Statistics/index.less +53 -53
  211. package/src/Invoice/ui/digtal/GoodsList/ui/Statistics/index.tsx +98 -98
  212. package/src/Invoice/ui/digtal/GoodsList/ui/Statistics/svg/fork.svg +11 -11
  213. package/src/Invoice/ui/digtal/GoodsList/ui/TableRow/index.less +28 -28
  214. package/src/Invoice/ui/digtal/GoodsList/ui/TableRow/index.tsx +52 -52
  215. package/src/Invoice/ui/digtal/GoodsList/ui/TableVirtual/index.less +38 -38
  216. package/src/Invoice/ui/digtal/GoodsList/ui/TableVirtual/index.tsx +108 -108
  217. package/src/Invoice/ui/digtal/GoodsList/ui/TaxIncludedSwitch/index.tsx +31 -31
  218. package/src/Invoice/ui/digtal/InvoiceHeader/index.less +57 -57
  219. package/src/Invoice/ui/digtal/InvoiceHeader/index.tsx +77 -77
  220. package/src/Invoice/ui/digtal/RealEstateInfo/index.less +14 -14
  221. package/src/Invoice/ui/digtal/RealEstateInfo/index.tsx +192 -192
  222. package/src/Invoice/ui/digtal/Sign/index.less +48 -48
  223. package/src/Invoice/ui/digtal/Sign/index.tsx +99 -99
  224. package/src/Invoice/ui/digtal/StakeFarmerholder/index.less +99 -99
  225. package/src/Invoice/ui/digtal/StakeFarmerholder/index.tsx +477 -436
  226. package/src/Invoice/ui/digtal/StakeFarmerholder/svg/arrowDown.svg +2 -2
  227. package/src/Invoice/ui/digtal/StakeFarmerholder/svg/arrowUp.svg +2 -2
  228. package/src/Invoice/ui/digtal/StakeFarmerholder/svg/plus.svg +11 -11
  229. package/src/Invoice/ui/digtal/Stakeholder/index.less +99 -99
  230. package/src/Invoice/ui/digtal/Stakeholder/index.tsx +433 -433
  231. package/src/Invoice/ui/digtal/Stakeholder/svg/arrowDown.svg +2 -2
  232. package/src/Invoice/ui/digtal/Stakeholder/svg/arrowUp.svg +2 -2
  233. package/src/Invoice/ui/digtal/Stakeholder/svg/plus.svg +11 -11
  234. package/src/InvoiceTypeModal/_test/easiest/index.tsx +31 -31
  235. package/src/InvoiceTypeModal/index.less +7 -7
  236. package/src/InvoiceTypeModal/index.md +5 -5
  237. package/src/InvoiceTypeModal/index.tsx +161 -161
  238. package/src/TaxClassificationCodeModal/_test/easiest/index.tsx +184 -184
  239. package/src/TaxClassificationCodeModal/index.less +17 -17
  240. package/src/TaxClassificationCodeModal/index.md +6 -6
  241. package/src/TaxClassificationCodeModal/index.tsx +152 -152
  242. package/src/index.ts +13 -13
  243. package/tsconfig.json +31 -31
  244. package/typings.d.ts +3 -3
@@ -1,936 +1,936 @@
1
- import React from 'react';
2
- import { Input } 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
-
10
- const [deduction, setDeduction] = React.useState<number | undefined>(0);
11
-
12
- const [goodMax, setgoodMax] = React.useState(0);
13
-
14
- const onChange = React.useCallback((e: React.ChangeEvent<HTMLInputElement>) => {
15
- const num = e.target.value ? parseFloat(e.target.value) : undefined;
16
- if (typeof num === 'number' && `${num}` !== 'NaN') {
17
- setgoodMax(1);
18
- setDeduction(num);
19
- } else {
20
- setgoodMax(0);
21
- setDeduction(undefined);
22
- }
23
- }, [])
24
-
25
- const menuExpansion = React.useMemo(() => {
26
- return (
27
- <span style={{ marginRight: 10 }} >
28
- <Input size="small" placeholder='扣除额' onChange={onChange} />
29
- </span>
30
- )
31
- }, [])
32
-
33
- return (
34
- <Invoice
35
- controller={controller}
36
- goodsList={
37
- <Invoice.GoodsList
38
- isSwitchTax={false} // 是否可以切换(含税/不含税)状态
39
- isAddDiscount={false} // 不能添加折扣行
40
- goodMax={goodMax} // 控制能可以添加的货物函数
41
- deduction={deduction} // 扣除额
42
- menuExpansion={menuExpansion} // 扩展
43
- />
44
- }
45
- />
46
- )
47
- };
48
-
49
-
50
- // 税收分类编码列表
51
- class MyController1 extends Invoice.InvoiceController {
52
-
53
- constructor() {
54
- super()
55
- this.state.model = 'default'
56
- }
57
-
58
- getTaxCategoryCodeList = this.pipeline(async (s) => {
59
- console.log('===> 准备赋码的货物索引列表', s.goodsListState.endowCode.endowcodeGoodIndex);
60
-
61
- s.goodsListState.endowCode.getTaxCategoryCodeTree = async (value) => {
62
- return moke.map(e => {
63
- return {
64
- label: `${e.taxCategoryCode}-${e.shorthand}`,
65
- shorthand: e.shorthand,
66
- id: e.taxCategoryCode,
67
- pid: e.pid
68
- }
69
- })
70
- };
71
- });
72
- }
73
-
74
- const moke = [
75
- {
76
- "bbh": "34.0",
77
- "createTime": "2019-09-12 08:54:16.0",
78
- "gjz": "稻谷、早籼稻、晚籼稻、中籼稻、粳稻、糯稻",
79
- "gxsj": "20200601",
80
- "hzx": "N",
81
- "id": 50550,
82
- "pid": "1010101000000000000",
83
- "productName": "稻谷",
84
- "qysj": "20190401",
85
- "shorthand": "谷物",
86
- "sm": "包括早籼稻、晚籼稻、中籼稻、粳稻、糯稻、其他稻谷。",
87
- "specification": null,
88
- "ssflbbh": "32.0",
89
- "statusDesc": null,
90
- "taxCategoryCode": "1010101010000000000",
91
- "updateTime": "2021-08-17 15:12:33.0",
92
- "zzssl": "9%",
93
- "zzstsgl": "免税",
94
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
95
- },
96
- {
97
- "bbh": "34.0",
98
- "createTime": "2019-09-12 08:54:16.0",
99
- "gjz": "小麦、硬质小麦、软质小麦",
100
- "gxsj": "20200601",
101
- "hzx": "N",
102
- "id": 50551,
103
- "pid": "1010101000000000000",
104
- "productName": "小麦",
105
- "qysj": "20190401",
106
- "shorthand": "谷物",
107
- "sm": "包括硬质小麦、软质小麦、其他小麦。",
108
- "specification": null,
109
- "ssflbbh": "32.0",
110
- "statusDesc": null,
111
- "taxCategoryCode": "1010101020000000000",
112
- "updateTime": "2021-08-17 15:12:22.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": 50552,
124
- "pid": "1010101000000000000",
125
- "productName": "玉米",
126
- "qysj": "20190401",
127
- "shorthand": "谷物",
128
- "sm": "包括白玉米、黄玉米、糯玉米、甜玉米、其他玉米。",
129
- "specification": null,
130
- "ssflbbh": "32.0",
131
- "statusDesc": null,
132
- "taxCategoryCode": "1010101030000000000",
133
- "updateTime": "2021-08-17 15:12:27.0",
134
- "zzssl": "9%",
135
- "zzstsgl": "免税",
136
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)、《财政部、国家税务总局关于免征蔬菜流通环节增值税有关问题的通知》(财税〔2011〕137号)"
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": 50553,
145
- "pid": "1010101000000000000",
146
- "productName": "谷子",
147
- "qysj": "20190401",
148
- "shorthand": "谷物",
149
- "sm": "包括硬谷子、糯谷子、其他谷子。",
150
- "specification": null,
151
- "ssflbbh": "32.0",
152
- "statusDesc": null,
153
- "taxCategoryCode": "1010101040000000000",
154
- "updateTime": "2021-08-17 15:12:12.0",
155
- "zzssl": "9%",
156
- "zzstsgl": "免税",
157
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
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": 50554,
166
- "pid": "1010101000000000000",
167
- "productName": "高粱",
168
- "qysj": "20190401",
169
- "shorthand": "谷物",
170
- "sm": "包括红粒高粱、白粒高粱、糯高粱、其他高粱。",
171
- "specification": null,
172
- "ssflbbh": "32.0",
173
- "statusDesc": null,
174
- "taxCategoryCode": "1010101050000000000",
175
- "updateTime": "2021-08-17 15:12:30.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": 50555,
187
- "pid": "1010101000000000000",
188
- "productName": "大麦",
189
- "qysj": "20190401",
190
- "shorthand": "谷物",
191
- "sm": "包括裸大麦、皮大麦。",
192
- "specification": null,
193
- "ssflbbh": "32.0",
194
- "statusDesc": null,
195
- "taxCategoryCode": "1010101060000000000",
196
- "updateTime": "2021-08-17 15:12:08.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": 50556,
208
- "pid": "1010101000000000000",
209
- "productName": "燕麦",
210
- "qysj": "20190401",
211
- "shorthand": "谷物",
212
- "sm": "包括裸燕麦、皮燕麦。",
213
- "specification": null,
214
- "ssflbbh": "32.0",
215
- "statusDesc": null,
216
- "taxCategoryCode": "1010101070000000000",
217
- "updateTime": "2021-08-17 15:12:29.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": 50557,
229
- "pid": "1010101000000000000",
230
- "productName": "黑麦",
231
- "qysj": "20190401",
232
- "shorthand": "谷物",
233
- "sm": "",
234
- "specification": null,
235
- "ssflbbh": "32.0",
236
- "statusDesc": null,
237
- "taxCategoryCode": "1010101080000000000",
238
- "updateTime": "2021-08-17 15:12:11.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": 50558,
250
- "pid": "1010101000000000000",
251
- "productName": "荞麦",
252
- "qysj": "20190401",
253
- "shorthand": "谷物",
254
- "sm": "包括甜荞麦、苦荞麦。",
255
- "specification": null,
256
- "ssflbbh": "32.0",
257
- "statusDesc": null,
258
- "taxCategoryCode": "1010101090000000000",
259
- "updateTime": "2021-08-17 15:12:30.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": 50559,
271
- "pid": "1010101000000000000",
272
- "productName": "其他谷物",
273
- "qysj": "20190401",
274
- "shorthand": "谷物",
275
- "sm": "包括糜子(硬糜子、糯糜子)、紫米、薏苡等。",
276
- "specification": null,
277
- "ssflbbh": "32.0",
278
- "statusDesc": null,
279
- "taxCategoryCode": "1010101990000000000",
280
- "updateTime": "2021-08-17 15:12:19.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": 50683,
292
- "pid": "1010119000000000000",
293
- "productName": "种用谷物",
294
- "qysj": "20190401",
295
- "shorthand": "种子种苗",
296
- "sm": "包括种用硬质小麦、种用甜玉米、种用软质小麦、种用皮大麦、种用糯玉米、种用糯高粱、种用裸大麦、种用黄玉米、种用红粒高粱、种用白玉米、种用白粒高粱、其他种用玉米、其他种用小麦、其他种用高粱、种用中籼稻、种用早籼稻、种用晚籼稻、种用糯稻、种用粳稻、其他种用稻谷。",
297
- "specification": null,
298
- "ssflbbh": "32.0",
299
- "statusDesc": null,
300
- "taxCategoryCode": "1010119010000000000",
301
- "updateTime": "2021-08-17 15:12:24.0",
302
- "zzssl": "9%",
303
- "zzstsgl": "免税",
304
- "zzszcyj": "《财政部、国家税务总局关于若干农业生产资料征免增值税政策的通知》(财税〔2001〕113号)"
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": 50923,
313
- "pid": "1030101000000000000",
314
- "productName": "小麦粉",
315
- "qysj": "20190401",
316
- "shorthand": "谷物细粉",
317
- "sm": "",
318
- "specification": null,
319
- "ssflbbh": "32.0",
320
- "statusDesc": null,
321
- "taxCategoryCode": "1030101010000000000",
322
- "updateTime": "2021-08-17 15:12:14.0",
323
- "zzssl": "9%",
324
- "zzstsgl": "免税",
325
- "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
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": 50924,
334
- "pid": "1030101000000000000",
335
- "productName": "大米粉",
336
- "qysj": "20190401",
337
- "shorthand": "谷物细粉",
338
- "sm": "",
339
- "specification": null,
340
- "ssflbbh": "32.0",
341
- "statusDesc": null,
342
- "taxCategoryCode": "1030101020000000000",
343
- "updateTime": "2021-08-17 15:12:08.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": 50925,
355
- "pid": "1030101000000000000",
356
- "productName": "其他谷物细粉",
357
- "qysj": "20190401",
358
- "shorthand": "谷物细粉",
359
- "sm": "",
360
- "specification": null,
361
- "ssflbbh": "32.0",
362
- "statusDesc": null,
363
- "taxCategoryCode": "1030101990000000000",
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": 50928,
376
- "pid": "1030102010000000000",
377
- "productName": "大米",
378
- "qysj": "20190401",
379
- "shorthand": "谷物加工品",
380
- "sm": "",
381
- "specification": null,
382
- "ssflbbh": "32.0",
383
- "statusDesc": null,
384
- "taxCategoryCode": "1030102010100000000",
385
- "updateTime": "2021-08-17 15:12:11.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": 50929,
397
- "pid": "1030102010000000000",
398
- "productName": "小米",
399
- "qysj": "20190401",
400
- "shorthand": "谷物加工品",
401
- "sm": "",
402
- "specification": null,
403
- "ssflbbh": "32.0",
404
- "statusDesc": null,
405
- "taxCategoryCode": "1030102010200000000",
406
- "updateTime": "2021-08-17 15:12:25.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": 50930,
418
- "pid": "1030102010000000000",
419
- "productName": "糯米",
420
- "qysj": "20190401",
421
- "shorthand": "谷物加工品",
422
- "sm": "",
423
- "specification": null,
424
- "ssflbbh": "32.0",
425
- "statusDesc": null,
426
- "taxCategoryCode": "1030102010300000000",
427
- "updateTime": "2021-08-17 15:12:14.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": 50931,
439
- "pid": "1030102010000000000",
440
- "productName": "高粱米",
441
- "qysj": "20190401",
442
- "shorthand": "谷物加工品",
443
- "sm": "",
444
- "specification": null,
445
- "ssflbbh": "32.0",
446
- "statusDesc": null,
447
- "taxCategoryCode": "1030102010400000000",
448
- "updateTime": "2021-08-17 15:12:13.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": 50932,
460
- "pid": "1030102010000000000",
461
- "productName": "脱壳燕麦",
462
- "qysj": "20190401",
463
- "shorthand": "谷物加工品",
464
- "sm": "指已脱壳但未去皮的燕麦。",
465
- "specification": null,
466
- "ssflbbh": "32.0",
467
- "statusDesc": null,
468
- "taxCategoryCode": "1030102010500000000",
469
- "updateTime": "2021-08-17 15:12:06.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": 50933,
481
- "pid": "1030102010000000000",
482
- "productName": "脱壳青稞",
483
- "qysj": "20190401",
484
- "shorthand": "谷物加工品",
485
- "sm": "",
486
- "specification": null,
487
- "ssflbbh": "32.0",
488
- "statusDesc": null,
489
- "taxCategoryCode": "1030102010600000000",
490
- "updateTime": "2021-08-17 15:12:11.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": 50934,
502
- "pid": "1030102010000000000",
503
- "productName": "珠粒大麦",
504
- "qysj": "20190401",
505
- "shorthand": "谷物加工品",
506
- "sm": "",
507
- "specification": null,
508
- "ssflbbh": "32.0",
509
- "statusDesc": null,
510
- "taxCategoryCode": "1030102010700000000",
511
- "updateTime": "2021-08-17 15:12:12.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": 50935,
523
- "pid": "1030102010000000000",
524
- "productName": "其他碾磨、脱壳谷物",
525
- "qysj": "20190401",
526
- "shorthand": "谷物加工品",
527
- "sm": "",
528
- "specification": null,
529
- "ssflbbh": "32.0",
530
- "statusDesc": null,
531
- "taxCategoryCode": "1030102019900000000",
532
- "updateTime": "2021-08-17 15:12:21.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": 50936,
544
- "pid": "1030102000000000000",
545
- "productName": "粗磨谷物",
546
- "qysj": "20190401",
547
- "shorthand": "谷物加工品",
548
- "sm": "包括谷物去壳谷粉、粗粉及团粒。",
549
- "specification": null,
550
- "ssflbbh": "32.0",
551
- "statusDesc": null,
552
- "taxCategoryCode": "1030102020000000000",
553
- "updateTime": "2021-08-17 15:12:15.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": 50937,
565
- "pid": "1030102000000000000",
566
- "productName": "谷物加工制品",
567
- "qysj": "20190401",
568
- "shorthand": "谷物加工品",
569
- "sm": "包括燕麦片、大麦片、玉米片,谷物胚芽等。",
570
- "specification": null,
571
- "ssflbbh": "32.0",
572
- "statusDesc": null,
573
- "taxCategoryCode": "1030102030000000000",
574
- "updateTime": "2021-08-17 15:12:19.0",
575
- "zzssl": "13%、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": 51065,
586
- "pid": "1030205000000000000",
587
- "productName": "谷物制品类罐头",
588
- "qysj": "20190401",
589
- "shorthand": "罐头",
590
- "sm": "指经过处理后的谷类、干果及其他原料(桂圆、枸杞、蔬菜等)装罐制成的罐头产品",
591
- "specification": null,
592
- "ssflbbh": "32.0",
593
- "statusDesc": null,
594
- "taxCategoryCode": "1030205080000000000",
595
- "updateTime": "2021-08-17 15:12:25.0",
596
- "zzssl": "13%",
597
- "zzstsgl": "",
598
- "zzszcyj": ""
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": 53402,
607
- "pid": "1090220000000000000",
608
- "productName": "谷物磨粉工业用机械零件",
609
- "qysj": "20190401",
610
- "shorthand": "食品制造机械",
611
- "sm": "包括谷物磨粉工业用筛及筛架、混合或分离滚筒、谷物磨粉机的滚筒或变换器、其他谷物磨粉工业用机械零件",
612
- "specification": null,
613
- "ssflbbh": "32.0",
614
- "statusDesc": null,
615
- "taxCategoryCode": "1090220050000000000",
616
- "updateTime": "2021-08-17 15:12:11.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": "Y",
627
- "id": 50549,
628
- "pid": "1010100000000000000",
629
- "productName": "谷物",
630
- "qysj": "20190401",
631
- "shorthand": "谷物",
632
- "sm": "包括稻谷、小麦、玉米、谷子、高粱、大麦、燕麦、黑麦、荞麦、其他谷物,不包括种用谷物(详见101011901)。",
633
- "specification": null,
634
- "ssflbbh": "32.0",
635
- "statusDesc": null,
636
- "taxCategoryCode": "1010101000000000000",
637
- "updateTime": "2021-08-17 15:12:22.0",
638
- "zzssl": "",
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": 50682,
649
- "pid": "1010100000000000000",
650
- "productName": "种子、种苗",
651
- "qysj": "20190401",
652
- "shorthand": "种子种苗",
653
- "sm": "包括种用谷物、种用薯类、种用油料、种用豆类、种用饲料作物、蔬菜籽、花草种、水果籽及其他种子、种苗",
654
- "specification": null,
655
- "ssflbbh": "32.0",
656
- "statusDesc": null,
657
- "taxCategoryCode": "1010119000000000000",
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": 50922,
670
- "pid": "1030100000000000000",
671
- "productName": "谷物细粉",
672
- "qysj": "20190401",
673
- "shorthand": "谷物细粉",
674
- "sm": "",
675
- "specification": null,
676
- "ssflbbh": "32.0",
677
- "statusDesc": null,
678
- "taxCategoryCode": "1030101000000000000",
679
- "updateTime": "2021-08-17 15:12:09.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": 50927,
691
- "pid": "1030102000000000000",
692
- "productName": "碾磨、脱壳谷物",
693
- "qysj": "20190401",
694
- "shorthand": "谷物加工品",
695
- "sm": "",
696
- "specification": null,
697
- "ssflbbh": "32.0",
698
- "statusDesc": null,
699
- "taxCategoryCode": "1030102010000000000",
700
- "updateTime": "2021-08-17 15:12:07.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": 51057,
712
- "pid": "1030200000000000000",
713
- "productName": "罐头",
714
- "qysj": "20190401",
715
- "shorthand": "罐头",
716
- "sm": "",
717
- "specification": null,
718
- "ssflbbh": "32.0",
719
- "statusDesc": null,
720
- "taxCategoryCode": "1030205000000000000",
721
- "updateTime": "2021-08-17 15:12:13.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": 53397,
733
- "pid": "1090200000000000000",
734
- "productName": "食品、饮料、烟草专用生产设备零件",
735
- "qysj": "20190401",
736
- "shorthand": "食品制造机械",
737
- "sm": "",
738
- "specification": null,
739
- "ssflbbh": "32.0",
740
- "statusDesc": null,
741
- "taxCategoryCode": "1090220000000000000",
742
- "updateTime": "2021-08-17 15:12:09.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": 50548,
754
- "pid": "1010000000000000000",
755
- "productName": "农业产品",
756
- "qysj": "20190401",
757
- "shorthand": "农业产品",
758
- "sm": "",
759
- "specification": null,
760
- "ssflbbh": "32.0",
761
- "statusDesc": null,
762
- "taxCategoryCode": "1010100000000000000",
763
- "updateTime": "2021-08-17 15:12:32.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": 50921,
775
- "pid": "1030000000000000000",
776
- "productName": "农副食品,动、植物油制品",
777
- "qysj": "20190401",
778
- "shorthand": "农副食品",
779
- "sm": "",
780
- "specification": null,
781
- "ssflbbh": "32.0",
782
- "statusDesc": null,
783
- "taxCategoryCode": "1030100000000000000",
784
- "updateTime": "2021-08-17 15:12:23.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": 50926,
796
- "pid": "1030100000000000000",
797
- "productName": "碾磨谷物及谷物加工品",
798
- "qysj": "20190401",
799
- "shorthand": "谷物加工品",
800
- "sm": "",
801
- "specification": null,
802
- "ssflbbh": "32.0",
803
- "statusDesc": null,
804
- "taxCategoryCode": "1030102000000000000",
805
- "updateTime": "2021-08-17 15:12:20.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": 51032,
817
- "pid": "1030000000000000000",
818
- "productName": "食品及加工盐",
819
- "qysj": "20190401",
820
- "shorthand": "食品",
821
- "sm": "",
822
- "specification": null,
823
- "ssflbbh": "32.0",
824
- "statusDesc": null,
825
- "taxCategoryCode": "1030200000000000000",
826
- "updateTime": "2021-08-17 15:12:30.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": 53261,
838
- "pid": "1090000000000000000",
839
- "productName": "专用设备",
840
- "qysj": "20190401",
841
- "shorthand": "专用设备",
842
- "sm": "指只在一个特定产业,用来生产、加工、处理特定产品或者改变特定物质形态的机械设备及其专门配套件",
843
- "specification": null,
844
- "ssflbbh": "32.0",
845
- "statusDesc": null,
846
- "taxCategoryCode": "1090200000000000000",
847
- "updateTime": "2021-08-17 15:12:15.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": 50547,
859
- "pid": "1000000000000000000",
860
- "productName": "农、林、牧、渔业类产品",
861
- "qysj": "20190401",
862
- "shorthand": "农产品",
863
- "sm": "",
864
- "specification": null,
865
- "ssflbbh": "32.0",
866
- "statusDesc": null,
867
- "taxCategoryCode": "1010000000000000000",
868
- "updateTime": "2021-08-17 15:12:19.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": 50920,
880
- "pid": "1000000000000000000",
881
- "productName": "食品、饮料、烟、酒类产品",
882
- "qysj": "20190401",
883
- "shorthand": "食品类产品",
884
- "sm": "",
885
- "specification": null,
886
- "ssflbbh": "32.0",
887
- "statusDesc": null,
888
- "taxCategoryCode": "1030000000000000000",
889
- "updateTime": "2021-08-17 15:12:07.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": 53022,
901
- "pid": "1000000000000000000",
902
- "productName": "机械、设备类产品",
903
- "qysj": "20190401",
904
- "shorthand": "机械设备",
905
- "sm": "",
906
- "specification": null,
907
- "ssflbbh": "32.0",
908
- "statusDesc": null,
909
- "taxCategoryCode": "1090000000000000000",
910
- "updateTime": "2021-08-17 15:12:15.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": 50546,
922
- "pid": "0",
923
- "productName": "货物",
924
- "qysj": "20190401",
925
- "shorthand": "货物",
926
- "sm": "",
927
- "specification": null,
928
- "ssflbbh": "32.0",
929
- "statusDesc": null,
930
- "taxCategoryCode": "1000000000000000000",
931
- "updateTime": "2021-08-17 15:12:12.0",
932
- "zzssl": "",
933
- "zzstsgl": "",
934
- "zzszcyj": ""
935
- }
1
+ import React from 'react';
2
+ import { Input } 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
+
10
+ const [deduction, setDeduction] = React.useState<number | undefined>(0);
11
+
12
+ const [goodMax, setgoodMax] = React.useState(0);
13
+
14
+ const onChange = React.useCallback((e: React.ChangeEvent<HTMLInputElement>) => {
15
+ const num = e.target.value ? parseFloat(e.target.value) : undefined;
16
+ if (typeof num === 'number' && `${num}` !== 'NaN') {
17
+ setgoodMax(1);
18
+ setDeduction(num);
19
+ } else {
20
+ setgoodMax(0);
21
+ setDeduction(undefined);
22
+ }
23
+ }, [])
24
+
25
+ const menuExpansion = React.useMemo(() => {
26
+ return (
27
+ <span style={{ marginRight: 10 }} >
28
+ <Input size="small" placeholder='扣除额' onChange={onChange} />
29
+ </span>
30
+ )
31
+ }, [])
32
+
33
+ return (
34
+ <Invoice
35
+ controller={controller}
36
+ goodsList={
37
+ <Invoice.GoodsList
38
+ isSwitchTax={false} // 是否可以切换(含税/不含税)状态
39
+ isAddDiscount={false} // 不能添加折扣行
40
+ goodMax={goodMax} // 控制能可以添加的货物函数
41
+ deduction={deduction} // 扣除额
42
+ menuExpansion={menuExpansion} // 扩展
43
+ />
44
+ }
45
+ />
46
+ )
47
+ };
48
+
49
+
50
+ // 税收分类编码列表
51
+ class MyController1 extends Invoice.InvoiceController {
52
+
53
+ constructor() {
54
+ super()
55
+ this.state.model = 'default'
56
+ }
57
+
58
+ getTaxCategoryCodeList = this.pipeline(async (s) => {
59
+ console.log('===> 准备赋码的货物索引列表', s.goodsListState.endowCode.endowcodeGoodIndex);
60
+
61
+ s.goodsListState.endowCode.getTaxCategoryCodeTree = async (value) => {
62
+ return moke.map(e => {
63
+ return {
64
+ label: `${e.taxCategoryCode}-${e.shorthand}`,
65
+ shorthand: e.shorthand,
66
+ id: e.taxCategoryCode,
67
+ pid: e.pid
68
+ }
69
+ })
70
+ };
71
+ });
72
+ }
73
+
74
+ const moke = [
75
+ {
76
+ "bbh": "34.0",
77
+ "createTime": "2019-09-12 08:54:16.0",
78
+ "gjz": "稻谷、早籼稻、晚籼稻、中籼稻、粳稻、糯稻",
79
+ "gxsj": "20200601",
80
+ "hzx": "N",
81
+ "id": 50550,
82
+ "pid": "1010101000000000000",
83
+ "productName": "稻谷",
84
+ "qysj": "20190401",
85
+ "shorthand": "谷物",
86
+ "sm": "包括早籼稻、晚籼稻、中籼稻、粳稻、糯稻、其他稻谷。",
87
+ "specification": null,
88
+ "ssflbbh": "32.0",
89
+ "statusDesc": null,
90
+ "taxCategoryCode": "1010101010000000000",
91
+ "updateTime": "2021-08-17 15:12:33.0",
92
+ "zzssl": "9%",
93
+ "zzstsgl": "免税",
94
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
95
+ },
96
+ {
97
+ "bbh": "34.0",
98
+ "createTime": "2019-09-12 08:54:16.0",
99
+ "gjz": "小麦、硬质小麦、软质小麦",
100
+ "gxsj": "20200601",
101
+ "hzx": "N",
102
+ "id": 50551,
103
+ "pid": "1010101000000000000",
104
+ "productName": "小麦",
105
+ "qysj": "20190401",
106
+ "shorthand": "谷物",
107
+ "sm": "包括硬质小麦、软质小麦、其他小麦。",
108
+ "specification": null,
109
+ "ssflbbh": "32.0",
110
+ "statusDesc": null,
111
+ "taxCategoryCode": "1010101020000000000",
112
+ "updateTime": "2021-08-17 15:12:22.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": 50552,
124
+ "pid": "1010101000000000000",
125
+ "productName": "玉米",
126
+ "qysj": "20190401",
127
+ "shorthand": "谷物",
128
+ "sm": "包括白玉米、黄玉米、糯玉米、甜玉米、其他玉米。",
129
+ "specification": null,
130
+ "ssflbbh": "32.0",
131
+ "statusDesc": null,
132
+ "taxCategoryCode": "1010101030000000000",
133
+ "updateTime": "2021-08-17 15:12:27.0",
134
+ "zzssl": "9%",
135
+ "zzstsgl": "免税",
136
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)、《财政部、国家税务总局关于免征蔬菜流通环节增值税有关问题的通知》(财税〔2011〕137号)"
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": 50553,
145
+ "pid": "1010101000000000000",
146
+ "productName": "谷子",
147
+ "qysj": "20190401",
148
+ "shorthand": "谷物",
149
+ "sm": "包括硬谷子、糯谷子、其他谷子。",
150
+ "specification": null,
151
+ "ssflbbh": "32.0",
152
+ "statusDesc": null,
153
+ "taxCategoryCode": "1010101040000000000",
154
+ "updateTime": "2021-08-17 15:12:12.0",
155
+ "zzssl": "9%",
156
+ "zzstsgl": "免税",
157
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
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": 50554,
166
+ "pid": "1010101000000000000",
167
+ "productName": "高粱",
168
+ "qysj": "20190401",
169
+ "shorthand": "谷物",
170
+ "sm": "包括红粒高粱、白粒高粱、糯高粱、其他高粱。",
171
+ "specification": null,
172
+ "ssflbbh": "32.0",
173
+ "statusDesc": null,
174
+ "taxCategoryCode": "1010101050000000000",
175
+ "updateTime": "2021-08-17 15:12:30.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": 50555,
187
+ "pid": "1010101000000000000",
188
+ "productName": "大麦",
189
+ "qysj": "20190401",
190
+ "shorthand": "谷物",
191
+ "sm": "包括裸大麦、皮大麦。",
192
+ "specification": null,
193
+ "ssflbbh": "32.0",
194
+ "statusDesc": null,
195
+ "taxCategoryCode": "1010101060000000000",
196
+ "updateTime": "2021-08-17 15:12:08.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": 50556,
208
+ "pid": "1010101000000000000",
209
+ "productName": "燕麦",
210
+ "qysj": "20190401",
211
+ "shorthand": "谷物",
212
+ "sm": "包括裸燕麦、皮燕麦。",
213
+ "specification": null,
214
+ "ssflbbh": "32.0",
215
+ "statusDesc": null,
216
+ "taxCategoryCode": "1010101070000000000",
217
+ "updateTime": "2021-08-17 15:12:29.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": 50557,
229
+ "pid": "1010101000000000000",
230
+ "productName": "黑麦",
231
+ "qysj": "20190401",
232
+ "shorthand": "谷物",
233
+ "sm": "",
234
+ "specification": null,
235
+ "ssflbbh": "32.0",
236
+ "statusDesc": null,
237
+ "taxCategoryCode": "1010101080000000000",
238
+ "updateTime": "2021-08-17 15:12:11.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": 50558,
250
+ "pid": "1010101000000000000",
251
+ "productName": "荞麦",
252
+ "qysj": "20190401",
253
+ "shorthand": "谷物",
254
+ "sm": "包括甜荞麦、苦荞麦。",
255
+ "specification": null,
256
+ "ssflbbh": "32.0",
257
+ "statusDesc": null,
258
+ "taxCategoryCode": "1010101090000000000",
259
+ "updateTime": "2021-08-17 15:12:30.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": 50559,
271
+ "pid": "1010101000000000000",
272
+ "productName": "其他谷物",
273
+ "qysj": "20190401",
274
+ "shorthand": "谷物",
275
+ "sm": "包括糜子(硬糜子、糯糜子)、紫米、薏苡等。",
276
+ "specification": null,
277
+ "ssflbbh": "32.0",
278
+ "statusDesc": null,
279
+ "taxCategoryCode": "1010101990000000000",
280
+ "updateTime": "2021-08-17 15:12:19.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": 50683,
292
+ "pid": "1010119000000000000",
293
+ "productName": "种用谷物",
294
+ "qysj": "20190401",
295
+ "shorthand": "种子种苗",
296
+ "sm": "包括种用硬质小麦、种用甜玉米、种用软质小麦、种用皮大麦、种用糯玉米、种用糯高粱、种用裸大麦、种用黄玉米、种用红粒高粱、种用白玉米、种用白粒高粱、其他种用玉米、其他种用小麦、其他种用高粱、种用中籼稻、种用早籼稻、种用晚籼稻、种用糯稻、种用粳稻、其他种用稻谷。",
297
+ "specification": null,
298
+ "ssflbbh": "32.0",
299
+ "statusDesc": null,
300
+ "taxCategoryCode": "1010119010000000000",
301
+ "updateTime": "2021-08-17 15:12:24.0",
302
+ "zzssl": "9%",
303
+ "zzstsgl": "免税",
304
+ "zzszcyj": "《财政部、国家税务总局关于若干农业生产资料征免增值税政策的通知》(财税〔2001〕113号)"
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": 50923,
313
+ "pid": "1030101000000000000",
314
+ "productName": "小麦粉",
315
+ "qysj": "20190401",
316
+ "shorthand": "谷物细粉",
317
+ "sm": "",
318
+ "specification": null,
319
+ "ssflbbh": "32.0",
320
+ "statusDesc": null,
321
+ "taxCategoryCode": "1030101010000000000",
322
+ "updateTime": "2021-08-17 15:12:14.0",
323
+ "zzssl": "9%",
324
+ "zzstsgl": "免税",
325
+ "zzszcyj": "《财政部 国家税务总局关于粮食企业增值税征免问题的通知》(财税字〔1999〕198号)"
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": 50924,
334
+ "pid": "1030101000000000000",
335
+ "productName": "大米粉",
336
+ "qysj": "20190401",
337
+ "shorthand": "谷物细粉",
338
+ "sm": "",
339
+ "specification": null,
340
+ "ssflbbh": "32.0",
341
+ "statusDesc": null,
342
+ "taxCategoryCode": "1030101020000000000",
343
+ "updateTime": "2021-08-17 15:12:08.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": 50925,
355
+ "pid": "1030101000000000000",
356
+ "productName": "其他谷物细粉",
357
+ "qysj": "20190401",
358
+ "shorthand": "谷物细粉",
359
+ "sm": "",
360
+ "specification": null,
361
+ "ssflbbh": "32.0",
362
+ "statusDesc": null,
363
+ "taxCategoryCode": "1030101990000000000",
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": 50928,
376
+ "pid": "1030102010000000000",
377
+ "productName": "大米",
378
+ "qysj": "20190401",
379
+ "shorthand": "谷物加工品",
380
+ "sm": "",
381
+ "specification": null,
382
+ "ssflbbh": "32.0",
383
+ "statusDesc": null,
384
+ "taxCategoryCode": "1030102010100000000",
385
+ "updateTime": "2021-08-17 15:12:11.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": 50929,
397
+ "pid": "1030102010000000000",
398
+ "productName": "小米",
399
+ "qysj": "20190401",
400
+ "shorthand": "谷物加工品",
401
+ "sm": "",
402
+ "specification": null,
403
+ "ssflbbh": "32.0",
404
+ "statusDesc": null,
405
+ "taxCategoryCode": "1030102010200000000",
406
+ "updateTime": "2021-08-17 15:12:25.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": 50930,
418
+ "pid": "1030102010000000000",
419
+ "productName": "糯米",
420
+ "qysj": "20190401",
421
+ "shorthand": "谷物加工品",
422
+ "sm": "",
423
+ "specification": null,
424
+ "ssflbbh": "32.0",
425
+ "statusDesc": null,
426
+ "taxCategoryCode": "1030102010300000000",
427
+ "updateTime": "2021-08-17 15:12:14.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": 50931,
439
+ "pid": "1030102010000000000",
440
+ "productName": "高粱米",
441
+ "qysj": "20190401",
442
+ "shorthand": "谷物加工品",
443
+ "sm": "",
444
+ "specification": null,
445
+ "ssflbbh": "32.0",
446
+ "statusDesc": null,
447
+ "taxCategoryCode": "1030102010400000000",
448
+ "updateTime": "2021-08-17 15:12:13.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": 50932,
460
+ "pid": "1030102010000000000",
461
+ "productName": "脱壳燕麦",
462
+ "qysj": "20190401",
463
+ "shorthand": "谷物加工品",
464
+ "sm": "指已脱壳但未去皮的燕麦。",
465
+ "specification": null,
466
+ "ssflbbh": "32.0",
467
+ "statusDesc": null,
468
+ "taxCategoryCode": "1030102010500000000",
469
+ "updateTime": "2021-08-17 15:12:06.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": 50933,
481
+ "pid": "1030102010000000000",
482
+ "productName": "脱壳青稞",
483
+ "qysj": "20190401",
484
+ "shorthand": "谷物加工品",
485
+ "sm": "",
486
+ "specification": null,
487
+ "ssflbbh": "32.0",
488
+ "statusDesc": null,
489
+ "taxCategoryCode": "1030102010600000000",
490
+ "updateTime": "2021-08-17 15:12:11.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": 50934,
502
+ "pid": "1030102010000000000",
503
+ "productName": "珠粒大麦",
504
+ "qysj": "20190401",
505
+ "shorthand": "谷物加工品",
506
+ "sm": "",
507
+ "specification": null,
508
+ "ssflbbh": "32.0",
509
+ "statusDesc": null,
510
+ "taxCategoryCode": "1030102010700000000",
511
+ "updateTime": "2021-08-17 15:12:12.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": 50935,
523
+ "pid": "1030102010000000000",
524
+ "productName": "其他碾磨、脱壳谷物",
525
+ "qysj": "20190401",
526
+ "shorthand": "谷物加工品",
527
+ "sm": "",
528
+ "specification": null,
529
+ "ssflbbh": "32.0",
530
+ "statusDesc": null,
531
+ "taxCategoryCode": "1030102019900000000",
532
+ "updateTime": "2021-08-17 15:12:21.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": 50936,
544
+ "pid": "1030102000000000000",
545
+ "productName": "粗磨谷物",
546
+ "qysj": "20190401",
547
+ "shorthand": "谷物加工品",
548
+ "sm": "包括谷物去壳谷粉、粗粉及团粒。",
549
+ "specification": null,
550
+ "ssflbbh": "32.0",
551
+ "statusDesc": null,
552
+ "taxCategoryCode": "1030102020000000000",
553
+ "updateTime": "2021-08-17 15:12:15.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": 50937,
565
+ "pid": "1030102000000000000",
566
+ "productName": "谷物加工制品",
567
+ "qysj": "20190401",
568
+ "shorthand": "谷物加工品",
569
+ "sm": "包括燕麦片、大麦片、玉米片,谷物胚芽等。",
570
+ "specification": null,
571
+ "ssflbbh": "32.0",
572
+ "statusDesc": null,
573
+ "taxCategoryCode": "1030102030000000000",
574
+ "updateTime": "2021-08-17 15:12:19.0",
575
+ "zzssl": "13%、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": 51065,
586
+ "pid": "1030205000000000000",
587
+ "productName": "谷物制品类罐头",
588
+ "qysj": "20190401",
589
+ "shorthand": "罐头",
590
+ "sm": "指经过处理后的谷类、干果及其他原料(桂圆、枸杞、蔬菜等)装罐制成的罐头产品",
591
+ "specification": null,
592
+ "ssflbbh": "32.0",
593
+ "statusDesc": null,
594
+ "taxCategoryCode": "1030205080000000000",
595
+ "updateTime": "2021-08-17 15:12:25.0",
596
+ "zzssl": "13%",
597
+ "zzstsgl": "",
598
+ "zzszcyj": ""
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": 53402,
607
+ "pid": "1090220000000000000",
608
+ "productName": "谷物磨粉工业用机械零件",
609
+ "qysj": "20190401",
610
+ "shorthand": "食品制造机械",
611
+ "sm": "包括谷物磨粉工业用筛及筛架、混合或分离滚筒、谷物磨粉机的滚筒或变换器、其他谷物磨粉工业用机械零件",
612
+ "specification": null,
613
+ "ssflbbh": "32.0",
614
+ "statusDesc": null,
615
+ "taxCategoryCode": "1090220050000000000",
616
+ "updateTime": "2021-08-17 15:12:11.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": "Y",
627
+ "id": 50549,
628
+ "pid": "1010100000000000000",
629
+ "productName": "谷物",
630
+ "qysj": "20190401",
631
+ "shorthand": "谷物",
632
+ "sm": "包括稻谷、小麦、玉米、谷子、高粱、大麦、燕麦、黑麦、荞麦、其他谷物,不包括种用谷物(详见101011901)。",
633
+ "specification": null,
634
+ "ssflbbh": "32.0",
635
+ "statusDesc": null,
636
+ "taxCategoryCode": "1010101000000000000",
637
+ "updateTime": "2021-08-17 15:12:22.0",
638
+ "zzssl": "",
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": 50682,
649
+ "pid": "1010100000000000000",
650
+ "productName": "种子、种苗",
651
+ "qysj": "20190401",
652
+ "shorthand": "种子种苗",
653
+ "sm": "包括种用谷物、种用薯类、种用油料、种用豆类、种用饲料作物、蔬菜籽、花草种、水果籽及其他种子、种苗",
654
+ "specification": null,
655
+ "ssflbbh": "32.0",
656
+ "statusDesc": null,
657
+ "taxCategoryCode": "1010119000000000000",
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": 50922,
670
+ "pid": "1030100000000000000",
671
+ "productName": "谷物细粉",
672
+ "qysj": "20190401",
673
+ "shorthand": "谷物细粉",
674
+ "sm": "",
675
+ "specification": null,
676
+ "ssflbbh": "32.0",
677
+ "statusDesc": null,
678
+ "taxCategoryCode": "1030101000000000000",
679
+ "updateTime": "2021-08-17 15:12:09.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": 50927,
691
+ "pid": "1030102000000000000",
692
+ "productName": "碾磨、脱壳谷物",
693
+ "qysj": "20190401",
694
+ "shorthand": "谷物加工品",
695
+ "sm": "",
696
+ "specification": null,
697
+ "ssflbbh": "32.0",
698
+ "statusDesc": null,
699
+ "taxCategoryCode": "1030102010000000000",
700
+ "updateTime": "2021-08-17 15:12:07.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": 51057,
712
+ "pid": "1030200000000000000",
713
+ "productName": "罐头",
714
+ "qysj": "20190401",
715
+ "shorthand": "罐头",
716
+ "sm": "",
717
+ "specification": null,
718
+ "ssflbbh": "32.0",
719
+ "statusDesc": null,
720
+ "taxCategoryCode": "1030205000000000000",
721
+ "updateTime": "2021-08-17 15:12:13.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": 53397,
733
+ "pid": "1090200000000000000",
734
+ "productName": "食品、饮料、烟草专用生产设备零件",
735
+ "qysj": "20190401",
736
+ "shorthand": "食品制造机械",
737
+ "sm": "",
738
+ "specification": null,
739
+ "ssflbbh": "32.0",
740
+ "statusDesc": null,
741
+ "taxCategoryCode": "1090220000000000000",
742
+ "updateTime": "2021-08-17 15:12:09.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": 50548,
754
+ "pid": "1010000000000000000",
755
+ "productName": "农业产品",
756
+ "qysj": "20190401",
757
+ "shorthand": "农业产品",
758
+ "sm": "",
759
+ "specification": null,
760
+ "ssflbbh": "32.0",
761
+ "statusDesc": null,
762
+ "taxCategoryCode": "1010100000000000000",
763
+ "updateTime": "2021-08-17 15:12:32.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": 50921,
775
+ "pid": "1030000000000000000",
776
+ "productName": "农副食品,动、植物油制品",
777
+ "qysj": "20190401",
778
+ "shorthand": "农副食品",
779
+ "sm": "",
780
+ "specification": null,
781
+ "ssflbbh": "32.0",
782
+ "statusDesc": null,
783
+ "taxCategoryCode": "1030100000000000000",
784
+ "updateTime": "2021-08-17 15:12:23.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": 50926,
796
+ "pid": "1030100000000000000",
797
+ "productName": "碾磨谷物及谷物加工品",
798
+ "qysj": "20190401",
799
+ "shorthand": "谷物加工品",
800
+ "sm": "",
801
+ "specification": null,
802
+ "ssflbbh": "32.0",
803
+ "statusDesc": null,
804
+ "taxCategoryCode": "1030102000000000000",
805
+ "updateTime": "2021-08-17 15:12:20.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": 51032,
817
+ "pid": "1030000000000000000",
818
+ "productName": "食品及加工盐",
819
+ "qysj": "20190401",
820
+ "shorthand": "食品",
821
+ "sm": "",
822
+ "specification": null,
823
+ "ssflbbh": "32.0",
824
+ "statusDesc": null,
825
+ "taxCategoryCode": "1030200000000000000",
826
+ "updateTime": "2021-08-17 15:12:30.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": 53261,
838
+ "pid": "1090000000000000000",
839
+ "productName": "专用设备",
840
+ "qysj": "20190401",
841
+ "shorthand": "专用设备",
842
+ "sm": "指只在一个特定产业,用来生产、加工、处理特定产品或者改变特定物质形态的机械设备及其专门配套件",
843
+ "specification": null,
844
+ "ssflbbh": "32.0",
845
+ "statusDesc": null,
846
+ "taxCategoryCode": "1090200000000000000",
847
+ "updateTime": "2021-08-17 15:12:15.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": 50547,
859
+ "pid": "1000000000000000000",
860
+ "productName": "农、林、牧、渔业类产品",
861
+ "qysj": "20190401",
862
+ "shorthand": "农产品",
863
+ "sm": "",
864
+ "specification": null,
865
+ "ssflbbh": "32.0",
866
+ "statusDesc": null,
867
+ "taxCategoryCode": "1010000000000000000",
868
+ "updateTime": "2021-08-17 15:12:19.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": 50920,
880
+ "pid": "1000000000000000000",
881
+ "productName": "食品、饮料、烟、酒类产品",
882
+ "qysj": "20190401",
883
+ "shorthand": "食品类产品",
884
+ "sm": "",
885
+ "specification": null,
886
+ "ssflbbh": "32.0",
887
+ "statusDesc": null,
888
+ "taxCategoryCode": "1030000000000000000",
889
+ "updateTime": "2021-08-17 15:12:07.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": 53022,
901
+ "pid": "1000000000000000000",
902
+ "productName": "机械、设备类产品",
903
+ "qysj": "20190401",
904
+ "shorthand": "机械设备",
905
+ "sm": "",
906
+ "specification": null,
907
+ "ssflbbh": "32.0",
908
+ "statusDesc": null,
909
+ "taxCategoryCode": "1090000000000000000",
910
+ "updateTime": "2021-08-17 15:12:15.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": 50546,
922
+ "pid": "0",
923
+ "productName": "货物",
924
+ "qysj": "20190401",
925
+ "shorthand": "货物",
926
+ "sm": "",
927
+ "specification": null,
928
+ "ssflbbh": "32.0",
929
+ "statusDesc": null,
930
+ "taxCategoryCode": "1000000000000000000",
931
+ "updateTime": "2021-08-17 15:12:12.0",
932
+ "zzssl": "",
933
+ "zzstsgl": "",
934
+ "zzszcyj": ""
935
+ }
936
936
  ]