Browse Source

Merge branch 'dev' into pre-production

fix_bug_pro20231227
pref_mail@163.com 2 years ago
parent
commit
eb8b734a2a
  1. 6
      src/option/distribution/distributionStockArticle.js
  2. 2
      src/utils/LodopFuncs.js
  3. 21
      src/views/basicdata/warehouse/goodsShelf/basicdataGoodsShelf.vue
  4. 2
      src/views/distribution/deliverylist/distributionDeliveryListdis.vue
  5. 409
      src/views/distribution/reservation/reservationFrom.vue
  6. 239
      src/views/distribution/turndelivery/deliveryDiscuss.vue
  7. 3
      src/views/distribution/turndelivery/deliveryMarket.vue

6
src/option/distribution/distributionStockArticle.js

@ -536,7 +536,11 @@ export default {
},
{
label: '预约状态',
prop: 'reservationStatusName'
prop: 'orderPackageReservationStatusName'
},
{
label: '冻结状态',
prop: 'freezeStatusName'
},
{
label: '仓库',

2
src/utils/LodopFuncs.js

@ -120,7 +120,7 @@ export function getLodop(oOBJECT,oEMBED){
//===========================================================
return LODOP;
} catch(err) {
// alert("getLodop出错:"+err);
alert("getLodop出错:"+err);
};
};

21
src/views/basicdata/warehouse/goodsShelf/basicdataGoodsShelf.vue

