Browse Source

异常装车接口

fix_bug_pro20231227
kilo 2 years ago
parent
commit
39ebdea20e
  1. 24
      src/api/distribution/distributionSignfor.js
  2. 4
      src/views/distribution/reservation/reservation.vue
  3. 374
      src/views/distribution/signfor/distributionSignfortreat.vue
  4. 83
      src/views/distribution/turndelivery/deliveryDiscuss.vue
  5. 2
      src/views/distribution/turndelivery/deliveryMarket.vue

24
src/api/distribution/distributionSignfor.js

@ -99,6 +99,30 @@ export const update = (row) => {
})
}
export const loadingAbnormalPackageListDetail = (signId) => {
return request({
url: '/api/logpm-distribution/signfor/loadingAbnormalPackageListDetail',
method: 'get',
params: {
signId,
}
})
}
/**
* 审核异常包件
* @param signId
* @returns {AxiosPromise}
*/
export const loadingAbnormalPackageListAuditing = (ids) => {
return request({
url: '/api/logpm-distribution/signfor/loadingAbnormalPackageListAuditing',
method: 'post',
params: {
ids,
}
})
}
export const signforPackageList = (signforId) => {
return request({
url: '/api/logpm-distribution/signfor/signforPackageList',

4
src/views/distribution/reservation/reservation.vue

@ -433,7 +433,7 @@
import { getPostList } from '@/api/system/post';
import { getListOwn } from '@/api/system/user';
import { getListTeam } from '@/api/basicdata/basicdataTeamGroup';
import { stockUp } from '@/api/basicdata/basicdataGoodsArea';
import { getStockUpArea, stockUp } from '@/api/basicdata/basicdataGoodsArea';
import dayjs from 'dayjs';
import print from '@/utils/print';
@ -1258,7 +1258,7 @@
let params = {
department: this.deptId
};
stockUp(params).then(res => {
getStockUpArea().then(res => {
// console.log("res>>>",res.data.data);
let fo = [];
res.data.data.forEach(i => {

374
src/views/distribution/signfor/distributionSignfortreat.vue

@ -128,6 +128,7 @@
>
<template #default="slotProps">
<el-text size="small" @click="editsolt(slotProps.scope)"> </el-text>
<el-text size="small" v-if="slotProps.scope.row.isHaveAbnormalPackage === 2" @click="viewAbnormalLoading(slotProps.scope)"> </el-text>
<el-text size="small" v-if="slotProps.scope.row.signingStatusAll == '司机签收'" @click="handleSign(slotProps.scope.row)"> </el-text>
<!-- <el-button size="small" type="danger" @click="delectsolt(slotProps.scope)"-->
<!-- >Delete</el-button>-->
@ -255,6 +256,71 @@
:drawerShow="drawerShow"
:columnList="columnList"
></edittablehead>
<el-dialog
title="异常装车包件列表"
v-model="abnormalBox"
width="50%"
:before-close="beforeClose"
append-to-body>
<el-table
ref="table"
v-loading="loading"
@selection-change="selectionChange"
:data="wrapdata"
:height="height"
style="width: 100%"
:border="option.border">
<el-table-column type="expand" v-if="option.expand" align="center"></el-table-column>
<template v-for="(item, index) in wrapoption.column">
<!-- table字段 -->
<el-table-column
v-if="item.hide !== true"
:prop="item.prop"
:label="item.label"
:show-overflow-tooltip="true"
:width="item.width"
:key="index"
>
<!-- :align="center"-->
</el-table-column>
</template>
<el-table-column
fixed="right"
label="操作"
width="100">
<template #default="scope">
<el-button v-if="scope.row.auditingStatus === 1 || scope.row.auditingStatusName === '待审核'" @click="auditing(scope.row)" type="text" size="small" > </el-button>
<!-- <el-button type="text" size="small">编辑</el-button>-->
</template>
</el-table-column>
</el-table>
<div style="width: 100%">
<el-button type="primary" @click="fastAuditing" style="margin-left: 40%">一键审批</el-button>
<el-button type="primary" @click="this.abnormalBox = false">关闭</el-button>
</div>
<!-- <div class="avue-crud__pagination" style="width: 100%">-->
<!-- &lt;!&ndash; 分页模块 &ndash;&gt;-->
<!-- <el-pagination-->
<!-- background-->
<!-- @size-change="wsizeChange"-->
<!-- @current-change="wcurrentChange"-->
<!-- :current-page="wpage.currentPage"-->
<!-- :page-sizes="[30, 50, 80, 120]"-->
<!-- :page-size="wpage.pageSize"-->
<!-- layout="total, sizes, prev, pager, next, jumper"-->
<!-- :total="wpage.total"-->
<!-- >-->
<!-- &lt;!&ndash; :align="center"&ndash;&gt;-->
<!-- </el-pagination>-->
<!-- </div>-->
<!-- 表单按钮 -->
<!-- <template #footer>-->
<!-- <span v-if="!view" class="dialog-footer">-->
<!-- <el-button type="primary" icon="el-icon-circle-check" @click="handleSubmit"> </el-button>-->
<!-- <el-button icon="el-icon-circle-close" @click="box = false"> </el-button>-->
<!-- </span>-->
<!-- </template>-->
</el-dialog>
</template>
<script>
@ -265,7 +331,7 @@
update,
remove,
getPage,
getstatistics
getstatistics, loadingAbnormalPackageListDetail, loadingAbnormalPackageListAuditing
} from '@/api/distribution/distributionSignfor';
import { update as updatesign } from '@/api/distribution/distributionSignfor';
import option from '@/option/distribution/distributionSignfor';
@ -487,7 +553,7 @@
sortable: true
},
{
prop: 'signingStatusAll',
prop: 'sijiSigningStatus',
label: '司机签收状态',
type: 3,
values: '',
@ -505,6 +571,26 @@
fixed: false,
sortable: true
},
{
prop: 'wenyuanSigningStatus',
label: '文员审核状态',
type: 3,
values: '',
width: '150',
checkarr: [
{
value: '2',
label: '已签收'
},
{
value: '1',
label: '未签收'
}
],
fixed: false,
sortable: true
},
{
prop: '',
label: '操作',
@ -642,6 +728,239 @@
]
},
columnListedit: [],
wrapdata:[],
wrapoption: {
expand: false,
index: true,
border: true,
selection: true,
column: [
{
label: '配送车次',
prop: 'trainNumber',
search: true,
width: '100px',
},
{
label: '运单号',
prop: 'waybillNumber',
search: true,
width: '100px',
},
{
label: '服务号',
prop: 'serviceNumber',
search: true,
width: '100px',
},
{
label: '订单自编号',
prop: 'orderCode',
width: '100px',
search: true,
},
{
label: '货物名称',
prop: 'materialName',
width: '100px',
search: true,
},
{
label: '包条码',
prop: 'packageCode',
search: true,
width: '100px',
},
// {
// label: '',
// prop: 'warehouse',
// search: true,
// width: '100px',
// },
// {
// label: '',
// prop: 'sendWarehouseName',
// search: true,
// width: '100px',
// },
// {
// label: '',
// prop: 'acceptWarehouseName',
// search: true,
// width: '100px',
// },
// {
// label: '',
// prop: 'waybillNumber',
// search: true,
// width: '100px',
// },
// {
// label: '',
// prop: 'warehouseEntryTimeEnd',
// search: true,
// width: '100px',
// },
// {
// label: '',
// prop: 'trainNumber',
// search: true,
// width: '100px'
// },
// {
// label: '',
// prop: 'trainNumber',
// search: true,
// width: '100px'
// },
// {
// label: '',
// prop: 'trainNumber',
// search: true,
// width: '100px',
// },
{
label: '一级品类',
prop: 'firsts',
search: true,
width: '100px',
},
{
label: '二级品类',
prop: 'second',
search: true,
width: '100px',
},
{
label: '三级品类',
prop: 'thirdProduct',
search: true,
width: '100px',
},
// {
// label: '',
// prop: 'materialCode',
// search: true,
// width: '100px'
// },
// {
// label: '',
// prop: 'materialName',
// search: true,
// width: '100px'
// },
{
label: '包件状态',
prop: 'orderPackageStatusName',
search: true,
width: '100px',
},
{
label: '冻结状态',
prop: 'orderPackageFreezeStatusName',
search: true,
width: '100px',
},
// {
// label: '',
// prop: 'orderPackageGroundingStatusName',
// search: true,
// width: '100px',
// },
{
label: '备货状态',
prop: 'orderPackageStockupStatusName',
search: true,
width: '100px',
},
{
label: '预约状态',
prop: 'orderPackageReservationStatusName',
search: true,
width: '100px',
},
{
label: '装车状态',
prop: 'orderPackageLoadingStatusName',
search: true,
width: '100px',
},
// {
// label: '',
// prop: 'orderPackageDeliveryStatus',
// search: true,
// width: '130px'
// },
// {
// label: '',
// prop: 'orderPackageReservationStatusName',
// search: true,
// width: '150px'
// },
// {
// label: '',
// prop: 'scanStatus',
// search: true,
// width: '150px',
// },
// {
// label: '',
// prop: 'orderPackageDeliveryStatus',
// search: true,
// width: '150px'
// },
// {
// label: '',
// prop: 'driverName',
// search: true,
// width: '150px',
// },
{
label: '实际装车人',
prop: 'scanUser',
search: true,
width: '150px',
},
// {
// label: '',
// prop: 'signingTime',
// search: true,
// width: '150px',
// },
{
label: '审核状态',
prop: 'auditingStatusName',
search: true,
width: '150px',
},
{
label: '审核时间',
prop: 'auditingTime',
search: true,
width: '150px',
},
{
label: '审核人',
prop: 'auditingUser',
search: true,
width: '150px',
},
// {
// label: '',
// prop: 'pallet',
// width: '100px'
// },
// {
// label: '',
// prop: 'goodsAllocation',
// width: '100px'
// }
]
},
drawerShow: false,
height: 0,
//
@ -662,6 +981,7 @@
signdata: [],
//
query: {},
abnormalBox:false,
//
signoption: {
height: 'auto',
@ -902,6 +1222,7 @@
showdrawer(value) {
this.drawerShow = value;
},
/**
* 弹窗的勾选回调用于更改头部数组
* 固定搭配只需要更换 columnList
@ -918,7 +1239,6 @@
this.columnList = newarr;
this.$functions.setStorage(window.location.pathname + 'sortlist', headarr);
}
},
//
cancellation() {
@ -956,6 +1276,43 @@
const { row } = scope;
console.log(row);
},
//
auditing(row){
// const { row } = scope;
console.log("----------->row",row);
loadingAbnormalPackageListAuditing(row.id).then(res=>{
console.log("res-------->",res);
if (res){
this.$message({
type: 'success',
message: '操作成功!'
});
}
})
},
/**
* 一键审批
*/
fastAuditing(){
console.log("this.wrapdata---------->",this.wrapdata);
let ids = []
this.wrapdata.forEach(item=>{
ids.push(item.id)
})
loadingAbnormalPackageListAuditing(ids.join(",")).then(res=>{
console.log("res-------->",res);
if (res){
this.$message({
type: 'success',
message: '操作成功!'
});
this.abnormalBox = false;
}
})
console.log("ids---------->",ids);
},
handleSign(row) {
console.log('签收>>>>>>>>>>', row);
// this.title = '';
@ -965,6 +1322,17 @@
// this.wid= row.id
// this.getWrapdetails(this.wpage)
},
viewAbnormalLoading(scope){
const { row } = scope;
// this.title = '';
// this.view = true;
this.abnormalBox = true;
console.log("异常装车审核------------->",row);
loadingAbnormalPackageListDetail(row.id).then(res=>{
this.wrapdata = res.data.data;
console.log("res------------->",res.data.data);
})
},
editsolt(scope) {
const { row } = scope;
console.log('row>>>>>>>>>>>>>>>>>>>', row);

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

@ -801,40 +801,55 @@
methods: {
//
async getFork() {
let ides = '';
let ide = {};
await getListUser().then(res => {
console.log('res>>>', res.data.data);
ides = res.data.data.tenantId;
this.deptId = res.data.data.deptId;
});
await getPostList(ides).then(res => {
console.log('>>>>', res.data.data);
// this.forkliftData = res.data.data;
res.data.data.forEach(i => {
if (i.postName == '叉车') {
ide = i;
}
});
});
// console.log("ied>>>>>",ide);
let params = {
postId: ide.id, //
deptId: this.deptId //
// roleId: '', //
};
getListOwn(Object.assign(params, this.query)).then(res => {
// console.log(".............",res.data.data);
let fo = [];
res.data.data.forEach(i => {
let a = {
dictKey: i.id,
dictValue: i.name
};
fo.push(a);
});
this.forkliftData = fo;
});
await getListUser().then(res =>{ //
console.log("查询当前人信息>>>",res.data.data);
let fo = [];
res.data.data.forEach( i =>{
let a ={
dictKey: i.id,
dictValue: i.realName
};
fo.push(a);
if(!this.deptId){
this.deptId =i.deptId;
}
});
this.forkliftData = fo;
})
// let ides = '';
// let ide = {};
// await getListUser().then(res => {
// console.log('res>>>', res.data.data);
// ides = res.data.data.tenantId;
// this.deptId = res.data.data.deptId;
// });
// await getPostList(ides).then(res => {
// console.log('>>>>', res.data.data);
// // this.forkliftData = res.data.data;
// res.data.data.forEach(i => {
// if (i.postName == '') {
// ide = i;
// }
// });
// });
// // console.log("ied>>>>>",ide);
// let params = {
// postId: ide.id, //
// deptId: this.deptId //
// // roleId: '', //
// };
// getListOwn(Object.assign(params, this.query)).then(res => {
// // console.log(".............",res.data.data);
// let fo = [];
// res.data.data.forEach(i => {
// let a = {
// dictKey: i.id,
// dictValue: i.name
// };
// fo.push(a);
// });
// this.forkliftData = fo;
// });
await this.getStorageArea();
await this.getTeam();
},

2
src/views/distribution/turndelivery/deliveryMarket.vue

@ -1020,7 +1020,7 @@
}
if (this.stockUpForm.unloader) {
this.loaderData.forEach(a => {
if (this.stockUpForm.loader === a.dictKey) {
if (this.stockUpForm.unloader === a.dictKey) {
stockup.unloaderName = a.dictValue;
stockup.unloaderId = a.dictKey;
}

Loading…
Cancel
Save