@@ -2146,6 +2192,10 @@ export default {
this.signform = row;
this.signBox = true;
getDetail(row.id).then(res => {
+ if (res.data.code !== 200) {
+ return;
+ }
+
console.log(res, '点击复核的返回值==');
this.form = res.data.data;
this.TcForm = res.data.data;
@@ -2155,24 +2205,64 @@ export default {
this.FragilePhotos = [];
this.HomePhotos = [];
this.SignForPhotos = [];
- if (res.data.data.printVOList.length) {
- res.data.data.printVOList.forEach(item => {
- if (item.type == 'photo_1') {
- this.DoorstepPhoto.push({ name: item.name, url: item.urlRoute });
- }
- if (item.type == 'photo_2') {
- this.StackingPhoto.push({ name: item.name, url: item.urlRoute });
- }
- if (item.type == 'photo_3') {
- this.FragilePhotos.push({ name: item.name, url: item.urlRoute });
- }
- if (item.type == 'photo_4') {
- this.HomePhotos.push({ name: item.name, url: item.urlRoute });
- }
- if (item.type == 'photo_5') {
- this.SignForPhotos.push({ name: item.name, url: item.urlRoute });
- }
- });
+ if (res.data.data?.printVOList.length) {
+ const { printVOList } = res.data.data;
+ const photoTypeMap = {
+ photo_1: 'DoorstepPhoto',
+ photo_2: 'StackingPhoto',
+ photo_3: 'FragilePhotos',
+ photo_4: 'HomePhotos',
+ photo_5: 'SignForPhotos',
+ };
+ if (printVOList.length) {
+ printVOList.forEach(item => {
+ const listName = photoTypeMap[item.type];
+ if (listName) {
+ this[listName].push({
+ name: item.name,
+ url: item.urlRoute,
+ driverName: item.driverName,
+ });
+ }
+ });
+ }
+ // res.data.data.printVOList.forEach(item => {
+ // if (item.type == 'photo_1') {
+ // this.DoorstepPhoto.push({
+ // name: item.name,
+ // url: item.urlRoute,
+ // driverName: item.driverName,
+ // });
+ // }
+ // if (item.type == 'photo_2') {
+ // this.StackingPhoto.push({
+ // name: item.name,
+ // url: item.urlRoute,
+ // driverName: item.driverName,
+ // });
+ // }
+ // if (item.type == 'photo_3') {
+ // this.FragilePhotos.push({
+ // name: item.name,
+ // url: item.urlRoute,
+ // driverName: item.driverName,
+ // });
+ // }
+ // if (item.type == 'photo_4') {
+ // this.HomePhotos.push({
+ // name: item.name,
+ // url: item.urlRoute,
+ // driverName: item.driverName,
+ // });
+ // }
+ // if (item.type == 'photo_5') {
+ // this.SignForPhotos.push({
+ // name: item.name,
+ // url: item.urlRoute,
+ // driverName: item.driverName,
+ // });
+ // }
+ // });
}
});
},
@@ -2245,6 +2335,10 @@ export default {
},
});
},
+ getTooltipContent(file) {
+ console.log(file, 'file');
+ return `该图片由${file.driverName || '文员'}上传`;
+ },
btnsc(index, row) {
console.log(index, row);
},
diff --git a/src/views/distribution/turndelivery/deliveryDiscuss.vue b/src/views/distribution/turndelivery/deliveryDiscuss.vue
index bff34b1a..c2e6336a 100644
--- a/src/views/distribution/turndelivery/deliveryDiscuss.vue
+++ b/src/views/distribution/turndelivery/deliveryDiscuss.vue
@@ -534,49 +534,25 @@
>
-
+
-
-
-
+
-
- 修改(零担订单)
- 提交(零担订单)
+ 提交(零担订单)
@@ -1377,9 +1353,9 @@ const submit = () => {
// 展示的信息
dataInfo.value = removeDuplicates(dataInfo.value);
- dataInfo.value.forEach(item=>{
- item.Plannedquantity = item.reservationNum
- })
+ dataInfo.value.forEach(item => {
+ item.Plannedquantity = item.reservationNum;
+ });
console.log(dataInfo.value, ' dataInfo.value');
// 计算总数
@@ -1791,79 +1767,13 @@ const ModifyLCL = () => {
};
// 零担提交
const SubmitLoad = () => {
- // 新增订单
- // QuantityEntryStatus为真表示此时此刻操作的是数量录入提交
-
- let sum = 0; //最大值
- let Numberoperations = 0;
- isZeroTable.value.forEach(item => {
- sum += item.deliveryQuantity;
- Numberoperations += item.reservationNum;
- });
- let max = dataInfo.value[dataId.value].handQuantity - sum;
- console.log(dataInfo.value, ' dataInfo.value[');
-
- if (Numberoperations > max) {
- ElMessage({
- message: '操作数量总和不能大于冻结数量总和',
- type: 'warning',
- });
-
- return;
- }
-
- if (QuantityEntryStatus.value) {
- // if (RouteId.value) {
- // for (let item of isZeroTable.value) {
- // if (
- // item.reservationNum >
- // item.handQuantity - item.deliveryQuantity - item.outboundQuantity
- // ) {
- // ElMessage({
- // message: item.firsts + item.reservationNum + ':最大值:不能超过(可用数量)',
- // type: 'warning',
- // });
- // return;
- // }
- // }
- // }
- // console.log(dataInfo.value[dataId.value], '当前零担信息');
- } else {
- // 操作数量最小值校验 冻结数量+出库数量
- // for (const item of isZeroTable.value) {
- // if (item.number < item.deliveryQuantity + item.outboundQuantity) {
- // ElMessage({
- // message: item.firsts + ':最小值:不能低于(冻结数量+在库数量)',
- // type: 'warning',
- // });
- // return;
- // }
- // }
- // 操作数量最大值校验
-
- // for (const item of isZeroTable.value) {
- // if (item.handQuantity + item.number > item.quantity) {
- // ElMessage({
- // message: item.firsts + ':最大值:不能超过(在库数量+输入的数量)>数量',
- // type: 'warning',
- // });
- // return;
- // }
- // }
- entryNum(isZeroTable.value).then(res => {
- console.log(res, '提交零担');
- console.log(isZeroTable.value, '提交零担的值');
- });
- }
+ // 计划数量
+ let totalReservationNum = isZeroTable.value.reduce((sum, item) => {
+ return sum + (item.reservationNum || 0);
+ }, 0);
+ dataInfo.value[dataId.value].reservationNum = totalReservationNum;
dataInfo.value[dataId.value].parcelNumberVOS = isZeroTable.value;
- // 零担计划数量
- let _summation = 0;
- dataInfo.value[0].parcelNumberVOS.forEach(item => {
- _summation += item.reservationNum;
- });
- dataInfo.value[dataId.value].reservationNum = _summation;
-
comprehensive.value = false; //关闭弹窗
EnteringLibrary.value = false; //关闭零担
QuantityEntryStatus.value = false; //此时开启零担录入