content.config.ts 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322
  1. import { ContentConfig } from "/@/components/PageContent";
  2. import { httpList } from "/@/api/invoiceInOut/inOutManager";
  3. import { h } from "vue";
  4. import { ElTag } from "element-plus";
  5. import { typeOptions, sourceOptions, statusOptions, managerStatusOptions, channelOptions } from "./shared";
  6. import { xs_inv_type_list } from "/@/utils/status";
  7. import { renderIconLabelLeft } from "/@/utils/columnRenderHelper";
  8. const columns = [
  9. {
  10. type: 'selection',
  11. width: 40
  12. },
  13. {
  14. label: "业务编号",
  15. prop: "invoiceCode",
  16. width: 150
  17. },
  18. {
  19. label: "类型",
  20. width: 80,
  21. cellRenderer({ row }){
  22. return h(ElTag, { type: 'primary', size: 'small' }, {
  23. default: () => typeOptions.find(item => item.value == row.type)?.label
  24. })
  25. }
  26. },
  27. {
  28. label: '导入方式',
  29. width: 100,
  30. cellRenderer({ row }) {
  31. return h(ElTag, { type: 'primary', size: 'small' }, {
  32. default: () => channelOptions.find(item => item.value == row.channel)?.label
  33. })
  34. }
  35. },
  36. {
  37. label: '数据来源',
  38. width: 90,
  39. cellRenderer({ row }){
  40. return h(ElTag, { type: 'primary', size: 'small' }, {
  41. default: () => sourceOptions.find(item => item.value == row.source)?.label
  42. })
  43. }
  44. },
  45. {
  46. label: "状态",
  47. width: 90,
  48. cellRenderer({ row }) {
  49. return h(
  50. ElTag,
  51. { type: statusOptions.find(item => item.value == row.status)?.type, size: 'small' },
  52. { default: () => statusOptions.find(item => item.value == row.status)?.label }
  53. )
  54. }
  55. },
  56. {
  57. label: '异常原因',
  58. width: 120,
  59. prop: 'error_remark'
  60. },
  61. {
  62. label: '购买方公司',
  63. width: 150,
  64. ...renderIconLabelLeft('buyer_code', 'buyer_name', '销售方公司纳税号:')
  65. },
  66. {
  67. label: '销售方公司',
  68. prop: 'seller_code',
  69. width: 150,
  70. ...renderIconLabelLeft('seller_code', 'seller_name', '销售方公司纳税号:')
  71. },
  72. {
  73. label: '订单编号',
  74. prop: 'orderCode',
  75. width: 160
  76. },
  77. {
  78. label: "订单主编号",
  79. prop: "cxCode",
  80. width: 160
  81. },
  82. {
  83. label: "商品编号",
  84. prop: "goodNo",
  85. width: 120
  86. },
  87. {
  88. label: "商品名称",
  89. prop: "goodName",
  90. width: 120
  91. },
  92. {
  93. label: "单位",
  94. prop: "unit",
  95. width: 60
  96. },
  97. {
  98. label: '商品数量',
  99. prop: 'num',
  100. width: 100
  101. },
  102. {
  103. label: '商品单价',
  104. prop: 'goodPrice',
  105. width: 100
  106. },
  107. {
  108. label: '订单总金额',
  109. prop: 'totalPrice',
  110. width: 120
  111. },
  112. {
  113. label: '税目',
  114. prop: 'cat_code',
  115. width: 120
  116. },
  117. {
  118. label: '税率',
  119. width: 60,
  120. cellRenderer({ row }){
  121. return (row.tax) + '%'
  122. }
  123. },
  124. {
  125. label: '关联金额',
  126. prop: 'inv_fee',
  127. width: 120
  128. },
  129. {
  130. label: '发票购买方公司',
  131. width: 120,
  132. ...renderIconLabelLeft('inv_buyer_code', 'inv_buyer_name', '购买方公司名称纳税号:')
  133. },
  134. {
  135. label: '发票销售方公司',
  136. width: 180,
  137. ...renderIconLabelLeft('inv_seller_code', 'inv_seller_name', '发票销售方公司纳税号:')
  138. },
  139. {
  140. label: '发票号码',
  141. prop: 'inv_number',
  142. width: 100
  143. },
  144. {
  145. label: '发票类型',
  146. width: 180,
  147. cellRenderer({ row }){
  148. return xs_inv_type_list.find((item) => item.value === row.inv_type)?.label
  149. }
  150. },
  151. {
  152. label: '发票明细ID',
  153. prop: 'inv_item_id',
  154. width: 100
  155. },
  156. {
  157. label: '货物或应税劳务、服务名称',
  158. prop: 'inv_good_name',
  159. width: 170
  160. },
  161. {
  162. label: '类目编号',
  163. prop: 'cat_code',
  164. width: 100
  165. },
  166. {
  167. label: '规格型号',
  168. prop: 'inv_spec',
  169. width: 80
  170. },
  171. {
  172. label: '发票商品单位',
  173. prop: 'inv_unit',
  174. width: 100
  175. },
  176. {
  177. label: '发票商品数量',
  178. prop: 'inv_num',
  179. width: 100
  180. },
  181. {
  182. label: '税前单价',
  183. prop: 'inv_subprice',
  184. width: 100
  185. },
  186. {
  187. label: '税前总价',
  188. prop: 'inv_subtotal',
  189. width: 100
  190. },
  191. {
  192. label: '发票税率',
  193. prop: 'inv_tax',
  194. width: 80
  195. },
  196. {
  197. label: '发票税额',
  198. prop: 'inv_tax_total',
  199. width: 80
  200. },
  201. {
  202. label: '税后单价',
  203. prop: 'inv_price',
  204. width: 100
  205. },
  206. {
  207. label: '税后总额',
  208. prop: 'inv_total',
  209. width: 100
  210. },
  211. {
  212. label: '类目编号状态',
  213. width: 100,
  214. cellRenderer({ row }){
  215. return h(ElTag, { size: 'small', type: row.cat_diff == '0' ? 'danger' : 'success' }, {
  216. default: () => row.cat_diff == '0' ? '不一致' : '一致'
  217. })
  218. }
  219. },
  220. {
  221. label: '税率状态',
  222. prop: 'TODO',
  223. width: 100,
  224. cellRenderer({ row }) {
  225. return h(
  226. ElTag,
  227. { size: 'small', type: row.tax_diff == '0' ? 'danger' : 'success' },
  228. { default: () => row.tax_diff == '0' ? '不一致' : '一致' }
  229. )
  230. }
  231. },
  232. {
  233. label: '备注',
  234. prop: 'remark',
  235. width: 100
  236. },
  237. // {
  238. // label: '业务类型',
  239. // width: 80,
  240. // cellRenderer({ row }){
  241. // return managerStatusOptions.find((item) => item.value == row.manager_status)?.label
  242. // }
  243. // },
  244. {
  245. label: '关联商品ID',
  246. prop: 'goodNo',
  247. width: 80,
  248. cellRenderer({ row }){
  249. if (row.ProductRela.length === 0){
  250. return null
  251. }
  252. return row.ProductRela[0].id
  253. }
  254. },
  255. {
  256. label: '关联商品名称',
  257. prop: 'goodName',
  258. width: 100,
  259. cellRenderer({ row }) {
  260. if (row.ProductRela.length === 0) {
  261. return null
  262. }
  263. return row.ProductRela[0].goodName
  264. }
  265. },
  266. {
  267. label: '创建人',
  268. prop: 'apply_name',
  269. width: '100px'
  270. },
  271. {
  272. label: '创建时间',
  273. prop: 'create_time',
  274. width: '140px'
  275. },
  276. {
  277. label: "操作",
  278. fixed: "right",
  279. width: 50,
  280. slot: "operation"
  281. }
  282. ];
  283. const contentConfig: ContentConfig = {
  284. columns,
  285. title: "商品管理",
  286. permissions: ['007'],
  287. companyProp: 'buyer_code',
  288. apis: {
  289. httpList: (parameter = {}) => httpList({ ...parameter, channel: [1, 2], type: [1, 3] }),
  290. httpAdd: true
  291. }
  292. };
  293. export default contentConfig;