Browse Source

Merge branch 'pre-production'

fix_bug_pro20231227
pref_mail@163.com 1 year ago
parent
commit
f3818009dd
  1. 181
      src/views/distribution/turndelivery/deliveryDiscuss.vue
  2. 220
      src/views/warehouse/parcelList/distributionParcelList.vue

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

@ -272,6 +272,7 @@
v-model="multifunctional" v-model="multifunctional"
placeholder="请输入要搜索的值" placeholder="请输入要搜索的值"
clearable clearable
@clear='soclear'
/> />
<el-button type="primary" @click="SearchFu" <el-button type="primary" @click="SearchFu"
><el-icon><Plus /></el-icon></el-button ><el-icon><Plus /></el-icon></el-button
@ -280,6 +281,8 @@
</div> </div>
</div> </div>
<!-- 顶部结束 --> <!-- 顶部结束 -->
<!-- 首页表格 -->
<div class="el-Cart"> <div class="el-Cart">
<!-- 表格列开始 --> <!-- 表格列开始 -->
<el-table <el-table
@ -319,14 +322,13 @@
align="center" align="center"
> >
<template #default="props"> <template #default="props">
<span :class="props.row[item.prop]=='state'?'.static-class':''">{{ props.row[item.prop] ? props.row[item.prop] : '/' }}</span> <span :class="props.row[item.prop] == 'state' ? '.static-class' : ''">{{
props.row[item.prop] ? props.row[item.prop] : '/'
}}</span>
</template> </template>
</el-table-column> </el-table-column>
</template> </template>
<template v-if="item.type === 2"> <template v-if="item.type === 2">
<el-table-column <el-table-column
v-if="item.head" v-if="item.head"
@ -827,7 +829,7 @@ const data = ref([]); // 表格数据
const wrapData = ref([]); // const wrapData = ref([]); //
const wrapLoading = ref(false); // const wrapLoading = ref(false); //
const dataInfo = ref([]); // const dataInfo = ref([]); //
const dataInfoTemp=ref([]);// const dataInfoTemp = ref([]); //
const dataTmp = ref([]); // const dataTmp = ref([]); //
const TabHeight = ref(230); // const TabHeight = ref(230); //
const TCTabHeight = ref(600); // const TCTabHeight = ref(600); //
@ -871,8 +873,84 @@ const isZeroTable = ref([]); //零担表格
const comprehensive = ref(false); //, const comprehensive = ref(false); //,
const QuantityEntryStatus = ref(false); // const QuantityEntryStatus = ref(false); //
const TCzj = ref(); // const TCzj = ref(); //
const soInpuState = ref(false); //
const statisticsList = ref([]); // const statisticsList = ref([]); //
const inputValue = ref('number'); // const inputValue = ref('number'); //
// const details = reactive({
// /** */
// search: false,
// /** */
// query: {},
// /** */
// shortcuts: [
// {
// text: '',
// value: () => {
// const end = new Date();
// const start = new Date();
// start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
// return [start, end];
// },
// },
// {
// text: '',
// value: () => {
// const end = new Date();
// const start = new Date();
// start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
// return [start, end];
// },
// },
// {
// text: '',
// value: () => {
// const end = new Date();
// const start = new Date();
// start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
// return [start, end];
// },
// },
// ],
// /** */
// stockupDate: [],
// /** */
// columnList,
// /** */
// data: [{}],
// /** loading */
// loadingObj: {
// /** loading */
// list: false,
// packageListLoading: false,
// },
// /** */
// selectionList: [],
// /** */
// drawerShow: false,
// /** */
// page: {
// currentPage: 1,
// pageSize: 50,
// total: 0,
// },
// });
// const {
// search,
// query,
// shortcuts,
// stockupDate,
// data,
// loadingObj,
// selectionList,
// drawerShow,
// page,
// trickleLoadingPage,
// zeroAdditionalRecordingInfo,
// popUpShow,
// recorddata,
// } = toRefs(details);
const dataInfoID = ref(); //ID
// //
// //
// //
@ -1746,6 +1824,14 @@ function dataTabInfo() {
} }
// //
const AddInfo = () => { const AddInfo = () => {
if (soInpuState.value) {
ElMessage({
showClose: true,
message: '请先重置搜索框值',
type: 'warning',
});
return;
}
dataTmp.value = []; dataTmp.value = [];
console.log('提交前的参数', dataInfo.value); console.log('提交前的参数', dataInfo.value);
console.log('提交前前临时存储', dataTmp.value); console.log('提交前前临时存储', dataTmp.value);
@ -1872,9 +1958,72 @@ function removeDuplicates(arr) {
const ids = arr.map(obj => obj.id); const ids = arr.map(obj => obj.id);
return arr.filter((item, index) => ids.indexOf(item.id) === index); return arr.filter((item, index) => ids.indexOf(item.id) === index);
} }
const soclear=()=>{
SearchFu()
}
//
const SearchFu = () => {
console.log(soInpuState.value, '当前搜索状态');
if (!multifunctional.value && !dataInfoTemp.value.length) {
soInpuState.value = false; //
ElMessage({
showClose: true,
message: '请输入搜索内容',
type: 'warning',
});
return;
}
if (!multifunctional.value && dataInfoTemp.value.length) {
//
soInpuState.value = false; //
dataInfo.value = JSON.parse(JSON.stringify(dataInfoTemp.value));
dataInfoTemp.value = [];
}
if (soInpuState.value) {
ElMessage({
showClose: true,
message: '请先重置数据',
type: 'warning',
});
return;
} else {
//
console.log('多功能搜索功能');
console.log(dataInfo.value, '当前订单');
dataInfoTemp.value = dataInfo.value; //
let temp = dataInfo.value.filter(item => {
return Object.values(item).some(val => {
if (typeof val === 'string') {
return val.includes(multifunctional.value);
}
return false;
});
});
console.log(temp, '搜索结果');
console.log(dataInfoTemp.value,'临时存储的值');
dataInfo.value = temp; //
soInpuState.value = false; //
}
// console.log(dataInfo.value, '');
};
// //
const DeleteEvent = val => { const DeleteEvent = val => {
dataInfoID.value = val; //
if (dataInfoTemp.value.length) {
//
const index = dataInfoTemp.value.findIndex(item => item.id === val.id);
if (index !== -1) {
dataInfoTemp.value.splice(index, 1);
}
}
console.log(dataInfoID.value, '当前删除的数据');
// //
const index = dataInfo.value.findIndex(item => item.id === val.id); const index = dataInfo.value.findIndex(item => item.id === val.id);
if (index !== -1) { if (index !== -1) {
@ -1995,28 +2144,6 @@ const Entering = val => {
}); });
}; };
//
const SearchFu = () => {
console.log('多功能搜索功能');
console.log(dataInfo.value, '当前订单');
let st= dataInfo.value.filter(item => {
return Object.values(item).some(val => {
if (typeof val === 'string') {
return val.includes(multifunctional.value);
}
return false;
});
});
st.forEach(item=>{
item.state=true;
})
console.log(st, '搜索结果');
};
// //
const QuantityEntry = val => { const QuantityEntry = val => {
dataId.value = findIndexById(val.id); // dataId.value = findIndexById(val.id); //

220
src/views/warehouse/parcelList/distributionParcelList.vue

@ -198,16 +198,37 @@ export default {
head: false, head: false,
}, },
{ {
prop: 'trainNumber', prop: 'orderCode',
label: '配送车次', label: '订单自编号',
type: 2,
values: '',
width: '200',
checkarr: [],
fixed: true,
sortable: true,
},
{
prop: 'orderPackageCode',
label: '包条码',
type: 2, type: 2,
values: '', values: '',
width: '150', width: '150',
checkarr: [], checkarr: [],
fixed: false, fixed: true,
sortable: true, sortable: true,
head: false,
}, },
// { // {
// prop: 'trainNumber',
// label: '',
// type: 2,
// values: '',
// width: '150',
// checkarr: [],
// fixed: false,
// sortable: true,
// },
// {
// prop: 'materialName', // prop: 'materialName',
// label: '', // label: '',
// type: 2, // type: 2,
@ -240,7 +261,7 @@ export default {
}, },
{ {
prop: 'trainNumber', prop: 'trainNumber',
label: '车次号', label: '客户车次号',
type: 2, type: 2,
values: '', values: '',
width: '130', width: '130',
@ -248,9 +269,10 @@ export default {
fixed: false, fixed: false,
sortable: true, sortable: true,
}, },
{ {
prop: 'orderCode', prop: 'warehouseEntryTimeEnd',
label: '订单自编号', label: '入库时间',
type: 2, type: 2,
values: '', values: '',
width: '200', width: '200',
@ -258,62 +280,109 @@ export default {
fixed: false, fixed: false,
sortable: true, sortable: true,
}, },
{ {
prop: 'warehouseEntryTimeEnd', prop: 'conditionsType',
label: '入库时间', label: '包件类型',
type: 2, type: 3,
values: '', values: '',
width: '200', width: '130',
checkarr: [
{
label: '定制品',
value: '1',
},
{
label: '库存品',
value: '2',
},
],
fixed: false,
sortable: false,
head: false,
},
{
prop: 'orderPackageStockupStatusName',
label: '备货状态',
type: 3,
values: '',
width: '130',
checkarr: [], checkarr: [],
fixed: false, fixed: false,
sortable: true, sortable: true,
}, },
{ {
prop: 'orderPackageCode', prop: 'orderPackageStatusName',
label: '包条码', label: '包件状态',
type: 2, type: 3,
values: '', values: '',
width: '150', width: '130',
checkarr: [], checkarr: [],
fixed: false, fixed: false,
sortable: true, sortable: true,
head: false,
}, },
{ {
prop: 'conditionsType', prop: 'orderPackageLoadingStatusName',
label: '包件类型', label: '装车状态',
type: 3,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'orderPackageReservationStatusName',
label: '预约状态',
type: 3, type: 3,
values: '', values: '',
width: '130', width: '130',
checkarr: [ checkarr: [
{ {
label: '定制品', label: '待上架',
value: '1', value: '10',
}, },
{ {
label: '库存品', label: '已上架',
value: '2', value: '20',
}, },
], ],
fixed: false, fixed: false,
sortable: false, sortable: true,
head: false,
}, },
{ {
label: '预约单号', prop: 'orderPackageGroundingStatusName',
label: '上架状态',
type: 3,
values: '',
width: '130',
checkarr: [
{
label: '待上架',
value: '10',
},
{
label: '已上架',
value: '20',
},
],
fixed: false,
sortable: true,
},
{
label: '预约单编号',
prop: 'reservationCode', prop: 'reservationCode',
display: false, display: false,
hide: true, hide: true,
}, },
{ {
label: '配送单号', label: '配送车次号',
prop: 'noteNumber', prop: 'noteNumber',
display: false, display: false,
hide: true, hide: true,
}, },
{ {
label: '签收司机', label: '配送司机',
prop: 'driverName', prop: 'driverName',
display: false, display: false,
hide: true, hide: true,
@ -325,17 +394,11 @@ export default {
hide: true, hide: true,
}, },
{ {
label: '配送车', label: '配送车',
prop: 'dvehicleName', prop: 'dvehicleName',
display: false, display: false,
hide: true, hide: true,
}, },
{
label: '签收车次',
prop: 'zvehicleName',
display: false,
hide: true,
},
{ {
prop: 'firsts', prop: 'firsts',
label: '一级品', label: '一级品',
@ -377,73 +440,16 @@ export default {
sortable: true, sortable: true,
}, },
{ {
prop: 'orderPackageStockupStatusName', prop: 'materialName',
label: '备货状态', label: '物料名称',
type: 3, type: 2,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'orderPackageStatusName',
label: '包件状态',
type: 3,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'orderPackageLoadingStatusName',
label: '装车状态',
type: 3,
values: '', values: '',
width: '130', width: '150',
checkarr: [], checkarr: [],
fixed: false, fixed: false,
sortable: true, sortable: true,
}, },
{
prop: 'orderPackageReservationStatusName',
label: '预约状态',
type: 3,
values: '',
width: '130',
checkarr: [
{
label: '待上架',
value: '10',
},
{
label: '已上架',
value: '20',
},
],
fixed: false,
sortable: true,
},
{
prop: 'orderPackageGroundingStatusName',
label: '上架状态',
type: 3,
values: '',
width: '130',
checkarr: [
{
label: '待上架',
value: '10',
},
{
label: '已上架',
value: '20',
},
],
fixed: false,
sortable: true,
},
// { // {
// prop: 'allocationMsg', // prop: 'allocationMsg',
// label: '', // label: '',
@ -454,28 +460,6 @@ export default {
// fixed: false, // fixed: false,
// sortable: true, // sortable: true,
// }, // },
{
prop: 'loadingTime',
label: '装车时间',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'signingTime',
label: '签收时间',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{ {
prop: 'goodsAllocation', prop: 'goodsAllocation',
label: '货位信息', label: '货位信息',

Loading…
Cancel
Save