From a2b22eb61b56e7aa2a815c147e7bca7bad70f39a Mon Sep 17 00:00:00 2001 From: xzg <4727863@qq.com> Date: Fri, 26 Apr 2024 19:41:27 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E5=BA=93=E4=BD=8D=E5=9C=A8=E5=BA=93?= =?UTF-8?q?=E6=95=B0=E5=B1=95=E7=A4=BA=EF=BC=8C=E8=B4=A2=E5=8A=A1=E5=AF=BC?= =?UTF-8?q?=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/poptxt.js | 16 +--- src/views/Pricesystem/ListOfPriceSystems.vue | 88 ++++++++++++++++++- .../basicdata/brand/basicdataFreight.vue | 9 +- .../BasicdataGoodsAllocationDetails.vue | 7 -- .../distributionStockListDetails.vue | 37 +++++--- .../financialsector/CustomerBaseprice.vue | 79 +++-------------- 6 files changed, 133 insertions(+), 103 deletions(-) diff --git a/src/utils/poptxt.js b/src/utils/poptxt.js index 98023724..f77a11c3 100644 --- a/src/utils/poptxt.js +++ b/src/utils/poptxt.js @@ -1,15 +1,5 @@ -import { ElMessage } from 'element-plus' // 引入 ElMessage 组件 export function popmsg(res) { // 显示成功消息 - if (res.msg == '导入成功') { - ElMessage({ - message: res.msg, - type: 'success', - }); - return; - }else{ - - // 创建包含 p 标签的内容的 div 元素 var fragment = document.createDocumentFragment(); var div = document.createElement('div'); @@ -23,14 +13,14 @@ export function popmsg(res) { div.style.left = '50%'; div.style.transform = 'translate(-50%, -50%)'; div.style.width = '50%'; - div.style.height = '200px'; + div.style.height = '50%'; div.style.backgroundColor = '#ffffff'; div.style.borderRadius = '4px'; div.style.overflow = 'scroll'; div.style.border = '1px solid #ccc'; div.style.padding = '10px'; // 将后端返回的内容作为 HTML 插入到 div 中 - div.innerHTML = res.msg; + div.innerHTML = res.data; // 遍历所有的

