@@ -279,6 +284,7 @@ import {
$_expenseDispatchPriceRuledetail,
} from '@/api/storagecost/index.js';
import { $_ObtainRegion } from '@/api/basicdata/basicdataWarehouse';
+import { getList } from '@/api/basicdata/basicdataVehicleInfo';
import { getDictionaryBiz } from '@/api/system/dict'; //字典
import { deepClone } from '@/utils/util';
const emit = defineEmits(['request-data']);
@@ -491,11 +497,12 @@ const asurcharge = ref([
const dispatchSubjoinCategory = ref([
{ label: '序号', prop: 'index', type: 'string', width: '50', disabled: true },
{
- label: '车型',
+ label: '车型1',
prop: 'carModel',
type: 'select',
width: 'auto',
- disabled: true,
+ disabled: true, //是否显示
+ show: true, //禁止输入框
},
{ label: '操作', prop: '', type: '', width: 'auto', disabled: true },
]);
@@ -773,13 +780,13 @@ const Categoryprocessing = (value, data, type) => {
const Oversizedbillingprocessing = (value, data) => {
OversizedbillingData.value.forEach(item => {
console.log(item, '超区计费-----》');
-
+
// 拆解出 region 数组中的省、市、区编码
const [province, city, district] = item.region;
// 查找省对象
const provinceObj = item.options.find(option => option.value == province);
-
+
// 根据省对象查找市集合
const cityObj = provinceObj?.children?.find(cityItem => cityItem.value == city);
@@ -1079,11 +1086,31 @@ const onLoad = async () => {
});
}
};
+
+// 获取车型
+const Obtainvehiclemodel = async () => {
+ try {
+ let _res = await getList();
+ const { code, data } = _res.data;
+ if (code == 200) {
+ console.log(data, '车型');
+ optionsVehicle.value = data.map(item => {
+ return {
+ label: item.vehicleModel,
+ value: item.id,
+ };
+ });
+ initData();
+ }
+ } catch (e) {
+ console.log(e, 'error');
+ } finally {
+ }
+};
// 页面初始化
const onLoadPage = async () => {
await onLoad();
- updateDictionary(optionsVehicle.value, 'price_vehicle_type'); // 获取车型
-
+ Obtainvehiclemodel(); //获取车型
GetRegion(); //获取地区
};
onLoadPage();
diff --git a/src/views/cost/storagecost/Warehouserentalmanagement.vue b/src/views/cost/storagecost/Warehouserentalmanagement.vue
index e42b69d7..9aac5056 100644
--- a/src/views/cost/storagecost/Warehouserentalmanagement.vue
+++ b/src/views/cost/storagecost/Warehouserentalmanagement.vue
@@ -534,13 +534,13 @@ const changetype = () => {
form.value.storageLocationCount = null; //客户租用库位数
form.value.leasedArea = null; //客户租用库位数
};
-form.value.residualArea = null; //剩余库位面积
-form.value.singleStorageArea = null; //单库位面积
+
const changewarehouse = async () => {
let data = {
warehouseId: form.value.warehouseId,
};
-
+ form.value.residualArea = null; //剩余库位面积
+ form.value.singleStorageArea = null; //单库位面积
formloading.value = true;
await $_residualArea(data)
.then(res => {
@@ -600,7 +600,10 @@ const changestorageLocationCount = () => {
const Customeradded = () => {
ruleFormRef.value.validate(valid => {
if (valid) {
- if (form.value.storageLocationCount == null || form.value.leasedArea == null) {
+ const { type, storageLocationCount, leasedArea } = form.value;
+
+
+ if ((type === 1 && leasedArea == null) || (type === 2 && storageLocationCount == null)) {
ElMessage({
message: '请维护仓库基础资料',
type: 'warning',
diff --git a/src/views/distribution/deliverylist/distributionDeliveryListedt.vue b/src/views/distribution/deliverylist/distributionDeliveryListedt.vue
index b7c1ad1e..b285051c 100644
--- a/src/views/distribution/deliverylist/distributionDeliveryListedt.vue
+++ b/src/views/distribution/deliverylist/distributionDeliveryListedt.vue
@@ -778,9 +778,10 @@
:loading="AbnormalReviewloading"
@inputTxt="inputscReservationPackage"
@timeCheck="timescReservationPackage"
- @selectCheck="selectscReservationPackage"
+ @selectCheck="selectAbnormalpackage"
ref="YcwtableBox"
@selection="selectionChange"
+ :isselectfun="ProhibitSelection"
>
@@ -801,17 +802,18 @@
取消
+ @click="Canceldelivery(slotProps.scope.row)"
+ v-if="slotProps.scope.row.abnormalTypeName == '装车异常'"
+ >取消
-
+
查看二维码
@@ -894,6 +896,7 @@ import {
printBatch,
$_deliveryZeroPackage,
$_showInventoryPackgeCode,
+ $_showInventoryPackgeCodes,
$_loadingAbnormalPackageListTurnDown,
$_retentionScan,
$_cancelLoadingAbnormal,
@@ -954,6 +957,7 @@ export default {
],
dialogViReject: false, //驳回弹窗
RejectRow: {}, //驳回点击当前单子
+ selectAbnormalpackageList: [], //异常包件list用于下拉搜索
yesOrNo: false,
accessControl: '',
html: '',
@@ -3263,32 +3267,25 @@ export default {
},
methods: {
async abnormalViewQRcode(index, row) {
- let qr = {};
- if (index == 1) {
- if (!this.selectionList.length) {
- ElMessage({
- message: `请勾选要查看二维码的数据`,
- type: 'warning',
- });
- return;
- }
- qr.ids = this.selectionList.map(res => res.packageId).join(',');
- } else {
- qr.ids = row.packageId;
- }
+ console.log(row, 'row');
try {
+ if (index == 1 && !this.checkSelection()) return;
+
+ const qr = {};
+ let res = '';
+
+ if (index == 1) {
+ res = await this.handleIndexOne();
+ } else {
+ res = await this.handleNotIndexOne(row);
+ }
+
this.AbnormalReviewloading = true;
this.html = '';
- const res = await showOrderPackgeCode(qr);
-
- const { code, data } = res.data;
- if (code !== 200) return;
+ if (res.data.code !== 200) return;
- for (let i = 0; i < data.moldList.length; i++) {
- const element = data.moldList[i];
- this.html += element;
- }
+ this.html = res.data.data.moldList.join('');
this.isShowPrint = true; //开启二维码弹出框
} catch (error) {
console.log('error :>> ', error);
@@ -3296,6 +3293,51 @@ export default {
this.AbnormalReviewloading = false;
}
},
+
+ checkSelection() {
+ if (!this.selectionList.length) {
+ ElMessage({
+ message: '请勾选要查看二维码的数据',
+ type: 'warning',
+ });
+ return false;
+ }
+ if (!this.isUniformType()) {
+ ElMessage({
+ message: '请勾选同一种类型的数据',
+ type: 'warning',
+ });
+ return false;
+ }
+ return true;
+ },
+
+ isUniformType() {
+ const type = this.selectionList[0].goodsTypeName;
+ return this.selectionList.every(item => item.goodsTypeName === type);
+ },
+
+ async handleIndexOne() {
+ const qr = {};
+ if (this.selectionList[0].goodsTypeName === '订制品') {
+ qr.ids = this.selectionList.map(res => res.packageId).join(',');
+ return await showOrderPackgeCode(qr);
+ } else {
+ qr.orderPackgeCodes = this.selectionList.map(res => res.packageCode).join(',');
+ return await $_showInventoryPackgeCodes(qr);
+ }
+ },
+
+ async handleNotIndexOne(row) {
+ const qr = {};
+ if (row.goodsTypeName === '库存品') {
+ qr.orderPackgeCodes = row.packageCode;
+ return await $_showInventoryPackgeCodes(qr);
+ } else {
+ qr.ids = row.packageId;
+ return await showOrderPackgeCode(qr);
+ }
+ },
// 异常审核函数
viewAbnormalLoading(scope) {
console.log(this.$refs.YcwtableBox, '2');
@@ -3304,6 +3346,7 @@ export default {
this.AbnormalReviewloading = true; //开启加载
console.log(scope, 'scope');
this.abnormalBox = true;
+ this.AbnormalReview.forEach(item => (item.values = ''));
$_newLoadingAbnormalPackageListDetail(scope.signId)
.then(res => {
console.log(res, '异常审核查询');
@@ -3320,6 +3363,7 @@ export default {
}
});
this.AbnormalReviewData = res.data.data;
+ this.selectAbnormalpackageList = res.data.data; //用于存储全部值
})
.catch(res => {
console.log(res, '关闭加载效果');
@@ -3702,6 +3746,26 @@ export default {
}
this.getWrapdetails(this.page);
},
+ // 异常包件选择
+ selectAbnormalpackage(index, row) {
+ console.log(index, row);
+ console.log(index, 'indexxx');
+
+ if (!index) {
+ this.AbnormalReviewData = this.selectAbnormalpackageList;
+ } else {
+ this.AbnormalReviewData = this.selectAbnormalpackageList.filter(
+ item => item[row.prop] == row.values
+ );
+ }
+ },
+ ProhibitSelection(val, index) {
+ if (val.packageCode) {
+ return true;
+ } else {
+ return false;
+ }
+ },
selectscReservationInventoryPackage(index, row) {
console.log(index, row);
if (row.prop === 'stockSignfoStatusName') {
@@ -3758,7 +3822,6 @@ export default {
// };
this.html = '';
const res = await showInventoryPackgeCode(row.reservationId, row.id);
-
const { code, data } = res.data;
if (code !== 200) return;
// this.orderPackageCode = res.data
@@ -3860,12 +3923,15 @@ export default {
BatchcancellationAll() {
if (!this.selectionList.length) {
ElMessage({
- message: '请勾选要取消的数据,【审核状态】必须为待审核,斌且【异常类型】状态只能为装车异常',
+ message:
+ '请勾选要取消的数据,【审核状态】必须为待审核,斌且【异常类型】状态只能为装车异常',
type: 'warning',
});
return;
}
- let _state = this.selectionList.every(item => item.auditingStatusName =='待审核' && item.abnormalTypeName == '装车异常' );
+ let _state = this.selectionList.every(
+ item => item.auditingStatusName == '待审核' && item.abnormalTypeName == '装车异常'
+ );
console.log(_state);
if (!_state) {
ElMessage({
diff --git a/src/views/distribution/reservation/reservationAddFrom.vue b/src/views/distribution/reservation/reservationAddFrom.vue
index d9144185..0c802165 100644
--- a/src/views/distribution/reservation/reservationAddFrom.vue
+++ b/src/views/distribution/reservation/reservationAddFrom.vue
@@ -124,7 +124,9 @@
- {{ item.dictValue }}
+ {{ item.dictValue }}
+
@@ -297,7 +299,7 @@
-
+
@@ -307,64 +309,27 @@
-
-
-
- 名称:{{ item.firsts }}
-
-
- 总数量:{{ item.number }}
-
-
- 在库数量:{{ item.handQuantity }}
-
-
- 冻结数量:{{ item.deliveryQuantity }}
-
-
- 出库数量:{{ item.outboundQuantity }}
-
-
-
-
-
- 操作数量:
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
- 修改(零担订单)
-
提交(零担订单)
@@ -1922,7 +1887,7 @@ export default {
},
// 表单数据
form: {
- isInstall:'1',//安装
+ isInstall: '1', //安装
},
// 选择行
selectionList: [],
@@ -2106,15 +2071,13 @@ export default {
async handleAddOrder() {
this.loading = true;
this.orderList = [...this.orderData];
- this.query={}
- this.stockArtcolumnList.forEach(item=>{
- item.values=''
- })
+ this.query = {};
+ this.stockArtcolumnList.forEach(item => {
+ item.values = '';
+ });
//这里只需要对订单进行正常的搜索即可
await this.onLoadOrder(this.page);
-
-
this.loading = false;
this.orderShow = true;
this.$nextTick(() => {
@@ -2324,24 +2287,12 @@ export default {
//查询零担计划数量详情
console.log('order------------>', row.id);
getReservationZeroOrderDetail(this.reservationId, row.id).then(res => {
- let a = res.data.data;
- a.forEach(item => {
- item.zeroOrderMax =
- item.handQuantity -
- item.deliveryQuantity -
- item.outboundQuantity +
- item.reservationNum;
- });
this.zeroOrderData = res.data.data;
// console.log(res.data.data);
});
} else {
getZeroOrderDetail(row.id).then(res => {
if (res.data.data != null) {
- let a = res.data.data;
- a.forEach(item => {
- item.zeroOrderMax = item.handQuantity - item.deliveryQuantity - item.outboundQuantity;
- });
this.zeroOrderData = res.data.data;
}
});
@@ -2661,27 +2612,22 @@ export default {
// this.form.stockArticleList = this.packageList;
console.log('>>>>>>>>', this.form);
if (this.reservationId) {
- console.log(this.reservationId,'this.reservationId');
+ console.log(this.reservationId, 'this.reservationId');
// 判断是否都没有选择包件
- console.log(this.form.stockArticleList,'this.form.stockArticleList');
+ console.log(this.form.stockArticleList, 'this.form.stockArticleList');
const checkInfoValues = this.form.stockArticleList.every(
item => !item.reservationNum
);
- console.log(this.renderInventoryData,'renderInventoryData');
- console.log(this.renderOrderData,'renderOrderData');
- console.log(checkInfoValues,'checkInfoValues');
- if (!this.renderInventoryData.length && !this.renderOrderData.length) {
-
- await ElMessageBox.prompt(
- '当前计划为空是否"取消本次计划"?',
- '请填写取消原因',
- {
- confirmButtonText: '确认',
- cancelButtonText: '关闭',
- inputPattern: /^\S+$/,
- inputErrorMessage: '请填写取消原因',
- }
- )
+ console.log(this.renderInventoryData, 'renderInventoryData');
+ console.log(this.renderOrderData, 'renderOrderData');
+ console.log(checkInfoValues, 'checkInfoValues');
+ if (!this.renderInventoryData.length && !this.renderOrderData.length) {
+ await ElMessageBox.prompt('当前计划为空是否"取消本次计划"?', '请填写取消原因', {
+ confirmButtonText: '确认',
+ cancelButtonText: '关闭',
+ inputPattern: /^\S+$/,
+ inputErrorMessage: '请填写取消原因',
+ })
.then(value => {
let data = {
cancelReason: value.value,
@@ -2708,14 +2654,11 @@ export default {
})
.catch(() => {
console.log('关闭弹窗');
-
});
- return
+ return;
} else {
for (let i = 0; i < this.form.stockArticleList.length; i++) {
- if (
- !this.form.stockArticleList[i].reservationNum
- ) {
+ if (!this.form.stockArticleList[i].reservationNum) {
ElMessageBox.confirm(
`订单自编号:${this.form.stockArticleList[i].orderCode}没有选择包件是否移除!`,
'提示',
@@ -2729,19 +2672,17 @@ export default {
this.renderOrderData.splice(i, 1);
this.form.stockArticleList.splice(i, 1);
})
- .catch(() => {
-
- });
+ .catch(() => {});
return;
}
}
}
-
+
// 开启提交按钮loading
this.loadingObj.submitBtnLoading = true;
this.reservationloading = true; //开启全屏加载
this.form.id = this.reservationId;
- console.log(this.form,'this.form');
+ console.log(this.form, 'this.form');
const res = await update(this.form);
console.log('res :>> ', res);
if (res.data.code !== 200) return;
@@ -2751,10 +2692,10 @@ export default {
});
this.back();
} else {
- if (!this.renderInventoryData.length && !this.renderOrderData.length) {
+ if (!this.renderInventoryData.length && !this.renderOrderData.length) {
this.$message.warning('无效计划');
- return
- }
+ return;
+ }
// 开启提交按钮loading
this.loadingObj.submitBtnLoading = true;
this.reservationloading = true; //开启全屏加载
@@ -3062,64 +3003,18 @@ export default {
this.zeroOrderShow = false;
console.log('-------------->', this.zeroOrderData);
},
+ // 提交零担数量
onSubmitZeroOrder() {
- if (this.isrReservationEntry) {
- //零担预约数量录入
- this.orderData.forEach(item => {
- if (this.obj.id === item.id) {
- item.parcelNumberVOS = this.zeroOrderData;
- }
- });
- } else {
- //在库数量录入
- let a = this.zeroOrderData;
- if (a.length > 0) {
- let n = 0;
- a.forEach(item => {
- n += item.number;
- });
- if (n > this.obj.handQuantity) {
- this.$message({
- type: 'error',
- message: '录入数量超过订单在库数量!',
- });
- return;
- }
- let b = a.every(item => {
- console.log(
- '最大数量-------------->',
- item.handQuantity + item.outboundQuantity + item.deliveryQuantity + item.number
- );
- if (
- item.handQuantity + item.outboundQuantity + item.deliveryQuantity + item.number >
- item.quantity
- ) {
- return false;
- }
- return true;
- });
- console.log('----------------->', b);
- if (!b) {
- this.$message({
- type: 'error',
- message: '请输入正确数量!',
- });
- return;
- }
- }
- entryNum(this.zeroOrderData).then(res => {
- if (res) {
- this.$message({
- type: 'success',
- message: '操作成功',
- });
- }
- });
- console.log('this.zeroOrderData------------->', this.zeroOrderData);
- }
-
- this.zeroOrderShow = false;
+ let _renderOrderData = this.renderOrderData.find(item => item.id === this.obj.id);
+ _renderOrderData.parcelNumberVOS = this.zeroOrderData;
+ // 操作数量求和
+ let totalReservationNum = this.zeroOrderData.reduce((sum, item) => {
+ return sum + (item.reservationNum || 0); // 确保 reservationNum 存在
+ }, 0);
+ _renderOrderData.reservationNum = totalReservationNum;
+ this.zeroOrderShow = false; //关闭弹窗
},
+
// 增加库存品
onSubmitInventory() {
if (this.inventoryList.length === 0) {
@@ -3600,6 +3495,5 @@ input[type='number'] {
span {
width: 100px;
}
-
}
diff --git a/src/views/distribution/signfor/distributionSignfortreat.vue b/src/views/distribution/signfor/distributionSignfortreat.vue
index ecd8248d..5bc2a16f 100644
--- a/src/views/distribution/signfor/distributionSignfortreat.vue
+++ b/src/views/distribution/signfor/distributionSignfortreat.vue
@@ -299,6 +299,16 @@
:headers="headers"
multiple
>
+
+
+
+
+
+
@@ -321,6 +331,15 @@
:headers="headers"
multiple
>
+
+
+
+
+
@@ -343,6 +362,15 @@
:headers="headers"
multiple
>
+
+
+
+
+
@@ -365,6 +393,15 @@
:headers="headers"
multiple
>
+
+
+
+
+
@@ -387,6 +424,15 @@
:headers="headers"
multiple
>
+
+
+
+
+
@@ -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; //此时开启零担录入
diff --git a/src/views/warehouse/warehousingentry/warehouseWarehouseingAddReceipt.vue b/src/views/warehouse/warehousingentry/warehouseWarehouseingAddReceipt.vue
index 7d6cd3cb..9a610fdd 100644
--- a/src/views/warehouse/warehousingentry/warehouseWarehouseingAddReceipt.vue
+++ b/src/views/warehouse/warehousingentry/warehouseWarehouseingAddReceipt.vue
@@ -147,7 +147,7 @@
-
+