Browse Source

Merge remote-tracking branch 'origin/dev' into dev

dev-warehouse
0.0 2 years ago
parent
commit
42d8a5337c
  1. 10
      src/api/distribution/distributionStockArticle.js
  2. 38
      src/option/distribution/distributionReservation.js
  3. 18
      src/option/distribution/distributionStockArticle.js
  4. 27
      src/router/views/index.js
  5. 2
      src/views/distribution/deliverylist/distributionDeliveryListdis.vue
  6. 2
      src/views/distribution/deliverylist/distributionDeliveryListedt.vue
  7. 30
      src/views/distribution/inventory/delivery/distributionStockArticle.vue
  8. 24
      src/views/distribution/inventory/delivery/distributionStockArticleDiscuss.vue
  9. 31
      src/views/distribution/inventory/delivery/distributionStockArticleMarket.vue
  10. 48
      src/views/distribution/inventory/delivery/distributionStockArticleSelf.vue
  11. 19
      src/views/distribution/inventory/distributionStockArticleDetails.vue
  12. 8
      src/views/distribution/reservation/atlas.vue
  13. 167
      src/views/distribution/reservation/reservation.vue
  14. 8
      src/views/distribution/reservation/reservationDetails.vue
  15. 233
      src/views/distribution/reservation/reservationFrom.vue
  16. 70
      src/views/distribution/stockup/distributionStockup.vue
  17. 15
      src/views/distribution/stockup/distributionStockupDetails.vue
  18. 43
      src/views/distribution/stockup/distributionStockupDiscuss.vue
  19. 68
      src/views/distribution/stockup/distributionStockupMarket.vue
  20. 153
      src/views/distribution/stockup/distributionStockupSelf.vue
  21. 7
      src/views/distribution/turndelivery/deliveryDiscuss.vue
  22. 935
      src/views/distribution/turndelivery/deliveryInfo.vue
  23. 947
      src/views/distribution/turndelivery/deliveryMarket.vue
  24. 49
      src/views/reservation/order_list.vue
  25. 1170
      src/views/reservation/order_listFrom.vue

10
src/api/distribution/distributionStockArticle.js

