Browse Source

商市配零担修复

dev-xx
马远东 6 months ago
parent
commit
3c9d5408b1
  1. 49
      src/option/distribution/DeliveryExceptionReview.js
  2. 5
      src/views/Pricesystem/ListOfPriceSystems.vue
  3. 11
      src/views/cost/storagecost/Warehouserentalmanagement.vue
  4. 222
      src/views/distribution/reservation/reservationAddFrom.vue
  5. 130
      src/views/distribution/signfor/distributionSignfortreat.vue
  6. 116
      src/views/distribution/turndelivery/deliveryDiscuss.vue

49
src/option/distribution/DeliveryExceptionReview.js

@ -62,8 +62,8 @@ export const AbnormalReview = [
head: false,
},
{
prop: 'materialName',
label: '货物名称',
prop: 'packageCode',
label: '包条码',
type: 1,
values: '',
width: '100',
@ -73,8 +73,8 @@ export const AbnormalReview = [
head: false,
},
{
prop: 'packageCode',
label: '包条码',
prop: 'materialName',
label: '物料名称',
type: 1,
values: '',
width: '100',
@ -84,6 +84,7 @@ export const AbnormalReview = [
head: false,
},
// {
// prop: 'warehouse',
// label: '仓库',
@ -216,6 +217,18 @@ export const AbnormalReview = [
sortable: false,
head: false,
},
{
prop: 'loadingQuantity',
label: '异常数量',
type: 1,
values: '',
width: '100',
checkarr: [],
fixed: false,
sortable: false,
head: false,
isshowSummary: true,
},
// {
// prop: 'materialCode',
// label: '物料编号',
@ -251,17 +264,17 @@ export const AbnormalReview = [
head: false,
},
{
prop: 'orderPackageFreezeStatusName',
label: '冻结状态',
type: 1,
values: '',
width: '100',
checkarr: [],
fixed: false,
sortable: false,
head: false,
},
// {
// prop: 'orderPackageFreezeStatusName',
// label: '冻结状态',
// type: 1,
// values: '',
// width: '100',
// checkarr: [],
// fixed: false,
// sortable: false,
// head: false,
// },
// {
// prop: 'orderPackageGroundingStatusName',
@ -383,7 +396,7 @@ export const AbnormalReview = [
{
prop: 'auditingStatusName',
label: '审核状态',
label: '异常状态',
type: 1,
values: '',
width: '100',
@ -405,7 +418,7 @@ export const AbnormalReview = [
},
{
prop: 'auditingTime',
label: '审核时间',
label: '操作时间',
type: 1,
values: '',
width: '100',
@ -418,7 +431,7 @@ export const AbnormalReview = [
{
prop: 'auditingUser',
label: '审核人',
label: '操作人',
type: 1,
values: '',
width: '100',

5
src/views/Pricesystem/ListOfPriceSystems.vue

@ -724,11 +724,12 @@ const handleSubmitBasic = () => {
const res = await postBasicdataPrice(submitData);
const { code, msg } = res.data;
if (code !== 200) return;
if (code !== 200) {
return;
}
ElMessage.success(msg);
onLoad();
Historicalversion(HistoriBt.value);
} catch (error) {
console.log('error :>> ', error);
} finally {

11
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',

222
src/views/distribution/reservation/reservationAddFrom.vue

@ -124,7 +124,9 @@
<el-col :span="10">
<el-form-item label="安&emsp;&emsp;装:" prop="serveType" label-width="100px">
<el-radio-group v-model="form.isInstall" v-for="item in this.whetherData">
<el-radio :label="item.dictKey" :value="item.dictKey">{{ item.dictValue }}&emsp; </el-radio>
<el-radio :label="item.dictKey" :value="item.dictKey"
>{{ item.dictValue }}&emsp;
</el-radio>
</el-radio-group>
</el-form-item>
</el-col>
@ -297,7 +299,7 @@
<!-- </template> -->
<!-- 零担品类信息 -->
<el-dialog v-model="zeroOrderShow" title="零担品类信息" width="80%" :model="zeroOrderData">
<el-dialog v-model="zeroOrderShow" title="零担品类信息" width="60%" :model="zeroOrderData">
<el-row :gutter="24" class="rows">
<el-col :xl="4" :lg="7" :md="8" :sm="24">
<h3>
@ -307,64 +309,27 @@
</el-row>
<template v-if="zeroOrderData != null">
<div v-for="(item, index) in zeroOrderData" :key="index">
<el-row :gutter="24" class="rows">
<el-col :xl="2" :lg="4" :md="4" :sm="12">
<span>名称{{ item.firsts }}</span>
</el-col>
<el-col :xl="2" :lg="4" :md="4" :sm="12">
<span>总数量{{ item.number }} </span>
</el-col>
<el-col :xl="2" :lg="4" :md="4" :sm="12">
<span>在库数量{{ item.handQuantity }} </span>
</el-col>
<el-col :xl="2" :lg="4" :md="4" :sm="12">
<span>冻结数量{{ item.deliveryQuantity }} </span>
</el-col>
<el-col :xl="2" :lg="4" :md="4" :sm="12">
<span>出库数量{{ item.outboundQuantity }} </span>
</el-col>
<!-- <el-col :xl="4" :lg="7" :md="8" :sm="24">
<span
>可用数量{{
item.handQuantity - item.deliveryQuantity - item.outboundQuantity
}}</span
>
<span>可用数量{{(item.quantity)}}</span>
</el-col> -->
<el-col :xl="5" :lg="4" :md="4" :sm="12">
<div class="el_sumS">
<span>操作数量</span>
<el-input-number
v-if="this.isrReservationEntry"
v-model="item.reservationNum"
min="0"
:max="item.reservationNum"
placeholder="请输入预约数量"
></el-input-number>
<el-input-number
v-else
v-model="item.number"
min="0"
:max="maxSum"
placeholder="请输入预约数量"
></el-input-number>
</div>
</el-col>
</el-row>
<!-- <el-input-number v-model="item.reservationNum" min="0" :max="item.quantity - item.deliveryQuantity -item.outboundQuantity " placeholder="请输入预约数量"></el-input-number>-->
</div>
<el-table :data="zeroOrderData" border style="width: 100%">
<el-table-column fixed prop="firsts" label="名称" />
<el-table-column prop="quantity" label="总数量" />
<el-table-column prop="handQuantity" label="在库数量" />
<el-table-column prop="deliveryQuantity" label="冻结数量" />
<el-table-column prop="outboundQuantity" label="出库数量" />
<el-table-column prop="maxPlanNum" label="可用数量" />
<el-table-column fixed="right" label="数量操作">
<template #default="scope">
<el-input-number
size="small"
v-model="scope.row.reservationNum"
:max="scope.row.maxPlanNum"
:min="0"
:value-on-clear="0"
/>
</template>
</el-table-column>
</el-table>
</template>
<el-form-item style="margin-left: 37%; margin-top: 5px">
<el-button
v-if="!isrReservationEntry"
type="primary"
icon="el-icon-circle-close"
@click="onSubmitUpdateZeroOrder"
>修改(零担订单)
</el-button>
<el-button type="primary" icon="el-icon-circle-close" @click="onSubmitZeroOrder"
>提交(零担订单)
</el-button>
@ -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;
}
}
</style>

130
src/views/distribution/signfor/distributionSignfortreat.vue

@ -299,6 +299,16 @@
:headers="headers"
multiple
>
<template #file="{ file }">
<el-tooltip :content="getTooltipContent(file)" placement="top">
<img
:src="file.url"
alt="photo"
style="width: 100%; height: 100%; cursor: pointer"
/>
</el-tooltip>
</template>
<el-icon><Plus /></el-icon>
</el-upload>
<el-dialog v-model="dialogVisibleA">
@ -321,6 +331,15 @@
:headers="headers"
multiple
>
<template #file="{ file }">
<el-tooltip :content="getTooltipContent(file)" placement="top">
<img
:src="file.url"
alt="photo"
style="width: 100%; height: 100%; cursor: pointer"
/>
</el-tooltip>
</template>
<el-icon><Plus /></el-icon>
</el-upload>
<el-dialog v-model="dialogVisibleB">
@ -343,6 +362,15 @@
:headers="headers"
multiple
>
<template #file="{ file }">
<el-tooltip :content="getTooltipContent(file)" placement="top">
<img
:src="file.url"
alt="photo"
style="width: 100%; height: 100%; cursor: pointer"
/>
</el-tooltip>
</template>
<el-icon><Plus /></el-icon>
</el-upload>
<el-dialog v-model="dialogVisibleC">
@ -365,6 +393,15 @@
:headers="headers"
multiple
>
<template #file="{ file }">
<el-tooltip :content="getTooltipContent(file)" placement="top">
<img
:src="file.url"
alt="photo"
style="width: 100%; height: 100%; cursor: pointer"
/>
</el-tooltip>
</template>
<el-icon><Plus /></el-icon>
</el-upload>
<el-dialog v-model="dialogVisibleD">
@ -387,6 +424,15 @@
:headers="headers"
multiple
>
<template #file="{ file }">
<el-tooltip :content="getTooltipContent(file)" placement="top">
<img
:src="file.url"
alt="photo"
style="width: 100%; height: 100%; cursor: pointer"
/>
</el-tooltip>
</template>
<el-icon><Plus /></el-icon>
</el-upload>
<el-dialog v-model="dialogVisibleE">
@ -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);
},

116
src/views/distribution/turndelivery/deliveryDiscuss.vue

@ -534,49 +534,25 @@
>
<el-table :data="isZeroTable" border style="width: 100%">
<el-table-column fixed prop="firsts" label="名称" />
<el-table-column prop="number" label="数量" />
<el-table-column prop="quantity" label="数量" />
<el-table-column prop="handQuantity" label="在库数量" />
<el-table-column prop="deliveryQuantity" label="冻结数量" />
<el-table-column prop="outboundQuantity" label="出库数量" />
<!-- <el-table-column label="可用数量">
<template #default="props">
<span>
{{
props.row.handQuantity - props.row.deliveryQuantity - props.row.outboundQuantity
}}</span
>
</template>
</el-table-column> -->
<!-- 在库=冻结-出库 -->
<el-table-column prop="maxPlanNum" label="可用数量" />
<el-table-column fixed="right" label="数量操作">
<template #default="scope">
<el-input-number
v-if="!QuantityEntryStatus"
size="small"
v-model="scope.row.number"
:value-on-clear="0"
@change="isZeroNumber(scope.row)"
/>
<el-input-number
v-else
size="small"
:max="MaxSUM"
:min="0"
v-model="scope.row.reservationNum"
@change="isZeroNumber(scope.row)"
:max="scope.row.maxPlanNum"
:min="0"
:value-on-clear="0"
/>
</template>
</el-table-column>
</el-table>
<div class="isZel-btn">
<el-button v-if="!QuantityEntryStatus" color="#172e60" type="success" @click="ModifyLCL"
>修改(零担订单)</el-button
>
<el-button v-else color="#172e60" type="success" @click="SubmitLoad"
>提交(零担订单)</el-button
>
<el-button color="#172e60" type="success" @click="SubmitLoad">提交(零担订单)</el-button>
</div>
</div>
</el-dialog>
@ -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; //

Loading…
Cancel
Save