标签并设置首行缩进 var pTags = div.querySelectorAll('p'); pTags.forEach(function (pTag) { @@ -63,5 +53,5 @@ export function popmsg(res) { // 添加点击事件监听 document.addEventListener('click', closePopupOnClickOutside); - } + } \ No newline at end of file diff --git a/src/views/Pricesystem/ListOfPriceSystems.vue b/src/views/Pricesystem/ListOfPriceSystems.vue index 2bf91694..1bc5f7ce 100644 --- a/src/views/Pricesystem/ListOfPriceSystems.vue +++ b/src/views/Pricesystem/ListOfPriceSystems.vue @@ -16,7 +16,14 @@

-
+
+ + 导出模板 + + 导入模板 +
搜 索 @@ -143,7 +150,32 @@ + + + + +
点击上传 或者拖拽上传
+ +
+ +
+
import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue'; import { columnList } from '@/option/Pricesystem/index.js'; -import { $_getpriceTemplate, $_deletelpriceTemplate } from '@/api/financialsector/index'; //价格模板 +import { $_getpriceTemplate, $_deletelpriceTemplate , $_getexport} from '@/api/financialsector/index'; //价格模板 import { getBasicdataPrice, postBasicdataPrice } from '@/api/Pricesystem/index'; //价格模板 import { getDictionaryBiz } from '@/api/system/dict'; //字典 import { processRowProperty, setNodeHeight } from '@/utils/util'; +import { getToken } from 'utils/auth'; // 用于获取存储的Token import functions from '@/utils/functions.js'; import { ElMessageBox, ElMessage } from 'element-plus'; +import { popmsg } from '@/utils/poptxt'; import { downloadXls, deepClone } from '@/utils/util'; import { useStore } from 'vuex'; import dayjs from 'dayjs'; const $router = useRouter(); //跳转 const $useStore = useStore(); //权限 const $route = useRoute(); //获取地址栏参数 +const dialogTemp=ref(false) const details = reactive({ /** 是否开启搜索 */ search: false, @@ -239,7 +274,56 @@ const details = reactive({ /** 价格模板数组 */ templateArr: [], }); +const headers = computed(() => { + return { 'Blade-Auth': 'Bearer ' + getToken() }; +}); +const handleSuccess = res => { + if (res.code == 200 && !res.data) { + ElMessage({ + message: res.msg, + type: 'success', + }); + } else if (res.code == 200 && res.data) { + ElMessage({ + message: '导入失败,请查看原因重新导入!', + type: 'warning', + }); + popmsg(res); + } else{ + ElMessage({ + message: res.msg, + type: 'warning', + }); + } + console.log(res, 'datas'); +}; +// 上传文件之前 +const beforeAvatarUpload= (rawFile) => { + console.log(rawFile,'rawFile'); + + if (rawFile.type !== 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet') { + ElMessage.error('请上传EXCEL文件!') + return false + } + return true +} +// 导出模板 +const exporTemp = () => { + ElMessageBox.confirm('是否导出价格模板', '提示', { + confirmButtonText: '确认', + cancelButtonText: '取消', + type: 'warning', + }).then(() => { + $_getexport().then(res => { + downloadXls(res.data, `价格模板.xlsx`); + }); + }); +}; +// 导入模板 +const ImportTemplate = () => { + dialogTemp.value = true; +}; /** 生效时间 -- 生效时间不能大于到期时间 */ const time1 = time => { if (!details.form.expiryTime) return false; diff --git a/src/views/basicdata/brand/basicdataFreight.vue b/src/views/basicdata/brand/basicdataFreight.vue index 515a4412..47a5032c 100644 --- a/src/views/basicdata/brand/basicdataFreight.vue +++ b/src/views/basicdata/brand/basicdataFreight.vue @@ -735,8 +735,15 @@ export default { methods: { // 上传成功 async doubledCountSuce(res) { - await popmsg(res); + if (res.msg == '导入成功') { + ElMessage({ + message: res.msg, + type: 'success', + }); + }else{ + await popmsg(res); this.onLoad(this.page); + } }, uploadAfter(res, done, loading, column) { console.log('121221'); diff --git a/src/views/basicdata/warehouse/goodsAllocation/BasicdataGoodsAllocationDetails.vue b/src/views/basicdata/warehouse/goodsAllocation/BasicdataGoodsAllocationDetails.vue index f6d5e162..11fbe0bc 100644 --- a/src/views/basicdata/warehouse/goodsAllocation/BasicdataGoodsAllocationDetails.vue +++ b/src/views/basicdata/warehouse/goodsAllocation/BasicdataGoodsAllocationDetails.vue @@ -617,14 +617,7 @@ async function onLoad(page, params = {}) { default: break; } - - let query= JSON.parse($route.query.info) - console.log(query,'结构参数'); data.areaType =details.pageInfo.areaType - - - - let response = await geturl(url, data); if (response.data.code == 200) { console.log('res', response.data); diff --git a/src/views/distribution/inventory/distributionStockListDetails.vue b/src/views/distribution/inventory/distributionStockListDetails.vue index 8d22fe67..8f4d966d 100644 --- a/src/views/distribution/inventory/distributionStockListDetails.vue +++ b/src/views/distribution/inventory/distributionStockListDetails.vue @@ -41,6 +41,14 @@ + + + + + {{ stockquantity || 0 }} + + + - - - -
- 点击上传 或者拖拽上传 -
- -
- - -
+ + + + \ No newline at end of file diff --git a/src/views/aftersales/aftersalesWorkOrderAddTemp.vue b/src/views/aftersales/aftersalesWorkOrderAddTemp.vue new file mode 100644 index 00000000..b0122983 --- /dev/null +++ b/src/views/aftersales/aftersalesWorkOrderAddTemp.vue @@ -0,0 +1,256 @@ + + + + + diff --git a/src/views/distribution/deliverylist/distributionDeliveryListdis.vue b/src/views/distribution/deliverylist/distributionDeliveryListdis.vue index fb8a216a..65b019d6 100644 --- a/src/views/distribution/deliverylist/distributionDeliveryListdis.vue +++ b/src/views/distribution/deliverylist/distributionDeliveryListdis.vue @@ -148,7 +148,7 @@ 地 图 取消配送 diff --git a/src/views/distribution/deliverylist/distributionDeliveryListedt.vue b/src/views/distribution/deliverylist/distributionDeliveryListedt.vue index 69c60718..3e523c44 100644 --- a/src/views/distribution/deliverylist/distributionDeliveryListedt.vue +++ b/src/views/distribution/deliverylist/distributionDeliveryListedt.vue @@ -251,6 +251,9 @@ + 批量查看二维码 + + 批量查看二维码 批量签收 @@ -513,8 +519,8 @@ > res.id).join(','), + }; + this.html = ''; + const res = await showOrderPackgeCode(qr); + + const { code, data } = res.data; + + if (code !== 200) return; + + // this.orderPackageCode = res.data + console.log(res.data); + this.html = this.getHtmls(data.dataList, data.templateHtml); + + this.isShowPrint = true; + } catch (error) { + console.log('error :>> ', error); + } finally { + this.loadingObj.pageLoading = false; + } + }, // 库存品查看二维码 async handleStockQRCode(row) { try { @@ -4580,8 +4618,17 @@ export default { // 批量签收 Batchsigning() { console.log(this.selectionList, 'this.selectionList'); + if(!this.selectionList.length){ + ElMessage({ + message: '请勾选需要计划取消的数据', + type: 'warning', + }); + return; + } - let data = { + this.$confirm('是否确认进行批量签收?') + .then(() => { + let data = { deliveryId: this.deliveryId, reservationId: this.wid, barcodes: this.selectionList.map(item => item.orderPackageCode).join(','), @@ -4601,6 +4648,45 @@ export default { this.selectionList = []; //清空选择 this.loading = false; }); + }) + + + + + }, + + // 包件批量查看二维码 + async QRcodes(){ + if(!this.selectionList.length){ + ElMessage({ + message: `请勾选要查看二维码的数据`, + type: 'warning', + }); + return + } + try { + this.loading= true; + + let qr = { + ids: this.selectionList.map(res=>res.id).join(','), + }; + this.html = ''; + const res = await showOrderPackgeCode(qr); + + const { code, data } = res.data; + this.loading = false; + if (code !== 200) return; + + // this.orderPackageCode = res.data + console.log(res.data); + this.html = this.getHtmls(data.dataList, data.templateHtml); + + this.isShowPrint = true; + } catch (error) { + console.log('error :>> ', error); + } finally { + this.loading = false; + } }, // 批量计划取消 Batchcancellation() { diff --git a/src/views/distribution/inventory/distrilbutionBillLadingList.vue b/src/views/distribution/inventory/distrilbutionBillLadingList.vue index a86c87ac..4de38af0 100644 --- a/src/views/distribution/inventory/distrilbutionBillLadingList.vue +++ b/src/views/distribution/inventory/distrilbutionBillLadingList.vue @@ -6,7 +6,7 @@
- + @@ -19,6 +19,9 @@ end-placeholder="结束时间" :shortcuts="shortcuts" /> + + +
@@ -801,7 +804,11 @@ export default { searchHide() { this.search = !this.search; }, - searchChange() { + searchChange() { + this.query.pickupBatchs= this.query.pickupBatchs.replace(/,/g, ","); + if(!this.query.pickupBatchs){ + delete this.query.pickupBatchs + } this.onLoad(this.page); }, searchReset() { diff --git a/src/views/distribution/inventory/distrilbutionBillLadingView.vue b/src/views/distribution/inventory/distrilbutionBillLadingView.vue index beeda67a..c170d52f 100644 --- a/src/views/distribution/inventory/distrilbutionBillLadingView.vue +++ b/src/views/distribution/inventory/distrilbutionBillLadingView.vue @@ -830,7 +830,7 @@ export default { }, { prop: 'trainNumber', - label: '客户车次号', + label: '自提批次号', type: 2, values: '', width: '150', diff --git a/src/views/distribution/signfor/distributionSignforedt.vue b/src/views/distribution/signfor/distributionSignforedt.vue index 763b637e..f5dc1fe8 100644 --- a/src/views/distribution/signfor/distributionSignforedt.vue +++ b/src/views/distribution/signfor/distributionSignforedt.vue @@ -1203,6 +1203,17 @@ const menuData2 = ref([ sortable: true, head: false, }, + { + prop: 'materialName', + label: '物料名称', + type: 2, + values: '', + width: '100', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, { prop: 'orderPackageStatusName', label: '包件状态', diff --git a/src/views/distribution/turndelivery/deliveryDiscuss.vue b/src/views/distribution/turndelivery/deliveryDiscuss.vue index b2804e08..b06f5731 100644 --- a/src/views/distribution/turndelivery/deliveryDiscuss.vue +++ b/src/views/distribution/turndelivery/deliveryDiscuss.vue @@ -205,7 +205,7 @@ - +
@@ -907,7 +907,7 @@ const DataSubmit = ref({ stockup: { forkliftId: null, //叉车ID forkliftName: null, //备货人员 - goodsAreaId: null, //备货区ID + // goodsAreaId: null, //备货区ID goodsAreaName: null, //备货区域 outboundDate: null, //出库时间 stockupDate: null, //备货时间 @@ -1804,7 +1804,7 @@ onMounted(() => { } DataSubmit.value.stockup.forkliftName = res.data.data.stockupInfo.forkliftName||''; //备货人员名称 DataSubmit.value.stockup.forkliftId = res.data.data.stockupInfo.forkliftId||''; //备货人员ID - DataSubmit.value.stockup.goodsAreaId = res.data.data.stockupInfo.goodsAreaId||''; //备货区域ID + // DataSubmit.value.stockup.goodsAreaId = res.data.data.stockupInfo.goodsAreaId||''; //备货区域ID DataSubmit.value.stockup.goodsAreaName = res.data.data.stockupInfo.stockupArea||''; //备货区域名称 DataSubmit.value.stockup.outboundDate = res.data.data.stockupInfo.outboundDate||''; //出库时间 DataSubmit.value.stockup.stockupDate = res.data.data.stockupInfo.stockupDate||''; //备货时间 @@ -2627,13 +2627,13 @@ const StockPersonnel = val => { }; // 选择备货区域触发 -const StockUpSera = val => { - let data = []; - data = findObjectById(val, StockInfo.value.StockUpArea); - DataSubmit.value.stockup.goodsAreaId = data.id; //备货区域ID - console.log(data, '备货区域'); - DataSubmit.value.stockup.goodsAreaName = data.headline; //备货区域名称 -}; +// const StockUpSera = val => { +// let data = []; +// data = findObjectById(val, StockInfo.value.StockUpArea); +// DataSubmit.value.stockup.goodsAreaId = data.id; //备货区域ID +// console.log(data, '备货区域'); +// DataSubmit.value.stockup.goodsAreaName = data.headline; //备货区域名称 +// }; //装车班组触发 const Loading = val => { if(val){ diff --git a/src/views/financialsector/Financialse/FinancialWarehousing.vue b/src/views/financialsector/Financialse/FinancialWarehousing.vue index 3ff45a82..217be7c4 100644 --- a/src/views/financialsector/Financialse/FinancialWarehousing.vue +++ b/src/views/financialsector/Financialse/FinancialWarehousing.vue @@ -612,6 +612,8 @@ const onLoad = async () => { let request = props.templateData.request; // 执行回显 form.value = await deepClone(request); + + if (request.warehouseIsByCategory == 1) { form.value.StoragecategoryData = []; request.warehousePieceCategorys.forEach((res, index) => { @@ -646,10 +648,14 @@ const onLoad = async () => { value: res.id, }, ], - }); + }); }); } + console.log(request.warehouseCalculationBasis,'request.warehouseCalculationBasis++++++===>>>'); + form.value.warehouseCalculationBasis= request.warehouseCalculationBasis|| 0;//计算基准 + console.log(form.value,'form.value.warehouseCalculationBasis'); } + formedit.value = deepClone(form.value); pageLoading.value = false; };