Browse Source

修复商配司机选择问题

pre-production
马远东 1 year ago
parent
commit
bbccf269fe
  1. 107
      src/views/distribution/turndelivery/deliveryDiscuss.vue

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

@ -28,17 +28,21 @@
remote
:loading='sjloading'
loading-text='正在加载中'
>
<el-option-group
v-for="group in StockInfo.DriverInformation"
:key="group.id"
:label="group.label"
>
<el-option
v-for="item in group.options"
:key="item.id"
:label="item.name"
:value="item.id"
:disabled="item.display"
/>
</el-option-group>
</el-select>
@ -1026,9 +1030,14 @@ Info(); //页面初始化获取车辆和司机信息
// arr1
// arr2
function CurrentVehicle(arr1, arr2) {
console.log(arr1,'arr1====>');
console.log(arr2,'arr2====>');
const matchedArray = [];
arr1.forEach(id => {
const matchedItem = arr2.find(item => item.id === id);
console.log(matchedItem,'matchedItem');
if (matchedItem) {
matchedArray.push(matchedItem);
}
@ -2587,22 +2596,44 @@ const Outsourcing = val => {
};
//
const SJchangeSelect = val => {
if (!val.length) {
DataSubmit.value.masterDriverName = null; //
StockInfo.value.VehicleInformation[1].options = vehicle.value; //
return;
}
const SJchangeSelect = async (val) => {
console.log(val,'司机接受的参数Val');
if (val.length) {
let SJname = null; //
SJname = CurrentVehicle(val, StockInfo.value.DriverInformation[1].options);
let SJname = null; //
console.log(StockInfo.value.DriverInformation[1].options,'StockInfo.value.DriverInformation[1].options首次');
SJname = await CurrentVehicle(val, StockInfo.value.DriverInformation[1].options);//
console.log(SJname,'SJname');
if(!SJname.length){
ElMessage({
message: '选择司机不属于当前仓库,或者没有维护关系,请重新选择司机',
type: 'warning',
})
DataSubmit.value.masterDriverName='';//
return
}
if(SJname.length){
if(SJname[0].vehicleVOList){
if(SJname[0].vehicleVOList.length===1 && !StockInfo.value.Cl.length){
//1
StockInfo.value.Cl.push(SJname[0].vehicleVOList[0].id);//
DataSubmit.value.masterVehicleNub = SJname[0].vehicleVOList[0].vehicleNub; //
CLchangeSelect([SJname[0].vehicleVOList[0].id])
}else{
//
clSelect.value[0].visible = true; //
}
}
}
console.log(StockInfo.value.Cl,'StockInfo.value.Cl')
DataSubmit.value.masterDriverName = SJname[0].name;
let data = []; //
let dataInfo = []; //
let SjData = []; //
// CurrentVehicle() ID
data = CurrentVehicle(val, StockInfo.value.DriverInformation[1].options);
console.log(data,'筛选出来的司机')
if (data) {
data.forEach(item => {
SjData.push({
@ -2628,29 +2659,41 @@ const SJchangeSelect = val => {
//VehicleInformation[0]
StockInfo.value.VehicleInformation[0].options = dataInfo;
}
}else{
DataSubmit.value.masterDriverName = null; //
StockInfo.value.VehicleInformation[1].options = vehicle.value; //
StockInfo.value.VehicleInformation[0].options = []; //
}
StockInfo.value.VehicleInformation[1].options= removeDuplicatesById(StockInfo.value.VehicleInformation[1].options)
};
//
const CLchangeSelect = val => {
if (!val.length) {
StockInfo.value.DriverInformation[1].options = driver.value; //
DataSubmit.value.masterVehicleNub = null; //
return;
}
// ID
const CLchangeSelect = async val => {
if (val.length) {
// ID
let data = [];
let dataInfo = []; //
let ClData = []; //
let ClName = null; //
if (val.length) {
ClName = CurrentVehicle(val, StockInfo.value.VehicleInformation[1].options);
ClName = await CurrentVehicle(val, StockInfo.value.VehicleInformation[1].options);
if(await !ClName.length){
ElMessage({
message: '查询失败请重试',
type: 'warning',
})
DataSubmit.value.masterVehicleNub='';//
return
}
sjSelect.value[0].visible = true; //
DataSubmit.value.masterVehicleNub = ClName[0].vehicleNub; //
data = CurrentVehicle(val, StockInfo.value.VehicleInformation[1].options);
console.log(data, '返回的值===');
// ID
if (data) {
console.log(data,'data===>');
data.forEach(item => {
ClData.push({
vehicleId: item.id, //ID
@ -2667,17 +2710,38 @@ const CLchangeSelect = val => {
data.forEach(item => {
//
if (item.driverArteryEntityList) {
item.driverArteryEntityList.forEach(item => {
if(item.driverArteryEntityList.length){
item.driverArteryEntityList.forEach(item => {
dataInfo.push(item);
console.log(item, 'itemInfo解析');
});
}
}
});
dataInfo = removeDuplicatesById(dataInfo); //
console.log(dataInfo, 'dataInfo信息');
StockInfo.value.DriverInformation[0].options = dataInfo; //
console.log(StockInfo.value.DriverInformation,'司机触发查看');
//
StockInfo.value.DriverInformation[0].options.forEach(item => {
// id
const exists = StockInfo.value.DriverInformation[1].options.some(btcItem => btcItem.id === item.id);
// display true
if (!exists) {
item.display = true;
}
});
}
}else{
StockInfo.value.DriverInformation[1].options = driver.value; //
StockInfo.value.DriverInformation[0].options=[];//
console.log( StockInfo.value.DriverInformation,' StockInfo.value.DriverInformation');
DataSubmit.value.masterVehicleNub = null; //
}
StockInfo.value.DriverInformation[1].options= removeDuplicatesById(StockInfo.value.DriverInformation[1].options);//
};
//
@ -2740,6 +2804,9 @@ const merge = (val, kindS) => {
}
//
if (DriverTemporaryStorage.value.length != VehicleTemporaryStorage.value.length) {
console.log(DriverTemporaryStorage.value,'DriverTemporaryStorage.value');
console.log(VehicleTemporaryStorage.value,'VehicleTemporaryStorage.value');
ElMessage({
message: '司机配置未选择完整!',
type: 'warning',

Loading…
Cancel
Save