|
|
|
@ -15,13 +15,19 @@
|
|
|
|
|
:model="StockInfo" |
|
|
|
|
v-if="kind" |
|
|
|
|
> |
|
|
|
|
<div class="leftInfo"> |
|
|
|
|
<div class="leftInfo el_sj" > |
|
|
|
|
|
|
|
|
|
<el-form-item label="配送司机"> |
|
|
|
|
<el-input class="el_msj" @change='SjCxChange' clearable v-model="sjInput" placeholder="请输入要查询的司机" /> |
|
|
|
|
<el-select |
|
|
|
|
v-model="StockInfo.Sj" |
|
|
|
|
placeholder="请选择司机信息" |
|
|
|
|
multiple |
|
|
|
|
@change="SJchangeSelect" |
|
|
|
|
ref='sjSelect' |
|
|
|
|
remote |
|
|
|
|
:loading='sjloading' |
|
|
|
|
loading-text='正在加载中' |
|
|
|
|
> |
|
|
|
|
<el-option-group |
|
|
|
|
v-for="group in StockInfo.DriverInformation" |
|
|
|
@ -37,13 +43,17 @@
|
|
|
|
|
</el-option-group> |
|
|
|
|
</el-select> |
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-form-item label="配送车辆"> |
|
|
|
|
<el-input class="el_mcl" @change='CLCxChange' clearable v-model="clInput" placeholder="请输入要查询的车辆" /> |
|
|
|
|
<el-select |
|
|
|
|
v-model="StockInfo.Cl" |
|
|
|
|
placeholder="请选择配送车辆" |
|
|
|
|
multiple |
|
|
|
|
@change="CLchangeSelect" |
|
|
|
|
:loading='clloading' |
|
|
|
|
loading-text='正在加载中' |
|
|
|
|
ref='clSelect' |
|
|
|
|
> |
|
|
|
|
<el-option-group |
|
|
|
|
v-for="group in StockInfo.VehicleInformation" |
|
|
|
@ -679,10 +689,13 @@ import { updateEntryNum, entryNum } from '@/api/distribution/distributionParcelN
|
|
|
|
|
import { deepClone } from '@/utils/util.js'; |
|
|
|
|
const route = useRoute(); |
|
|
|
|
const router = useRouter(); |
|
|
|
|
|
|
|
|
|
// 获取vuex仓库 |
|
|
|
|
const StockInfoCopy=ref({})//拷贝初始化表单 |
|
|
|
|
const $store = useStore(); |
|
|
|
|
console.log($store, '仓库'); |
|
|
|
|
|
|
|
|
|
const sjInput=ref('');//司机查询输入框 |
|
|
|
|
const clInput=ref('');//车辆查询输入框 |
|
|
|
|
// 选项卡 |
|
|
|
|
const numTab = ref([ |
|
|
|
|
{ |
|
|
|
@ -695,6 +708,8 @@ const numTab = ref([
|
|
|
|
|
}, |
|
|
|
|
]); |
|
|
|
|
const num = ref(null); //计步器 |
|
|
|
|
const sjSelect=ref(null) |
|
|
|
|
const clSelect=ref(null) |
|
|
|
|
const Totalnumberoforders = ref(0); //订单总件数 |
|
|
|
|
const Totalnumberofitemsinstock = ref(0); //在库件数 |
|
|
|
|
const kind = ref(true); //标签切换 |
|
|
|
@ -759,6 +774,8 @@ const inputValue = ref('number'); //零担输入的值
|
|
|
|
|
const dataInfoID = ref(); //点击删除保存当前ID |
|
|
|
|
/** 编辑时, 初始化司机信息 */ |
|
|
|
|
const chooseDriverIds = ref([]); |
|
|
|
|
const sjloading=ref(true) |
|
|
|
|
const clloading=ref(true) |
|
|
|
|
/** 编辑时, 初始化车辆信息 */ |
|
|
|
|
const chooseCarIds = ref([]); |
|
|
|
|
|
|
|
|
@ -766,6 +783,9 @@ const chooseCarIds = ref([]);
|
|
|
|
|
// 车辆选项 |
|
|
|
|
// 备货人员 |
|
|
|
|
// radio1 配送类型 |
|
|
|
|
const DriverInformationCopy=ref([]);//拷贝司机信息 |
|
|
|
|
const VehicleInformationCopy=ref([]);//拷贝司机信息 |
|
|
|
|
|
|
|
|
|
const StockInfo = ref({ |
|
|
|
|
createDate: new Date(), //默认日期 |
|
|
|
|
radio: 1, |
|
|
|
@ -804,6 +824,49 @@ const StockInfo = ref({
|
|
|
|
|
TemporaryDriver: [], //临时存放司机信息 |
|
|
|
|
TemporaryVehicles: [], //临时存放车辆信息 |
|
|
|
|
}); |
|
|
|
|
// 司机查询 |
|
|
|
|
const SjCxChange = () => { |
|
|
|
|
if (sjInput.value) { |
|
|
|
|
console.log(sjInput.value, '查询的司机'); |
|
|
|
|
console.log(StockInfo.value, '司机'); |
|
|
|
|
StockInfo.value.DriverInformation[1].options = StockInfo.value.DriverInformation[1].options.filter(res => res.name.includes(sjInput.value)); |
|
|
|
|
|
|
|
|
|
} else { |
|
|
|
|
StockInfo.value.DriverInformation[1].options = DriverInformationCopy.value; |
|
|
|
|
} |
|
|
|
|
sjSelect.value[0].visible = true; // 展开下拉框 |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// 车牌查询 |
|
|
|
|
const CLCxChange = () => { |
|
|
|
|
if (clInput.value) { |
|
|
|
|
console.log(clInput.value, '查询的车牌'); |
|
|
|
|
console.log(StockInfo.value, '车辆信息'); |
|
|
|
|
StockInfo.value.VehicleInformation[1].options = StockInfo.value.VehicleInformation[1].options.filter(res => res.vehicleNub.includes(clInput.value)); |
|
|
|
|
} else { |
|
|
|
|
StockInfo.value.VehicleInformation[1].options = VehicleInformationCopy.value; |
|
|
|
|
} |
|
|
|
|
clSelect.value[0].visible = true; // 展开下拉框 |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function deepCopy(obj) { |
|
|
|
|
if (obj === null || typeof obj !== 'object') { |
|
|
|
|
return obj; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// 创建一个新的对象,用于存储拷贝后的数据 |
|
|
|
|
const copy = Array.isArray(obj) ? [] : {}; |
|
|
|
|
|
|
|
|
|
// 遍历原始对象的所有属性,并递归进行拷贝 |
|
|
|
|
for (let key in obj) { |
|
|
|
|
if (Object.prototype.hasOwnProperty.call(obj, key)) { |
|
|
|
|
copy[key] = deepCopy(obj[key]); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return copy; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
const selectable = (row, index) => { |
|
|
|
|
// row.orderPackageReservationStatusName == '已预约' || |
|
|
|
@ -813,6 +876,7 @@ const selectable = (row, index) => {
|
|
|
|
|
return true; //非禁用状态 |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
const DataSubmitCopy=ref({}) |
|
|
|
|
// 提交的表单 |
|
|
|
|
const DataSubmit = ref({ |
|
|
|
|
allocationInfo: [ |
|
|
|
@ -877,19 +941,31 @@ const btnClass = type => {
|
|
|
|
|
//页面初始化请求需要的数据 |
|
|
|
|
async function Info() { |
|
|
|
|
// 车辆信息 |
|
|
|
|
getVehicleList().then(res => { |
|
|
|
|
await getVehicleList().then(res => { |
|
|
|
|
console.log(res, '车辆信息'); |
|
|
|
|
StockInfo.value.VehicleInformation[1].options = res.data.data; |
|
|
|
|
vehicle.value = res.data.data; //存一份初始化信息 用于清空选择使用 |
|
|
|
|
VehicleInformationCopy.value = res.data.data; //查询车辆 |
|
|
|
|
|
|
|
|
|
console.log(StockInfo.value.VehicleInformation, 'StockInfo.VehicleInformation'); |
|
|
|
|
}).catch(()=>{ |
|
|
|
|
|
|
|
|
|
}).finally(()=>{ |
|
|
|
|
clloading.value=false |
|
|
|
|
}); |
|
|
|
|
// 司机信息 |
|
|
|
|
getDriverList().then(res => { |
|
|
|
|
await getDriverList().then(res => { |
|
|
|
|
|
|
|
|
|
console.log(res, '司机信息'); |
|
|
|
|
// StockInfo.value.DriverInformation = res.data.data; |
|
|
|
|
StockInfo.value.DriverInformation[1].options = res.data.data; |
|
|
|
|
DriverInformationCopy.value=res.data.data;//完整的司机信息 |
|
|
|
|
driver.value = res.data.data; //存一份初始化信息 用于清空选择使用 |
|
|
|
|
console.log(StockInfo.value.DriverInformation, '全部司机信息'); |
|
|
|
|
}).catch(()=>{ |
|
|
|
|
|
|
|
|
|
}).finally(()=>{ |
|
|
|
|
sjloading.value=false |
|
|
|
|
}); |
|
|
|
|
// 备货人员信息 |
|
|
|
|
await getListUser().then(res => { |
|
|
|
@ -909,7 +985,7 @@ async function Info() {
|
|
|
|
|
StockInfo.value.StockPersonnel = data; |
|
|
|
|
}); |
|
|
|
|
// 备货区域 |
|
|
|
|
$_stockUpInfo({ |
|
|
|
|
await $_stockUpInfo({ |
|
|
|
|
params: deptId.value, |
|
|
|
|
}).then(res => { |
|
|
|
|
console.log(res, '备货区域'); |
|
|
|
@ -917,16 +993,23 @@ async function Info() {
|
|
|
|
|
console.log(StockInfo.value.StockUpArea, ' StockInfo.value.StockUpArea'); |
|
|
|
|
}); |
|
|
|
|
// 装卸班组 |
|
|
|
|
getListTeamInfo(deptId.value).then(res => { |
|
|
|
|
await getListTeamInfo(deptId.value).then(res => { |
|
|
|
|
console.log(res.data.data, '装卸班组'); |
|
|
|
|
StockInfo.value.UnloadingTeam = res.data.data; //卸车 |
|
|
|
|
StockInfo.value.LoadingTeam = res.data.data; //装车 |
|
|
|
|
}); |
|
|
|
|
// 外协来源-数据字典数据获取 |
|
|
|
|
getDictionaryBiz('tripartite_source').then(res => { |
|
|
|
|
await getDictionaryBiz('tripartite_source').then(res => { |
|
|
|
|
StockInfo.value.OutsourcingSources = res.data.data; |
|
|
|
|
console.log(StockInfo.value.OutsourcingSources, '外协来源'); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
StockInfoCopy.value = deepCopy(StockInfo.value); |
|
|
|
|
console.log(StockInfoCopy.value,'StockInfoCopy.value123'); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
DataSubmitCopy.value= deepCopy(DataSubmit.value); |
|
|
|
|
} |
|
|
|
|
// 导航标签切换 |
|
|
|
|
const tabClick = val => { |
|
|
|
@ -1042,7 +1125,7 @@ const menuData = ref([
|
|
|
|
|
label: '序号', |
|
|
|
|
type: 12, |
|
|
|
|
values: '', |
|
|
|
|
width: 55, |
|
|
|
|
width: 80, |
|
|
|
|
checkarr: [], |
|
|
|
|
fixed: true, |
|
|
|
|
sortable: false, |
|
|
|
@ -1098,7 +1181,7 @@ const menuData = ref([
|
|
|
|
|
label: '订单总件数', |
|
|
|
|
type: 2, |
|
|
|
|
values: '', |
|
|
|
|
width: '130', |
|
|
|
|
width: '140', |
|
|
|
|
checkarr: [], |
|
|
|
|
fixed: false, |
|
|
|
|
sortable: true, |
|
|
|
@ -1124,7 +1207,7 @@ const menuData = ref([
|
|
|
|
|
label: '运单收货人', |
|
|
|
|
type: 2, |
|
|
|
|
values: '', |
|
|
|
|
width: '130', |
|
|
|
|
width: '140', |
|
|
|
|
checkarr: [], |
|
|
|
|
fixed: false, |
|
|
|
|
sortable: true, |
|
|
|
@ -1135,7 +1218,7 @@ const menuData = ref([
|
|
|
|
|
label: '运单收货人电话', |
|
|
|
|
type: 1, |
|
|
|
|
values: '', |
|
|
|
|
width: '150', |
|
|
|
|
width: '170', |
|
|
|
|
checkarr: [], |
|
|
|
|
fixed: false, |
|
|
|
|
sortable: true, |
|
|
|
@ -1157,7 +1240,7 @@ const menuData = ref([
|
|
|
|
|
label: '商场编号', |
|
|
|
|
type: 1, |
|
|
|
|
values: '', |
|
|
|
|
width: '130', |
|
|
|
|
width: '140', |
|
|
|
|
checkarr: [], |
|
|
|
|
fixed: false, |
|
|
|
|
sortable: true, |
|
|
|
@ -1168,7 +1251,7 @@ const menuData = ref([
|
|
|
|
|
label: '经销商编码', |
|
|
|
|
type: 1, |
|
|
|
|
values: '', |
|
|
|
|
width: '130', |
|
|
|
|
width: '140', |
|
|
|
|
checkarr: [], |
|
|
|
|
fixed: false, |
|
|
|
|
sortable: true, |
|
|
|
@ -1406,7 +1489,7 @@ const wrap = ref([
|
|
|
|
|
label: '序号', |
|
|
|
|
type: 12, |
|
|
|
|
values: '', |
|
|
|
|
width: 55, |
|
|
|
|
width: 100, |
|
|
|
|
checkarr: [], |
|
|
|
|
fixed: true, |
|
|
|
|
sortable: false, |
|
|
|
@ -2454,11 +2537,14 @@ function removeDuplicatesById(arr) {
|
|
|
|
|
} |
|
|
|
|
// 选择备货人员触发 |
|
|
|
|
const StockPersonnel = val => { |
|
|
|
|
console.log(val); |
|
|
|
|
if(val){ |
|
|
|
|
console.log(val); |
|
|
|
|
let data = []; |
|
|
|
|
data = findObjectById(val, StockInfo.value.StockPersonnel); |
|
|
|
|
DataSubmit.value.stockup.forkliftId = data.id; //备货人员ID |
|
|
|
|
DataSubmit.value.stockup.forkliftName = data.realName; //备货人员姓名 |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}; |
|
|
|
|
// 选择备货区域触发 |
|
|
|
|
const StockUpSera = val => { |
|
|
|
@ -2470,38 +2556,47 @@ const StockUpSera = val => {
|
|
|
|
|
}; |
|
|
|
|
//装车班组触发 |
|
|
|
|
const Loading = val => { |
|
|
|
|
if(val){ |
|
|
|
|
let data = []; |
|
|
|
|
data = findObjectById(val, StockInfo.value.LoadingTeam); |
|
|
|
|
console.log(data, '装车'); |
|
|
|
|
DataSubmit.value.stockup.loaderId = data.id; //装车ID |
|
|
|
|
DataSubmit.value.stockup.loaderName = data.groupName; //装车名称 |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}; |
|
|
|
|
// 卸车班组触发 |
|
|
|
|
const unload = val => { |
|
|
|
|
if(val){ |
|
|
|
|
let data = []; |
|
|
|
|
data = findObjectById(val, StockInfo.value.UnloadingTeam); //卸车ID |
|
|
|
|
DataSubmit.value.stockup.unloaderId = data.id; |
|
|
|
|
DataSubmit.value.stockup.unloaderName = data.groupName; //卸车ID |
|
|
|
|
console.log(data, '卸车'); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}; |
|
|
|
|
// 外协来源触发 |
|
|
|
|
const Outsourcing = val => { |
|
|
|
|
let data = []; |
|
|
|
|
if(val){ |
|
|
|
|
let data = []; |
|
|
|
|
data = findObjectById(val, StockInfo.value.OutsourcingSources); |
|
|
|
|
console.log(data); |
|
|
|
|
DataSubmit.value.tripartite.distributionCompany = data.dictValue; //外协来源赋值 |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}; |
|
|
|
|
// 选择司机触发 |
|
|
|
|
const SJchangeSelect = val => { |
|
|
|
|
if (val.length === 0) { |
|
|
|
|
if (!val.length) { |
|
|
|
|
DataSubmit.value.masterDriverName = null; //清空司机信息 |
|
|
|
|
StockInfo.value.VehicleInformation[1].options = vehicle.value; //初始化车辆 |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
if (val.length > 0) { |
|
|
|
|
if (val.length) { |
|
|
|
|
let SJname = null; //用来少选第一选择的司机名称 |
|
|
|
|
SJname = CurrentVehicle(val, StockInfo.value.DriverInformation[1].options); |
|
|
|
|
console.log(SJname[0].name, '司机'); |
|
|
|
|
|
|
|
|
|
DataSubmit.value.masterDriverName = SJname[0].name; |
|
|
|
|
let data = []; //存储函数筛选后的司机车辆信息 |
|
|
|
|
let dataInfo = []; //临时存储的司机车辆信息 |
|
|
|
@ -2538,7 +2633,7 @@ const SJchangeSelect = val => {
|
|
|
|
|
|
|
|
|
|
// 选择车辆触发 |
|
|
|
|
const CLchangeSelect = val => { |
|
|
|
|
if (val.length === 0) { |
|
|
|
|
if (!val.length) { |
|
|
|
|
StockInfo.value.DriverInformation[1].options = driver.value; //初始化司机信息 |
|
|
|
|
DataSubmit.value.masterVehicleNub = null; //清空司机牌照 |
|
|
|
|
return; |
|
|
|
@ -2548,7 +2643,7 @@ const CLchangeSelect = val => {
|
|
|
|
|
let dataInfo = []; //临时存储的当前车辆的所有司机信息 |
|
|
|
|
let ClData = []; //临时存放车辆信息 |
|
|
|
|
let ClName = null; //用来筛选第一选择的车牌信息 |
|
|
|
|
if (val.length > 0) { |
|
|
|
|
if (val.length) { |
|
|
|
|
ClName = CurrentVehicle(val, StockInfo.value.VehicleInformation[1].options); |
|
|
|
|
DataSubmit.value.masterVehicleNub = ClName[0].vehicleNub; //处理好的车牌 |
|
|
|
|
data = CurrentVehicle(val, StockInfo.value.VehicleInformation[1].options); |
|
|
|
@ -2733,6 +2828,7 @@ const handleBack = () => {
|
|
|
|
|
|
|
|
|
|
// 最后提交订单 |
|
|
|
|
const SubmitCommercial = async () => { |
|
|
|
|
|
|
|
|
|
let code = null; |
|
|
|
|
try { |
|
|
|
|
//kind为假就说明目前是在外协页面 |
|
|
|
@ -2811,18 +2907,29 @@ const SubmitCommercial = async () => {
|
|
|
|
|
|
|
|
|
|
if (code !== 200) return; |
|
|
|
|
state.value = false; //重置满足条件 |
|
|
|
|
ElMessage.success('操作成功'); |
|
|
|
|
|
|
|
|
|
ElMessageBox.alert('操作成功', '', { |
|
|
|
|
confirmButtonText: '关闭', |
|
|
|
|
callback: (action: Action) => { |
|
|
|
|
handleBack(); |
|
|
|
|
}, |
|
|
|
|
type: 'success', |
|
|
|
|
draggable: true, |
|
|
|
|
}).catch(() => { |
|
|
|
|
ElMessageBox.confirm( |
|
|
|
|
'计划添加成功,是否继续添加?', |
|
|
|
|
'提示', |
|
|
|
|
{ |
|
|
|
|
confirmButtonText: '确定', |
|
|
|
|
cancelButtonText: '取消', |
|
|
|
|
type: 'warning', |
|
|
|
|
} |
|
|
|
|
) |
|
|
|
|
.then(() => { |
|
|
|
|
StockInfo.value = StockInfoCopy.value |
|
|
|
|
StockInfoCopy.value = deepCopy(StockInfo.value); |
|
|
|
|
DataSubmit.value = DataSubmitCopy.value |
|
|
|
|
DataSubmitCopy.value= deepCopy(DataSubmit.value); |
|
|
|
|
dataInfo.value=[] |
|
|
|
|
clInput.value='' |
|
|
|
|
sjInput.value='' |
|
|
|
|
}) |
|
|
|
|
.catch(() => { |
|
|
|
|
handleBack(); |
|
|
|
|
}); |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
console.log(DataSubmit.value, '准备提交的信息'); |
|
|
|
|
}; |
|
|
|
@ -3400,4 +3507,23 @@ const SubmitCommercial = async () => {
|
|
|
|
|
min-width: 300px; |
|
|
|
|
font-size: 14px; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
:deep(.el_sj){ |
|
|
|
|
position: relative; |
|
|
|
|
.el-form-item__label{ |
|
|
|
|
margin-bottom: 30px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.el_msj{ |
|
|
|
|
position: absolute; |
|
|
|
|
top: -32px; |
|
|
|
|
width: 66.8%; |
|
|
|
|
} |
|
|
|
|
.el_mcl{ |
|
|
|
|
position: absolute; |
|
|
|
|
top: -32px; |
|
|
|
|
width: 66.8%; |
|
|
|
|
} |
|
|
|
|
</style> |
|
|
|
|