Browse Source

修复商配订单包件误操作

dev-xx
马远东 1 year ago
parent
commit
9889442421
  1. 6
      src/components/tablecmt/tablecmt.vue
  2. 14
      src/router/views/index.js
  3. 62
      src/views/aftersales/aftersalesWorkOrder.vue
  4. 9
      src/views/aftersales/aftersalesWorkOrderAdd.vue
  5. 6
      src/views/distribution/inventory/distrilbutionBillLading.vue
  6. 12
      src/views/distribution/inventory/distrilbutionBillLadingView.vue
  7. 1204
      src/views/distribution/turndelivery/deliveryDiscuss copy.vue
  8. 1288
      src/views/distribution/turndelivery/deliveryDiscuss.vue

6
src/components/tablecmt/tablecmt.vue

@ -385,14 +385,20 @@ function handleCheckSelect(select: []) {
if (select.length !== 0) {
select.map(item => {
if (props.isselectfun) {
console.log('执行力是否禁用勾选');
if (props.isselectfun(item)) {
selecttable.value.toggleRowSelection(item, true);
}else{
selecttable.value.toggleRowSelection(item, true);
}
} else {
console.log('没有执行否禁用勾选');
selecttable.value.toggleRowSelection(item, true);
}
});
} else {
console.log('都不满足');
selecttable.value.clearSelection();
}
}

14
src/router/views/index.js