@ -526,7 +526,11 @@ export default {
let params = {};
if (item.qrCode){
getShowTemplate(Object.assign(params,item)).then(res=>{
let url = window.URL.createObjectURL(res.data); // data
console.log("@@@@@@@@@@@@@",res.data);
let url = window.URL.createObjectURL(res.data);
// data
console.log("@@@@@@@@@@@@@",url);
this.qrCodeObj.push(url);
})
}else {
@ -542,7 +546,7 @@ export default {
})
},
printTemplate(){
let lodop = getLodop();
let LODOP = getLodop();
console.log("this.ids>>>>>",this.ids);
console.log("this.ids>>>>>",this.selectionList);
if (this.selectionList.length === 0){
@ -553,10 +557,15 @@ export default {
let templateData = res.data.data;
// let templateData = "res.data.data";
console.log(templateData);
LODOP.PRINT_INITA(1,1,770,660,"测试预览功能");
LODOP.SET_PRINT_MODE("WINDOW_DEFPRINTER","Godex G500");
// //
LODOP.SET_PRINT_MODE("AUTO_CLOSE_PREWINDOW", 1);
LODOP.PRINT_INITA("测试预览功能");
// LODOP.PRINT_INITA("");
// LODOP.SET_PRINT_PAGESIZE(1, 0, 0, 'A4');
LODOP.SET_PRINT_MODE("WINDOW_DEFPRINTER","Deli DL-888T");
LODOP.SET_PRINT_PAGESIZE(2,"210mm","50mm" ,"")
LODOP.SET_SHOW_MODE("LANDSCAPE_DEFROTATED",1);
// //
LODOP.SET_PRINT_MODE("WINDOW_DEFPAGESIZE", 1);
// // datahtml
LODOP.ADD_PRINT_HTM("0%","0%","100%","100%",templateData);
LODOP.PREVIEW(); //()

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

@ -41,7 +41,7 @@
<template #default="slotProps">
<el-button size="small" @click="editsolt(slotProps.scope)"> </el-button>
<el-button size="small" @click="editmap(slotProps.scope)"> </el-button>
<!-- <el-button size="small" @click="handleEdit(slotProps.scope)"> </el-button>-->
<el-button size="small" @click="handleEdit(slotProps.scope)"> </el-button>
<el-button size="small" @click="costadd(slotProps.scope)"> </el-button>
</template>
</tablecmt>

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

@ -6,7 +6,7 @@
:model="form"
prop="consignee"
label-width="80px"
:rules="reservationRules">
:rules="reservationRules">
<el-row>
<el-col :span="10">
<el-form-item label="收货人:" prop="consignee" label-width="100px">
@ -77,8 +77,8 @@
<el-form-item label="配送方式:" prop="serveType" label-width="100px">
<!-- v-for="item in this.deliveryWayData"-->
<el-radio-group v-model="form.deliveryWay">
<el-radio :label="'1'"
:value="'1'">送货&emsp;
<el-radio :label="'10'"
:value="'10'">送货&emsp;
</el-radio>
</el-radio-group>
</el-form-item>
@ -112,7 +112,6 @@
</el-col>
<el-col :span="10">
<el-form-item label="其他费用:" prop="collectFee" label-width="100px">
<el-input v-model="form.otherFee" placeholder="请输入其他费用"/>
@ -164,12 +163,12 @@
</el-table-column>
</template>
<el-table-column label="包件数量" type="index" width="100px">
<template #="{row}">
<el-input v-model="row.reservationNum" type="number" :disabled="true"
placeholder="请输入内容"></el-input>
</template>
</el-table-column>
<!-- <el-table-column label="包件数量" type="index" width="100px">-->
<!-- <template #="{row}">-->
<!-- <el-input v-model="row.reservationNum" type="number" :disabled="true"-->
<!-- placeholder="请输入内容"></el-input>-->
<!-- </template>-->
<!-- </el-table-column>-->
<!-- 操作栏模块 -->
<el-table-column prop="menu" label="操作" :width="220" align="center">
<template #="{row}">
@ -263,14 +262,17 @@
</el-form>
<el-table ref="table"
<el-table ref="orderList"
v-loading="loading"
@selection-change="selectionChange"
:data="stockArticleInfo"
:height="height"
style="width: 100%"
:border="option.border">
<el-table-column type="selection" v-if="option.selection" width="55"
<el-table-column type="selection"
v-if="option.selection"
:selectable="checkOrder"
width="55"
align="center"></el-table-column>
<el-table-column v-if="option.index" label="序号" type="index" width="80px"
align="center"></el-table-column>
@ -318,9 +320,9 @@
<el-button icon="el-icon-delete" @click="stockListSearchReset()"> </el-button>
</el-form-item>
</el-form>
<el-table ref="table"
<el-table ref="inventoryTable"
v-loading="loading"
@selection-change="selectionChange"
@selection-change="selectionInventoryChange"
:data="inventoryInfo"
:height="height"
style="width: 90%;height: 100%"
@ -355,16 +357,22 @@
title="包件信息"
width="100%"
:model="addvalue"
:before-close="handleClose">
>
<!-- 列表模块 -->
<el-table ref="table" v-loading="loading"
@selection-change="selectionChange"
<el-table ref="packageList"
v-loading="loading"
@selection-change="selectionPackageChange"
:data="packageData"
:height="height"
style="width: 100%"
:border="option.border">
<el-table-column type="selection" v-if="option.selection" width="55"
align="center"></el-table-column>
<el-table-column type="selection"
v-if="option.selection"
:selectable="checkPackage"
align="center"
width="55"
></el-table-column>
<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="60" align="center">
</el-table-column>
@ -461,11 +469,10 @@
<script>
import { add, update, remove, getReservationInfo } from '@/api/distribution/distributionReservation';
import { getList, getStockArticleList, selectStockArticleList } from '@/api/distribution/distributionStockArticle';
import { getList, getStockArticleList, selectStockArticleList,selectStockArticleAndParcel } from '@/api/distribution/distributionStockArticle';
import { getDetailDelivery, addDelivery } from '@/api/distribution/distributionDelivery';
import { addIncrement } from '@/api/distribution/distributionStockArticle';
import { getInventoryList } from '@/api/distribution/distributionStockList';
import { getListOwn } from '@/api/distribution/distributionParcelList';
// import option from "@/option/distribution/distributionDelivery";
import option from '@/option/distribution/distributionStockArticle';
@ -510,7 +517,7 @@
addvalueServeTypeData: [],
//
deliveryWayData: [],
whetherData:[],
whetherData: [],
//
deliveryTypeData: [],
//
@ -546,6 +553,9 @@
isaddvalue: false,
packageData: [],
packageList: [],
inventoryList: [],
orderList: [],
inventoryTable:[],
reservationRules: {
consignee: [
{ required: true, message: '请填写收货人名称!!!', trigger: 'change' }
@ -555,11 +565,11 @@
],
deliveryPhone: [
{ required: true, message: '请填写收货人电话!!!', trigger: 'change' }
],
]
// enableStatus: [
// { required: true, message: '!', trigger: 'change' }
// ],
},
}
};
},
created() {
@ -642,30 +652,34 @@
},
//
handleAddOrder() {
console.log('$$$$$$', this.reservationId);
console.log('$$$$$$', this.orderData);
if (this.reservationId) {
//使使
this.query.typeService = 2;
this.query.genre = '1';
//
let page = this.page;
let params = {};
selectStockArticleList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
selectStockArticleAndParcel(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;
let orderListData = res.data.data;
console.log('$$$$$$$$', orderListData);
this.stockArticleInfo = orderListData;
//
let a = this.orderData;
for (let i = 0; i < orderListData.length; i++) {
for (let j = 0; j < a.length; j++) {
if (orderListData[i].id === a[j].id){
console.log("@@@@@@@@@@",a[j]);
console.log("@@@@@@@@@@",orderListData[i]);
orderListData[i] = a[j];
this.$nextTick(()=> {
this.$refs.orderList.toggleRowSelection(this.stockArticleInfo[i],true);
})
}
this.checkOrder(this.stockArticleInfo[i],i);
}
}
this.loading = false;
this.selectionClear();
});
@ -674,28 +688,51 @@
this.query.genre = '1';
let page = this.page;
let params = {};
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) => {
selectStockArticleAndParcel(Object.assign(params, this.query)).then(res => {
console.log('$$$$$$$$>', res);
let orderData = res.data.data;
orderData.forEach((item, index) => {
item.reservationNum = item.handQuantity;
//
if (item.reservationStatus !== '30') {
a.push(item);
}
item.reservationNum = '0';
});
console.log('$$$$$$$$', a);
this.page.total = data.total;
this.stockArticleInfo = a;
console.log('$$$$$$$$', orderData);
this.stockArticleInfo = orderData;
//
if (this.orderData){
this.stockArticleInfo.forEach((item,index)=>{
this.orderData.forEach(o=>{
if (item.id === o.id){
this.$nextTick(()=> {
this.$refs.orderList.toggleRowSelection(this.stockArticleInfo[index],true);
})
}
})
if (item.reservationStatus === '30'){
this.$nextTick(()=> {
this.$refs.orderList.toggleRowSelection(this.stockArticleInfo[index],true);
})
}
this.checkOrder(item,index);
})
}else {
//
}
this.loading = false;
this.selectionClear();
});
this.selectionList = [];
}
this.orderShow = true;
},
checkOrder(row,index){
if (row.reservationStatus === '30' || row.reservationStatusName === '已预约' || row.freezeStatus === '30' || row.freezeStatusName === '已冻结' ){
return false;
}else {
return true;
}
return false;
},
handleAddInventory() {
let page = this.page;
let params = {};
@ -705,14 +742,29 @@
inventoryList.records.forEach(item => {
item.reservationNum = '0';
item.applyNum = item.quantityStock - item.quantityOccupied;
});
this.page.total = inventoryList.total;
this.inventoryInfo = inventoryList.records;
//
if (this.inventoryData){
this.inventoryInfo.forEach((item,index)=>{
this.inventoryData.forEach(inventory=>{
if (item.id === inventory.id){
item = inventory;
this.$nextTick(()=> {
this.$refs.inventoryTable.toggleRowSelection(this.inventoryInfo[index],true);
})
}
})
})
}
console.log("------------->",this.inventoryData);
this.loading = false;
this.selectionClear();
});
this.query = {};
this.selectionList = [];
this.inventoryList = [];
this.stockListShow = true;
},
handleCheckedCitiesChange(value) {
@ -789,14 +841,66 @@
},
viewStockArticlePackage(row) {
this.loading = true;
this.packageList = row.packageList;
console.log('>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>', row);
if (this.reservationId){
//
this.packageData = row.parcelListVOS;
let packageListData = this.packageData;
if (row.packageList){
let packageListInfo = row.packageList;
for (let i = 0; i < packageListData.length; i++) {
for (let j = 0; j < packageListInfo.length; j++) {
if (packageListData[i].id === packageListInfo[j].id){
// row.packageList.push(packageListData[i])
this.$nextTick( ()=> {
this.$refs.packageList.toggleRowSelection(this.packageData[i],true);
})
continue;
}
// this.checkPackage(packageListData[i],i);
}
}
console.log('row>>>>>>>>>>>>>>>>>>>>>>>>>>>', row);
// this.packageList = packageListInfo;
console.log('>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>', this.packageList);
}
}else {
this.packageData = row.parcelListVOS;
//
let data = row.parcelListVOS;
data.forEach((item,index)=>{
if (item.orderPackageReservationStatusName === '已预约' || item.orderPackageReservationStatus === '20'){
// //使
this.$nextTick( ()=> {
this.$refs.packageList.toggleRowSelection(this.packageData[index],true);
})
console.log("::",item);
this.checkPackage(item,index);
}else if(item.orderPackageFreezeStatusName !== '已冻结' || item.orderPackageFreezeStatus !== '20'){
this.$nextTick( ()=> {
this.$refs.packageList.toggleRowSelection(this.packageData[index],true);
})
}
})
}
this.isaddvalue = true;
getListOwn('1', '10', { stockArticleId: row.id }).then(res => {
const packages = res.data.data;
console.log('>>>>>>>', packages);
this.packageData = packages.records;
this.loading = false;
});
this.loading = false;
},
checkPackage(row,index) {
//
//
if (!this.reservationId){
if (row.orderPackageReservationStatusName === '已预约' || row.orderPackageReservationStatusName === '20'){
return false;
}
}
if (row.orderPackageFreezeStatus === '20' || row.orderPackageFreezeStatusName === '已冻结' ){
return false;
}else {
return true;
}
},
//
searchStockArticle() {
@ -841,15 +945,40 @@
this.handleAddInventory();
},
onSubmitPackage() {
this.orderData.forEach(item => {
item.reservationNum = 0;
this.selectionList.forEach(list => {
if (item.id === list.stockArticleId) {
item.reservationNum += list.quantity;
}
console.log('>>>>>>>>>>', this.packageList);
console.log('>>>>>>>>>>', this.orderData);
if (this.reservationId){
this.orderData.forEach(item => {
item.reservationNum = 0;
let a = [];
this.packageList.forEach(list => {
console.log("##########",item);
console.log("list------------>",list);
//TODO
if (item.id === list.stockArticleId && list.orderPackageFreezeStatus !== '20') {
item.reservationNum += list.quantity;
a.push(list);
}
});
console.log("a------------>",a);
item.packageList = a;
});
item.packageList = this.selectionList;
});
}else {
this.orderData.forEach(item => {
item.reservationNum = 0;
let a = [];
this.packageList.forEach(list => {
console.log("##########",list);
if (item.id === list.stockArticleId && list.orderPackageReservationStatus === '10' && list.orderPackageFreezeStatus=== '10') {
item.reservationNum += list.quantity;
a.push(list);
}
});
item.packageList = a;
});
}
console.log("this.orderData------------>",this.orderData);
this.isaddvalue = false;
},
onSubmit() {
@ -859,18 +988,17 @@
let inventoryList = [];
let stockArticleList = [];
let operation = true;
this.orderData.forEach(item => {
if (item.reservationNum === '0') {
this.$message({
type: 'warning',
message: '请选择' + item.orderCode + '包件数量!'
});
operation = false;
}
orderIds.push(item.id);
item.reservationNum = item.reservationNum;
stockArticleList.push(item);
});
// this.orderData.forEach(item => {
// // if (item.reservationNum === '0') {
// // this.$message({
// // type: 'warning',
// // message: '' + item.orderCode + '!'
// // });
// // operation = false;
// // }
// orderIds.push(item.id);
// stockArticleList.push(item);
// });
this.inventoryData.forEach(item => {
if (item.reservationNum === '0' || item.reservationNum > item.quantityStock) {
this.$message({
@ -888,7 +1016,7 @@
this.form.stockArticleIds = orderIds.toString();
this.form.inventoryIds = inventoryIds.toString();
this.form.inventoryList = inventoryList;
this.form.stockArticleList = stockArticleList;
this.form.stockArticleList = this.orderData;
this.deliveryWayData.forEach(item => {
if (this.form.deliveryWay === item.dictValue) {
this.form.deliveryWay = item.dictKey;
@ -907,9 +1035,8 @@
this.form.serveType = this.serveType.join(',');
//
// this.form.packageList = this.packageList;
// this.form.stockArticleList = this.packageList;
console.log('>>>>>>>>', this.form);
if (operation) {
if (this.reservationId) {
update(this.form).then(() => {
this.$router.go(-1);
@ -927,7 +1054,6 @@
});
});
}
}
},
handleClose(done) {
this.$confirm('确认关闭?')
@ -986,25 +1112,63 @@
this.view = false;
},
selectionChange(list) {
this.selectionList = list;
let a = [];
list.forEach(item=>{
if (item.reservationStatus !== '30'){
a.push(item)
}
})
this.orderList = a;
},
selectionPackageChange(list) {
if (this.reservationId){
console.log("-----------<>",list);
this.packageList = list;
}else {
//
let a = [];
list.forEach(item=>{
if (item.orderPackageReservationStatus === '10' || item.orderPackageReservationStatusName === '未预约'){
a.push(item);
}
})
this.packageList = a;
}
},
selectionInventoryChange(list) {
// if (this.reservationId){
console.log("-----------<>",list);
this.inventoryList = list;
// }else {
// //
// let a = [];
// list.forEach(item=>{
// if (item.orderPackageReservationStatus === '10' || item.orderPackageReservationStatusName === ''){
// a.push(item);
// }
// })
// this.inventoryList = a;
// }
},
//
onSubmitInventory() {
if (this.selectionList.length === 0) {
if (this.inventoryList.length === 0) {
this.$message.warning('请选择至少一条数据');
return;
}
if (this.orderData.length) {
this.selectionList.some(i => {
let a = this.inventoryData.filter((ele) => ele.id == i.id).length >= 1;
if (!a) {
this.inventoryData.push(i);
}
});
} else {
this.inventoryData = this.selectionList;
}
this.inventoryData = this.inventoryList;
// if (this.orderData.length) {
// this.inventoryList.some(i => {
// let a = this.inventoryData.filter((ele) => ele.id == i.id).length >= 1;
// if (!a) {
// this.inventoryData.push(i);
// }
// });
// } else {
// this.inventoryData = this.selectionList;
// }
this.stockListShow = false;
},
@ -1012,14 +1176,14 @@
* 增加订单提交
*/
onSubmitOrder() {
if (this.selectionList.length === 0) {
if (this.orderList.length === 0) {
this.$message.warning('请选择至少一条数据');
return;
}
let a = [];
a = this.selectionList;
a = this.orderList;
let b = false;
this.selectionList.forEach(item => {
this.orderList.forEach(item => {
a.forEach(a => {
if (item.customerName !== a.customerName || item.customerTelephone !== a.customerTelephone || item.customerAddress !== a.customerAddress) {
b = true;
@ -1033,41 +1197,8 @@
});
return;
}
if (this.orderData.length >= 1) {
let flag = false;
this.selectionList.some(i => {
//
let b = this.orderData.filter(a => {
return i.customerName !== a.customerName && i.customerTelephone !== a.customerTelephone && i.customerAddress !== a.customerAddress;
}).length >= 1;
console.log('>>>>>>>>>>>>>>>', b);
//
let a = this.orderData.filter((ele) => ele.id == i.id).length >= 1;
if (!b) {
if (!a) {
this.orderData.push(i);
} else {
flag = true;
}
}
});
if (flag) {
this.$message({
type: 'warning',
message: '请选择同一顾客订单!'
});
}
} else {
this.orderData = this.selectionList;
let a = 0;
this.orderData.forEach(item => {
if (item.collectFee) {
a += parseInt(item.collectFee);
}
});
this.form.collectFee = a;
}
console.log(">>>>>>>>>>>>",a);
this.orderData = a;
this.orderShow = false;
},
selectionClear() {
@ -1086,12 +1217,12 @@
onLoad(page, params = {}) {
this.loading = true;
this.form.deliveryType = '1';
this.form.deliveryWay = '1';
this.form.deliveryWay = '10';
this.form.periodOfTime = '3';
this.form.otherFee = 0;
this.form.replaceFee = 0;
this.form.collectionFee = 0;
this.form.isUrgent = "1";
this.form.isUrgent = '1';
this.form.reservationDate = new Date();
if (this.orderIds) {
getStockArticleList(this.orderIds).then(res => {
@ -1121,7 +1252,13 @@
if (this.reservationId) {
getReservationInfo(this.reservationId).then(res => {
const reservation = res.data.data;
const stockArticleListInfo = res.data.data.stockArticleList;
// stockArticleListInfo.forEach(item=>{
//
// })
console.log(">>>>>>>>",reservation);
this.orderData = reservation.stockArticleList;
this.inventoryData = reservation.inventoryList;
this.inventoryData.forEach(item => {
item.applyNum = item.quantityStock - item.quantityOccupied;

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

@ -1,12 +1,4 @@
<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 class="head_top">
<div @click="ccc" :class="aaa?'buts check':'buts'">
自主配送
@ -15,13 +7,6 @@
外协
</div>
</div>
<!-- <div class="minaxbox">
<div class="tophed">
<div class="">
</div>
</div>
</div> -->
<div style="margin: 2%;background-color: #ffffff;padding: 20px;box-sizing: border-box;" v-if="aaa">
<el-form ref="form" :model="form" label-width="100px" style="margin: 3px">
<el-row>
@ -44,18 +29,6 @@
</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"-->
@ -86,87 +59,11 @@
<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>-->
<!-- &lt;!&ndash; {{this.forkliftData}}&ndash;&gt;-->
<!-- </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">-->
<!-- &lt;!&ndash; <el-radio-group v-model="form.loadAndUnload" >&ndash;&gt;-->
<!-- &lt;!&ndash; <el-radio v-for="item in this.loadAndUnloadData" :label="item.dictValue" :value="item.dictKey"></el-radio>&ndash;&gt;-->
<!-- &lt;!&ndash; </el-radio-group>&ndash;&gt;-->
<!-- <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>
@ -207,77 +104,6 @@
</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">-->
<!-- &lt;!&ndash; <el-radio-group v-model="form.loadAndUnload" >&ndash;&gt;-->
<!-- &lt;!&ndash; <el-radio v-for="item in this.loadAndUnloadData" :label="item.dictValue" :value="item.dictKey"></el-radio>&ndash;&gt;-->
<!-- &lt;!&ndash; </el-radio-group>&ndash;&gt;-->
<!-- <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 style="margin: 2%;background-color: #ffffff;padding: 20px;box-sizing: border-box;">
@ -313,9 +139,6 @@
</el-form-item>
</el-col>
<el-col :span="6">
<!-- <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-form-item label="班组职能:" prop="goodsAreaId">
<el-checkbox-group v-model="loadAndUnload">
<el-checkbox
@ -330,9 +153,6 @@
</el-form-item>
</el-col>
<el-col :span="6">
<!-- <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-form-item label="配送类型:" prop="goodsAreaId">
<el-radio-group v-model="form.deliveryType">
<el-radio :label="'1'" :value="'1'">商配&emsp; </el-radio>
@ -386,24 +206,12 @@
<el-row>
<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="form.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="taskTime" 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="form.taskTime" value-format="YYYY-MM-DD HH:mm:ss" type="datetime" placeholder="请选择配车时间">
</el-date-picker>
</el-form-item>
@ -437,7 +245,6 @@
style="width: 100%; height: 50%"
:border="option.border"
>
<!-- <el-table-column type="selection" v-if="option.selection" width="55" align="center"></el-table-column>-->
<el-table-column
v-if="option.index"
label="序号"
@ -455,12 +262,6 @@
>
</el-table-column>
</template>
<!-- <el-table-column label="包件数量" type="index" width="100px">-->
<!-- <template #="{row}">-->
<!-- <el-input v-model="row.reservationNum" type="number" :disabled="true"-->
<!-- placeholder="请输入内容"></el-input>-->
<!-- </template>-->
<!-- </el-table-column>-->
<!-- 操作栏模块 -->
<el-table-column prop="menu" label="操作" :width="220" align="center">
<template #="{ row }">
@ -471,9 +272,6 @@
@click="viewStockArticlePackage(row)"
>查看包件
</el-button>
<!-- <el-button type="primary" link icon="el-icon-delete" @click="addvalueServe(row)"-->
<!-- >增值服务-->
<!-- </el-button>-->
<el-button type="primary" link icon="el-icon-edit" @click="removeStockArticle(row)"
>移除
</el-button>
@ -481,39 +279,6 @@
</el-table-column>
</el-table>
</el-tab-pane>
<!-- <el-tab-pane label="库存品">-->
<!-- <el-button type="primary" link @click="handleAddInventory">新增</el-button>-->
<!-- <el-table ref="table"-->
<!-- v-loading="loading"-->
<!-- :data="inventoryData"-->
<!-- :height="height"-->
<!-- style="width: 100%;height: 100%"-->
<!-- :border="option.border">-->
<!-- &lt;!&ndash; <el-table-column type="selection" v-if="stockList.selection" width="55" align="center"></el-table-column>&ndash;&gt;-->
<!-- <el-table-column v-if="option.index" label="序号" type="index" width="80px"-->
<!-- align="center"></el-table-column>-->
<!-- <template v-for="(item,index) in option.columnStockLists">-->
<!-- <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="100px">-->
<!-- <template #="{row}">-->
<!-- <el-input v-model="row.reservationNum" type="number" :min="0"></el-input>-->
<!-- </template>-->
<!-- </el-table-column>-->
<!-- <el-table-column prop="menu" label="操作" :width="220" align="center">-->
<!-- <template #="{row}">-->
<!-- <el-button type="primary" link icon="el-icon-edit" @click="removeStockList(row)">移除-->
<!-- </el-button>-->
<!-- </template>-->
<!-- </el-table-column>-->
<!-- </el-table>-->
<!-- </el-tab-pane>-->
</el-tabs>
<el-form-item style="margin-left: 45%; margin-top: 10px">
@ -701,7 +466,7 @@
<el-table-column prop="menu" label="操作" :width="220" align="center">
<template #="{ row }">
<!-- <el-button type="primary" text icon="el-icon-view" @click="handleView(row)">查看</el-button>-->
<!-- <el-button type="primary" text icon="el-icon-edit" @click="handleEdit(row)">编辑</el-button>-->
<!-- <el-button type="primary" text icon="el-icon-edit" @click="handleEdit(row)">编辑</el-button>-->
<!-- <el-button type="primary" text icon="el-icon-delete" @click="rowDel(row)">删除</el-button>-->
</template>
</el-table-column>
@ -1672,6 +1437,7 @@
}
this.form.loader = data.stockupInfo.loaderName;
this.form.forklift = data.stockupInfo.forkliftName;
this.form.outboundDate = data.stockupInfo.outboundDate;
this.form.remarks = data.stockupInfo.remarks;
this.form.taskTime = data.taskTime;
this.orderData = data.stockArticleList;
@ -1696,7 +1462,6 @@
}
if (s.isMaster === 2) {
this.form.masterVehicleNub = s.vehicleNub;
}
});
})

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

@ -747,6 +747,9 @@
}
data.stockup = stockup;
}
if (this.form.taskTime){
data.taskTime = this.form.taskTime;
}
}
data.reservationIds = this.reservationIds;
console.log(">>>>>>>>>>>>",data);

Loading…
Cancel
Save