|
|
@ -70,7 +70,7 @@ |
|
|
|
<!-- 头部左侧按钮模块 --> |
|
|
|
<!-- 头部左侧按钮模块 --> |
|
|
|
<div class="avue-crud__left"> |
|
|
|
<div class="avue-crud__left"> |
|
|
|
<el-button type="primary" icon="el-icon-van" @click="handleStartCar">发车 </el-button> |
|
|
|
<el-button type="primary" icon="el-icon-van" @click="handleStartCar">发车 </el-button> |
|
|
|
<el-button type="primary" icon="el-icon-close" @click="searchReset()" |
|
|
|
<el-button type="primary" icon="el-icon-close" @click="handleEndCar" |
|
|
|
>网点取消发车</el-button |
|
|
|
>网点取消发车</el-button |
|
|
|
> |
|
|
|
> |
|
|
|
<el-button type="primary" icon="el-icon-printer" @click="searchReset()" |
|
|
|
<el-button type="primary" icon="el-icon-printer" @click="searchReset()" |
|
|
@ -151,20 +151,27 @@ |
|
|
|
<span>{{ item.nodeName }}</span> |
|
|
|
<span>{{ item.nodeName }}</span> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div> |
|
|
|
<div> |
|
|
|
<span class="mr-10">运单总件数:</span> |
|
|
|
<span class="mr-10">计划总件数:</span> |
|
|
|
<span>{{ item.nodeName }}</span> |
|
|
|
<span>{{ item.planLoadingNumber || 0 }}</span> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div> |
|
|
|
<div> |
|
|
|
<span class="mr-10">实际装车件数:</span> |
|
|
|
<span class="mr-10">实际装车件数:</span> |
|
|
|
<span>{{ item.nodeName }}</span> |
|
|
|
<span>{{ item.realLoadingNumber || 0 }}</span> |
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
<div> |
|
|
|
|
|
|
|
<span class="mr-10">卸车件数:</span> |
|
|
|
|
|
|
|
<span>{{ item.unloadNumber || 0 }}</span> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div> |
|
|
|
<div> |
|
|
|
<span class="mr-10">操作人:</span> |
|
|
|
<span class="mr-10">操作人:</span> |
|
|
|
<span>{{ item.nodeName }}</span> |
|
|
|
<span>{{ item.arriveUserName || item.startUserName || '暂无数据' }}</span> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div> |
|
|
|
<div> |
|
|
|
<span class="mr-10">状态:</span> |
|
|
|
<span class="mr-10">状态:</span> |
|
|
|
<span>{{ item.nodeName }}</span> |
|
|
|
<span>{{ |
|
|
|
|
|
|
|
(details.nodeStatus.find(val => val.value === Number(item.nodeStatus)) || {}) |
|
|
|
|
|
|
|
.label |
|
|
|
|
|
|
|
}}</span> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
<el-text style="margin: 0 !important">{{ item.nodeName }}</el-text> |
|
|
|
<el-text style="margin: 0 !important">{{ item.nodeName }}</el-text> |
|
|
@ -184,14 +191,13 @@ |
|
|
|
|
|
|
|
|
|
|
|
<template v-if="slotProps.scope.column.label === '操作'"> |
|
|
|
<template v-if="slotProps.scope.column.label === '操作'"> |
|
|
|
<el-text @click="handleShowTruckLoadingDetails(slotProps.scope)">装车明细</el-text> |
|
|
|
<el-text @click="handleShowTruckLoadingDetails(slotProps.scope)">装车明细</el-text> |
|
|
|
<el-button |
|
|
|
<el-text |
|
|
|
type="text" |
|
|
|
v-if=" |
|
|
|
:disabled=" |
|
|
|
Mydata.id === slotProps.scope.row.nowWarehouseId || |
|
|
|
Mydata.id !== slotProps.scope.row.nowWarehouseId || |
|
|
|
Number(slotProps.scope.row.loadStatus) !== 40 |
|
|
|
Number(slotProps.scope.row.loadStatus) === 40 |
|
|
|
|
|
|
|
" |
|
|
|
" |
|
|
|
@click="handleEditStowage(slotProps.scope)" |
|
|
|
@click="handleEditStowage(slotProps.scope)" |
|
|
|
>编辑</el-button |
|
|
|
>编辑</el-text |
|
|
|
> |
|
|
|
> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</template> |
|
|
@ -362,6 +368,7 @@ import { |
|
|
|
postFindNextNodeList, |
|
|
|
postFindNextNodeList, |
|
|
|
postUpdateLoadScanFinalNodeIdById, |
|
|
|
postUpdateLoadScanFinalNodeIdById, |
|
|
|
postRemoveCarsLoadScan, |
|
|
|
postRemoveCarsLoadScan, |
|
|
|
|
|
|
|
postCancelStartCarByLoadId, |
|
|
|
} from '@/api/distribution/VehicleStowage'; |
|
|
|
} from '@/api/distribution/VehicleStowage'; |
|
|
|
import { useRouter } from 'vue-router'; |
|
|
|
import { useRouter } from 'vue-router'; |
|
|
|
import { ElMessage, ElMessageBox } from 'element-plus'; |
|
|
|
import { ElMessage, ElMessageBox } from 'element-plus'; |
|
|
@ -459,6 +466,12 @@ const details = reactive({ |
|
|
|
{ value: 40, label: '终点到车' }, |
|
|
|
{ value: 40, label: '终点到车' }, |
|
|
|
{ value: 100, label: '取消配载' }, |
|
|
|
{ value: 100, label: '取消配载' }, |
|
|
|
], |
|
|
|
], |
|
|
|
|
|
|
|
/** 节点状态 */ |
|
|
|
|
|
|
|
nodeStatus: [ |
|
|
|
|
|
|
|
{ label: '未到达', value: 0 }, |
|
|
|
|
|
|
|
{ label: '已到车', value: 10 }, |
|
|
|
|
|
|
|
{ label: '已发车', value: 20 }, |
|
|
|
|
|
|
|
], |
|
|
|
packageColumnList: deepClone(packageColumnList), |
|
|
|
packageColumnList: deepClone(packageColumnList), |
|
|
|
/** 配置装车目的地数据 */ |
|
|
|
/** 配置装车目的地数据 */ |
|
|
|
packageData: [], |
|
|
|
packageData: [], |
|
|
@ -485,12 +498,84 @@ const permission = computed(() => mapGetters(['permission', 'tagWel', 'tagList'] |
|
|
|
console.log('permission :>> ', permission); |
|
|
|
console.log('permission :>> ', permission); |
|
|
|
|
|
|
|
|
|
|
|
onMounted(() => { |
|
|
|
onMounted(() => { |
|
|
|
// const timer = setTimeout(() => { |
|
|
|
/** |
|
|
|
// details.listNode = document.querySelector('.maboxhi') as any; |
|
|
|
* 初始化获取本地缓存的编辑隐藏的列表 |
|
|
|
// details.listNode.style.transition = 'all .5s ease-out'; |
|
|
|
* 固定搭配,不能更改 |
|
|
|
// console.log('details.listNode :>> ', details.listNode); |
|
|
|
*/ |
|
|
|
// clearTimeout(timer); |
|
|
|
let checkListnewarr = functions.getStorage(window.location.pathname + 'checkList'); |
|
|
|
// }, 100); |
|
|
|
let flexListnewarr = functions.getStorage(window.location.pathname + 'flexList'); |
|
|
|
|
|
|
|
let sortlistnewarr = functions.getStorage(window.location.pathname + 'sortlist'); |
|
|
|
|
|
|
|
if (checkListnewarr) { |
|
|
|
|
|
|
|
details.columnList.map(item => { |
|
|
|
|
|
|
|
item.head = false; |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
for (const iterator of checkListnewarr) { |
|
|
|
|
|
|
|
for (const item of details.columnList) { |
|
|
|
|
|
|
|
if (iterator == item.label) { |
|
|
|
|
|
|
|
item.head = true; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
// checkListnewarr.map(ite => { |
|
|
|
|
|
|
|
// details.columnList.map(item => { |
|
|
|
|
|
|
|
// if (ite == item.label) { |
|
|
|
|
|
|
|
// item.head = true; |
|
|
|
|
|
|
|
// } |
|
|
|
|
|
|
|
// }); |
|
|
|
|
|
|
|
// }); |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
let arr = []; |
|
|
|
|
|
|
|
details.columnList.map(item => { |
|
|
|
|
|
|
|
if (item.head) { |
|
|
|
|
|
|
|
arr.push(item.label); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
functions.setStorage(window.location.pathname + 'checkList', arr); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
if (flexListnewarr) { |
|
|
|
|
|
|
|
details.columnList.map(item => { |
|
|
|
|
|
|
|
item.fixed = false; |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
flexListnewarr.map(ite => { |
|
|
|
|
|
|
|
details.columnList.map(item => { |
|
|
|
|
|
|
|
if (ite == item.label) { |
|
|
|
|
|
|
|
if (item.type == 6) { |
|
|
|
|
|
|
|
item.fixed = 'right'; |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
item.fixed = true; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
let arr = []; |
|
|
|
|
|
|
|
details.columnList.map(item => { |
|
|
|
|
|
|
|
if (item.fixed) { |
|
|
|
|
|
|
|
arr.push(item.label); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
functions.setStorage(window.location.pathname + 'flexList', arr); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
if (sortlistnewarr) { |
|
|
|
|
|
|
|
details.columnList.map(item => { |
|
|
|
|
|
|
|
item.sortable = false; |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
sortlistnewarr.map(ite => { |
|
|
|
|
|
|
|
details.columnList.map(item => { |
|
|
|
|
|
|
|
if (ite == item.label) { |
|
|
|
|
|
|
|
item.sortable = true; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
let arr = []; |
|
|
|
|
|
|
|
details.columnList.map(item => { |
|
|
|
|
|
|
|
if (item.sortable) { |
|
|
|
|
|
|
|
arr.push(item.label); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
functions.setStorage(window.location.pathname + 'sortlist', arr); |
|
|
|
|
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
/** 请求页面数据 */ |
|
|
|
/** 请求页面数据 */ |
|
|
@ -509,6 +594,7 @@ const onLoad = async (params = {}) => { |
|
|
|
for (let item of details.data) { |
|
|
|
for (let item of details.data) { |
|
|
|
const _index = codes.indexOf(Number(item.loadStatus)); |
|
|
|
const _index = codes.indexOf(Number(item.loadStatus)); |
|
|
|
item.loadStatusName = _index !== -1 ? details.carsStatus[_index].label : '未知'; |
|
|
|
item.loadStatusName = _index !== -1 ? details.carsStatus[_index].label : '未知'; |
|
|
|
|
|
|
|
item.NumberOfPiecesInTheCar = item.realLoadingNumber - item.unloadNumber; |
|
|
|
} |
|
|
|
} |
|
|
|
details.page.total = data.total; |
|
|
|
details.page.total = data.total; |
|
|
|
} catch (error) { |
|
|
|
} catch (error) { |
|
|
@ -598,6 +684,7 @@ const currentChange = () => {}; |
|
|
|
* 固定搭配,只需要更换 columnList |
|
|
|
* 固定搭配,只需要更换 columnList |
|
|
|
* */ |
|
|
|
* */ |
|
|
|
const setnewcolum = (newarr, headarr, type) => { |
|
|
|
const setnewcolum = (newarr, headarr, type) => { |
|
|
|
|
|
|
|
console.log('type :>> ', type); |
|
|
|
if (type == 1) { |
|
|
|
if (type == 1) { |
|
|
|
details.columnList = newarr; |
|
|
|
details.columnList = newarr; |
|
|
|
functions.setStorage(window.location.pathname + 'checkList', headarr); |
|
|
|
functions.setStorage(window.location.pathname + 'checkList', headarr); |
|
|
@ -798,7 +885,7 @@ const handleStartCar = async () => { |
|
|
|
}).then(async () => { |
|
|
|
}).then(async () => { |
|
|
|
const submitData = { |
|
|
|
const submitData = { |
|
|
|
loadId: details.selectionList.map(val => val.id).join(','), |
|
|
|
loadId: details.selectionList.map(val => val.id).join(','), |
|
|
|
startCarType: '1', |
|
|
|
startCarType: '2', |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
const res = await postStartCarByLoadId(submitData); |
|
|
|
const res = await postStartCarByLoadId(submitData); |
|
|
@ -816,6 +903,44 @@ const handleStartCar = async () => { |
|
|
|
} |
|
|
|
} |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** 取消发车 */ |
|
|
|
|
|
|
|
const handleEndCar = async () => { |
|
|
|
|
|
|
|
if (details.selectionList.length === 0) { |
|
|
|
|
|
|
|
return ElMessage({ |
|
|
|
|
|
|
|
message: '请选择发车数据', |
|
|
|
|
|
|
|
type: 'warning', |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
} else if (details.selectionList.length !== 1) { |
|
|
|
|
|
|
|
return ElMessage({ |
|
|
|
|
|
|
|
message: '仅支持单条数据操作', |
|
|
|
|
|
|
|
type: 'warning', |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ElMessageBox.confirm('确认取消发车吗?', '', { |
|
|
|
|
|
|
|
confirmButtonText: '确认', |
|
|
|
|
|
|
|
cancelButtonText: '取消', |
|
|
|
|
|
|
|
type: 'warning', |
|
|
|
|
|
|
|
}).then(async () => { |
|
|
|
|
|
|
|
const submitData = { |
|
|
|
|
|
|
|
loadId: details.selectionList.map(val => val.id).join(','), |
|
|
|
|
|
|
|
startCarType: '2', |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const res = await postCancelStartCarByLoadId(submitData); |
|
|
|
|
|
|
|
const { code } = res.data; |
|
|
|
|
|
|
|
if (code !== 200) { |
|
|
|
|
|
|
|
return; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
ElMessage({ |
|
|
|
|
|
|
|
type: 'success', |
|
|
|
|
|
|
|
message: '取消成功', |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
onLoad(); |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
/** 开启弹窗 */ |
|
|
|
/** 开启弹窗 */ |
|
|
|
const handleOpenConfiguration = (type: 'one' | 'batch', data) => { |
|
|
|
const handleOpenConfiguration = (type: 'one' | 'batch', data) => { |
|
|
|
if (type === 'batch' && details.packageSelectedData.length === 0) |
|
|
|
if (type === 'batch' && details.packageSelectedData.length === 0) |
|
|
|