temp
ddlucky 2 years ago
parent 3236632953
commit a50fe8760d

@ -227,7 +227,7 @@ let extension = {
this.$refs.modelBody.$refs.table_feerate.load(); this.$refs.modelBody.$refs.table_feerate.load();
this.$refs.modelBody.$refs.table_opstatus.load(); this.$refs.modelBody.$refs.table_opstatus.load();
this.$refs.modelBody.getLogicData(); this.$refs.modelBody.getLogicData();
} }

@ -562,36 +562,14 @@ export default {
this.$store.getters.data().WMSINDO_parent_head.$refs.modelBody.$refs.tab_dolist.columns.forEach((x)=>{ this.$store.getters.data().WMSINDO_parent_head.$refs.modelBody.$refs.tab_dolist.columns.forEach((x)=>{
if(x.field=='AREACODE'){ if(x.field=='AREACODE'){
// x.bind.data=[];
// row.AreaCodeList.forEach((a)=>{
// // if(a.key.indexOf(row["STOREHOUSE"])==0){
// // x.bind.data.push(a);
// // }
// x.bind.data.filter(y => {
// let result=y.key.indexOf(row["STOREHOUSE"])==0;
// if(!result) y.hidden;
// //return result;
// });
// });
// x.bind.data=row.AreaCodeList.filter(y => {
// let result=y.key.indexOf(row["STOREHOUSE"])==0;
// //if(!result) y.hidden;
// return result;
// });
x.bind.data=row.AreaCodeList.filter(y => { x.bind.data=row.AreaCodeList.filter(y => {
let result=y.key.indexOf(row["STOREHOUSE"])==0; let result=y.key.indexOf(row["STOREHOUSE"])==0;
//if(!result) y.hidden; //if(!result) y.hidden;
return result; return result;
}); });
this.$store.getters.data().WMSINDO_parent_head.CurrAreaCode.forEach((y) => { this.$store.getters.data().WMSINDO_parent_head.CurrAreaCode.forEach((y) => {
// x.bind.data.some(function(v){
// if(v.key == y.key) {
// return true;
// }else{
// x.bind.data.push(y);
// }
// });
let needinsert=true; let needinsert=true;
x.bind.data.some((c)=>{ x.bind.data.some((c)=>{
@ -874,6 +852,7 @@ export default {
}, },
mounted(){ mounted(){
this.getLogicData(); this.getLogicData();
}, },
methods: { methods: {
@ -976,13 +955,13 @@ export default {
loadTableAfter_inplanlist(data, callBack) { loadTableAfter_inplanlist(data, callBack) {
this.insertbaselist(data); this.insertbaselist(data);
return true; return true;
}, },
loadTableAfter_dolist(data, callBack) { loadTableAfter_dolist(data, callBack) {
this.insertbaselist(data); this.insertbaselist(data);
this.LoadDoinfo(data);
this.loadAreacode(data); this.FilterAreacode(data);
return true; return true;
}, },
loadTableAfterfile(data, callBack) { loadTableAfterfile(data, callBack) {
@ -1050,69 +1029,53 @@ export default {
}); });
} }
data.forEach((x)=>{
var userInfo=this.$store.getters.getUserInfo()
x.curruser=userInfo.userId;
});
},
this.$store.getters.data().WMSINDO_parent_head.$refs.modelBody.$refs.tab_dolist.columns.forEach((x)=>{ LoadDoinfo(data){
if(x.field=='AREACODE'){
x.bind.data=row.AreaCodeList.filter(y => {
let result=y.key.indexOf(row["STOREHOUSE"])==0;
return result; data.forEach((x)=>{
}); var userInfo=this.$store.getters.getUserInfo()
this.$store.getters.data().WMSINDO_parent_head.CurrAreaCode.forEach((y) => { x.curruser=userInfo.userId;
this.$store.getters.data().WMSINDO_parent_head.dicKeys.forEach((y)=>{
let needinsert=true; if(y.dicNo=="areacode"){
x.bind.data.some((c)=>{ x.AreaCodeList = y.data;
if(c.key==y.key){
needinsert=false;
return true;
}
});
if(needinsert) {
x.bind.data.push(y);
} }
})
}); });
}
});
}, },
loadAreacode(data){ FilterAreacode(data){
// console.log(data);
if(!data) return;
//data.forEach((x)=>{ var _storehouse=data[0].STOREHOUSE;
// if(data && data.length>0){ setTimeout(() => {
// var _rec=data[0]; this.$refs.tab_dolist.columns.forEach((x)=>{
if(x.field=='AREACODE'){
// this.$store.getters.data().WMSINDO_parent_head.dicKeys.forEach((y)=>{
var newdata=[];
x.bind.data.forEach(y => {
// console.log(y);
// console.log(y.key);
// console.log(_storehouse);
// console.log(y.key.indexOf(_storehouse));
if(y.key.indexOf(_storehouse)==0){
newdata.push(y);
// console.log(newdata)
}
});
x.bind.data=newdata;
// if(y.dicNo=="areacode"){
// x.AreaCodeList = y.data; }
// x.AreaCodeList.filter(z => { });
// let result=z.key.indexOf(_rec.STOREHOUSE)==0; }, 500)
// //if(!result) y.hidden;
// return result;
// });
// }
// })
// }
//});
}, },
loadTableAfter_workdetail(data, callBack) { loadTableAfter_workdetail(data, callBack) {
return true; return true;
@ -1176,7 +1139,7 @@ export default {
}, },
remoteLoad() { remoteLoad() {
alert('loaded');
}, },

Loading…
Cancel
Save