@ -765,10 +765,22 @@ export default [
{
path: '/distribution/turndelivery/deliveryDiscuss',
name: '商配计划',
component: () => import('@/views/distribution/turndelivery/deliveryDiscuss.vue'),
component: () => import('@/views/distribution/turndelivery/deliveryDiscusscopy.vuevuey.vue'),
},
],
},
// {
// path: '/distribution/turndelivery/deliveryDiscusscopy',
// component: Layout,
// redirect: '/distribution/turndelivery/deliveryDiscusscopy',
// children: [
// {
// path: '/distribution/turndelivery/deliveryDiscusscopy',
// name: '商配计划测试',
// component: () => import('@/views/distribution/turndelivery/deliveryDiscuss.vue'),
// },
// ],
// },
{
path: '/warehouse/warehouseRetentionRecord/warehouseRetentionDetails',
component: Layout,

62
src/views/aftersales/aftersalesWorkOrder.vue

@ -136,6 +136,14 @@
@click="Batchcompletion"
>批量完结</el-button
>
<!-- 仲裁中确定结束仲裁按钮 -->
<el-button
type="primary"
v-if="ButtonPermissions.ArbitrationDetermination"
@click="AllEndArbitration"
>批量仲裁完成</el-button
>
<!-- <el-button
ButtonPermissions.batchFinish
type="primary"
@ -1108,6 +1116,7 @@ const ButtonPermissions = computed(() => {
batchFinish: UserPermissions.value != '仓库客服', //
appeal: false, //
ManagerConfirmed:false,//
ArbitrationDetermination:false,//
};
case 1: //
return {
@ -1119,6 +1128,7 @@ const ButtonPermissions = computed(() => {
Batchdetermination: UserPermissions.value != '仓库客服', //
appeal: false, //
ManagerConfirmed:false,//
ArbitrationDetermination:false,//
};
case 2: //
return {
@ -1130,6 +1140,7 @@ const ButtonPermissions = computed(() => {
appeal: UserPermissions.value == '仓库客服' && AppealStatusT.value, //
Batchdetermination: UserPermissions.value == '仓库客服', //
ManagerConfirmed:UserPermissions.value == '总部客服经理',//
ArbitrationDetermination:false,//
};
case 3: //
return {
@ -1141,6 +1152,7 @@ const ButtonPermissions = computed(() => {
appeal: false, //
Batchdetermination: false, //
ManagerConfirmed:false,//
ArbitrationDetermination:false,//
};
case 4: //
return {
@ -1152,6 +1164,7 @@ const ButtonPermissions = computed(() => {
appeal: false, //
Batchdetermination: false, //
ManagerConfirmed:false,//
ArbitrationDetermination:false,//
};
case 5: //
return {
@ -1163,6 +1176,7 @@ const ButtonPermissions = computed(() => {
appeal: false, //
Batchdetermination: false, //
ManagerConfirmed:false,//
ArbitrationDetermination:true,//
};
case 6: //
return {
@ -1174,6 +1188,7 @@ const ButtonPermissions = computed(() => {
appeal: UserPermissions.value == '仓库客服', //
Batchdetermination: false, //
ManagerConfirmed:false,//
ArbitrationDetermination:false,//
};
case 7: //
return {
@ -1185,6 +1200,7 @@ const ButtonPermissions = computed(() => {
appeal: false, //
Batchdetermination: false, //
ManagerConfirmed:false,//
ArbitrationDetermination:false,//
};
case 8: //
return {
@ -1196,6 +1212,7 @@ const ButtonPermissions = computed(() => {
appeal: false, //
Batchdetermination: false, //
ManagerConfirmed:false,//
ArbitrationDetermination:false,//
};
//
default:
@ -1208,6 +1225,7 @@ const ButtonPermissions = computed(() => {
appeal: false,
Batchdetermination: false, //
ManagerConfirmed:false,//
ArbitrationDetermination:false,//
};
}
});
@ -1265,6 +1283,7 @@ const Statusprocessing = val => {
// }
//
if (item.workOrderType == 1) {
console.log(columnList,'columnList');
item.workOrderTypeNameS = columnList[2].checkarr[0].label; //
} else if (item.workOrderType == 2) {
item.workOrderTypeNameS = columnList[2].checkarr[1].label; //
@ -3058,14 +3077,6 @@ const DetermineStorage = val => {
//
const EndArbitration=(val)=>{
// if (!details.selectionList.length) {
// ElMessage({
// message: '',
// type: 'warning',
// });
// return;
// }
console.log(val,'当前参数');
let data={
assignList:[val.row.id]
@ -3078,16 +3089,45 @@ $_updateArbitrateStatu(data).then(res=>{
message: res.data.msg,
type: 'success',
})
DataRendering(TabPermissions.value);
DataRendering(TabPermissions.value,details.query);
}
}).catch(res=>{
console.log(res,'报错原因');
}).finally(()=>{
details.loadingObj.list = false; //
})
}
//
const AllEndArbitration=()=>{
//
if (!details.selectionList.length) {
ElMessage({
message: '请勾选要处理的数据数据',
type: 'warning',
});
return;
}
let data={
assignList:[]
}
data['assignList'] = details.selectionList.map(res=>res.id);//ID
console.log('批量仲裁确定处理好的值');
$_updateArbitrateStatu(data).then(res=>{
console.log(res,'处理成功');
if(res.data.code == 200){
ElMessage({
message: res.data.msg,
type: 'success',
})
DataRendering(TabPermissions.value,details.query);
}
}).catch(res=>{
console.log(res,'报错原因');
}).finally(()=>{
details.selectionList=[];//
details.loadingObj.list = false; //
})
}
//
const ResultConfirmation = (val) => {

9
src/views/aftersales/aftersalesWorkOrderAdd.vue

@ -1202,7 +1202,7 @@ const ConfirmForm = () => {
//
DataSubmit.surveyRecordDTO = {
content: Indexform.value.investigationPocess,
workOrderId: Indexform.value.workOrderNumber ? Indexform.value.workOrderNumber : null,
// workOrderId: Indexform.value.workOrderNumber ? Indexform.value.workOrderNumber : null,
};
console.log(DataSubmit.surveyRecordDTO, '调查经过');
//
@ -1541,7 +1541,6 @@ const ChangePackageInfo = (val, index) => {
$_getAbnormalPackage(data).then(res => {
console.log(res, '包件信息');
console.log(res.data.data, '包件信息');
if (res.data.data.length) {
console.log(NumberPackages.value, 'NumberPackages.value ');
console.log(PackageInfo.value, 'PackageInfo.value');
@ -1574,9 +1573,7 @@ const ChangePackageInfo = (val, index) => {
PackageInfo.value[index].orderId = packageData.orderId; //
PackageInfo.value[index].brandName = packageData.brandName; //
PackageInfo.value[index].mallName = packageData.mallName; //
PackageInfo.value[index].state = false; //
const results = res.data.data.filter(item => {
return item.workOrderId && item.workOrderNumber;
});
@ -1591,9 +1588,7 @@ const ChangePackageInfo = (val, index) => {
Indexform.value.first = packageData.firsts; //
Indexform.value.secondary = packageData.second; //
Indexform.value.waybillMall = packageData.mallName; //
Indexform.value.typeServiceName = packageData.typeServiceName
? packageData.typeServiceName
: null; //
Indexform.value.typeServiceName = packageData.typeServiceName ? packageData.typeServiceName : ''; //
}
// packageCode; //
// //

6
src/views/distribution/inventory/distrilbutionBillLading.vue

@ -2268,12 +2268,13 @@ export default {
},
//
callFordelivery(inde) {
if (this.selectionListStock.length === 0) {
if (!this.selectionList.length) {
console.log(this.selectionListStock,'23');
this.$message.warning('至少选择一条数据!');
return;
}
let isa = false;
this.selectionListStock.some(i => {
this.selectionList.some(i => {
if (parseInt(i.inventoryQuantity) > parseInt(i.quantityStock)) {
// this.$message.warning("");
isa = true;
@ -2986,6 +2987,7 @@ export default {
this.view = false;
},
selectionChange(list) {
console.log(list,'勾选的数据');
this.selectionList = list;
},
handleHighlightChangeTable(row) {

12
src/views/distribution/inventory/distrilbutionBillLadingView.vue

@ -447,7 +447,7 @@ export default {
{
prop: 'stockStatus', //
label: '备货状态',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -1459,6 +1459,16 @@ export default {
console.log('查看>>>>>库存>>', res.data.data);
const data = res.data.data;
this.inventorydata = data.records;
data.records.forEach(item=>{
// 1 2 3
if(item.stockStatus == 1){
item.stockStatus = '待备货'
} else if(item.stockStatus == 2){
item.stockStatus = '备货中'
}else if(item.stockStatus == 3){
item.stockStatus = '备货完成'
}
})
this.inventorypage.total = data.total;
});
},

1204
src/views/distribution/turndelivery/deliveryDiscuss copy.vue

File diff suppressed because it is too large Load Diff

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

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save