diff --git a/src/views/emis/emisTmsSiteBatch/panel/BigBatchPanel.vue b/src/views/emis/emisTmsSiteBatch/panel/BigBatchPanel.vue
index 1a65f13f..811899a4 100644
--- a/src/views/emis/emisTmsSiteBatch/panel/BigBatchPanel.vue
+++ b/src/views/emis/emisTmsSiteBatch/panel/BigBatchPanel.vue
@@ -145,17 +145,32 @@
{{ $t('未上传') }}
-
+
+
+
+
+
+
+
+
+ {{scope.row.airBilllNo}}
+ {{scope.row.shipNo}}
+ {{scope.row.carNo}}
+
+
+
{{ scope.row.remark }}
-
+
+
+
{{ scope.row.destCountryName }}
@@ -223,7 +238,7 @@
{{ $t('下一网点') }}
-
+
@@ -1085,6 +1100,15 @@ export default {
this.coData.startSiteCode=item && item.siteCode;
this.coData.startSiteName=item && item.siteName;
},
+ onNextSiteSelect(item){
+ if(!item){
+ this.coData.nextSiteCode = null;
+ this.coData.nextSiteName = null;
+ return;
+ }
+ this.coData.nextSiteCode=item && item.siteCode;
+ this.coData.nextSiteName=item && item.siteName;
+ },
onDateSelect(value){
console.log("date picker---->", value)
this.dateTimeRange=value;
@@ -1131,6 +1155,7 @@ export default {
startSiteCode: this.coData.startSiteCode || null,
startSiteName: this.coData.startSiteName || null,
nextSiteCode: this.coData.nextSiteCode || null,
+ nextSiteName: this.coData.nextSiteName || null,
airBilllNo: this.coData.airBilllNo || null,
carNo: this.coData.carNo || null,
shipNo: this.coData.shipNo || null,
@@ -1229,6 +1254,7 @@ export default {
this.tempCoPackInfo.startSiteCode = this.coData.startSiteCode;
this.tempCoPackInfo.startSiteName = this.coData.startSiteName || null;
this.tempCoPackInfo.nextSiteCode = this.coData.nextSiteCode;
+ this.tempCoPackInfo.nextSiteName = this.coData.nextSiteName;
this.tempCoPackInfo.airBilllNo = this.coData.airBilllNo;
this.tempCoPackInfo.etd = this.coData.etd;
this.tempCoPackInfo.carNo = this.coData.carNo;
@@ -1359,8 +1385,41 @@ export default {
}
let bcList=this.formBatchBillList.trim().split(/[;\;\,\,\n]/)||[];
- bcList.forEach(async (billcode) => {
- billcode = billcode.trim();
+ // bcList.forEach(async (billcode) => {
+ // billcode = billcode.trim();
+ // if(this.emisCoPackDetail.filter(wb => wb.billCode == billcode).length == 0){
+ // let billRes = await listEmisWaybill({billCode:billcode});
+ // if(!billRes || billRes.code != 200){
+ // this.$modal.msgError(billRes && billRes.msg)
+ // return;
+ // }else if(!billRes.rows || billRes.rows.length < 1){
+ // this.$modal.msgError(('无此运单数据') + ": " + billcode)
+ // return;
+ // }
+ // let item = billRes.rows[0];
+ // this.emisCoPackDetail.push(item);
+ // if(this.coPackType=="edit"){
+ // let packDetail = {
+ // batchNo: this.coData.batchNo,
+ // billCode: item.billCode,
+ // scanDate: item.scanDate,
+ // scanStatus: item.scanStatus,
+ // groupStatus: "1",//已组批次
+ // scanMan: item.scanMan,
+ // scanSite: item.scanSite,
+ // createBy: this.$store.getters.empCode,
+ // createTime: parseTime(new Date())
+ // };
+ // let response = await addEmisTmsSiteBatchDtl(packDetail);
+ // if(!response || response.code != 200){
+ // this.$modal.msgError(response && response.msg || '组批次明细新增失败')
+ // return;
+ // }
+ // }
+ // }
+ // })
+ for(let i = 0; i < bcList.length; i++){
+ let billcode = bcList[i].trim();
if(this.emisCoPackDetail.filter(wb => wb.billCode == billcode).length == 0){
let billRes = await listEmisWaybill({billCode:billcode});
if(!billRes || billRes.code != 200){
@@ -1391,7 +1450,7 @@ export default {
}
}
}
- })
+ }
this.titleBatch="";
this.openBatch=false;
this.formBatchBillList = "";
@@ -1412,6 +1471,7 @@ export default {
this.tempCoPackInfo.startSiteCode = this.coData.startSiteCode;
this.tempCoPackInfo.startSiteName = this.coData.startSiteName || null;
this.tempCoPackInfo.nextSiteCode = this.coData.nextSiteCode;
+ this.tempCoPackInfo.nextSiteName = this.coData.nextSiteName;
this.tempCoPackInfo.airBilllNo = this.coData.airBilllNo;
this.tempCoPackInfo.etd = this.coData.etd;
this.tempCoPackInfo.carNo = this.coData.carNo;
@@ -1472,6 +1532,7 @@ export default {
this.tempCoPackInfo.startSiteCode = this.coData.startSiteCode;
this.tempCoPackInfo.startSiteName = this.coData.startSiteName || null;
this.tempCoPackInfo.nextSiteCode = this.coData.nextSiteCode;
+ this.tempCoPackInfo.nextSiteName = this.coData.nextSiteName;
this.tempCoPackInfo.airBilllNo = this.coData.airBilllNo;
this.tempCoPackInfo.etd = this.coData.etd;
this.tempCoPackInfo.carNo = this.coData.carNo;
@@ -1554,8 +1615,10 @@ export default {
this.computeTotal();
// 更新主表
this.tempCoPackInfo.destCountry = this.coData.destCountry;
- this.tempCoPackInfo.sendStiteCode = this.coData.sendStiteCode;
+ // this.tempCoPackInfo.sendStiteCode = this.coData.sendStiteCode;
+ // this.tempCoPackInfo.sendStiteName = this.coData.sendStiteName || null;
this.tempCoPackInfo.nextSiteCode = this.coData.nextSiteCode;
+ this.tempCoPackInfo.nextSiteName = this.coData.nextSiteName;
this.tempCoPackInfo.blUnpack = this.blUnpack;
this.tempCoPackInfo.totalWaybillQty = this.coData.totalWaybillQty;
this.tempCoPackInfo.totalParcelQty = this.coData.totalParcelQty;
@@ -1616,8 +1679,10 @@ export default {
item.destCountry = this.coData.destCountry;
// item.sendSiteCode = this.coData.sendSiteCode;
item.startSiteCode = this.coData.startSiteCode;
+ item.startSiteName = this.coData.startSiteName;
// item.nextSiteCode = this.coData.nextSiteCode;
item.nextSiteCode = this.coData.nextSiteCode;
+ item.nextSiteName = this.coData.nextSiteName;
item.blUnpack = this.blUnpack;
})
this.coData.totalWaybillQty=this.emisCoPackDetail.length;
@@ -1671,6 +1736,7 @@ export default {
this.coData.destCountryName = null;
// this.coData.sendSiteCode = null;
this.coData.nextSiteCode = null;
+ this.coData.nextSiteName = null;
this.coData.nextStation = null;
// this.blUnpack = "1";
diff --git a/src/views/emis/emisTmsSiteBatch/panel/ExpressPanel.vue b/src/views/emis/emisTmsSiteBatch/panel/ExpressPanel.vue
index eb3924e9..ba3c0b80 100644
--- a/src/views/emis/emisTmsSiteBatch/panel/ExpressPanel.vue
+++ b/src/views/emis/emisTmsSiteBatch/panel/ExpressPanel.vue
@@ -143,17 +143,31 @@
{{ $t('未上传') }}
-
+
+
+
+
+
+
+
+ {{scope.row.airBilllNo}}
+ {{scope.row.shipNo}}
+ {{scope.row.carNo}}
+
+
+
{{ scope.row.remark }}
-
+
+
+
{{ scope.row.destCountryName }}
@@ -213,7 +227,7 @@
{{ $t('下一网点') }}
-
+
@@ -1031,6 +1045,15 @@ export default {
this.coData.startSiteCode=item && item.siteCode;
this.coData.startSiteName=item && item.siteName;
},
+ onNextSiteSelect(item){
+ if(!item){
+ this.coData.nextSiteCode = null;
+ this.coData.nextSiteName = null;
+ return;
+ }
+ this.coData.nextSiteCode=item && item.siteCode;
+ this.coData.nextSiteName=item && item.siteName;
+ },
onDateSelect(value){
console.log("date picker---->", value)
this.dateTimeRange=value;
@@ -1077,6 +1100,7 @@ export default {
startSiteCode: this.coData.startSiteCode || null,
startSiteName: this.coData.startSiteName || null,
nextSiteCode: this.coData.nextSiteCode || null,
+ nextSiteName: this.coData.nextSiteName || null,
airBilllNo: this.coData.airBilllNo || null,
carNo: this.coData.carNo || null,
shipNo: this.coData.shipNo || null,
@@ -1175,6 +1199,7 @@ export default {
this.tempCoPackInfo.startSiteCode = this.coData.startSiteCode;
this.tempCoPackInfo.startSiteName = this.coData.startSiteName || null;
this.tempCoPackInfo.nextSiteCode = this.coData.nextSiteCode;
+ this.tempCoPackInfo.nextSiteName = this.coData.nextSiteName;
this.tempCoPackInfo.airBilllNo = this.coData.airBilllNo;
this.tempCoPackInfo.etd = this.coData.etd;
this.tempCoPackInfo.carNo = this.coData.carNo;
@@ -1305,8 +1330,9 @@ export default {
}
let bcList=this.formBatchBillList.trim().split(/[;\;\,\,\n]/)||[];
- bcList.forEach(async (billcode) => {
- billcode = billcode.trim();
+ // bcList.forEach(async (billcode) => {
+ for(let i = 0; i < bcList.length; i++){
+ let billcode = bcList[i].trim();
if(this.emisCoPackDetail.filter(wb => wb.billCode == billcode).length == 0){
let billRes = await listEmisWaybill({billCode:billcode});
if(!billRes || billRes.code != 200){
@@ -1337,7 +1363,7 @@ export default {
}
}
}
- })
+ }
this.titleBatch="";
this.openBatch=false;
this.formBatchBillList = "";
@@ -1358,6 +1384,7 @@ export default {
this.tempCoPackInfo.startSiteCode = this.coData.startSiteCode;
this.tempCoPackInfo.startSiteName = this.coData.startSiteName || null;
this.tempCoPackInfo.nextSiteCode = this.coData.nextSiteCode;
+ this.tempCoPackInfo.nextSiteName = this.coData.nextSiteName;
this.tempCoPackInfo.airBilllNo = this.coData.airBilllNo;
this.tempCoPackInfo.etd = this.coData.etd;
this.tempCoPackInfo.carNo = this.coData.carNo;
@@ -1418,6 +1445,7 @@ export default {
this.tempCoPackInfo.startSiteCode = this.coData.startSiteCode;
this.tempCoPackInfo.startSiteName = this.coData.startSiteName || null;
this.tempCoPackInfo.nextSiteCode = this.coData.nextSiteCode;
+ this.tempCoPackInfo.nextSiteName = this.coData.nextSiteName;
this.tempCoPackInfo.airBilllNo = this.coData.airBilllNo;
this.tempCoPackInfo.etd = this.coData.etd;
this.tempCoPackInfo.carNo = this.coData.carNo;
@@ -1500,8 +1528,9 @@ export default {
this.computeTotal();
// 更新主表
this.tempCoPackInfo.destCountry = this.coData.destCountry;
- this.tempCoPackInfo.sendStiteCode = this.coData.sendStiteCode;
+ // this.tempCoPackInfo.sendStiteCode = this.coData.sendStiteCode;
this.tempCoPackInfo.nextSiteCode = this.coData.nextSiteCode;
+ this.tempCoPackInfo.nextSiteName = this.coData.nextSiteName;
this.tempCoPackInfo.blUnpack = this.blUnpack;
this.tempCoPackInfo.totalWaybillQty = this.coData.totalWaybillQty;
this.tempCoPackInfo.totalParcelQty = this.coData.totalParcelQty;
@@ -1562,8 +1591,10 @@ export default {
item.destCountry = this.coData.destCountry;
// item.sendSiteCode = this.coData.sendSiteCode;
item.startSiteCode = this.coData.startSiteCode;
+ item.startSiteName = this.coData.startSiteName;
// item.nextSiteCode = this.coData.nextSiteCode;
item.nextSiteCode = this.coData.nextSiteCode;
+ item.nextSiteName = this.coData.nextSiteName;
item.blUnpack = this.blUnpack;
})
this.coData.totalWaybillQty=this.emisCoPackDetail.length;
@@ -1617,6 +1648,7 @@ export default {
this.coData.destCountryName = null;
// this.coData.sendSiteCode = null;
this.coData.nextSiteCode = null;
+ this.coData.nextSiteName = null;
this.coData.nextStation = null;
// this.blUnpack = "1";
diff --git a/src/views/emis/emisWaybillProblemInfo/centralProblemInquiry.vue b/src/views/emis/emisWaybillProblemInfo/centralProblemInquiry.vue
index ffc8bc8c..f5033489 100644
--- a/src/views/emis/emisWaybillProblemInfo/centralProblemInquiry.vue
+++ b/src/views/emis/emisWaybillProblemInfo/centralProblemInquiry.vue
@@ -563,6 +563,7 @@ export default {
// 多选框选中数据
handleSelectionChange(selection) {
this.ids = [];
+ debugger;
for(let i = 0; i< selection.length; i++){
if(selection[i].blReversion != "1"){
this.ids.push(selection[i].id)
diff --git a/src/views/emis/emisWaybillProblemInfo/problemEntry.vue b/src/views/emis/emisWaybillProblemInfo/problemEntry.vue
index e0eb5c30..7aaf901e 100644
--- a/src/views/emis/emisWaybillProblemInfo/problemEntry.vue
+++ b/src/views/emis/emisWaybillProblemInfo/problemEntry.vue
@@ -134,7 +134,12 @@
-
+
+
+
+
+
+
@@ -155,8 +160,8 @@
-
-
+
+
@@ -196,7 +201,7 @@