@ -55,6 +55,16 @@ export const getDetail = (id) => {
}) })
} }
export const getQueryQRCode = (params) => {
return request({
url: '/api/logpm-distribution/distributionStockArticle/getShowTemplate',
method: 'get',
params: {
...params
}
})
}
export const remove = (ids) => { export const remove = (ids) => {
return request({ return request({
url: '/api/logpm-distribution/distributionStockArticle/remove', url: '/api/logpm-distribution/distributionStockArticle/remove',

38
src/option/distribution/distributionReservation.js

@ -87,21 +87,45 @@ export default {
{ {
label: '时段', label: '时段',
prop: 'periodOfTime', prop: 'periodOfTime',
width: '100',
hide: true,
},
{
label: '时段',
prop: 'periodOfTimeName',
width: '100' width: '100'
}, },
{ {
label: '配送方式', label: '配送方式',
prop: 'deliveryWay', prop: 'deliveryWay',
width: '100',
hide: true,
},
{
label: '配送方式',
prop: 'deliveryWayName',
width: '100' width: '100'
}, },
{ {
label: '配送类型', label: '配送类型',
prop: 'deliveryType', prop: 'deliveryType',
width: '100' width: '100',
hide: true,
},
{
label: '配送类型',
prop: 'deliveryTypeName',
width: '100',
}, },
{ {
label: '服务类型', label: '服务类型',
prop: 'serveType', prop: 'serveType',
width: '100',
hide: true,
},
{
label: '服务类型',
prop: 'serveTypeName',
width: '100' width: '100'
}, },
{ {
@ -127,6 +151,12 @@ export default {
{ {
label: '预约信息状态', label: '预约信息状态',
prop: 'reservationStatus', prop: 'reservationStatus',
width: '120',
hide: true,
},
{
label: '预约信息状态',
prop: 'reservationStatusName',
width: '120' width: '120'
}, },
{ {
@ -138,6 +168,12 @@ export default {
{ {
label: '备货状态', label: '备货状态',
prop: 'stockupStatus', prop: 'stockupStatus',
width: '100',
hide: true,
},
{
label: '备货状态',
prop: 'stockupStatusName',
width: '100' width: '100'
}, },
{ {

18
src/option/distribution/distributionStockArticle.js

@ -534,6 +534,10 @@ export default {
prop: 'descriptionGoods', prop: 'descriptionGoods',
search: true search: true
}, },
{
label: '预约状态',
prop: 'reservationStatusName'
},
{ {
label: '仓库', label: '仓库',
prop: 'warehouse', prop: 'warehouse',
@ -560,16 +564,16 @@ export default {
prop: 'completeSetName', prop: 'completeSetName',
search: true search: true
}, },
// {
// label: '服务类型',
// prop: 'typeService',
// search: true
// },
{ {
label: '品牌', label: '品牌',
prop: 'brand', prop: 'brand',
search: true search: true
}, },
{
label: '服务类型',
prop: 'typeService',
search: true
},
{ {
label: '顾客名字', label: '顾客名字',
prop: 'customerName' prop: 'customerName'
@ -578,6 +582,10 @@ export default {
label: '顾客电话', label: '顾客电话',
prop: 'customerTelephone' prop: 'customerTelephone'
}, },
{
label: '可用数量',
prop: 'applyNum'
},
{ {
label: '顾客地址', label: '顾客地址',
prop: 'customerAddress' prop: 'customerAddress'

27
src/router/views/index.js

@ -450,15 +450,15 @@ export default [
// ], // ],
// }, // },
{ {
path: '/distribution/turndelivery/deliveryInfo', path: '/distribution/turndelivery/deliveryMarket',
component: Layout, component: Layout,
redirect: '/distribution/turndelivery/deliveryInfo', redirect: '/distribution/turndelivery/deliveryMarket',
children: [ children: [
{ {
path: '/distribution/turndelivery/deliveryInfo', path: '/distribution/turndelivery/deliveryMarket',
name: 'name', name: 'name',
id:'id', id:'id',
component: () => import('@/views/distribution/turndelivery/deliveryInfo.vue'), component: () => import('@/views/distribution/turndelivery/deliveryMarket.vue'),
}, },
], ],
}, },
@ -719,6 +719,25 @@ export default [
}, },
], ],
}, },
{
path: '/reservation/order_listFrom',
component: Layout,
redirect: '/reservation/order_listFrom',
children: [
{
path: '/distribution/reservation/order_listFrom',
name: '自提明细',
meta: {
i18n: 'dict',
},
props: route => ({
name: route.query.name,
id: route.query.id
}),
component: () => import('@/views/reservation/order_listFrom.vue'),
},
],
},
// { // {
// path: '/distribution/inventory/distributionPrints', // path: '/distribution/inventory/distributionPrints',
// component: Layout, // component: Layout,

2
src/views/distribution/deliverylist/distributionDeliveryListdis.vue

@ -276,7 +276,7 @@ export default {
sortable: true, sortable: true,
}, },
{ {
prop: 'state', prop: 'deliveryStatus',
label: '配送状态', label: '配送状态',
type: 3, type: 3,
values: '', values: '',

2
src/views/distribution/deliverylist/distributionDeliveryListedt.vue

@ -562,7 +562,7 @@ export default {
column: [ column: [
{ {
label: "包条码", label: "包条码",
prop: "packetBarCode", prop: "orderPackageCode",
search: true, search: true,
width:"100px" width:"100px"
}, },

30
src/views/distribution/inventory/delivery/distributionStockArticle.vue

@ -942,7 +942,7 @@ export default {
this.query['completeSet'] = index; this.query['completeSet'] = index;
}else if(row.prop ==='orderStatusName'){ }else if(row.prop ==='orderStatusName'){
this.query['orderStatus'] = index; this.query['orderStatus'] = index;
}else if(row.prop ==='typeName'){ }else if(row.prop ==='typeServerName'){
this.query['typeService'] = index; this.query['typeService'] = index;
}else{ }else{
this.query[row.prop] = index; this.query[row.prop] = index;
@ -972,12 +972,13 @@ export default {
return; return;
} }
let st = false; let st = false;
this.selectionList.some( i =>{ this.selectionList.forEach( i =>{
if(i.stateName === "已预约"){ console.log("yuyuyuuyu",i);
if(i.reservationStatusName === "已预约"){
st = true; st = true;
this.$message.warning(i.orderCode+" - 已预约,请勿重复预约!!!"); this.$message.warning(i.orderCode+" - 已预约,请勿重复预约!!!");
} }
if(i.typeService === 3){ if(i.typeService == 3){
st = true; st = true;
this.$message.warning(i.orderCode+" - 为自提单,无法预约!!!"); this.$message.warning(i.orderCode+" - 为自提单,无法预约!!!");
} }
@ -1012,8 +1013,25 @@ export default {
if (this.selectionList.length === 0) { if (this.selectionList.length === 0) {
this.$message.warning("请选择至少一条数据"); this.$message.warning("请选择至少一条数据");
return; return;
}else{
let st = false;
this.selectionList.forEach( i =>{
console.log("yuyuyuuyu",i);
if(i.reservationStatusName == "已预约"){
st = true;
this.$message.warning(i.orderCode+" - 已预约,无法转为库存品!!!");
}
if(i.typeService == 3){
st = true;
this.$message.warning(i.orderCode+" - 为自提单,无法转为库存品!!!");
}
})
if(st){
return
}
this.getSock();
} }
this.getSock();
/*else if (this.selectionList.length > 1){ /*else if (this.selectionList.length > 1){
this.getSock(); this.getSock();
@ -1169,7 +1187,7 @@ export default {
// return item // return item
// }); // });
}); });
getDictionaryBiz('order_package_status').then(res => { getDictionaryBiz('order_status').then(res => {
this.deliveryOrderStatus = res.data.data; this.deliveryOrderStatus = res.data.data;
this.checkcColumnList("orderStatusName", this.columnList).checkarr=res.data.data.map(item=>{ this.checkcColumnList("orderStatusName", this.columnList).checkarr=res.data.data.map(item=>{
item.value=item.dictKey item.value=item.dictKey

24
src/views/distribution/inventory/delivery/distributionStockArticleDiscuss.vue

@ -632,16 +632,16 @@ export default {
// fixed: false, // fixed: false,
// sortable: true, // sortable: true,
// }, // },
{ // {
prop: 'typeServerName', // prop: 'typeServerName',
label: '服务类型', // label: '',
type: 1, // type: 1,
values: '', // values: '',
width: '150', // width: '150',
checkarr: [], // checkarr: [],
fixed: false, // fixed: false,
sortable: true, // sortable: true,
}, // },
{ {
prop: 'customerName', prop: 'customerName',
label: '顾客名字', label: '顾客名字',
@ -1137,11 +1137,11 @@ export default {
this.height = this.setPx(document.body.clientHeight - 340); this.height = this.setPx(document.body.clientHeight - 340);
getDictionaryBiz('distribution_type').then(res => { getDictionaryBiz('distribution_type').then(res => {
this.distributionType = res.data.data; this.distributionType = res.data.data;
this.checkcColumnList("typeServerName", this.columnList).checkarr=res.data.data.map(item=>{ /* this.checkcColumnList("typeServerName", this.columnList).checkarr=res.data.data.map(item=>{
item.value=item.dictKey item.value=item.dictKey
item.label=item.dictValue item.label=item.dictValue
return item return item
}); });*/
// this.columnList[26].checkarr =res.data.data.map(item=>{ // this.columnList[26].checkarr =res.data.data.map(item=>{
// item.value=item.dictKey // item.value=item.dictKey

31
src/views/distribution/inventory/delivery/distributionStockArticleMarket.vue

@ -983,8 +983,21 @@ export default {
if (this.selectionList.length === 0) { if (this.selectionList.length === 0) {
this.$message.warning("请选择至少一条数据"); this.$message.warning("请选择至少一条数据");
return; return;
}else{
let st = false;
this.selectionList.forEach( i =>{
if(i.reservationStatusName == "已预约"){
st = true;
this.$message.warning(i.orderCode+" - 已预约,无法转为库存品!!!");
}
})
if(st){
return
}
this.getSock();
} }
this.getSock();
/*else if (this.selectionList.length > 1){ /*else if (this.selectionList.length > 1){
this.getSock(); this.getSock();
@ -1137,14 +1150,14 @@ export default {
}, },
init () { init () {
this.height = this.setPx(document.body.clientHeight - 340); this.height = this.setPx(document.body.clientHeight - 340);
// getDictionaryBiz('distribution_type').then(res => { getDictionaryBiz('distribution_type').then(res => {
// // this.distributionType = res.data.data; this.distributionType = res.data.data;
// // this.columnList[26].checkarr =res.data.data.map(item=>{ // this.columnList[26].checkarr =res.data.data.map(item=>{
// // item.value=item.dictKey // item.value=item.dictKey
// // item.label=item.dictValue // item.label=item.dictValue
// // return item // return item
// // }); // });
// }); });
getDictionaryBiz('order_status').then(res => { getDictionaryBiz('order_status').then(res => {
this.deliveryOrderStatus = res.data.data; this.deliveryOrderStatus = res.data.data;
this.checkcColumnList("orderStatusName", this.columnList).checkarr=res.data.data.map(item=>{ this.checkcColumnList("orderStatusName", this.columnList).checkarr=res.data.data.map(item=>{

48
src/views/distribution/inventory/delivery/distributionStockArticleSelf.vue

@ -623,7 +623,7 @@ export default {
sortable: true, sortable: true,
}, },
{ {
prop: 'orderStateName', prop: 'orderStatusName',
label: '订单状态', label: '订单状态',
type: 3, type: 3,
values: '', values: '',
@ -681,16 +681,16 @@ export default {
// fixed: false, // fixed: false,
// sortable: true, // sortable: true,
// }, // },
{ // {
prop: 'typeServerName', // prop: 'typeServerName',
label: '服务类型', // label: '',
type: 1, // type: 1,
values: '', // values: '',
width: '150', // width: '150',
checkarr: [], // checkarr: [],
fixed: false, // fixed: false,
sortable: true, // sortable: true,
}, // },
{ {
prop: 'notification', prop: 'notification',
label: '通知状态', label: '通知状态',
@ -1002,8 +1002,8 @@ export default {
this.query['freezeStatus'] = index; this.query['freezeStatus'] = index;
}else if(row.prop ==='completeSetName'){ }else if(row.prop ==='completeSetName'){
this.query['completeSet'] = index; this.query['completeSet'] = index;
}else if(row.prop ==='orderStateName'){ }else if(row.prop ==='orderStatusName'){
this.query['state'] = index; this.query['orderStatus'] = index;
}else if(row.prop ==='typeName'){ }else if(row.prop ==='typeName'){
this.query['typeService'] = index; this.query['typeService'] = index;
}else{ }else{
@ -1065,6 +1065,16 @@ export default {
this.$message.warning("请选择至少一条数据"); this.$message.warning("请选择至少一条数据");
return; return;
}else { }else {
let st = false;
this.selectionList.forEach( i =>{
if(i.reservationStatusName == "已预约"){
st = true;
this.$message.warning(i.orderCode+" - 已预约,无法转为库存品!!!");
}
})
if(st){
return
}
this.getSock(); this.getSock();
} }
@ -1263,19 +1273,13 @@ export default {
this.height = this.setPx(document.body.clientHeight - 340); this.height = this.setPx(document.body.clientHeight - 340);
getDictionaryBiz('distribution_type').then(res => { getDictionaryBiz('distribution_type').then(res => {
this.distributionType = res.data.data; this.distributionType = res.data.data;
this.checkcColumnList("typeServerName", this.columnList).checkarr=res.data.data.map(item=>{ /*this.checkcColumnList("typeServerName", this.columnList).checkarr=res.data.data.map(item=>{
item.value=item.dictKey item.value=item.dictKey
item.label=item.dictValue item.label=item.dictValue
return item return item
}); });*/
// this.columnList[26].checkarr =res.data.data.map(item=>{
// item.value=item.dictKey
// item.label=item.dictValue
// return item
// });
}); });
getDictionaryBiz('order_package_status').then(res => { getDictionaryBiz('order_status').then(res => {
this.deliveryOrderStatus = res.data.data; this.deliveryOrderStatus = res.data.data;
this.checkcColumnList("orderStatusName", this.columnList).checkarr=res.data.data.map(item=>{ this.checkcColumnList("orderStatusName", this.columnList).checkarr=res.data.data.map(item=>{
item.value=item.dictKey item.value=item.dictKey

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

@ -184,7 +184,15 @@
</template> </template>
<script> <script>
import { getList, getDetail, add, update, remove,addStock } from "@/api/distribution/distributionStockArticle"; import {
getList,
getDetail,
add,
update,
remove,
addStock,
getQueryQRCode
} from '@/api/distribution/distributionStockArticle';
import { getListOwn } from "@/api/distribution/distributionParcelList"; import { getListOwn } from "@/api/distribution/distributionParcelList";
import { addCallDelivery } from "@/api/distribution/distrilbutionCallDelivery"; import { addCallDelivery } from "@/api/distribution/distrilbutionCallDelivery";
import { addClient } from "@/api/distribution/distributionClientMessage"; import { addClient } from "@/api/distribution/distributionClientMessage";
@ -528,8 +536,13 @@ export default {
// this.view = true; // this.view = true;
// this.box = true; // this.box = true;
this.dialogVisible = true; this.dialogVisible = true;
getDetail(row.id).then(res => { let qr ={
this.form = res.data.data; id : row.id,
qrCode: row.orderPackageCode
}
getQueryQRCode(qr).then(res => {
// this.form = res.data.data;
console.log("查看二维码",res.data.data);
}); });

8
src/views/distribution/reservation/atlas.vue

@ -137,7 +137,7 @@ export default {
} }
details.loading = true; details.loading = true;
getReservationAddr(ids).then(res => { getReservationAddr(ids).then(res => {
res.data.data.forEach(item => { res.data.data.records.forEach(item => {
details.ids.split(',').forEach(id => { details.ids.split(',').forEach(id => {
if (item.id == id) { if (item.id == id) {
details.reservationIds.push(item.id); details.reservationIds.push(item.id);
@ -145,9 +145,9 @@ export default {
}); });
}); });
console.log(details.reservationIds); console.log(details.reservationIds);
details.reservationData = res.data.data; details.reservationData = res.data.data.records;
details.addressList = res.data.data; details.addressList = res.data.data.records;
}); });
details.loading = false; details.loading = false;
} }
@ -155,7 +155,7 @@ export default {
console.log('>>>>>>>>>>>', details.reservationIds); console.log('>>>>>>>>>>>', details.reservationIds);
let ids = details.reservationIds.join(','); let ids = details.reservationIds.join(',');
router.push({ router.push({
path: '/distribution/turndelivery/deliveryInfo', path: '/distribution/turndelivery/deliveryMarket',
query: { query: {
id: ids, id: ids,
name:'市配计划' name:'市配计划'

167
src/views/distribution/reservation/reservation.vue

@ -96,7 +96,7 @@
<el-button size="small" @click="cancelReservation(slotProps.scope)">取消预约</el-button> <el-button size="small" @click="cancelReservation(slotProps.scope)">取消预约</el-button>
<br/> <br/>
<!-- ${{slotProps.scope}}--> <!-- ${{slotProps.scope}}-->
<el-button v-if="this.query.reservationStatus==='1'?true:false " type="small" @click="confirmReservation(slotProps.scope)">确认预约</el-button> <el-button v-if="this.query.reservationStatus==='1'?true:false " size="small" @click="confirmReservation(slotProps.scope)">确认预约</el-button>
</template> </template>
</tablecmt> </tablecmt>
<!-- <el-popover :visible="visible" placement="top-start" :width="160">--> <!-- <el-popover :visible="visible" placement="top-start" :width="160">-->
@ -242,6 +242,7 @@
import { getListOwn } from '@/api/system/user'; import { getListOwn } from '@/api/system/user';
import { getListTeam } from '@/api/basicdata/basicdataTeamGroup'; import { getListTeam } from '@/api/basicdata/basicdataTeamGroup';
import { stockUp } from '@/api/basicdata/basicdataGoodsArea'; import { stockUp } from '@/api/basicdata/basicdataGoodsArea';
import dayjs from 'dayjs';
export default { export default {
data() { data() {
@ -278,6 +279,16 @@
sortable: true, sortable: true,
head: false head: false
}, },
{
prop: 'serviceNumber',
label: '服务号',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true
},
{ {
prop: 'consignee', prop: 'consignee',
label: '收货人', label: '收货人',
@ -301,19 +312,9 @@
{ {
prop: 'deliveryPhone', prop: 'deliveryPhone',
label: '收件人电话', label: '收件人电话',
type: 3, type: 2,
values: '', values: '',
width: '180', width: '180',
checkarr: [
{
label: '1231213',
value: '123121123'
},
{
label: '112121',
value: '12312123111123'
}
],
fixed: false, fixed: false,
sortable: true sortable: true
}, },
@ -329,18 +330,55 @@
}, },
{ {
prop: 'periodOfTime', prop: 'periodOfTime',
label: '时段1',
type: 3,
values: '',
width: '180',
checkarr: [
{
label: '上午',
value: '1'
},
{
label: '下午',
value: '2'
},
{
label: '全天',
value: '3'
},
],
fixed: false,
sortable: true,
head:true,
},
{
prop: 'periodOfTimeName',
label: '时段', label: '时段',
type: 4, type: 3,
values: '', values: '',
width: '180', width: '180',
checkarr: [], checkarr: [
{
label: '上午',
value: '1'
},
{
label: '下午',
value: '2'
},
{
label: '全天',
value: '3'
},
],
fixed: false, fixed: false,
sortable: true sortable: true
}, },
{ {
prop: 'deliveryWay', prop: 'deliveryWay',
label: '配送方式', label: '配送方式',
type: 2, type: 3,
values: '', values: '',
width: '150', width: '150',
checkarr: [], checkarr: [],
@ -348,18 +386,38 @@
sortable: true, sortable: true,
head: true head: true
}, },
// {
// prop: 'deliveryType',
// label: '',
// type: 3,
// values: '',
// width: '150',
// checkarr: [
// {
// label: '',
// value: '1',
// },
// {
// label: '',
// value: '2'
// },
// ],
// fixed: false,
// sortable: true
// },
{ {
prop: 'deliveryType', prop: 'serveType',
label: '配送类型', label: '服务类型1',
type: 2, type: 2,
values: '', values: '',
width: '150', width: '150',
checkarr: [], checkarr: [],
fixed: false, fixed: false,
sortable: true sortable: true,
head:true,
}, },
{ {
prop: 'serveType', prop: 'serveTypeName',
label: '服务类型', label: '服务类型',
type: 2, type: 2,
values: '', values: '',
@ -389,8 +447,8 @@
sortable: true sortable: true
}, },
{ {
prop: 'collectFee', prop: 'collectionFee',
label: '到付运费', label: '待收货款',
type: 2, type: 2,
values: '', values: '',
width: '150', width: '150',
@ -410,7 +468,7 @@
}, },
{ {
prop: 'replaceFee', prop: 'replaceFee',
label: '代运费', label: '代运费',
type: 2, type: 2,
values: '', values: '',
width: '150', width: '150',
@ -418,25 +476,37 @@
fixed: false, fixed: false,
sortable: true sortable: true
}, },
// {
// prop: 'fee',
// label: '',
// type: 2,
// values: '',
// width: '150',
// checkarr: [],
// fixed: false,
// sortable: true
// },
{ {
prop: 'fee', prop: 'reservationStatus',
label: '总费用', label: '预约信息状态1',
type: 2, type: 4,
values: '', values: '',
width: '150', width: '180',
checkarr: [], checkarr: [],
fixed: false, fixed: false,
sortable: true sortable: true,
hide: true,
}, },
{ {
prop: 'reservationStatus', prop: 'reservationStatusName',
label: '预约信息状态', label: '预约信息状态',
type: 4, type: 1,
values: '', values: '',
width: '180', width: '180',
checkarr: [], checkarr: [],
fixed: false, fixed: false,
sortable: true sortable: true,
}, },
{ {
prop: 'orderSource', prop: 'orderSource',
@ -458,16 +528,16 @@
fixed: false, fixed: false,
sortable: true sortable: true
}, },
{ // {
prop: 'goodsAreaName', // prop: 'goodsAreaName',
label: '备货区', // label: '',
type: 2, // type: 2,
values: '', // values: '',
width: '150', // width: '150',
checkarr: [], // checkarr: [],
fixed: false, // fixed: false,
sortable: true // sortable: true
}, // },
// { // {
// prop: 'goodsAreaId', // prop: 'goodsAreaId',
// label: '', // label: '',
@ -489,16 +559,7 @@
// fixed: false, // fixed: false,
// sortable: true, // sortable: true,
// }, // },
{
prop: 'serviceNumber',
label: '服务号',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true
},
// { // {
// prop: 'notes', // prop: 'notes',
// label: '', // label: '',
@ -972,8 +1033,9 @@
} }
let data = this.selectionList; let data = this.selectionList;
let a=[]; let a=[];
console.log(">>>>>>>>>>>>>",data);
data.forEach(d=>{ data.forEach(d=>{
if (d.stockupStatus !== "未备货"){ if (d.stockupStatus === "1" ){
a.push(d.reservationCode); a.push(d.reservationCode);
} }
}) })
@ -982,6 +1044,8 @@
return; return;
} }
this.dialogFormCustomer = true; this.dialogFormCustomer = true;
this.info.stockupDate = dayjs().format('YYYY-MM-DD HH:mm:ss')
this.getFork(); this.getFork();
this.getTeam(); this.getTeam();
}, },
@ -994,7 +1058,6 @@
this.info.goodsAreaName = item.dictValue this.info.goodsAreaName = item.dictValue
} }
}) })
confirms(this.info).then(res => { confirms(this.info).then(res => {
this.$message({ this.$message({
type: 'success', type: 'success',

8
src/views/distribution/reservation/reservationDetails.vue

@ -11,15 +11,15 @@
<el-col :xl="5" :lg="7" :md="8" :sm="24"> <el-col :xl="5" :lg="7" :md="8" :sm="24">
<span>预约单号{{reservationData.reservationCode}} </span> <span>预约单号{{reservationData.reservationCode}} </span>
</el-col> </el-col>
<el-col :xl="5" :lg="7" :md="8" :sm="24"> <!-- <el-col :xl="5" :lg="7" :md="8" :sm="24">-->
<span>商场名称{{reservationData.mallName}} </span> <!-- <span>商场名称{{reservationData.mallName}} </span>-->
</el-col> <!-- </el-col>-->
<el-col :xl="5" :lg="7" :md="8" :sm="24"> <el-col :xl="5" :lg="7" :md="8" :sm="24">
<span>预约时间{{reservationData.reservationDate}} </span> <span>预约时间{{reservationData.reservationDate}} </span>
</el-col> </el-col>
<el-col :xl="3" :lg="7" :md="8" :sm="24"> <el-col :xl="3" :lg="7" :md="8" :sm="24">
<!-- <span>服务类型{{reservationData.deliveryType}}</span>--> <!-- <span>服务类型{{reservationData.deliveryType}}</span>-->
<span>市配</span> <span>服务类型市配</span>
</el-col> </el-col>
</el-row> </el-row>
<el-divider>收货人信息</el-divider> <el-divider>收货人信息</el-divider>

233
src/views/distribution/reservation/reservationFrom.vue

@ -5,7 +5,8 @@
<el-form ref="form" <el-form ref="form"
:model="form" :model="form"
prop="consignee" prop="consignee"
label-width="80px"> label-width="80px"
:rules="reservationRules">
<el-row> <el-row>
<el-col :span="10"> <el-col :span="10">
<el-form-item label="收货人:" prop="consignee" label-width="100px"> <el-form-item label="收货人:" prop="consignee" label-width="100px">
@ -31,7 +32,7 @@
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="10"> <el-col :span="10">
<el-form-item label="时&emsp;&emsp;段:" prop="deliveryAddress" label-width="100px"> <el-form-item label="时&emsp;&emsp;段:" prop="periodOfTime" label-width="100px">
<el-radio-group v-model="form.periodOfTime" v-for="item in this.periodOfTimeData"> <el-radio-group v-model="form.periodOfTime" v-for="item in this.periodOfTimeData">
<el-radio <el-radio
@ -54,8 +55,8 @@
<el-col :span="10"> <el-col :span="10">
<el-form-item label="配送类型:" prop="serveType" label-width="100px"> <el-form-item label="配送类型:" prop="serveType" label-width="100px">
<!-- v-for="item in this.deliveryTypeData"--> <!-- v-for="item in this.deliveryTypeData"-->
<el-radio-group v-model="form.deliveryType" > <el-radio-group v-model="form.deliveryType">
<el-radio <el-radio
:label="'2'" :label="'2'"
:value="'2'">市配&emsp; :value="'2'">市配&emsp;
@ -68,19 +69,14 @@
<el-row> <el-row>
<el-col :span="10"> <el-col :span="10">
<el-form-item label="备注:" prop="orderSource" label-width="100px" style="width: 100%"> <el-form-item label="代收运费:" prop="replaceFee" label-width="100px">
<el-input <el-input v-model="form.replaceFee" :disabled="true"/>
type="textarea"
:rows="2"
placeholder="请输入内容"
v-model="form.remarks">
</el-input>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="10"> <el-col :span="10">
<el-form-item label="配送方式:" prop="serveType" label-width="100px"> <el-form-item label="配送方式:" prop="serveType" label-width="100px">
<!-- v-for="item in this.deliveryWayData"--> <!-- v-for="item in this.deliveryWayData"-->
<el-radio-group v-model="form.deliveryWay" > <el-radio-group v-model="form.deliveryWay">
<el-radio :label="'1'" <el-radio :label="'1'"
:value="'1'">送货&emsp; :value="'1'">送货&emsp;
</el-radio> </el-radio>
@ -92,14 +88,38 @@
</el-row> </el-row>
<el-row> <el-row>
<!-- <el-col :span="10">-->
<!-- <el-form-item label="到付运费:" prop="collectFee" label-width="100px">-->
<!-- <el-input type="number" v-model="form.collectFee" :disabled="true"/>-->
<!-- </el-form-item>-->
<!-- </el-col>-->
<el-col :span="10"> <el-col :span="10">
<el-form-item label="到付运费:" prop="collectFee" label-width="100px"> <el-form-item label="待收货款:" prop="collectionFee" label-width="100px">
<el-input type="number" v-model="form.collectFee" :disabled="true"/> <el-input type="number" v-model="form.collectionFee"/>
</el-form-item> </el-form-item>
</el-col>
<el-col :span="10">
<el-form-item label="加&emsp;&emsp;急:" prop="serveType" label-width="100px">
<!-- v-for="item in this.deliveryWayData"-->
<el-radio-group v-model="form.isUrgent" v-for="item in this.whetherData">
<el-radio
:label="item.dictKey"
:value="item.dictKey">{{item.dictValue}}&emsp;
</el-radio>
</el-radio-group>
</el-form-item>
</el-col> </el-col>
<el-col :span="10"> <el-col :span="10">
<el-form-item label="增值服务类型:" prop="serveType" label-width="100px"> <el-form-item label="其他费用:" prop="collectFee" label-width="100px">
<el-input v-model="form.otherFee" placeholder="请输入其他费用"/>
</el-form-item>
</el-col>
<el-col :span="10">
<el-form-item label="增值服务类型:" prop="serveType" label-width="120px">
<el-checkbox-group v-model="serveType" v-for="item in this.addvalueServeTypeData"> <el-checkbox-group v-model="serveType" v-for="item in this.addvalueServeTypeData">
<el-checkbox :label="item.dictKey" <el-checkbox :label="item.dictKey"
:value="item.dictKey">{{item.dictValue}}&emsp; :value="item.dictKey">{{item.dictValue}}&emsp;
@ -107,16 +127,19 @@
</el-checkbox-group> </el-checkbox-group>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="10"> <el-col :span="10">
<el-form-item label="代收运费:" prop="replaceFee" label-width="100px"> <el-form-item label="备注:" prop="orderSource" label-width="100px" style="width: 100%">
<el-input v-model="form.replaceFee" :disabled="true"/> <el-input
</el-form-item> type="textarea"
</el-col> :rows="1"
<el-col :span="10"> placeholder="请输入内容"
<el-form-item label="其他费用:" prop="collectFee" label-width="100px"> v-model="form.remarks">
<el-input v-model="form.otherFee" placeholder="请输入其他费用"/> </el-input>
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
</el-form> </el-form>
@ -154,9 +177,9 @@
@click="viewStockArticlePackage(row)">查看包件 @click="viewStockArticlePackage(row)">查看包件
</el-button> </el-button>
<!-- 2023 07 25 取消增值服务 --> <!-- 2023 07 25 取消增值服务 -->
<!-- <el-button type="primary" link icon="el-icon-delete" @click="addvalueServe(row)">增值服务--> <!-- <el-button type="primary" link icon="el-icon-delete" @click="addvalueServe(row)">增值服务-->
<!-- </el-button>--> <!-- </el-button>-->
<el-button type="primary" link icon="el-icon-edit" @click="removeStockArticle(row)">移除 <el-button type="primary" link icon="el-icon-edit" @click="removeStockArticle(row)">移除
</el-button> </el-button>
@ -210,8 +233,8 @@
title="在库订单信息" title="在库订单信息"
width="100%" width="100%"
:model="addvalue" :model="addvalue"
> >
<!-- :before-close="handleClose"--> <!-- :before-close="handleClose"-->
<el-form :inline="true" :model="query"> <el-form :inline="true" :model="query">
<el-form-item label="订单自编号:"> <el-form-item label="订单自编号:">
<el-input v-model="query.orderCode" placeholder="请输入商场名称"></el-input> <el-input v-model="query.orderCode" placeholder="请输入商场名称"></el-input>
@ -271,8 +294,8 @@
v-model="stockListShow" v-model="stockListShow"
title="库存品信息" title="库存品信息"
width="100%" width="100%"
> >
<!-- :before-close="handleClose"--> <!-- :before-close="handleClose"-->
<el-form :inline="true" :model="query"> <el-form :inline="true" :model="query">
<el-form-item label="商场名称:"> <el-form-item label="商场名称:">
<el-input v-model="query.marketName" placeholder="请输入服务类型"></el-input> <el-input v-model="query.marketName" placeholder="请输入服务类型"></el-input>
@ -487,6 +510,7 @@
addvalueServeTypeData: [], addvalueServeTypeData: [],
// //
deliveryWayData: [], deliveryWayData: [],
whetherData:[],
// //
deliveryTypeData: [], deliveryTypeData: [],
// //
@ -521,7 +545,21 @@
stockListShow: false, stockListShow: false,
isaddvalue: false, isaddvalue: false,
packageData: [], packageData: [],
packageList: [] packageList: [],
reservationRules: {
consignee: [
{ required: true, message: '请填写收货人名称!!!', trigger: 'change' }
],
deliveryAddress: [
{ required: true, message: '请填写收货人地址!!!', trigger: 'blur' }
],
deliveryPhone: [
{ required: true, message: '请填写收货人电话!!!', trigger: 'change' }
],
// enableStatus: [
// { required: true, message: '!', trigger: 'change' }
// ],
},
}; };
}, },
created() { created() {
@ -592,7 +630,7 @@
params.id = this.orderInfo.id; params.id = this.orderInfo.id;
params.addvalue = addvalueInfos; params.addvalue = addvalueInfos;
params.relatedId = 1; params.relatedId = 1;
console.log("params>>>>>>>>>>>>",params); console.log('params>>>>>>>>>>>>', params);
addIncrement(params).then(res => { addIncrement(params).then(res => {
this.dialogVisible = false; this.dialogVisible = false;
this.$message({ this.$message({
@ -604,27 +642,64 @@
}, },
// //
handleAddOrder() { handleAddOrder() {
this.query.typeService=2; console.log('$$$$$$', this.reservationId);
this.query.genre = "1"; if (this.reservationId) {
let page =this.page; //使使
let params = {};
selectStockArticleList(page.currentPage,page.pageSize,Object.assign(params,this.query)).then(res=>{ this.query.typeService = 2;
const data = res.data.data; this.query.genre = '1';
data.records.forEach(item => { //
item.reservationNum = item.handQuantity;
let page = this.page;
let params = {};
selectStockArticleList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
console.log('$$$$$$$$>', res);
let orderData = res.data.data;
console.log('$$$$$$$$', orderData);
orderData.records.forEach((item, index) => {
item.reservationNum = item.handQuantity;
// if ()
//
// if (item.reservationStatus !== '30' ){
// a.push(item)
// }
});
this.page.total = orderData.total;
this.stockArticleInfo = orderData;
this.loading = false;
this.selectionClear();
}); });
this.page.total = data.total; } else {
this.stockArticleInfo = data.records; this.query.typeService = 2;
this.loading = false; this.query.genre = '1';
this.selectionClear(); let page = this.page;
}) let params = {};
this.selectionList = []; selectStockArticleList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
let data = res.data.data;
let a = [];
console.log('$$$$$$$$', data);
data.records.forEach((item, index) => {
item.reservationNum = item.handQuantity;
//
if (item.reservationStatus !== '30') {
a.push(item);
}
});
console.log('$$$$$$$$', a);
this.page.total = data.total;
this.stockArticleInfo = a;
this.loading = false;
this.selectionClear();
});
this.selectionList = [];
}
this.orderShow = true; this.orderShow = true;
}, },
handleAddInventory() { handleAddInventory() {
let page =this.page; let page = this.page;
let params = {}; let params = {};
this.query.serviceType = "2"; this.query.serviceType = '2';
getInventoryList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => { getInventoryList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
const inventoryList = res.data.data; const inventoryList = res.data.data;
inventoryList.records.forEach(item => { inventoryList.records.forEach(item => {
@ -687,6 +762,9 @@
getDictionaryBiz('period_of_time').then(res => { getDictionaryBiz('period_of_time').then(res => {
this.periodOfTimeData = res.data.data; this.periodOfTimeData = res.data.data;
}); });
getDictionaryBiz('yes_no').then(res => {
this.whetherData = res.data.data;
});
}, },
addvalueServe(row) { addvalueServe(row) {
// //
@ -721,12 +799,12 @@
}); });
}, },
// //
searchStockArticle(){ searchStockArticle() {
let params={}; let params = {};
let page = this.page; let page = this.page;
this.query.typeService=2; this.query.typeService = 2;
this.query.genre=1; this.query.genre = 1;
selectStockArticleList(page.currentPage,page.pageSize,Object.assign(params,this.query)).then(res=>{ selectStockArticleList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
const data = res.data.data; const data = res.data.data;
data.records.forEach(item => { data.records.forEach(item => {
item.reservationNum = item.handQuantity; item.reservationNum = item.handQuantity;
@ -735,10 +813,10 @@
this.stockArticleInfo = data.records; this.stockArticleInfo = data.records;
this.loading = false; this.loading = false;
this.selectionClear(); this.selectionClear();
}) });
}, },
searchStockList(){ searchStockList() {
let params={}; let params = {};
let page = this.page; let page = this.page;
this.query.serviceType = 2; this.query.serviceType = 2;
getInventoryList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => { getInventoryList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
@ -752,14 +830,14 @@
this.selectionClear(); this.selectionClear();
}); });
}, },
stockArticleSearchReset(){ stockArticleSearchReset() {
this.selectionList = []; this.selectionList = [];
this.query={}; this.query = {};
this.handleAddOrder(); this.handleAddOrder();
}, },
stockListSearchReset(){ stockListSearchReset() {
this.selectionList = []; this.selectionList = [];
this.query={}; this.query = {};
this.handleAddInventory(); this.handleAddInventory();
}, },
onSubmitPackage() { onSubmitPackage() {
@ -830,17 +908,17 @@
// //
// this.form.packageList = this.packageList; // this.form.packageList = this.packageList;
console.log(">>>>>>>>",this.form); console.log('>>>>>>>>', this.form);
if (operation){ if (operation) {
if (this.reservationId){ if (this.reservationId) {
update(this.form).then(()=>{ update(this.form).then(() => {
this.$router.go(-1); this.$router.go(-1);
this.$message({ this.$message({
type: 'success', type: 'success',
message: '操作成功!' message: '操作成功!'
}); });
}) });
}else { } else {
add(this.form).then(() => { add(this.form).then(() => {
this.$router.go(-1); this.$router.go(-1);
this.$message({ this.$message({
@ -994,7 +1072,7 @@
}, },
selectionClear() { selectionClear() {
this.selectionList = []; this.selectionList = [];
this.query={}; this.query = {};
// this.$refs.table.clearSelection(); // this.$refs.table.clearSelection();
}, },
currentChange(currentPage) { currentChange(currentPage) {
@ -1007,10 +1085,13 @@
}, },
onLoad(page, params = {}) { onLoad(page, params = {}) {
this.loading = true; this.loading = true;
this.form.deliveryType = "1"; this.form.deliveryType = '1';
this.form.deliveryWay = "1"; this.form.deliveryWay = '1';
this.form.periodOfTime = "3"; this.form.periodOfTime = '3';
this.form.otherFee = 0 ; this.form.otherFee = 0;
this.form.replaceFee = 0;
this.form.collectionFee = 0;
this.form.isUrgent = "1";
this.form.reservationDate = new Date(); this.form.reservationDate = new Date();
if (this.orderIds) { if (this.orderIds) {
getStockArticleList(this.orderIds).then(res => { getStockArticleList(this.orderIds).then(res => {
@ -1042,9 +1123,9 @@
const reservation = res.data.data; const reservation = res.data.data;
this.orderData = reservation.stockArticleList; this.orderData = reservation.stockArticleList;
this.inventoryData = reservation.inventoryList; this.inventoryData = reservation.inventoryList;
this.inventoryData.forEach(item=>{ this.inventoryData.forEach(item => {
item.applyNum =item.quantityStock - item.quantityOccupied; item.applyNum = item.quantityStock - item.quantityOccupied;
}) });
this.form.deliveryType = reservation.deliveryType; this.form.deliveryType = reservation.deliveryType;
this.form.periodOfTime = reservation.periodOfTime; this.form.periodOfTime = reservation.periodOfTime;
if (reservation.serveType) { if (reservation.serveType) {
@ -1055,8 +1136,8 @@
} }
this.form = reservation; this.form = reservation;
}); });
}else { } else {
this.form.deliveryType = "2"; this.form.deliveryType = '2';
} }
this.loading = false; this.loading = false;

70
src/views/distribution/stockup/distributionStockup.vue

@ -26,7 +26,7 @@
<div class="avue-crud__left"> <div class="avue-crud__left">
<!-- <el-button type="primary" icon="el-icon-plus" @click="handleAdd"> </el-button> <!-- <el-button type="primary" icon="el-icon-plus" @click="handleAdd"> </el-button>
<el-button type="danger" icon="el-icon-delete" @click="handleDelete" plain> </el-button>--> <el-button type="danger" icon="el-icon-delete" @click="handleDelete" plain> </el-button>-->
<el-button type="primary" text icon="el-icon-edit" @click="handleForklift" >指派货信息</el-button> <el-button type="primary" text icon="el-icon-edit" @click="handleForklift" >指派货信息</el-button>
</div> </div>
<!-- 头部右侧按钮模块 --> <!-- 头部右侧按钮模块 -->
<div class="avue-crud__right"> <div class="avue-crud__right">
@ -75,7 +75,7 @@
</el-pagination> </el-pagination>
</div> </div>
</el-row> </el-row>
<el-dialog v-model="dialogFormCustomer" title="指派叉车"> <el-dialog v-model="dialogFormCustomer" title="指派备货信息">
<el-form :model="form"> <el-form :model="form">
<el-form-item label="备货时间" :label-width="formLabelWidth" v-if="this.num=='2'"> <el-form-item label="备货时间" :label-width="formLabelWidth" v-if="this.num=='2'">
<el-date-picker style="width: 25%;" <el-date-picker style="width: 25%;"
@ -116,6 +116,9 @@
</el-option> </el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item label="出库时间" prop="outboundDate" :label-width="formLabelWidth">
<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> </el-form>
<template #footer> <template #footer>
<span class="dialog-footer"> <span class="dialog-footer">
@ -248,6 +251,17 @@ export default {
sortable: true, sortable: true,
head: false, head: false,
}, },
{
prop: 'stockupDate',
label: '出库时间',
type: 4,
values: '',
width: '150',
checkarr: [],
fixed: true,
sortable: true,
head: false,
},
{ {
prop: 'stockupUser', prop: 'stockupUser',
label: '备货人', label: '备货人',
@ -295,6 +309,7 @@ export default {
fixed: false, fixed: false,
sortable: true, sortable: true,
}, },
{ {
prop: 'assignStatusName', prop: 'assignStatusName',
label: '指派状态', label: '指派状态',
@ -316,7 +331,7 @@ export default {
}, },
{ {
prop: 'stockipAllocation', prop: 'stockipAllocation',
label: '备货库位', label: '所在库位',
type: 2, type: 2,
values: '', values: '',
width: '150', width: '150',
@ -345,7 +360,7 @@ export default {
fixed: false, fixed: false,
sortable: true, sortable: true,
}, },
{ /*{
prop: 'typeServiceName', prop: 'typeServiceName',
label: '服务类型', label: '服务类型',
type: 3, type: 3,
@ -354,7 +369,7 @@ export default {
checkarr: [], checkarr: [],
fixed: false, fixed: false,
sortable: true, sortable: true,
}, },*/
{ {
prop: 'loaderName', prop: 'loaderName',
label: '装卸班组', label: '装卸班组',
@ -713,7 +728,7 @@ export default {
this.dialogFormCustomer = false; this.dialogFormCustomer = false;
}) })
}else if(this.num == '2'){ }else if(this.num == '2'){
console.log(">>>>>>>",this.formOne); console.log("修改提交",this.formOne);
update(Object.assign(this.formOne,this.form)).then(res =>{ update(Object.assign(this.formOne,this.form)).then(res =>{
console.log(">>>>>>>",this.formOne); console.log(">>>>>>>",this.formOne);
this.onLoad(this.page); this.onLoad(this.page);
@ -732,12 +747,13 @@ export default {
getDictionaryBiz('distribution_type').then(res => { getDictionaryBiz('distribution_type').then(res => {
// console.log("8908098080",res.data.data); // console.log("8908098080",res.data.data);
this.distributionType = res.data.data; this.distributionType = res.data.data;
this.columnList[8].checkarr =res.data.data.map(item=>{ // this.columnList[8].checkarr =res.data.data.map(item=>{
item.value=item.dictKey // item.value=item.dictKey
item.label=item.dictValue // item.label=item.dictValue
return item // return item
}); // });
}); });
this.onLoad(this.page); this.onLoad(this.page);
}, },
searchHide () { searchHide () {
@ -884,23 +900,23 @@ export default {
let a = await getUser(i.forkliftId); let a = await getUser(i.forkliftId);
i.forkliftId =a.data.data.name; i.forkliftId =a.data.data.name;
}*/ }*/
let s =this.distributionType.find(d => d.dictKey == i.typeService); // let s =this.distributionType.find(d => d.dictKey == i.typeService);
// console.log("sssss",s); // // console.log("sssss",s);
i.typeServiceName = s.dictValue; // i.typeServiceName = s.dictValue;
i.loader = i.groupName; i.loader = i.groupName;
i.stockupArea = i.headline; // i.stockupArea = i.headline;
if(i.assignStatus == '2'){ // if(i.assignStatus == '2'){
i.assignStatusName = '已指派'; // i.assignStatusName = '';
}else{ // }else{
i.assignStatusName = '未指派'; // i.assignStatusName = '';
} // }
if(i.stockupStatus == '2'){ // if(i.stockupStatus == '2'){
i.stockupStatusName = '待备货'; // i.stockupStatusName = '';
}else if(i.stockupStatus == '3'){ // }else if(i.stockupStatus == '3'){
i.stockupStatusName = '已备货'; // i.stockupStatusName = '';
}else{ // }else{
i.stockupStatusName = '未备货'; // i.stockupStatusName = '';
} // }
}); });
this.selectionClear(); this.selectionClear();
this.loading = false; this.loading = false;

15
src/views/distribution/stockup/distributionStockupDetails.vue

@ -675,7 +675,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 getParcelListOwn(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;
this.data1.forEach(i =>{ this.data1.forEach(i =>{
@ -691,7 +691,7 @@ export default {
// //
async getOrderList(page){ async getOrderList(page){
let a =await getDetailOrderOwn(page.currentPage,page.pageSize,{id :this.$route.query.id}); let a =await getDetailOrderOwn(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.dataPare = data.records; this.dataPare = data.records;
this.dataPare.forEach(i =>{ this.dataPare.forEach(i =>{
@ -707,7 +707,7 @@ export default {
// //
async getInventoryList(page){ async getInventoryList(page){
let a =await getDetailInventoryOwn(page.currentPage,page.pageSize,{id :this.$route.query.id}); let a =await getDetailInventoryOwn(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.data2 = data.records; this.data2 = data.records;
this.data2.forEach(i =>{ this.data2.forEach(i =>{
@ -722,11 +722,18 @@ export default {
}, },
// //
getOwnServer(row,name,list){ getOwnServer(row,name,list){
// console.log(">>>>>",row,name,list);
console.log(">>>>>",row); console.log(">>>>>",row);
console.log(">>>>>",name);
console.log(">>>>>",list);
row.forEach( i =>{ row.forEach( i =>{
console.log(i,"-=-=-=-"); console.log(i,"-=-=-=-");
let a = list.find( s => s.dictKey == i); let a = list.find( s => s.dictKey == i);
name += a.dictValue+' '; // console.log("aaaa",a);
if(!!a){
name += a.dictValue;
}
}); });
return name; return name;
}, },

43
src/views/distribution/stockup/distributionStockupDiscuss.vue

@ -55,7 +55,7 @@
<div class="avue-crud__left"> <div class="avue-crud__left">
<!-- <el-button type="primary" icon="el-icon-plus" @click="handleAdd"> </el-button> <!-- <el-button type="primary" icon="el-icon-plus" @click="handleAdd"> </el-button>
<el-button type="danger" icon="el-icon-delete" @click="handleDelete" plain> </el-button>--> <el-button type="danger" icon="el-icon-delete" @click="handleDelete" plain> </el-button>-->
<el-button type="primary" text icon="el-icon-edit" @click="handleForklift" >指派货信息</el-button> <el-button type="primary" text icon="el-icon-edit" @click="handleForklift" >指派货信息</el-button>
</div> </div>
<!-- 头部右侧按钮模块 --> <!-- 头部右侧按钮模块 -->
<div class="avue-crud__right"> <div class="avue-crud__right">
@ -104,7 +104,7 @@
</el-pagination> </el-pagination>
</div> </div>
</el-row> </el-row>
<el-dialog v-model="dialogFormCustomer" title="指派叉车"> <el-dialog v-model="dialogFormCustomer" title="指派备货信息">
<el-form :model="form"> <el-form :model="form">
<el-form-item label="备货时间" :label-width="formLabelWidth" v-if="this.num=='2'"> <el-form-item label="备货时间" :label-width="formLabelWidth" v-if="this.num=='2'">
<el-date-picker style="width: 25%;" <el-date-picker style="width: 25%;"
@ -145,12 +145,15 @@
</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-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> </el-form>
<template #footer> <template #footer>
<span class="dialog-footer"> <span class="dialog-footer">
<el-button @click="dialogFormCustomer = false">取消</el-button> <el-button @click="dialogFormCustomer = false">取消</el-button>
<!-- <el-button type="primary" @click="dialogFormVisible = false"> 确定 </el-button>--> <!-- <el-button type="primary" @click="dialogFormVisible = false"> 确定 </el-button>-->
<el-button type="primary" @click="callFordelivery()"> 确定 </el-button> <el-button type="primary" @click="callFordelivery"> 确定 </el-button>
</span> </span>
</template> </template>
</el-dialog> </el-dialog>
@ -277,6 +280,17 @@ export default {
sortable: true, sortable: true,
head: false, head: false,
}, },
{
prop: 'outboundDate',
label: '出库时间',
type: 4,
values: '',
width: '150',
checkarr: [],
fixed: true,
sortable: true,
head: false,
},
{ {
prop: 'stockupUser', prop: 'stockupUser',
label: '备货人', label: '备货人',
@ -345,7 +359,7 @@ export default {
}, },
{ {
prop: 'stockipAllocation', prop: 'stockipAllocation',
label: '备货库位', label: '所在库位',
type: 2, type: 2,
values: '', values: '',
width: '150', width: '150',
@ -374,7 +388,7 @@ export default {
fixed: false, fixed: false,
sortable: true, sortable: true,
}, },
{ /* {
prop: 'typeServiceName', prop: 'typeServiceName',
label: '服务类型', label: '服务类型',
type: 3, type: 3,
@ -383,7 +397,7 @@ export default {
checkarr: [], checkarr: [],
fixed: false, fixed: false,
sortable: true, sortable: true,
}, },*/
{ {
prop: 'loaderName', prop: 'loaderName',
label: '装卸班组', label: '装卸班组',
@ -744,7 +758,7 @@ export default {
} }
let a = false ; let a = false ;
this.selectionList.some(i =>{ this.selectionList.some(i =>{
if(i.assignStatus == "2"){ if(i.assignStatus == "20"){
a = true; a = true;
return; return;
} }
@ -774,7 +788,7 @@ export default {
this.dialogFormCustomer = false; this.dialogFormCustomer = false;
}) })
}else if(this.num == '2'){ }else if(this.num == '2'){
console.log(">>>>>>>",this.formOne); console.log("修改数据",this.formOne);
update(Object.assign(this.formOne,this.form)).then(res =>{ update(Object.assign(this.formOne,this.form)).then(res =>{
console.log(">>>>>>>",this.formOne); console.log(">>>>>>>",this.formOne);
this.onLoad(this.page); this.onLoad(this.page);
@ -878,13 +892,14 @@ export default {
// this.form = res.data.data; // this.form = res.data.data;
// }); // });
console.log("row<<<<<",row); console.log("row<<<<<",row);
this.form.forkliftId = row.row.forkliftId; this.form.forkliftId = !!row.row.forkliftId && row.row.forkliftId != "-1" ? row.row.forkliftId : null ;
this.form.loaderId = row.row.loaderId; this.form.loaderId = !!row.row.loaderId && row.row.loaderId != "-1" ? row.row.loaderId : null;
this.form.goodsAreaId = row.row.goodsAreaId; this.form.goodsAreaId = !!row.row.goodsAreaId && row.row.goodsAreaId != "-1" ? row.row.goodsAreaId : null;
this.form.stockupDate = row.row.stockupDate; this.form.stockupDate = !!row.row.stockupDate && row.row.stockupDate != "-1" ? row.row.stockupDate : null;
this.form.outboundDate = !!row.row.outboundDate && row.row.outboundDate != "-1" ? row.row.outboundDate : null;
this.dialogFormCustomer = true; this.dialogFormCustomer = true;
this.num = '2'; this.num = '2';
this.formOne = row.row; this.formOne.id = row.row.id;
this.getFork(); this.getFork();
this.getTeam(); this.getTeam();
@ -998,7 +1013,7 @@ export default {
this.data = data.records; this.data = data.records;
this.data.forEach(async i =>{ this.data.forEach(async i =>{
i.loader = i.groupName; i.loader = i.groupName;
i.stockupArea = i.headline; // i.stockupArea = i.headline;
}); });
this.selectionClear(); this.selectionClear();
this.loading = false; this.loading = false;

68
src/views/distribution/stockup/distributionStockupMarket.vue

@ -37,7 +37,7 @@
<div class="avue-crud__left"> <div class="avue-crud__left">
<!-- <el-button type="primary" icon="el-icon-plus" @click="handleAdd"> </el-button> <!-- <el-button type="primary" icon="el-icon-plus" @click="handleAdd"> </el-button>
<el-button type="danger" icon="el-icon-delete" @click="handleDelete" plain> </el-button>--> <el-button type="danger" icon="el-icon-delete" @click="handleDelete" plain> </el-button>-->
<el-button type="primary" text icon="el-icon-edit" @click="handleForklift" >指派货信息</el-button> <el-button type="primary" text icon="el-icon-edit" @click="handleForklift" >指派货信息</el-button>
</div> </div>
<!-- 头部右侧按钮模块 --> <!-- 头部右侧按钮模块 -->
<div class="avue-crud__right"> <div class="avue-crud__right">
@ -86,7 +86,7 @@
</el-pagination> </el-pagination>
</div> </div>
</el-row> </el-row>
<el-dialog v-model="dialogFormCustomer" title="指派叉车"> <el-dialog v-model="dialogFormCustomer" title="指派备货信息">
<el-form :model="form"> <el-form :model="form">
<el-form-item label="备货时间" :label-width="formLabelWidth" v-if="this.num=='2'"> <el-form-item label="备货时间" :label-width="formLabelWidth" v-if="this.num=='2'">
<el-date-picker style="width: 25%;" <el-date-picker style="width: 25%;"
@ -127,12 +127,15 @@
</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-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> </el-form>
<template #footer> <template #footer>
<span class="dialog-footer"> <span class="dialog-footer">
<el-button @click="dialogFormCustomer = false">取消</el-button> <el-button @click="dialogFormCustomer = false">取消</el-button>
<!-- <el-button type="primary" @click="dialogFormVisible = false"> 确定 </el-button>--> <!-- <el-button type="primary" @click="dialogFormVisible = false"> 确定 </el-button>-->
<el-button type="primary" @click="callFordelivery()"> 确定 </el-button> <el-button type="primary" @click="callFordelivery"> 确定 </el-button>
</span> </span>
</template> </template>
</el-dialog> </el-dialog>
@ -259,6 +262,17 @@ export default {
sortable: true, sortable: true,
head: false, head: false,
}, },
{
prop: 'stockupDate',
label: '出库时间',
type: 4,
values: '',
width: '150',
checkarr: [],
fixed: true,
sortable: true,
head: false,
},
{ {
prop: 'stockupUser', prop: 'stockupUser',
label: '备货人', label: '备货人',
@ -306,6 +320,16 @@ export default {
fixed: false, fixed: false,
sortable: true, sortable: true,
}, },
{
prop: 'goodsAreaId',
label: '备货区Id',
type: 2,
values: '',
width: '180',
checkarr: [],
fixed: false,
sortable: true,
},
{ {
prop: 'assignStatusName', prop: 'assignStatusName',
label: '指派状态', label: '指派状态',
@ -327,7 +351,7 @@ export default {
}, },
{ {
prop: 'stockipAllocation', prop: 'stockipAllocation',
label: '备货库位', label: '所在库位',
type: 2, type: 2,
values: '', values: '',
width: '150', width: '150',
@ -356,16 +380,16 @@ export default {
fixed: false, fixed: false,
sortable: true, sortable: true,
}, },
{ // {
prop: 'typeServiceName', // prop: 'typeServiceName',
label: '服务类型', // label: '',
type: 3, // type: 3,
values: '', // values: '',
width: '150', // width: '150',
checkarr: [], // checkarr: [],
fixed: false, // fixed: false,
sortable: true, // sortable: true,
}, // },
{ {
prop: 'loaderName', prop: 'loaderName',
label: '装卸班组', label: '装卸班组',
@ -726,7 +750,7 @@ export default {
} }
let a = false ; let a = false ;
this.selectionList.some(i =>{ this.selectionList.some(i =>{
if(i.assignStatus == "2"){ if(i.assignStatus == "20"){
a = true; a = true;
return; return;
} }
@ -851,13 +875,14 @@ export default {
// this.form = res.data.data; // this.form = res.data.data;
// }); // });
console.log("row<<<<<",row); console.log("row<<<<<",row);
this.form.forkliftId = row.row.forkliftId; this.form.forkliftId = !!row.row.forkliftId && row.row.forkliftId != "-1" ? row.row.forkliftId : null ;
this.form.loaderId = row.row.loaderId; this.form.loaderId = !!row.row.loaderId && row.row.loaderId != "-1" ? row.row.loaderId : null;
this.form.goodsAreaId = row.row.goodsAreaId; this.form.goodsAreaId = !!row.row.goodsAreaId && row.row.goodsAreaId != "-1" ? row.row.goodsAreaId : null;
this.form.stockupDate = row.row.stockupDate; this.form.stockupDate = !!row.row.stockupDate && row.row.stockupDate != "-1" ? row.row.stockupDate : null;
this.form.outboundDate = !!row.row.outboundDate && row.row.outboundDate != "-1" ? row.row.outboundDate : null;
this.dialogFormCustomer = true; this.dialogFormCustomer = true;
this.num = '2'; this.num = '2';
this.formOne = row.row; this.formOne.id = row.row.id;
this.getFork(); this.getFork();
this.getTeam(); this.getTeam();
@ -976,8 +1001,9 @@ export default {
// let s =this.distributionType.find(d => d.dictKey == i.typeService); // let s =this.distributionType.find(d => d.dictKey == i.typeService);
// // console.log("sssss",s); // // console.log("sssss",s);
// i.typeServiceName = s.dictValue; // i.typeServiceName = s.dictValue;
console.log("数据数据",i.groupName,i.headline);
i.loader = i.groupName; i.loader = i.groupName;
i.stockupArea = i.headline; // i.stockupArea = i.headline;
}); });
this.selectionClear(); this.selectionClear();
this.loading = false; this.loading = false;

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

@ -37,7 +37,7 @@
<div class="avue-crud__left"> <div class="avue-crud__left">
<!-- <el-button type="primary" icon="el-icon-plus" @click="handleAdd"> </el-button> <!-- <el-button type="primary" icon="el-icon-plus" @click="handleAdd"> </el-button>
<el-button type="danger" icon="el-icon-delete" @click="handleDelete" plain> </el-button>--> <el-button type="danger" icon="el-icon-delete" @click="handleDelete" plain> </el-button>-->
<el-button type="primary" text icon="el-icon-edit" @click="handleForklift" >指派货信息</el-button> <el-button type="primary" text icon="el-icon-edit" @click="handleForklift" >指派货信息</el-button>
</div> </div>
<!-- 头部右侧按钮模块 --> <!-- 头部右侧按钮模块 -->
<div class="avue-crud__right"> <div class="avue-crud__right">
@ -95,7 +95,7 @@
</el-pagination> </el-pagination>
</div> </div>
</el-row> </el-row>
<el-dialog v-model="dialogFormCustomer" title="指派叉车"> <el-dialog v-model="dialogFormCustomer" title="指派备货信息">
<el-form :model="form"> <el-form :model="form">
<el-form-item label="叉车司机" :label-width="formLabelWidth"> <el-form-item label="叉车司机" :label-width="formLabelWidth">
<el-select v-model="form.forkliftId" clearable placeholder="请选择叉车司机" @change="getForklift($event,'1')"> <el-select v-model="form.forkliftId" clearable placeholder="请选择叉车司机" @change="getForklift($event,'1')">
@ -127,6 +127,9 @@
</el-option> </el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item label="出库时间" prop="outboundDate" :label-width="formLabelWidth">
<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> </el-form>
<template #footer> <template #footer>
<span class="dialog-footer"> <span class="dialog-footer">
@ -270,6 +273,26 @@ export default {
fixed: false, fixed: false,
sortable: true, sortable: true,
}, },
{
prop: 'pickUpTime',
label: '备货时间',
type: 4,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'outboundDate',
label: '出库时间',
type: 4,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
},
{ {
prop: 'stockupStatusName', prop: 'stockupStatusName',
label: '备货状态', label: '备货状态',
@ -277,22 +300,22 @@ export default {
values: '', values: '',
width: '180', width: '180',
checkarr: [ checkarr: [
{ // {
label: '未备货', // label: '',
value: '1', // value: '1',
}, // },
{ // {
label: '待备货', // label: '',
value: '2', // value: '2',
}, // },
{ // {
label: '备货中', // label: '',
value: '3', // value: '3',
}, // },
{ // {
label: '已备货', // label: '',
value: '4', // value: '4',
}, // },
], ],
fixed: false, fixed: false,
sortable: true, sortable: true,
@ -314,50 +337,50 @@ export default {
values: '', values: '',
width: '150', width: '150',
checkarr: [ checkarr: [
{ // {
label: '未指派', // label: '',
value: '1', // value: '1',
}, // },
{ // {
label: '已指派', // label: '',
value: '2', // value: '2',
}, // },
], ],
fixed: false, fixed: false,
sortable: true, sortable: true,
}, },
{ {
prop: 'stockipAllocation', prop: 'stockipAllocation',
label: '备货库位', label: '所在库位',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: '配送车次',
label: '备货区编号',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: true,
},
{
prop: '配送司机',
label: '备货区编号',
type: 2, type: 2,
values: '', values: '',
width: '150', width: '150',
checkarr: [], checkarr: [],
fixed: false, fixed: false,
sortable: true, sortable: true,
head: true,
}, },
// {
// prop: 'pickUpPlate',
// label: '',
// type: 2,
// values: '',
// width: '150',
// checkarr: [],
// fixed: false,
// sortable: true,
// head: true,
// },
// {
// prop: 'consignee',
// label: '',
// type: 2,
// values: '',
// width: '150',
// checkarr: [],
// fixed: false,
// sortable: true,
// head: true,
// },
{ {
prop: 'forkliftName', prop: 'forkliftName',
label: '叉车司机', label: '叉车司机',
@ -743,7 +766,7 @@ export default {
} }
let a = false ; let a = false ;
this.selectionList.some(i =>{ this.selectionList.some(i =>{
if(i.assignStatus == "2"){ if(i.assignStatus == "20"){
a = true; a = true;
return; return;
} }
@ -792,7 +815,25 @@ export default {
getDictionaryBiz('distribution_type').then(res => { getDictionaryBiz('distribution_type').then(res => {
// console.log("8908098080",res.data.data); // console.log("8908098080",res.data.data);
this.distributionType = res.data.data; this.distributionType = res.data.data;
this.columnList[8].checkarr =res.data.data.map(item=>{ /* this.columnList[8].checkarr =res.data.data.map(item=>{
item.value=item.dictKey
item.label=item.dictValue
return item
});*/
});
getDictionaryBiz('stock_assign_status').then(res => { //
// console.log("8908098080",res.data.data);
this.distributionType = res.data.data;
this.checkcColumnList("assignStatusName", this.columnList).checkarr =res.data.data.map(item=>{
item.value=item.dictKey
item.label=item.dictValue
return item
});
});
getDictionaryBiz('stockup_status').then(res => { //
// console.log("8908098080",res.data.data);
this.distributionType = res.data.data;
this.checkcColumnList("stockupStatusName", this.columnList).checkarr =res.data.data.map(item=>{
item.value=item.dictKey item.value=item.dictKey
item.label=item.dictValue item.label=item.dictValue
return item return item
@ -800,6 +841,14 @@ export default {
}); });
this.onLoad(this.page); this.onLoad(this.page);
}, },
checkcColumnList(prop,columnList){
for(var a = 0; a < columnList.length; a++){
if(columnList[a].prop===prop){
console.log("1111111111111",columnList[a]);
return columnList[a];
}
}
},
searchHide () { searchHide () {
this.search = !this.search; this.search = !this.search;
}, },
@ -808,6 +857,7 @@ export default {
}, },
searchReset () { searchReset () {
this.query = {}; this.query = {};
this.stockupDate = [];
this.page.currentPage = 1; this.page.currentPage = 1;
this.onLoad(this.page); this.onLoad(this.page);
}, },
@ -861,6 +911,7 @@ export default {
this.form.forkliftId = !!row.row.forkliftId && row.row.forkliftId != -1 ? row.row.forkliftId : null; this.form.forkliftId = !!row.row.forkliftId && row.row.forkliftId != -1 ? row.row.forkliftId : null;
this.form.loaderId = !!row.row.loaderId && row.row.loaderId != -1 ? row.row.loaderId : null; this.form.loaderId = !!row.row.loaderId && row.row.loaderId != -1 ? row.row.loaderId : null;
this.form.goodsAreaId = !!row.row.goodsAreaId && row.row.goodsAreaId != -1 ? row.row.goodsAreaId : null; this.form.goodsAreaId = !!row.row.goodsAreaId && row.row.goodsAreaId != -1 ? row.row.goodsAreaId : null;
this.form.outboundDate = !!row.row.outboundDate && row.row.outboundDate != -1 ? row.row.outboundDate : null;
this.dialogFormCustomer = true; this.dialogFormCustomer = true;
this.num = '2'; this.num = '2';
this.formOne = row.row; this.formOne = row.row;

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

@ -457,9 +457,9 @@
@click="viewStockArticlePackage(row)" @click="viewStockArticlePackage(row)"
>查看包件 >查看包件
</el-button> </el-button>
<el-button type="primary" link icon="el-icon-delete" @click="addvalueServe(row)" <!-- <el-button type="primary" link icon="el-icon-delete" @click="addvalueServe(row)"-->
>增值服务 <!-- >增值服务-->
</el-button> <!-- </el-button>-->
<el-button type="primary" link icon="el-icon-edit" @click="removeStockArticle(row)" <el-button type="primary" link icon="el-icon-edit" @click="removeStockArticle(row)"
>移除 >移除
</el-button> </el-button>
@ -1153,7 +1153,6 @@
this.loading = false; this.loading = false;
this.isShowPackage = true; this.isShowPackage = true;
}, },
/** /**
* 提交包件信息 * 提交包件信息

935
src/views/distribution/turndelivery/deliveryInfo.vue

@ -1,935 +0,0 @@
<template>
<div>
<el-row>
<el-button type="primary" plain style="margin-left: 15%;width: 200px;height: 70px" @click="ccc">自主配送
</el-button>
<el-button type="primary" plain style="margin-left: 30%;width: 200px;height: 70px" @click="ddd">外协
</el-button>
</el-row>
</div>
<div style="margin: 2%" v-if="aaa">
<el-form ref="form" :model="form" label-width="100px" style="margin: 3px">
<el-row>
<el-col :span="6">
<el-form-item label="车辆信息:" prop="goodsShelfId">
<el-select v-model="vehicleIds" multiple placeholder="请选择车辆" @change="changeVehicle">
<el-option
v-for="item in vehicleData"
:key="item.id"
:label="item.vehicleNub"
:value="item.id">
</el-option>
</el-select>
</el-form-item>
</el-col>
<!-- <el-col :span="8">-->
<!-- <el-form-item label="司机负责人:" prop="goodsShelfId" >-->
<!-- <el-select v-model="form.masterDriver" placeholder="请选择车辆" @change="changeMasterDriver">-->
<!-- <el-option-->
<!-- v-for="item in masterDriverData"-->
<!-- :key="item.id"-->
<!-- :label="item.name"-->
<!-- :value="item.id">-->
<!-- </el-option>-->
<!-- </el-select>-->
<!-- </el-form-item>-->
<!-- </el-col>-->
<el-col :span="6">
<el-form-item label="配送司机信息:" prop="goodsShelfId">
<!-- @change="changeSlaveDriver"-->
<el-select v-model="deliveryDriver" multiple placeholder="请选择司机" @change="changeDriver">
<el-option
v-for="item in driverData"
:key="item.id"
:label="item.name"
:value="item.id">
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<span>
<el-form-item label="主司机:" prop="forklift">
<el-input v-model="form.masterDriverName" :disabled="true">
</el-input>
</el-form-item>
<el-form-item label="主车辆:" prop="forklift">
<el-input v-model="form.masterVehicleNub" :disabled="true">
</el-input>
</el-form-item>
</span>
<!-- <span >主司机&emsp;:<strong>&emsp;{{this.masterDriverName}}</strong></span><br/>-->
<!-- <span >主车辆&emsp;:<strong>&emsp;{{this.masetervehictleName}}</strong></span>-->
</el-col>
<el-col :span="6">
<el-button round @click="viewDriverInfo" style="margin-left: 10%">查看司机配置</el-button>
</el-col>
</el-row>
<el-row>
<el-col :span="6">
<el-form-item label="叉车司机:" prop="forklift">
<el-select v-model="form.forklift" placeholder="请选择叉车司机">
<el-option
v-for="item in this.forkliftData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey">
</el-option>
<!-- {{this.forkliftData}}-->
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="装卸班组:" prop="loader">
<el-select v-model="form.loader" placeholder="请选择装卸班组">
<el-option
v-for="item in loaderData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey">
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="3">
<!-- <el-radio-group v-model="form.loadAndUnload" >-->
<!-- <el-radio v-for="item in this.loadAndUnloadData" :label="item.dictValue" :value="item.dictKey"></el-radio>-->
<!-- </el-radio-group>-->
<el-checkbox-group v-model="this.loadAndUnload">
<el-checkbox v-for="item in loadAndUnloadData" :label="item.dictKey" :value="item.dictKey">
{{item.dictValue}}
</el-checkbox>
</el-checkbox-group>
</el-col>
</el-row>
<el-row>
<el-col :span="6">
<el-form-item label="备货区域:" prop="goodsAreaId">
<el-select v-model="form.goodsAreaId" placeholder="请选择备货区域">
<el-option
v-for="item in goodsAreaData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey">
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="备货时间:" prop="goodsShelfId">
<el-date-picker
v-model="form.stockupDate"
type="date"
placeholder="请选择备货时间">
</el-date-picker>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<el-form-item label="备注:" prop="remarks">
<el-input
type="textarea"
:rows="2"
placeholder="请输入内容"
v-model="form.remarks">
</el-input>
</el-form-item>
</el-col>
</el-row>
</el-form>
</div>
<div style="margin: 2%" v-if="bbb">
<el-form ref="form" :model="form" label-width="100px" style="margin: 3px">
<el-row>
<el-col :span="6">
<el-form-item label="外协来源:" prop="goodsShelfId">
<el-select v-model="form.tripartiteSource" placeholder="请选择来源">
<el-option
v-for="item in tripartiteSourceData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictValue">
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="司机名称:" prop="goodsShelfId">
<el-input v-model="form.driverName" placeholder="请输入司机名称"></el-input>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="司机电话:" prop="goodsShelfId">
<el-input v-model="form.driverPhone" placeholder="请输入本次费用"></el-input>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="车辆车牌:" prop="goodsShelfId">
<el-input v-model="form.vehicleNum" placeholder="请输入本次费用"></el-input>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="配送费用:" prop="goodsShelfId">
<el-input v-model="form.deliveryFee" placeholder="请输入本次费用"></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="6">
<el-form-item label="叉车司机:" prop="forklift">
<el-select v-model="form.forklift" placeholder="请选择叉车司机">
<el-option
v-for="item in this.forkliftData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey">
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="装卸班组:" prop="loader">
<el-select v-model="form.loader" placeholder="请选择装卸班组">
<el-option
v-for="item in loaderData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey">
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="3">
<!-- <el-radio-group v-model="form.loadAndUnload" >-->
<!-- <el-radio v-for="item in this.loadAndUnloadData" :label="item.dictValue" :value="item.dictKey"></el-radio>-->
<!-- </el-radio-group>-->
<el-checkbox-group v-model="form.loadAndUnload">
<el-checkbox v-for="item in loadAndUnloadData" :label="item.dictKey" :value="item.dictKey">
{{item.dictValue}}
</el-checkbox>
</el-checkbox-group>
</el-col>
</el-row>
<el-row>
<el-col :span="6">
<el-form-item label="备货区域:" prop="goodsAreaId">
<el-select v-model="form.goodsAreaId" placeholder="请选择备货区域">
<el-option
v-for="item in goodsAreaData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey">
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="备货时间:" prop="goodsShelfId">
<el-date-picker
v-model="form.stockupDate"
type="date"
placeholder="请选择备货时间">
</el-date-picker>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<el-form-item label="备注:" prop="remarks">
<el-input
type="textarea"
:rows="2"
placeholder="请输入内容"
v-model="form.remarks">
</el-input>
</el-form-item>
</el-col>
</el-row>
</el-form>
</div>
<div >
<el-row>
<!-- 列表模块 -->
<!-- <el-table-->
<!-- :data="data"-->
<!-- :height="height"-->
<!-- :border="option.border"-->
<!-- style="width: 100%">-->
<!-- <template v-for="(item,index) in option.column">-->
<!-- &lt;!&ndash; table字段 &ndash;&gt;-->
<!-- <el-table-column v-if="item.hide!==true"-->
<!-- :prop="item.prop"-->
<!-- :label="item.label"-->
<!-- :width="item.width"-->
<!-- :key="index">-->
<!-- </el-table-column>-->
<!-- </template>-->
<!-- </el-table>-->
<el-table ref="table" v-loading="loading"
:data="data"
style="width: 100%; height:100%"
:border="option.border">
<el-table-column type="expand" v-if="option.expand" align="center"></el-table-column>
<el-table-column v-if="option.index" label="序号" type="index" width="80px"
align="center"></el-table-column>
<template v-for="(item,index) in option.column">
<!-- table字段 -->
<el-table-column v-if="item.hide!==true"
:prop="item.prop"
:label="item.label"
:width="item.width"
:key="index">
</el-table-column>
</template>
<!-- 操作栏模块 -->
</el-table>
</el-row>
<el-form-item style="margin-left: 45%;margin-top: 10px">
<el-button type="primary" icon="el-icon-circle-close" @click="onSubmitOrder">提交(配送内容)</el-button>
<el-button icon="el-icon-circle-close" @click="this.$router.go(-1)"> </el-button>
</el-form-item>
</div>
<el-dialog
title="司机配置"
v-model="isDriverShow"
width="50%"
>
<div style="display: flex">
<div style="flex:1;">
<el-table ref="multipleTable" v-loading="loading"
:data="driverInfo"
style="width: 100%; "
:border="option.border"
@select-all="handleSelect"
@selection-change="selectionDriverChange"
@select="handleSelect">
<!-- @selection-change="handleSelectionChange"
@selection-change="handleCurrentChange"
-->
<!-- <el-table-column type="expand" v-if="option.expand" align="center"></el-table-column>-->
<!-- <el-table-column v-if="option.index" label="序号" type="index" width="80px"-->
<!-- align="center"></el-table-column>-->
<!-- <el-table-column label="预约数量" type="index" width="200px">-->
<!-- <template #="{row}">-->
<el-table-column type="selection" v-if="option.selection" width="55"
align="center"></el-table-column>
<!-- </template>-->
<!-- </el-table-column>-->
<template v-for="(item,index) in option.columnDriverInfo">
<!-- table字段 -->
<el-table-column v-if="item.hide!==true"
:prop="item.prop"
:label="item.label"
:width="item.width"
:key="index">
</el-table-column>
</template>
<!-- 操作栏模块 -->
</el-table>
</div>
<div style="flex:1;">
<el-table ref="table" v-loading="loading"
:data="vehticleInfo"
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 option.columnVehicleInfo">
<!-- table字段 -->
<el-table-column v-if="item.hide!==true"
:prop="item.prop"
:label="item.label"
:width="item.width"
:key="index">
</el-table-column>
</template>
<!-- 操作栏模块 -->
<el-table-column label="预约数量" type="index" width="200px">
<template #="{row}">
<span>
<!-- <el-button type="primary" text size="small" @click="MoveUpVehictle(row)">置顶-->
<!-- </el-button>-->
<el-button type="primary" text size="small" @click="moveUpVehictle(row)">上移
</el-button>
</span>
</template>
</el-table-column>
</el-table>
</div>
</div>
<el-form-item style="margin-left: 45%;margin-top: 10px">
<span slot="footer" class="dialog-footer">
<el-button type="primary" @click="confirmDriver"> </el-button>
<el-button @click="isDriverShow = false"> </el-button>
</span>
</el-form-item>
</el-dialog>
</template>
<script>
import { getDictionaryBiz } from '@/api/system/dict';
import option from '@/option/distribution/distributionReservation';
import { getListTeam } from '@/api/basicdata/basicdataTeamGroup';
import {
getReservationAddr,
deliveryTask
} from '@/api/distribution/distributionReservation';
import { getListUser } from '@/api/distribution/distributionStockup';
import { getPostList } from '@/api/system/post';
import { getListOwn } from '@/api/system/user';
import { stockUp } from '@/api/basicdata/basicdataGoodsArea';
import { getVehicleList } from '@/api/basicdata/basicdataVehicle';
import { getDriverList } from '@/api/basicdata/basicdataDriverArtery';
// import { ref } from 'vue'
export default {
data() {
return {
height: 0,
loading: false,
ids: null,
error: null,
form: {},
data: [],
page: {
currentPage: 1,
pageSize: 10,
total: 40
},
aaa: true,
bbb: false,
option: option,
deliveryTypeData: [],
//
resvervationStatusData: [],
//
stockupStatusData: [],
//
orderSourceData: [],
//
periodOfTimeData: [],
//
deliveryWayData: [],
//
addvalueServeTypeData: [],
//
vehicleData: [],
//
forkliftData: [],
//
loaderData: [],
//
goodsAreaData: [],
//
deptId: '',
//
driverData: [],
//
loadAndUnloadData: [],
//
tripartiteSourceData: [],
//
loadAndUnload: [],
//
vehicleIds: [],
//
deliveryDriver: [],
//
isDriverShow: false,
//
driverInfo: [],
//
vehticleInfo: [],
//
masterDriverName: '',
//
masterVehictleName: '',
//
multipleSelection: [],
//
multipleTable: {},
driverList: [],
vehticleList: []
};
},
created() {
this.$watch(
() => this.$route.params,
() => {
this.fetchData();
},
//
// data observed
{ immediate: true }
);
this.getDictionary();
this.getFork();
this.getTeam();
this.getvehicleData();
this.getMasterDriverData();
},
computed: {},
mounted() {
this.onLoad();
},
methods: {
fetchData() {
this.error = this.post = null;
this.loading = true;
if (this.$route.query.id) {
this.ids = this.$route.query.id;
}
},
//
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 this.getStorageArea();
await this.getTeam();
},
//
async getTeam() {
let params = {
department: this.deptId
};
getListTeam(this.page.currentPage, this.page.pageSize, Object.assign(params, this.query)).then(res => {
let fo = [];
res.data.data.records.forEach(i => {
let a = {
dictKey: i.id,
dictValue: i.name + '-' + i.groupName
};
fo.push(a);
});
this.loaderData = fo;
});
},
//
async getStorageArea() {
let params = {
department: this.deptId
};
stockUp(params).then(res => {
let fo = [];
res.data.data.forEach(i => {
let v = {
dictKey: i.id,
dictValue: i.name + '-' + i.headline
};
fo.push(v);
});
this.goodsAreaData = fo;
});
},
//
getMasterDriverData() {
getDriverList(1, 10, '').then(res => {
this.driverData = res.data.data.records;
});
},
//
getvehicleData() {
getVehicleList(1, 10, '').then(res => {
this.vehicleData = res.data.data.records;
console.log(res.data.data);
});
},
viewDriverInfo() {
console.log(this.driverInfo.length);
console.log(this.vehticleInfo.length);
if (this.driverList.length !== this.vehticleList.length) {
this.$message({
message: '司机车辆数量有误!!!',
type: 'warning'
});
return;
}
this.isDriverShow = true;
},
handleClose(done) {
this.$confirm('确认关闭?')
.then(_ => {
done();
})
.catch(_ => {
});
},
changeVehicle(params) {
console.log(params);
this.vehticleList = params;
let b = [];
if (params) {
this.vehicleData.forEach(item => {
this.vehticleList.forEach(p => {
if (p == item.id) {
b.push(item);
console.log(this.driverInfo);
}
});
if (params[0] === item.id) {
this.form.masterVehicleNub = item.vehicleNub;
}
});
this.vehticleInfo = b;
}
},
changeDriver(params) {
this.driverList = params;
let a = [];
if (params) {
this.driverData.forEach(item => {
this.driverList.forEach(p => {
if (p == item.id) {
a.push(item);
console.log(this.driverInfo);
}
});
if (params[0] === item.id) {
this.form.masterDriverName = item.name;
}
});
this.driverInfo = a;
}
},
//
moveUpVehictle(row) {
console.log(row);
let i = 0;
this.vehticleInfo.forEach((item, index) => {
if (item.id === row.id) {
i = index;
}
});
//
if (i > 0) {
let a = this.vehticleInfo[i - 1];
this.vehticleInfo.splice(i - 1, 1);
this.vehticleInfo.splice(i, 0, a);
} else {
this.$message({
message: '已经是第一条,上移失败',
type: 'warning'
});
}
},
selectionDriverChange(list){
this.multipleSelection = list;
},
handleSelect(selection, row) {
//
this.$refs.multipleTable.clearSelection();
if (row) {
if (selection.length === 1) {
this.multipleSelection = row;
this.$refs.multipleTable.toggleRowSelection(row, true);
} else if (selection.length > 1) {
let a = {};
selection.forEach((s, index) => {
if (s.id === row.id) {
selection.splice(index, 1);
a = s;
}
});
this.multipleSelection = selection;
this.$refs.multipleTable.toggleRowSelection(a, true);
}
}
},
confirmDriver() {
if (this.multipleSelection.length === 0) {
this.$message.warning('请选择至少一条数据');
return;
}
console.log('this.adada', this.multipleSelection);
this.isDriverShow = false;
//
let i = 0;
this.driverInfo.forEach((item,index)=> {
if (item.id === this.multipleSelection[0].id) {
i = index;
}
});
this.form.masterDriverName = this.driverInfo[i].name;
this.form.masterVehicleNub = this.vehticleInfo[i].vehicleNub;
},
// //
getDictionary() {
getDictionaryBiz('addvalue_serve_type').then(res => {
this.addvalueServeTypeData = res.data.data;
});
getDictionaryBiz('distribution_type').then(res => {
this.deliveryTypeData = res.data.data;
});
//
getDictionaryBiz('order_source').then(res => {
this.orderSourceData = res.data.data;
console.log(this.deliveryTypeData);
});
//
getDictionaryBiz('resvervation_status').then(res => {
this.resvervationStatusData = res.data.data;
});
//
getDictionaryBiz('stockup_status').then(res => {
this.stockupStatusData = res.data.data;
});
//
getDictionaryBiz('period_of_time').then(res => {
this.periodOfTimeData = res.data.data;
});
getDictionaryBiz('delivery_way').then(res => {
this.deliveryWayData = res.data.data;
});
getDictionaryBiz('load_and_unload').then(res => {
this.loadAndUnloadData = res.data.data;
});
//
getDictionaryBiz('tripartite_source').then(res => {
this.tripartiteSourceData = res.data.data;
});
},
ccc() {
this.aaa = true;
this.bbb = false;
this.form = {};
this.loadAndUnload = [];
},
ddd() {
this.aaa = false;
this.bbb = true;
this.form = {};
this.loadAndUnload = [];
},
onSubmitOrder() {
const params = this.form;
let stockup = {};
let tripartite = {};
let data = {};
let allocationInfo = [];
//
if (params.loader) {
this.loaderData.forEach(a => {
if (params.loader === a.dictKey) {
stockup.loaderName = a.dictValue;
stockup.loaderId = a.dictKey;
}
});
data.stockup = stockup;
}
if (params.forklift){
this.forkliftData.forEach(b => {
if (params.forklift === b.dictKey) {
stockup.forkliftName = b.dictValue;
stockup.forkliftId = b.dictKey;
}
});
data.stockup = stockup;
}
if (params.goodsAreaId){
this.goodsAreaData.forEach(c => {
if (params.goodsAreaId === c.dictKey) {
stockup.goodsAreaId = c.dictKey;
stockup.goodsAreaName = c.dictValue;
}
});
data.stockup = stockup;
}
if (params.stockupDate) {
stockup.stockupDate = params.stockupDate;
data.stockup = stockup;
}
if (params.remarks) {
stockup.remarks = params.remarks;
data.stockup = stockup;
}
if (this.loadAndUnload.length>0){
stockup.loadAndUnload = this.loadAndUnload.join(',');
data.stockup = stockup;
}
//
if (params.tripartiteSource) {
//
if (params.driverName) {
tripartite.driverName = params.driverName;
}
if (params.deiverPhone) {
tripartite.deiverPhone = params.deiverPhone;
}
if (params.vehicleNum) {
tripartite.vehicleNum = params.vehicleNum;
}
if (params.deliveryFee) {
tripartite.deliveryFee = params.deliveryFee;
}
if (params.tripartiteSource) {
this.tripartiteSourceData.forEach(item => {
if (params.tripartiteSource === item.dictValue) {
tripartite.distributionCompanyId = item.dictKey;
tripartite.distributionCompany = item.dictValue;
}
});
}
} else {
//
if (this.driverList.length !== this.vehticleList.length) {
this.$message({
message: '司机车辆数量有误!!!',
type: 'warning'
});
return;
} else {
let info = [];
for (let i = 0; i < this.driverInfo.length; i++) {
let obj = {};
obj.driver = this.driverInfo[i].name;
obj.driverId = this.driverInfo[i].id;
obj.driverPhone=this.driverInfo[i].phone;
obj.vehicleNub = this.vehticleInfo[i].vehicleNub;
obj.vehicleId = this.vehticleInfo[i].id;
info.push(obj);
this.driverInfo[i].name;
}
allocationInfo = info;
}
}
// data.stockup = stockup;
data.masterDriverName = this.form.masterDriverName;
data.masterVehicleNub = this.form.masterVehicleNub;
data.allocationInfo = allocationInfo;
data.tripartite = tripartite;
data.reservationIds = this.ids;
console.log(data);
deliveryTask(data).then((res) => {
this.$router.push({
path: '/distribution/deliverylist/distributionDeliveryListmar',
name:'配送市配列表'
});
});
},
onLoad() {
this.loading = false;
if (this.ids){
getReservationAddr(this.ids).then(res => {
const data = res.data.data;
data.forEach(item => {
// this.orderSourceData.forEach(a => {
// console.log("#######",a);
// if (item.orderSource === a.dictKey) {
// item.orderSource = a.dictValue;
// }
// });
this.stockupStatusData.forEach(b => {
if (item.stockupStatus === b.dictKey) {
item.stockupStatus = b.dictValue;
}
});
this.resvervationStatusData.forEach(e => {
if (item.reservationStatus === e.dictKey) {
item.reservationStatus = e.dictValue;
}
});
this.deliveryTypeData.forEach(c => {
if (item.deliveryType === c.dictKey) {
item.deliveryType = c.dictValue;
}
});
this.deliveryWayData.forEach(c => {
if (item.deliveryWay === c.dictKey) {
item.deliveryWay = c.dictValue;
}
});
this.periodOfTimeData.forEach(d => {
if (item.periodOfTime === d.dictKey) {
item.periodOfTime = d.dictValue;
}
});
let pa = [];
if (item.serveType.length >= 1) {
pa = item.serveType.split(',');
} else {
pa.push(item.serveType);
}
this.addvalueServeTypeData.forEach(f => {
pa.forEach((p, index) => {
if (p === f.dictKey) {
pa[index] = f.dictValue;
}
});
});
item.serveType = pa;
});
console.log('>>>>>>>>', data);
this.page.total = data.total;
this.data = data;
console.log('>>>>>>>>>>>', this.data);
this.loading = false;
});
}
}
}
};
</script>
<style scoped>
</style>

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

@ -0,0 +1,947 @@
<template>
<div class="head_top">
<div @click="ccc" :class="aaa?'buts check':'buts'">
自主配送
</div>
<div @click="ddd" :class="bbb?'buts check':'buts'">
外协
</div>
</div>
<div style="margin: 2%;background-color: #ffffff;padding: 20px;box-sizing: border-box;" v-if="aaa">
<el-form ref="form" :model="driverForm" label-width="100px" style="margin: 3px">
<el-row>
<el-col :span="6">
<el-form-item label="车辆信息:" prop="vehicleIds">
<el-select
filterable
multiple
v-model="vehicleIds"
placeholder="请选择车辆"
@change="changeVehicle"
>
<el-option
v-for="item in vehicleData"
:key="item.id"
:label="item.vehicleNub"
:value="item.id"
>
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="配送司机信息:" prop="goodsShelfId">
<!-- @change="changeSlaveDriver"-->
<el-select
v-model="deliveryDriver"
multiple
filterable
@change="changeDriver"
placeholder="请选择司机"
>
<el-option
v-for="item in driverData"
:key="item.id"
:label="item.name"
:value="item.id"
>
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<span>
<el-form-item label="主司机:" prop="forklift">
<el-input v-model="driverForm.masterDriverName" :disabled="true"> </el-input>
</el-form-item>
<el-form-item label="主车辆:" prop="forklift">
<el-input v-model="driverForm.masterVehicleNub" :disabled="true"> </el-input>
</el-form-item>
</span>
</el-col>
<el-col :span="6">
<el-button round @click="viewDriverInfo" style="margin-left: 10%">查看司机配置</el-button>
</el-col>
</el-row>
</el-form>
</div>
<div style="margin: 2%;background-color: #ffffff;padding: 20px;box-sizing: border-box;" v-if="bbb">
<el-form ref="form" :model="driverForm" label-width="100px" style="margin: 3px">
<el-row>
<el-col :span="6">
<el-form-item label="外协来源:" prop="goodsShelfId">
<el-select filterable v-model="driverForm.tripartiteSource" placeholder="请选择来源">
<el-option
v-for="item in tripartiteSourceData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey"
>
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="司机名称:" prop="goodsShelfId">
<el-input v-model="driverForm.driverName" placeholder="请输入司机名称"></el-input>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="司机电话:" prop="goodsShelfId">
<el-input v-model="driverForm.driverPhone" placeholder="请输入司机电话"></el-input>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="车辆车牌:" prop="goodsShelfId">
<el-input v-model="driverForm.vehicleNum" placeholder="请输入本次费用"></el-input>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="配送费用:" prop="goodsShelfId">
<el-input v-model="driverForm.deliveryFee" placeholder="请输入本次费用"></el-input>
</el-form-item>
</el-col>
</el-row>
</el-form>
</div>
<div style="margin: 2%;background-color: #ffffff;padding: 20px;box-sizing: border-box;">
<el-form ref="form" :model="stockUpForm" label-width="100px" style="margin: 3px">
<el-row>
<el-col :span="6">
<el-form-item label="叉车司机:" prop="forklift">
<el-select filterable v-model="stockUpForm.forklift" placeholder="请选择叉车司机">
<el-option
v-for="item in this.forkliftData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey"
:disabled="isDisable"
>
</el-option>
<!-- {{this.forkliftData}}-->
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="装卸班组:" prop="loader">
<el-select filterable v-model="stockUpForm.loader" placeholder="请选择装卸班组">
<el-option
v-for="item in loaderData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey"
:disabled="isDisable"
>
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="班组职能:" prop="goodsAreaId">
<el-checkbox-group v-model="loadAndUnload">
<el-checkbox
v-for="item in loadAndUnloadData"
:label="item.dictKey"
:value="item.dictKey"
:disabled="isDisable"
>
<span>{{ item.dictValue }}</span>
</el-checkbox>
</el-checkbox-group>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="配送类型:" prop="goodsAreaId">
<el-radio-group v-model="stockUpForm.deliveryType">
<el-radio :label="'2'" :value="'2'">市配&emsp; </el-radio>
</el-radio-group>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="6">
<el-form-item label="备货区域:" prop="goodsAreaId">
<el-select filterable v-model="stockUpForm.goodsAreaId" placeholder="请选择备货区域">
<el-option
v-for="item in goodsAreaData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey"
:disabled="isDisable"
>
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="备货时间:" prop="goodsShelfId">
<el-date-picker v-model="stockUpForm.stockupDate" type="datetime" placeholder="请选择备货时间" :disabled="isDisable">
</el-date-picker>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="出库时间:" prop="outboundDate" label-width="100px">
<!-- <el-date-picker v-model="form.taskTime"-->
<!-- type="datetime"-->
<!-- placeholder="请选择配车时间"-->
<!-- value-format="YYYY-MM-DD HH:mm:ss"-->
<!-- >-->
<!-- </el-date-picker>-->
<el-date-picker v-model="stockUpForm.outboundDate" value-format="YYYY-MM-DD HH:mm:ss" type="datetime" placeholder="请选择配车时间">
</el-date-picker>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="其他费用:" prop="collectFee" label-width="100px">
<el-input v-model="stockUpForm.otherFee" placeholder="请输入其他费用" />
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<el-form-item label="备注:" prop="remarks">
<el-input type="textarea" :rows="1" placeholder="请输入内容" v-model="stockUpForm.remarks">
</el-input>
</el-form-item>
</el-col>
</el-row>
</el-form>
</div>
<h3>预约列表</h3>
<div >
<el-row>
<el-table ref="table" v-loading="loading"
:data="data"
style="width: 100%; height:100%"
:border="option.border">
<el-table-column type="expand" v-if="option.expand" align="center"></el-table-column>
<el-table-column v-if="option.index" label="序号" type="index" width="80px"
align="center"></el-table-column>
<template v-for="(item,index) in option.column">
<!-- table字段 -->
<el-table-column v-if="item.hide!==true"
:prop="item.prop"
:label="item.label"
:width="item.width"
:key="index">
</el-table-column>
</template>
<!-- 操作栏模块 -->
</el-table>
</el-row>
<el-form-item style="margin-left: 45%;margin-top: 10px">
<el-button type="primary" icon="el-icon-circle-close" @click="onSubmitOrder">提交(配送内容)</el-button>
<el-button icon="el-icon-circle-close" @click="this.$router.go(-1)"> </el-button>
</el-form-item>
</div>
<el-dialog title="司机配置" v-model="isDriverShow" width="50%">
<div style="display: flex">
<div style="flex: 1">
<el-table
ref="multipleTable"
v-loading="loading"
:data="driverInfo"
style="width: 100%"
:border="option.border"
@select-all="handleSelect"
@select="handleSelect"
>
<el-table-column
type="selection"
v-if="option.selection"
width="55"
align="center"
></el-table-column>
<template v-for="(item, index) in option.columnDriverInfo">
<!-- table字段 -->
<el-table-column
v-if="item.hide !== true"
:prop="item.prop"
:label="item.label"
:width="item.width"
:key="index"
style="height: 50px"
>
</el-table-column>
</template>
<!-- 操作栏模块 -->
</el-table>
</div>
<div style="flex: 1">
<el-table
ref="table"
v-loading="loading"
:data="vehticleInfo"
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 option.columnVehicleInfo">
<!-- table字段 -->
<el-table-column
v-if="item.hide !== true"
:prop="item.prop"
:label="item.label"
:width="item.width"
:key="index"
style="height: 50px"
>
</el-table-column>
</template>
<!-- 操作栏模块 -->
<el-table-column label="预约数量" type="index" width="200px">
<template #="{ row }">
<span>
<el-button type="primary" text size="small" @click="moveUpVehictle(row)"
>上移
</el-button>
</span>
</template>
</el-table-column>
</el-table>
</div>
</div>
<el-form-item style="margin-left: 45%; margin-top: 10px">
<span slot="footer" class="dialog-footer">
<el-button type="primary" @click="confirmDriver"> </el-button>
<el-button @click="isDriverShow = false"> </el-button>
</span>
</el-form-item>
</el-dialog>
</template>
<script>
import { getDictionaryBiz } from '@/api/system/dict';
import option from '@/option/distribution/distributionReservation';
import { getListTeamInfo } from '@/api/basicdata/basicdataTeamGroup';
import { deliveryTask, getReservationAddr } from '@/api/distribution/distributionReservation';
import { getListUser } from '@/api/distribution/distributionStockup';
import { getPostList } from '@/api/system/post';
import { getListOwn } from '@/api/system/user';
import { stockUpInfo } from '@/api/basicdata/basicdataGoodsArea';
import { getVehicleList } from '@/api/basicdata/basicdataVehicle';
import { getDriverList } from '@/api/basicdata/basicdataDriverArtery';
import { mapGetters } from 'vuex';
import dayjs from 'dayjs';
export default {
data() {
return {
height: 0,
loading: false,
error: null,
form: {},
driverForm:{},
stockUpForm:{},
data: [],
//
page: {
currentPage: 1,
pageSize: 10,
total: 40
},
query:{},
aaa: true,
bbb: false,
option: option,
deliveryTypeData: [],
//
resvervationStatusData: [],
//
stockupStatusData: [],
//
orderSourceData: [],
//
periodOfTimeData: [],
//
deliveryWayData: [],
//
addvalueServeTypeData: [],
//
vehicleData: [],
//
forkliftData: [],
//
loaderData: [],
//
goodsAreaData: [],
//
deptId: '',
//
driverData: [],
//
loadAndUnloadData: [],
//
tripartiteSourceData: [],
//
loadAndUnload: [],
//
vehicleIds: [],
//
deliveryDriver: [],
//
isDriverShow: false,
//
driverInfo: [],
//
vehticleInfo: [],
//
masterDriverName: '',
//
masterVehictleName: '',
//
multipleSelection: [],
//
multipleTable: {},
stockArticleTable: [],
stockArticleList:[],
driverList: [],
vehticleList: [],
packageList:[],
//
orderData:[],
//
inventoryData:[],
//
selectionList:[],
addvalue: {},
//
orderShow:false,
//
stockListShow:false,
//
stockArticleInfo:[],
//
inventoryInfo:[],
//
isShowPackage:false,
//
packageData:[],
//
loadAndUnload:[],
//
serveType:[],
//
tripartiteSourceData:[],
deliveryListId:'',
isDisable:false,
checked:true,
reservationIds:'',
obj:{
type:Object,
default:()=>({})
},
isInitialized:false,
isUpdate:false,
};
},
watch:{
// obj:{
// deep:true,
// handler(newVal,oldVal){
// if (this.isInitialized){
// console.log(''+JSON.stringify(oldVal)+''+JSON.stringify(newVal));
// //false;
// this.isUpdate = true;
// }else {
// this.isInitialized=true;
// }
// }
// }
},
created() {
this.$watch(
() => this.$route.params,
() => {
this.fetchData();
},
//
// data observed
{ immediate: true }
);
this.getDictionary();
this.getFork();
this.getTeam();
this.getvehicleData();
this.getMasterDriverData();
},
computed: {
...mapGetters(['permission']),
ids() {
let ids = [];
this.selectionList.forEach(ele => {
ids.push(ele.id);
});
return ids.join(',');
}
},
mounted() {
this.onLoad(this.page);
},
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 this.getStorageArea();
await this.getTeam();
},
//
async getTeam() {
let params = this.deptId;
console.log("%%%%%%%%%",params);
getListTeamInfo(params).then(res => {
console.log("aaaaaaaaa",res.data.data);
let fo = [];
res.data.data.forEach(i => {
let a = {
dictKey: i.id,
dictValue: i.groupName
};
fo.push(a);
});
this.loaderData = fo;
});
},
//
async getStorageArea() {
let params = this.deptId ;
console.log("^^^^^^^^^^^^^",params);
stockUpInfo(params).then(res => {
console.log("=========================》",res);
let fo = [];
res.data.data.forEach(i => {
let v = {
dictKey: i.id,
dictValue: i.headline
};
fo.push(v);
});
this.goodsAreaData = fo;
});
},
//
getMasterDriverData() {
return new Promise((rv,rev)=>{
getDriverList(1, 10, '').then(res => {
this.driverData = res.data.data.records;
console.log("===============>",res.data.data);
rv(res.data.data.records)
});
})
},
selectionChange(list) {
//
this.selectionList = list;
console.log(" this.selectionList = list", this.selectionList);
this.orderData.forEach(item=>{
if (item.id===this.obj.id){
item.isUpdate = true;
}
})
//
// this.obj.
},
selectionStockArticleChange(list) {
this.stockArticleList = list;
},
//
getvehicleData() {
return new Promise((rv,rev)=>{
getVehicleList(1, 10, '').then(res => {
this.vehicleData = res.data.data.records;
console.log("^^^^^^^^^^^^^^^^",res.data.data);
rv(res.data.data.records)
});
})
},
fetchData() {
this.error = this.post = null;
this.loading = true;
if (this.$route.query.id) {
this.reservationIds = this.$route.query.id;
}
},
viewDriverInfo() {
console.log(this.driverInfo.length);
console.log(this.vehticleInfo.length);
if (this.driverList.length !== this.vehticleList.length) {
this.$message({
message: '司机车辆数量有误!!!',
type: 'warning'
});
return;
}
this.isDriverShow = true;
},
handleClose(done) {
this.$confirm('确认关闭?')
.then(_ => {
done();
})
.catch(_ => {
});
},
onSubmitOrder() {
let stockup = {};
let tripartite = {};
let data = {};
let allocationInfo = [];
if (this.driverForm){
//
//
if (this.driverList.length !== this.vehticleList.length) {
this.$message({
message: '司机车辆数量有误!!!',
type: 'warning'
});
return;
} else {
let info = [];
for (let i = 0; i < this.driverInfo.length; i++) {
let obj = {};
obj.driver = this.driverInfo[i].name;
obj.driverId = this.driverInfo[i].id;
obj.driverPhone=this.driverInfo[i].phone;
obj.vehicleNub = this.vehticleInfo[i].vehicleNub;
obj.vehicleId = this.vehticleInfo[i].id;
info.push(obj);
this.driverInfo[i].name;
}
allocationInfo = info;
}
data.allocationInfo = allocationInfo;
data.masterDriverName = this.form.masterDriverName;
data.masterVehicleNub = this.form.masterVehicleNub;
}
if (this.stockUpForm) {
let params = this.stockUpForm;
if (params.tripartiteSource) {
//
if (params.driverName) {
tripartite.driverName = params.driverName;
}
if (params.deiverPhone) {
tripartite.deiverPhone = params.deiverPhone;
}
if (params.vehicleNum) {
tripartite.vehicleNum = params.vehicleNum;
}
if (params.deliveryFee) {
tripartite.deliveryFee = params.deliveryFee;
}
if (params.tripartiteSource) {
this.tripartiteSourceData.forEach(item => {
if (params.tripartiteSource === item.dictValue) {
tripartite.distributionCompanyId = item.dictKey;
tripartite.distributionCompany = item.dictValue;
}
});
}
data.tripartite = tripartite;
}else {
//
if (params.loader) {
this.loaderData.forEach(a => {
if (params.loader === a.dictKey) {
stockup.loaderName = a.dictValue;
stockup.loaderId = a.dictKey;
}
});
}
if (params.forklift){
this.forkliftData.forEach(b => {
if (params.forklift === b.dictKey) {
stockup.forkliftName = b.dictValue;
stockup.forkliftId = b.dictKey;
}
});
}
if (params.goodsAreaId){
this.goodsAreaData.forEach(c => {
if (params.goodsAreaId === c.dictKey) {
stockup.goodsAreaId = c.dictKey;
stockup.goodsAreaName = c.dictValue;
}
});
}
if (params.stockupDate) {
stockup.stockupDate = params.stockupDate;
}
if (params.remarks) {
stockup.remarks = params.remarks;
}
if (this.loadAndUnload.length>0){
stockup.loadAndUnload = this.loadAndUnload.join(',');
}
if (params.outboundDate){
stockup.outboundDate = params.outboundDate;
}
data.stockup = stockup;
}
}
data.reservationIds = this.reservationIds;
console.log(">>>>>>>>>>>>",data);
deliveryTask(data).then((res) => {
this.$router.push({
path: '/distribution/deliverylist/distributionDeliveryListmar',
name:'配送市配列表'
});
});
},
changeVehicle(params) {
console.log(params);
this.vehticleList = params;
let b = [];
if (params) {
this.vehicleData.forEach(item => {
this.vehticleList.forEach(p => {
if (p == item.id) {
b.push(item);
console.log(this.driverInfo);
}
});
if (params[0] === item.id) {
this.driverForm.masterVehicleNub = item.vehicleNub;
}
});
this.vehticleInfo = b;
}
},
changeDriver(params) {
this.driverList = params;
let a = [];
if (params) {
this.driverData.forEach(item => {
this.driverList.forEach(p => {
if (p == item.id) {
a.push(item);
console.log(this.driverInfo);
}
});
if (params[0] === item.id) {
this.driverForm.masterDriverName = item.name;
}
});
this.driverInfo = a;
}
},
//
moveUpVehictle(row) {
let i = 0;
this.vehticleInfo.forEach((item, index) => {
if (item.id === row.id) {
i = index;
}
});
//
if (i > 0) {
let a = this.vehticleInfo[i - 1];
this.vehticleInfo.splice(i - 1, 1);
this.vehticleInfo.splice(i, 0, a);
} else {
this.$message({
message: '已经是第一条,上移失败',
type: 'warning',
});
}
console.log(this.vehticleInfo);
},
handleSelect(selection, row) {
//
this.$refs.multipleTable.clearSelection();
if (row) {
if (selection.length === 1) {
this.multipleSelection = row;
this.$refs.multipleTable.toggleRowSelection(row, true);
} else if (selection.length > 1) {
let a = {};
selection.forEach((s, index) => {
if (s.id === row.id) {
selection.splice(index, 1);
a = s;
}
});
this.multipleSelection = selection;
this.$refs.multipleTable.toggleRowSelection(a, true);
}
}
},
confirmDriver() {
if (this.multipleSelection.length === 0) {
this.$message.warning('请选择至少一条数据');
return;
}
console.log('this.adada', this.multipleSelection);
this.isDriverShow = false;
//
let a = 0;
this.driverInfo.forEach((item, index) => {
if (item.id === this.multipleSelection.id) {
a = index;
}
});
this.driverForm.masterDriverName = this.driverInfo[a].name;
this.driverForm.masterVehicleNub = this.vehticleInfo[a].vehicleNub;
},
// //
getDictionary() {
getDictionaryBiz('addvalue_serve_type').then(res => {
this.addvalueServeTypeData = res.data.data;
});
getDictionaryBiz('load_and_unload').then(res => {
this.loadAndUnloadData = res.data.data;
});
getDictionaryBiz('delivery_way').then(res => {
this.deliveryWayData = res.data.data;
});
//
getDictionaryBiz('tripartite_source').then(res => {
this.tripartiteSourceData = res.data.data;
});
},
ccc() {
if (this.deliveryListId){
//
this.driverForm.tripartiteSource = '';
this.driverForm.driverName = '';
this.driverForm.driverPhone = '';
this.driverForm.vehicleNum = '';
this.driverForm.deliveryFee = '';
}else {
this.loadAndUnload = [];
this.serveType=[];
this.driverForm = {};
}
this.aaa = true;
this.bbb = false;
this.stockUpForm.deliveryType="2";
this.stockUpForm.deliveryWay="2";
this.stockUpForm.stockupDate = dayjs().format('YYYY-MM-DD HH:mm:ss');
this.stockUpForm.outboundDate = dayjs().format('YYYY-MM-DD HH:mm:ss');
},
ddd() {
if (this.deliveryListId){
this.vehicleIds=[];
this.deliveryDriver=[];
this.driverForm.masterDriverName = '';
this.driverForm.masterVehicleNub = '';
}else {
this.loadAndUnload = [];
this.serveType=[];
this.driverForm={};
}
this.aaa = false;
this.bbb = true;
this.stockUpForm.deliveryType="2";
this.stockUpForm.deliveryWay="2";
this.stockUpForm.stockupDate = dayjs().format('YYYY-MM-DD HH:mm:ss');
this.stockUpForm.outboundDate = dayjs().format('YYYY-MM-DD HH:mm:ss');
},
selectionClear() {
this.selectionList = [];
this.query={};
},
onLoad(page, params = {}) {
console.log("》》》》》》》》》》》》》》》",this.reservationIds);
//
this.stockUpForm.deliveryType="2";
this.stockUpForm.deliveryWay="2";
this.stockUpForm.stockupDate = dayjs().format('YYYY-MM-DD HH:mm:ss');
this.stockUpForm.outboundDate = dayjs().format('YYYY-MM-DD HH:mm:ss');
this.stockUpForm.otherFee = 0 ;
if (this.reservationIds){
let ids =this.reservationIds;
getReservationAddr(ids).then(res => {
console.log("------------->",res);
const reservationData = res.data.data;
this.page.total = reservationData.total;
this.data = reservationData.records;
console.log('>>>>>>>>>>>', this.data);
this.loading = false;
});
}
this.loading = false;
},
},
};
</script>
<style lang="scss" scoped>
.head_top {
width: 100%;
display: flex;
align-items: center;
background-color: #ffffff;
// border-bottom: 1px solid rgb(228, 228, 228);
padding-left: 10px;
>.buts{
padding: 10px 20px;
cursor: pointer;
margin-right: 10px;
font-size: 18px;
border-bottom: 4px solid #ffffff;
// background-color: #ffffff;
}
.check{
color: #D3832A;
border-bottom: 4px solid #D3832A;
}
}
.minaxbox{
display: flex;
flex-direction: column;
.tophed{
display: flex;
flex-wrap: wrap;
}
}
</style>

49
src/views/reservation/order_list.vue

@ -466,16 +466,17 @@
checkarr: [], checkarr: [],
fixed: false, fixed: false,
sortable: true, sortable: true,
}, {
prop: 'availableQuantity',
label: '可用数量',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
}, },
// {
// prop: 'availableQuantity',
// label: '',
// type: 2,
// values: '',
// width: '150',
// checkarr: [],
// fixed: false,
// sortable: true,
// },
{ {
prop: 'handQuantity', prop: 'handQuantity',
label: '未入库数量', label: '未入库数量',
@ -608,16 +609,16 @@
// fixed: false, // fixed: false,
// sortable: true, // sortable: true,
// }, // },
{ // {
prop: 'typeServerName', // prop: 'typeServerName',
label: '服务类型', // label: '',
type: 3, // type: 3,
values: '', // values: '',
width: '150', // width: '150',
checkarr: [], // checkarr: [],
fixed: false, // fixed: false,
sortable: true, // sortable: true,
}, // },
{ {
prop: 'customerName', prop: 'customerName',
label: '顾客名字', label: '顾客名字',
@ -920,10 +921,10 @@
this.onLoad(this.page); this.onLoad(this.page);
}, },
handleMoke(){ handleMoke(){
if (this.selectionList.length === 0) { // if (this.selectionList.length === 0) {
this.$message.warning("请选择至少一条数据"); // this.$message.warning("");
return; // return;
} // }
let st = false; let st = false;
this.selectionList.some( i =>{ this.selectionList.some( i =>{
if(i.stateName === "已预约"){ if(i.stateName === "已预约"){
@ -947,7 +948,7 @@
// false, // false,
if(!notEqualFlag){ if(!notEqualFlag){
this.$router.push({ this.$router.push({
path: '/distribution/reservation/reservationFrom', path: '/distribution/reservation/order_listFrom',
query:{ query:{
id: this.ids, id: this.ids,
name: '添加预约单' name: '添加预约单'

1170
src/views/reservation/order_listFrom.vue

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