-
-
-
-
+
@@ -599,19 +596,19 @@
>
-
-
+
+
-
-
+
@@ -625,7 +622,8 @@
@@ -1575,7 +1573,6 @@ const wrap = ref([
head: false,
},
-
{
prop: 'quantity',
label: '数量',
@@ -1789,7 +1786,7 @@ const selectAll = val => {
// 弹窗全选
const TCselectAll = val => {
dataTmp.value = val;
- console.log(dataTmp.value,'勾选中的数据');
+ console.log(dataTmp.value, '勾选中的数据');
};
/** 表格表头输入框搜索 */
@@ -1860,35 +1857,28 @@ function tooSUM() {
// 弹窗确认表单信息展示
const submit = () => {
console.log('dataTmp.value :>> ', dataTmp.value);
-
+
// 当前为编辑状态
if (RouteId.value) {
-
- if(!dataTmp.value.length){
- ElMessageBox.confirm(
- '当前没有勾选包件,是否移除当前订单?',
- '提示',
- {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning',
- }
- )
- .then(() => {
- console.log(dataInfo.value,'当前所有订单');
- console.log(dataId.value,'删除订单');
- dataInfo.value.splice(dataId.value, 1);
-
- ElMessage({
- type: 'success',
- message: '移除成功',
+ if (!dataTmp.value.length) {
+ ElMessageBox.confirm('当前没有勾选包件,是否移除当前订单?', '提示', {
+ confirmButtonText: '确定',
+ cancelButtonText: '取消',
+ type: 'warning',
})
- AddLalog.value = false; //关闭弹窗
- })
- .catch(() => {
-
- })
- return
+ .then(() => {
+ console.log(dataInfo.value, '当前所有订单');
+ console.log(dataId.value, '删除订单');
+ dataInfo.value.splice(dataId.value, 1);
+
+ ElMessage({
+ type: 'success',
+ message: '移除成功',
+ });
+ AddLalog.value = false; //关闭弹窗
+ })
+ .catch(() => {});
+ return;
}
if (!wrapLoading.value) {
dataInfo.value = dataTmp.value;
@@ -1900,7 +1890,7 @@ const submit = () => {
let packageListInfo = [];
console.log('触发2');
dataInfo.value[dataId.value].packageListInfo = dataTmp.value; //把存在的值给当前订单下面
- // dataInfo.value[dataId.value].packageListInfo = wrapData.value;
+ // dataInfo.value[dataId.value].packageListInfo = wrapData.value;
wrapTemp.value[dataId.value] = dataTmp.value;
console.log('wrapTemp.value[dataId.value] :>> ', wrapTemp.value[dataId.value]);
console.log(wrapTemp.value, '包件订单被缓存');
@@ -1908,43 +1898,36 @@ const submit = () => {
console.log(dataInfo.value, '所有订单信息');
}
} else {
-
- if(!dataTmp.value.length){
- ElMessageBox.confirm(
- '当前没有勾选包件,是否移除当前订单?',
- '提示',
- {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning',
- }
- )
- .then(() => {
- console.log(dataInfo.value,'当前所有订单');
- console.log(dataId.value,'删除订单');
- dataInfo.value.splice(dataId.value, 1);
-
- ElMessage({
- type: 'success',
- message: '移除成功',
+ if (!dataTmp.value.length) {
+ ElMessageBox.confirm('当前没有勾选包件,是否移除当前订单?', '提示', {
+ confirmButtonText: '确定',
+ cancelButtonText: '取消',
+ type: 'warning',
})
- AddLalog.value = false; //关闭弹窗
- })
- .catch(() => {
-
- })
- return
+ .then(() => {
+ console.log(dataInfo.value, '当前所有订单');
+ console.log(dataId.value, '删除订单');
+ dataInfo.value.splice(dataId.value, 1);
+
+ ElMessage({
+ type: 'success',
+ message: '移除成功',
+ });
+ AddLalog.value = false; //关闭弹窗
+ })
+ .catch(() => {});
+ return;
}
// 新增订单
//选中好的订单提交到要展示的表格
if (wrapLoading.value) {
- console.log(dataInfo.value,'订单');
- console.log(dataId.value,'当前下标');
- console.log(dataInfo.value[dataId.value],'当前下班的订单');
- console.log(dataTmp.value,'勾选的数据');
+ console.log(dataInfo.value, '订单');
+ console.log(dataId.value, '当前下标');
+ console.log(dataInfo.value[dataId.value], '当前下班的订单');
+ console.log(dataTmp.value, '勾选的数据');
dataInfo.value[dataId.value].packageListInfo = dataTmp.value; //把存在的值给当前订单下面。。修改过
console.log(wrapTemp.value, '包件订单被缓存222');
- console.log(dataInfo.value,'处理好的订单');
+ console.log(dataInfo.value, '处理好的订单');
// 包件弹窗
} else {
dataInfo.value = dataTmp.value;
@@ -1954,8 +1937,6 @@ const submit = () => {
console.log('提交后的临时存储', dataTmp.value);
}
-
-
// 展示的信息
dataInfo.value = removeDuplicates(dataInfo.value);
// 计算总数
@@ -2007,8 +1988,8 @@ function scrollToElementWithinTableRow(partialIdString) {
}
// 编辑多功能搜索
const SearchFu = () => {
- console.log(multifunctional.value,'搜索的参数值');
-
+ console.log(multifunctional.value, '搜索的参数值');
+
if (multifunctional.value) {
scrollToElementWithinTableRow(multifunctional.value);
} else {
@@ -2090,7 +2071,16 @@ const EditEvent = val => {
// 接收点击编辑当前行数据
console.log('触发了编辑事件', val);
};
+const MaxSUM = computed(() => {
+ let sum = 0;
+ isZeroTable.value.forEach(item => {
+ sum += item.deliveryQuantity;
+ });
+ let max = dataInfo.value[dataId.value].handQuantity - sum;
+ console.log(dataInfo.value, ' dataInfo.value[');
+ return max;
+});
const toggleSelection = options => {
const { val = true, data, dataInfo = wrapData.value, index = 0 } = options;
const setIn = setTimeout(() => {
@@ -2108,17 +2098,16 @@ const toggleSelection = options => {
clearTimeout(setIn);
}, 0);
};
-function ProhibitSelection(val,index){
- if(wrapLoading.value){
- if(val.orderPackageLoadingStatus == 20 || val.orderPackageStockupStatus == 70){
- return false
- }else{
- return true
- }
- }else{
+function ProhibitSelection(val, index) {
+ if (wrapLoading.value) {
+ if (val.orderPackageLoadingStatus == 20 || val.orderPackageStockupStatus == 70) {
+ return false;
+ } else {
+ return true;
+ }
+ } else {
return true;
}
-
}
// 查看包件返回包件对应下标.
const findIndexById = id => {
@@ -2226,8 +2215,8 @@ const PackageFn = async () => {
};
// 查看包件事件
-function ViewEvent (val,index) {
- console.log(index,'下标')
+function ViewEvent(val, index) {
+ console.log(index, '下标');
wrapData.value = [];
loading.value = true; //开启加载效果
PackageFrom.value = {}; //清空订单搜索参数
@@ -2239,12 +2228,12 @@ function ViewEvent (val,index) {
editLoading.value = true; //开启加载效果
dataId.value = findIndexById(val.id);
console.log(val.id);
-
+
//接收点击查看当前行数据;
// 编辑信息弹窗状态
PackageFn();
return;
-};
+}
// 输入框值切换
// 在库录入
@@ -2264,6 +2253,8 @@ const Entering = val => {
// 数量录入
const QuantityEntry = val => {
+ console.log(dataInfo.value, 'dataInfo.value');
+
dataId.value = findIndexById(val.id); //记录当前点击的订单
comprehensive.value = true; //开启弹窗
QuantityEntryStatus.value = true; //此时开启零担录入
@@ -2324,45 +2315,64 @@ const ModifyLCL = () => {
const SubmitLoad = () => {
// 新增订单
// QuantityEntryStatus为真表示此时此刻操作的是数量录入提交
- 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], '当前零担信息');
+ 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.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;
- }
- }
+ // 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, '提交零担的值');
@@ -2385,10 +2395,10 @@ const isZeroNumber = val => {
};
// 刷新功能触发事件
const refresh = () => {
- if(!wrapLoading.value){
- AddInfo()
- }else{
- ViewEvent(Packageow.value)
+ if (!wrapLoading.value) {
+ AddInfo();
+ } else {
+ ViewEvent(Packageow.value);
}
};
// 搜索展开功能
@@ -2574,8 +2584,6 @@ const CLchangeSelect = val => {
// 合并司机和车辆信息
const merge = (val, kindS) => {
if (kindS == 'WX') {
-
-
// 如果是外协就不进行下面的司机合并
console.log('当前是外协');
@@ -2587,29 +2595,29 @@ const merge = (val, kindS) => {
return;
}
- if(!DataSubmit.value.tripartite.driverName){
+ if (!DataSubmit.value.tripartite.driverName) {
ElMessage({
message: '请选填写司机名称',
type: 'warning',
});
- return
+ return;
}
const phoneRegExp = /^[0-9]{11}$/;
if (!phoneRegExp.test(DataSubmit.value.tripartite.driverPhone)) {
- ElMessage({
- message: '请输入正确的11位司机电话号码',
- type: 'warning',
- });
- return;
+ ElMessage({
+ message: '请输入正确的11位司机电话号码',
+ type: 'warning',
+ });
+ return;
}
- if(!DataSubmit.value.tripartite.vehicleNum){
+ if (!DataSubmit.value.tripartite.vehicleNum) {
ElMessage({
message: '请选填车辆车牌',
type: 'warning',
});
- return
+ return;
}
if (!DataSubmit.value.taskTime) {
@@ -2786,7 +2794,7 @@ const SubmitCommercial = async () => {
code = res.data.code;
} else {
// 新增信息
-
+
console.log(DataSubmit.value, '准备提交的信息');
const res = await deliveryBusinessTask(DataSubmit.value);
code = res.data.code;
@@ -3388,5 +3396,4 @@ const SubmitCommercial = async () => {
min-width: 300px;
font-size: 14px;
}
-