validator.ts 4.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. import { h } from "vue"
  2. import { ElMessageBox } from "element-plus"
  3. import { mapPropertyToLabel, requiredProps } from "./columns-config"
  4. import { diffOptions, mapDiffOptions, mapLabelToSource, mapLabelToType, sourceOptions, typeOptions } from "../../config/shared"
  5. import { cg_order_type_options, mapGoodTypeToLabel, mapLabelToInvtype, xs_inv_type_list } from "/@/utils/status"
  6. function onDisplayErrorMessage(errors) {
  7. ElMessageBox({
  8. type: 'warning',
  9. title: '数据校验失败',
  10. message: h('div', { style: 'display: flex, flex-direction: column' }, {
  11. default: () => Object.keys(errors).reduce((prev, index) => {
  12. return [
  13. ...prev,
  14. h('p', {}, '第' + index + '行,' + errors[index])
  15. ]
  16. }, [])
  17. })
  18. })
  19. }
  20. export function isValidRequired(results: any[]) {
  21. const errors = {}
  22. let isTypeError = false
  23. let isSourceError = false
  24. let isInvError = false
  25. let isTaxDiffError = false
  26. let isCatDiffError = false
  27. let isGoodType = false
  28. for (const sourceIndex in results) {
  29. const item = results[sourceIndex];
  30. const index = Number(sourceIndex) + 1;
  31. for (const key in item) {
  32. const value = String(item[key]).trim()
  33. if (requiredProps.includes(key) && (!value || !String(value).trim())) {
  34. if (errors[index]) {
  35. errors[index] = errors[index] += '、' + mapPropertyToLabel[key]
  36. } else {
  37. errors[index] = mapPropertyToLabel[key]
  38. }
  39. } else if (key === 'type' && !mapLabelToType[value]) {
  40. isTypeError = true
  41. } else if (key === 'source' && !mapLabelToSource[value]) {
  42. isSourceError = true
  43. } else if (key === 'inv_type' && !mapLabelToInvtype[value]) {
  44. isInvError = true
  45. } else if (key === 'tax_diff' && !mapDiffOptions[value]) {
  46. isTaxDiffError = true
  47. } else if (key === 'cat_diff' && !mapDiffOptions[value]) {
  48. isCatDiffError = true
  49. } else if (key === 'goodType' && !mapGoodTypeToLabel[value]) {
  50. isGoodType = true
  51. }
  52. }
  53. if (errors[index]) {
  54. errors[index] += '不能为空'
  55. if (isTypeError) errors[index] += ' , 类型必须为' + typeOptions.map(({ label }) => label).join('、')
  56. if (isSourceError) errors[index] += ' ,订单来源必须为' + sourceOptions.map(({ label }) => label).join('、')
  57. if (isInvError) errors[index] += ' ,发票类型必须为' + xs_inv_type_list.map(({ label }) => label).join('、')
  58. if (isTaxDiffError) errors[index] += ' ,类目编号状态必须为' + diffOptions.map(({ label }) => label).join('、')
  59. if (isCatDiffError) errors[index] += ' ,税率状态必须为' + diffOptions.map(({ label }) => label).join('、')
  60. if (isCatDiffError) errors[index] += ' ,税率状态' + diffOptions.map(({ label }) => label).join('、')
  61. if (isGoodType) errors[index] += ' ,商品类型必须为' + diffOptions.map(({ label }) => label).join('、')
  62. } else {
  63. if (isTypeError) errors[index] = '类型必须为' + typeOptions.map(({ label }) => label).join('、')
  64. if (isSourceError) errors[index] = ' 订单来源必须为' + sourceOptions.map(({ label }) => label).join('、')
  65. if (isInvError) errors[index] = ' 类目编号状态必须为' + diffOptions.map(({ label }) => label).join('、')
  66. if (isCatDiffError) errors[index] = ' 税率状态必须为' + diffOptions.map(({ label }) => label).join('、')
  67. if (isGoodType) errors[index] = ' 商品类型必须为' + cg_order_type_options.map(({ label }) => label).join('、')
  68. }
  69. }
  70. if (Object.keys(errors).length === 0) {
  71. return true
  72. } else {
  73. onDisplayErrorMessage(errors)
  74. return false
  75. }
  76. }
  77. export function isImportDataValid(results: any[]) {
  78. /* 校验必填字段是否填入 */
  79. if (!isValidRequired(results)) { return false }
  80. return true
  81. }