Browse Source

修改订单值回显

dev-warehouse
caoyizhong 2 years ago
parent
commit
d37688b559
  1. 11
      src/views/distribution/inventory/delivery/distributionStockArticleDiscuss.vue
  2. 2
      src/views/distribution/inventory/delivery/distributionStockArticleMarket.vue
  3. 2
      src/views/distribution/inventory/delivery/distributionStockArticleSelf.vue
  4. 3
      src/views/distribution/inventory/distributionStockListDetails.vue
  5. 19
      src/views/warehouse/warehousingentry/warehouseWarehouseingAddReceipt.vue

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

@ -1137,6 +1137,17 @@ 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=>{
item.value=item.dictKey
item.label=item.dictValue
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_package_status').then(res => {
this.deliveryOrderStatus = res.data.data; this.deliveryOrderStatus = res.data.data;

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

@ -944,7 +944,7 @@ export default {
} }
let st = false; let st = false;
this.selectionList.some( i =>{ this.selectionList.some( i =>{
if(i.stateName === "已预约"){ if(i.reservationStatusName === "已预约"){
st = true; st = true;
this.$message.warning(i.orderCode+" - 已预约,请勿重复预约!!!"); this.$message.warning(i.orderCode+" - 已预约,请勿重复预约!!!");
} }

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

@ -1177,7 +1177,7 @@ export default {
let consigneePerson = ''; let consigneePerson = '';
let consigneeMobile = ''; let consigneeMobile = '';
this.selectionList.some( i =>{ this.selectionList.some( i =>{
if(i.stateName === "已预约"){ if(i.reservationStatusName === "已预约"){
st = true; st = true;
this.$message.warning(i.orderCode+"已预约,请勿重复预约!!!"); this.$message.warning(i.orderCode+"已预约,请勿重复预约!!!");
} }

3
src/views/distribution/inventory/distributionStockListDetails.vue

@ -496,6 +496,9 @@ export default {
if(i.outboundType == '3'){ if(i.outboundType == '3'){
i.outboundTypeName = "自提" i.outboundTypeName = "自提"
} }
if(i.deliveryListCode == '-1'){
i.deliveryListCode = null
}
}) })
this.page1.total = b.data.data.total; this.page1.total = b.data.data.total;
this.loading = false; this.loading = false;

19
src/views/warehouse/warehousingentry/warehouseWarehouseingAddReceipt.vue

@ -315,7 +315,8 @@ import { getDept } from '@/api/system/dept';
import { getListMaterial } from '@/api/basic/basicMaterial'; import { getListMaterial } from '@/api/basic/basicMaterial';
import { getListCopy } from '@/api/basicdata/basicdataWarehouse'; import { getListCopy } from '@/api/basicdata/basicdataWarehouse';
import { getListIdsName} from '@/api/basicdata/basicdataStoreBrand'; import { getListIdsName} from '@/api/basicdata/basicdataStoreBrand';
import dayjs from 'dayjs'; import { getListName} from '@/api/basicdata/basicdataStoreBusiness';
export default { export default {
@ -352,7 +353,7 @@ export default {
}, },
// //
form: { form: {
serviceType: "1" serviceType: null,
}, },
formDetail: {}, formDetail: {},
// //
@ -630,12 +631,20 @@ export default {
// //
async getMenDian(row){ async getMenDian(row){
// console.log("",row); // console.log("",row);
let aa = '';
this.options.some(i =>{ this.options.some(i =>{
// console.log(">><><><<>",i);
if(i.value == row){ if(i.value == row){
this.form.customerName = i.label; this.form.customerName = i.label;
//
aa= i.value;
} }
}) })
let bu = await getListName(this.page.currentPage, this.page.pageSize,{ clientId: aa ,typeService: '3'});
// console.log("bububu",bu.data.data.records);
if(bu.data.data?.records.length > 0){
this.form.serviceType = bu.data.data.records[0].mold;
}
let cl = await getListClient(this.page.currentPage, this.page.pageSize,{pid:row}); let cl = await getListClient(this.page.currentPage, this.page.pageSize,{pid:row});
// console.log(">>>>",cl.data.data.records); // console.log(">>>>",cl.data.data.records);
cl.data.data.records.forEach(i =>{ cl.data.data.records.forEach(i =>{
@ -676,11 +685,11 @@ export default {
if (query) { if (query) {
// this.loading = true; // this.loading = true;
let cl = await getListClient(this.page.currentPage, this.page.pageSize,{clientName:query}); let cl = await getListClient(this.page.currentPage, this.page.pageSize,{clientName:query});
// console.log(">>>>",cl.data.data.records); console.log("客户信息1234>>>>",cl.data.data.records);
cl.data.data.records.forEach(i =>{ cl.data.data.records.forEach(i =>{
let st= { let st= {
label: i.clientName, label: i.clientName,
value: i.id value: i.id,
} }
this.options.push(st); this.options.push(st);
}); });

Loading…
Cancel
Save