Browse Source

修改自提操作问题

fix_bug_pro20231227
caoyizhong 2 years ago
parent
commit
b23259c14c
  1. 11
      src/api/distribution/distributionParcelList.js
  2. 22
      src/api/distribution/distributionStockup.js
  3. 133
      src/option/distribution/distributionStockup.js
  4. 8
      src/option/distribution/distrilbutionBillLading.js
  5. 2
      src/views/distribution/inventory/distributionStockArticleDetails.vue
  6. 8
      src/views/distribution/inventory/distrilbutionBillLading.vue
  7. 32
      src/views/distribution/inventory/distrilbutionBillLadingList.vue
  8. 16
      src/views/distribution/stockup/distributionStockupDetailsSelf.vue
  9. 19
      src/views/distribution/stockup/distributionStockupSelf.vue

11
src/api/distribution/distributionParcelList.js

@ -54,6 +54,17 @@ export const getParcelListOwn = (current, size, params) => {
} }
}) })
} }
export const getParcelListOwnSelf = (current, size, params) => {
return request({
url: '/api/logpm-distribution/distributionParcelList/parcelListOwnSelf',
method: 'get',
params: {
...params,
current,
size,
}
})
}
export const getDetail = (id) => { export const getDetail = (id) => {
return request({ return request({

22
src/api/distribution/distributionStockup.js

@ -48,6 +48,17 @@ export const getDetailOrderOwn = (current, size, params) => {
} }
}) })
} }
export const getDetailOrderOwnSelf = (current, size, params) => {
return request({
url: '/api/logpm-distribution/distributionStockup/detailOrderOwnSelf',
method: 'get',
params: {
...params,
current,
size,
}
})
}
export const getDetailStockupOwn = (id) => { export const getDetailStockupOwn = (id) => {
return request({ return request({
url: '/api/logpm-distribution/distributionStockup/detailOwn', url: '/api/logpm-distribution/distributionStockup/detailOwn',
@ -69,6 +80,17 @@ export const getDetailInventoryOwn = (current, size, params) => {
} }
}) })
} }
export const getDetailInventoryOwnSelf = (current, size, params) => {
return request({
url: '/api/logpm-distribution/distributionStockup/inventoryOwnSelf',
method: 'get',
params: {
...params,
current,
size,
}
})
}
export const getDetailReservationOwn = (current, size, params) => { export const getDetailReservationOwn = (current, size, params) => {
return request({ return request({

133
src/option/distribution/distributionStockup.js

@ -5,6 +5,137 @@ export default {
selection: true, selection: true,
columnReservation: [ // 备货订单 columnReservation: [ // 备货订单
{
label: "主键",
prop: "id",
display: false,
hide: true,
},
{
label: "租户号",
prop: "tenantId",
display: false,
hide: true,
},
{
label: "创建人",
prop: "createUser",
display: false,
hide: true,
},
{
label: "创建时间",
prop: "createTime",
display: false,
hide: true,
},
{
label: "更新人",
prop: "updateUser",
display: false,
hide: true,
},
{
label: "更新时间",
prop: "updateTime",
display: false,
hide: true,
},
{
label: "状态",
prop: "status",
display: false,
hide: true,
},
{
label: "是否已删除",
prop: "isDeleted",
display: false,
hide: true,
},
{
label: "创建部门",
prop: "createDept",
display: false,
hide: true,
},
// {
// label: "备货时间",
// prop: "stockupDate",
// format: "YYYY-MM-DD hh:mm:ss",
// valueFormat: "YYYY-MM-DD hh:mm:ss",
// },
// {
// label: "配送单号",
// prop: "stockupUser",
// },
{
label: "收货人",
prop: "consignee",
search: true,
},
{
label: "收货电话",
prop: "deliveryPhone",
search: true,
},
{
label: "收货地址",
prop: "deliveryAddress",
search: true,
},
{
label: "收货单位",
prop: "mallName",
},
{
label: "订单自编号",
prop: "stockArticleId",
display: false,
},
// {
// label: "配送单号",
// prop: "reserve2",
// display: false,
// },
{
label: "备货状态",
prop: "stockupStatusName",
display: false,
},
// {
// label: "配送状态",
// prop: "reserve4",
// display: false,
// },
/* {
label: "装车件数",
prop: "reserve5",
display: false,
},
{
label: "签收件数",
prop: "reserve3",
display: false,
},
{
label: "回库件数",
prop: "reserve4",
display: false,
},
{
label: "是否加急",
prop: "reserve5",
display: false,
},
{
label: "状态",
prop: "reserve5",
display: false,
},*/
],
columnReservationSelf: [ // 备货订单
{ {
prop: 'pickupBatch', prop: 'pickupBatch',
label: '提货批次', label: '提货批次',
@ -27,7 +158,7 @@ export default {
sortable: true, sortable: true,
}, },
{ {
prop: 'waybillNumber ', prop: 'waybillNumber',
label: '运单号', label: '运单号',
type: 2, type: 2,
values: '', values: '',

8
src/option/distribution/distrilbutionBillLading.js

@ -1022,11 +1022,17 @@ export default {
head: false, head: false,
}, },
{ {
prop: 'waybillNumber ', prop: 'waybillNumber',
label: '运单号', label: '运单号',
width: '150', width: '150',
head: false, head: false,
}, },
{
prop: 'orderPackageCode',
label: '包条码',
width: '150',
},
{ {
prop: 'orderCode', prop: 'orderCode',
label: '订单自编号', label: '订单自编号',

2
src/views/distribution/inventory/distributionStockArticleDetails.vue

@ -146,7 +146,7 @@
type="primary" type="primary"
text text
icon="el-icon-view" icon="el-icon-view"
v-if="slotProps.scope.row.materialId == '' || slotProps.scope.row.materialId == '-1'" v-if="!slotProps.scope.row.materialId"
@click="handleMaterial(slotProps.scope.row)" @click="handleMaterial(slotProps.scope.row)"
>补充物料信息</el-button >补充物料信息</el-button
> >

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

@ -1289,10 +1289,10 @@ export default {
} }
}) })
// //
// if(ad){ if(ad){
// this.$message.warning(""); this.$message.warning("请选择同一收货人!!");
// return ; return ;
// } }
if(st){ if(st){
return ; return ;
} }

32
src/views/distribution/inventory/distrilbutionBillLadingList.vue

@ -966,7 +966,7 @@ export default {
}); });
}, },
handleEdits (row) { handleEdits (row) {
this.$router.push({ this.$router.push({
path: '/distribution/inventory/distrilbutionBillLading', path: '/distribution/inventory/distrilbutionBillLading',
query:{ query:{
@ -1052,18 +1052,16 @@ export default {
}, },
getTime(dat){ getTime(dat){
let date = new Date(dat); let date = new Date(dat);
var y = date.getFullYear() let formatter = new Intl.DateTimeFormat('en', {
var m = date.getMonth() + 1 year: 'numeric',
m = m < 10 ? '0' + m : m month: '2-digit',
var d = date.getDate() day: '2-digit',
d = d < 10 ? '0' + d : d hour: '2-digit',
var h = date.getHours() minute: '2-digit',
h = h < 10 ? '0' + h : h second: '2-digit'
var minute = date.getMinutes() });
minute = minute < 10 ? '0' + minute : minute let formattedDate = formatter.format(date);
var s = date.getSeconds() return formattedDate.replace(/\//g, '-');
s = s < 10 ? '0' + s : s
return y + '-' + m + '-' + d + ' ' + h + ':' + minute + ':' + s;
}, },
onLoad (page, params = {}) { onLoad (page, params = {}) {
this.loading = true; this.loading = true;
@ -1075,9 +1073,11 @@ export default {
} }
getListOwnNUm(params).then(res =>{ getListOwnNUm(params).then(res =>{
console.log("查询数量!!!",res.data.data); console.log("查询数量!!!",res.data.data);
this.treatNum = !res.data.data.treatNum ? 0 : res.data.data.treatNum; if(!!res.data.data){
this.stopNum = !res.data.data.stopNum ? 0 : res.data.data.stopNum; this.treatNum = !res.data.data.treatNum ? 0 : parseInt(res.data.data.treatNum);
this.numBill = parseInt(this.treatNum) + parseInt(this.stopNum); this.stopNum = !res.data.data.stopNum ? 0 : res.data.data.stopNum;
this.numBill = parseInt(this.treatNum) + parseInt(this.stopNum);
}
}); });
getListOwn(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => { getListOwn(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
const data = res.data.data; const data = res.data.data;

16
src/views/distribution/stockup/distributionStockupDetailsSelf.vue

@ -92,7 +92,7 @@
:align="center" :align="center"
> >
</el-table-column> </el-table-column>
<template v-for="(item, index) in option.columnReservation"> <template v-for="(item, index) in option.columnReservationSelf">
<!-- table字段 --> <!-- table字段 -->
<el-table-column <el-table-column
v-if="item.hide !== true" v-if="item.hide !== true"
@ -350,12 +350,12 @@ import {
getDetailReservationOwn, getDetailReservationOwn,
getDetailOrderOwn, getDetailOrderOwn,
getDetailInventoryOwn, getDetailInventoryOwn,
billStockList, billStockList, getDetailOrderOwnSelf, getDetailInventoryOwnSelf
} from '@/api/distribution/distributionStockup'; } from '@/api/distribution/distributionStockup';
import option from '@/option/distribution/distributionStockup'; import option from '@/option/distribution/distributionStockup';
import { mapGetters } from 'vuex'; import { mapGetters } from 'vuex';
import { getDictionaryBiz } from '@/api/system/dict'; import { getDictionaryBiz } from '@/api/system/dict';
import { getParcelListOwn } from '@/api/distribution/distributionParcelList'; import { getParcelListOwn, getParcelListOwnSelf } from '@/api/distribution/distributionParcelList';
export default { export default {
data() { data() {
@ -701,7 +701,7 @@ export default {
this.loading = false; this.loading = false;
this.billStockListPage(page); this.billStockListPage(page);
}); });
}, },
@ -713,7 +713,7 @@ export default {
async billStockListPage(page) { async billStockListPage(page) {
let a = await billStockList(page.currentPage, page.pageSize, { id: this.$route.query.id }); let a = await billStockList(page.currentPage, page.pageSize, { id: this.$route.query.id });
this.data3 = a.data.data.records; this.data3 = a.data.data.records;
console.log("》》》》》》",this.data3); console.log("自提任务》》》》》》",this.data3);
// if (!!this.data3 && this.data3.length > 0) { // if (!!this.data3 && this.data3.length > 0) {
// this.data3.forEach(i => { // this.data3.forEach(i => {
@ -731,7 +731,7 @@ export default {
// //
async getStockUpParcelsList(page) { async getStockUpParcelsList(page) {
let a = await getParcelListOwn(page.currentPage, page.pageSize, { id: this.$route.query.id }); let a = await getParcelListOwnSelf(page.currentPage, page.pageSize, { id: this.$route.query.id });
console.log('包件...', a.data); console.log('包件...', a.data);
const data = a.data.data; const data = a.data.data;
this.data1 = data.records; this.data1 = data.records;
@ -747,7 +747,7 @@ export default {
}, },
// //
async getOrderList(page) { async getOrderList(page) {
let a = await getDetailOrderOwn(page.currentPage, page.pageSize, { let a = await getDetailOrderOwnSelf(page.currentPage, page.pageSize, {
id: this.$route.query.id, id: this.$route.query.id,
}); });
// console.log("...",a.data); // console.log("...",a.data);
@ -765,7 +765,7 @@ export default {
}, },
// //
async getInventoryList(page) { async getInventoryList(page) {
let a = await getDetailInventoryOwn(page.currentPage, page.pageSize, { let a = await getDetailInventoryOwnSelf(page.currentPage, page.pageSize, {
id: this.$route.query.id, id: this.$route.query.id,
}); });
// console.log("...",a.data); // console.log("...",a.data);

19
src/views/distribution/stockup/distributionStockupSelf.vue

@ -67,7 +67,7 @@
<el-button type="primary" text icon="el-icon-view" @click="handleView(slotProps.scope)">查看</el-button> <el-button type="primary" text icon="el-icon-view" @click="handleView(slotProps.scope)">查看</el-button>
<el-button type="primary" text icon="el-icon-edit" @click="handleEdit(slotProps.scope)">编辑</el-button> <el-button type="primary" text icon="el-icon-edit" @click="handleEdit(slotProps.scope)">编辑</el-button>
<!-- <el-button type="primary" text icon="el-icon-edit" @click="handleEdit(slotProps.scope)">取消</el-button>--> <!-- <el-button type="primary" text icon="el-icon-edit" @click="handleEdit(slotProps.scope)">取消</el-button>-->
<el-button type="primary" text icon="el-icon-edit" @click="handleEdit(slotProps.scope)">打印</el-button> <el-button type="primary" text icon="el-icon-edit" @click="handleEditPrint(slotProps.scope)">打印</el-button>
</template> </template>
</tablecmt> </tablecmt>
</el-row> </el-row>
@ -127,7 +127,7 @@
</el-option> </el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item label="出库时间" prop="outboundDate" :label-width="formLabelWidth" v-if="this.num=='2'"> <el-form-item label="出库时间" prop="outboundDate" :label-width="formLabelWidth" v-if="this.num=='2' || this.numout">
<el-date-picker v-model="form.outboundDate" type="datetime" value-format="YYYY-MM-DD HH:mm:ss" placeholder="请选择出库时间" style="width: 26%"></el-date-picker> <el-date-picker v-model="form.outboundDate" type="datetime" value-format="YYYY-MM-DD HH:mm:ss" placeholder="请选择出库时间" style="width: 26%"></el-date-picker>
</el-form-item> </el-form-item>
</el-form> </el-form>
@ -274,7 +274,7 @@ export default {
head: false, head: false,
}, },
{ {
prop: 'stockupDate', prop: 'outboundDate',
label: '出库时间', label: '出库时间',
type: 4, type: 4,
values: '', values: '',
@ -481,6 +481,7 @@ export default {
distributionType: [], distributionType: [],
deptId: '', deptId: '',
num: '', num: '',
numout: false,
stockupStatus: [], stockupStatus: [],
stockAllocation: [], stockAllocation: [],
stockupDate: [], stockupDate: [],
@ -752,7 +753,7 @@ export default {
* 指派叉车查询的司机 * 指派叉车查询的司机
*/ */
handleForklift(){ handleForklift(){
this.numout = false;
if (this.selectionList.length === 0) { if (this.selectionList.length === 0) {
this.$message.warning("请选择至少一条数据"); this.$message.warning("请选择至少一条数据");
return; return;
@ -763,6 +764,9 @@ export default {
a = true; a = true;
return; return;
} }
if(!i.outboundDate){
this.numout = true;
}
}) })
// = this.selectionList.findIndex(i => i.assignStatus == 2); // = this.selectionList.findIndex(i => i.assignStatus == 2);
if(!a){ if(!a){
@ -787,6 +791,7 @@ export default {
}); });
this.onLoad(this.page); this.onLoad(this.page);
this.dialogFormCustomer = false; this.dialogFormCustomer = false;
this.form = {};
}) })
}else if(this.num == '2'){ }else if(this.num == '2'){
console.log(">>>>>>>",this.formOne); console.log(">>>>>>>",this.formOne);
@ -798,8 +803,9 @@ export default {
message: "操作成功!" message: "操作成功!"
}); });
this.dialogFormCustomer = false; this.dialogFormCustomer = false;
this.formOne ={};
this.form ={};
}) })
} }
}, },
@ -885,6 +891,9 @@ export default {
this.form = {} this.form = {}
this.box = true this.box = true
}, },
handleEditPrint(row){
this.$message.warning("打印中》》》等待数据模板!!")
},
handleEdit (row) { handleEdit (row) {
// this.title = '' // this.title = ''
// this.box = true // this.box = true

Loading…
Cancel
Save