index.vue 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. <script setup lang="ts">
  2. import { ref } from "vue";
  3. import { columns, mapLabelToProp } from "./columns-config";
  4. import { httpAdd } from "/@/api/invoiceInOut/inOutManager";
  5. import { ElButton, ElDialog, ElMessage } from "element-plus";
  6. import { execlUpload } from "/@/components/execlUpload";
  7. import { mapLabelToType } from "../../config/shared";
  8. import { mapGoodLabelToType } from "/@/utils/status";
  9. import { isImportDataValid } from "./validator";
  10. import { useResponseHandle } from "/@/hooks";
  11. import { useVModel } from "@vueuse/core";
  12. import ErrorDialog from "/@/components/ErrorDialog/index.vue"
  13. import ImportTableColumn from "/@/components/importTableColumn/index.vue"
  14. const props = defineProps<{ visible: boolean }>()
  15. const emit = defineEmits(["refresh"]);
  16. const tableData = ref([]);
  17. const loading = ref(false);
  18. const errorState = ref({ visible: false, list: [], title: '' })
  19. const headerState = ref({ visible: false, importColumns: [], columns: [] })
  20. const visible = useVModel(props, 'visible')
  21. const responseHandle = useResponseHandle();
  22. const Uploadsuccess = ({ results, header }) => {
  23. loading.value = true;
  24. if (results.length === 0) {
  25. ElMessage.error("表格无有效数据!");
  26. loading.value = false;
  27. return;
  28. }
  29. let headok = true;
  30. if (header.length !== columns.length - 1) {
  31. headok = false;
  32. } else {
  33. columns.slice(1).forEach((si, sii) => {
  34. if (si.label !== header[sii]) {
  35. console.log(si.label, header[sii])
  36. headok = false;
  37. }
  38. });
  39. }
  40. if (!headok) {
  41. headerState.value.visible = true
  42. headerState.value.importColumns = [...header]
  43. headerState.value.columns = columns.slice(1).map(({ label }) => label)
  44. loading.value = false;
  45. return;
  46. }
  47. tableData.value = [];
  48. const result = []
  49. for (const tableItem of results) {
  50. const item = {}
  51. Object.keys(tableItem).forEach((label, index) => {
  52. const prop = mapLabelToProp[label.replace('_1', '')]
  53. let value = tableItem[label]
  54. if (label === '发票类型') {
  55. value = value.replace('(', '(')
  56. value = value.replace(')', ')')
  57. }
  58. item[prop] = value ? String(value).trim() : value
  59. })
  60. result.push(item)
  61. }
  62. if(isImportDataValid(result)){ tableData.value = result }
  63. loading.value = false;
  64. };
  65. //提交
  66. const handleSubmit = async () => {
  67. try {
  68. if (loading.value) return;
  69. loading.value = true;
  70. const list = [];
  71. tableData.value.forEach(item => {
  72. list.push({
  73. ...item,
  74. inv_price: '',
  75. inv_unit: '',
  76. inv_subprice: '',
  77. inv_type: '',
  78. inv_good_name: item.goodName,
  79. inv_seller_code: item.seller_code,
  80. inv_buyer_code: item.buyer_code,
  81. inv_seller_name: item.seller_name,
  82. inv_buyer_name: item.buyer_name,
  83. relaArr: [{ id: item.relaGoodNo, num: item.relaGoodNum }],
  84. type: mapLabelToType[item.type],
  85. platform_type: '2',
  86. goodType: mapGoodLabelToType[item.goodType],
  87. cat_code: '0',
  88. cat_name: '0',
  89. channel: '3',
  90. source: '1',
  91. // unit: '0',
  92. tax: '0',
  93. inv_tax: '0',
  94. inv_cat_code: '0',
  95. })
  96. })
  97. const { code, message, data: _d } = await httpAdd({ list });
  98. loading.value = false;
  99. if (code == 1004 && _d) {
  100. errorState.value.visible = true
  101. errorState.value.list = _d
  102. errorState.value.title = message
  103. return
  104. }
  105. responseHandle({
  106. code,
  107. message,
  108. noMessage: false,
  109. handler: () => {
  110. ElMessage.success("数据导入成功!");
  111. emit("refresh");
  112. visible.value = false;
  113. }
  114. });
  115. } catch (err) {
  116. console.log(err)
  117. }
  118. };
  119. const cancel = () => {
  120. tableData.value = [];
  121. };
  122. </script>
  123. <template>
  124. <ElDialog v-model="visible" :close-on-click-modal="false" title="非订单商品(C端无发票出库)" width="1040px" top="8vh" center>
  125. <execlUpload style="margin-bottom: 10px" @on-success="Uploadsuccess" v-if="tableData.length === 0" />
  126. <el-table :data="tableData" stripe border max-height="500px" size="small" style="width: 100%">
  127. <el-table-column v-for="(si, sii) in columns" :minWidth="si.minWidth" show-overflow-tooltip :fixed="si.fixed"
  128. :prop="si.prop" :type="si.type" :key="sii">
  129. <template #header>
  130. <span v-if="!si.required">
  131. {{ si.label }}
  132. </span>
  133. <p v-else>
  134. <span style="color: #f56c6c; font-size: 14px">* </span>
  135. {{ si.label }}
  136. </p>
  137. </template>
  138. </el-table-column>
  139. </el-table>
  140. <div flex justify-end gap-2 v-if="tableData.length !== 0" style="padding: 10px 0 0 0">
  141. <ElButton size="small" @click="cancel">取消</ElButton>
  142. <ElButton size="small" type="primary" :loading="loading" @click="handleSubmit">保存</ElButton>
  143. </div>
  144. <ErrorDialog
  145. v-model:visible="errorState.visible"
  146. :list="errorState.list"
  147. :title="errorState.title"
  148. />
  149. <ImportTableColumn
  150. v-model:visible="headerState.visible"
  151. :import-columns="headerState.importColumns"
  152. :columns="headerState.columns" />
  153. </ElDialog>
  154. </template>
  155. <style lang="scss" scoped></style>