Commit cb92bf27 authored by liudong1993's avatar liudong1993

1

parent 90b6ede9
...@@ -363,7 +363,7 @@ export default { ...@@ -363,7 +363,7 @@ export default {
}, },
selectable(row, index) { selectable(row, index) {
if (row.InvoiceState>0) { if (row.InvoiceState>0) {
return false; return true;
} else { } else {
return true; return true;
} }
...@@ -548,16 +548,47 @@ export default { ...@@ -548,16 +548,47 @@ export default {
}, },
goCreateInvoice(){ goCreateInvoice(){
if(!(this.multipleSelection && this.multipleSelection.length>0)){ this.$message.error('请勾选平台数据'); } if(!(this.multipleSelection && this.multipleSelection.length>0)){ this.$message.error('请勾选平台数据'); }
let batchOrder=this.multipleSelection.map(x=>x.FrID).join(','); let errFinanceIds=[];
this.multipleSelection.forEach(x => {
if(x.InvoiceState>0){
errFinanceIds.push(x.FrID);
}
})
if(errFinanceIds.length>0){
let errF=errFinanceIds.join(',');
let query = { this.$confirm(errF+"存在发票信息,是否继续提交?", this.$t('tips.tips'), {
batch: batchOrder, confirmButtonText: this.$t('pub.sureBtn'),
blank: "y", cancelButtonText: this.$t('pub.cancelBtn'),
}; type: 'warning'
this.$router.push({ }).then(() => {
path: "/invoicesManagerAdd", let batchOrder=this.multipleSelection.map(x=>x.FrID).join(',');
query let query = {
}); batch: batchOrder,
blank: "y",
};
this.$router.push({
path: "/invoicesManagerAdd",
query
});
}).catch(() => {
this.$message({
type: 'info',
message: "已取消"
});
});
}else{
let batchOrder=this.multipleSelection.map(x=>x.FrID).join(',');
let query = {
batch: batchOrder,
blank: "y",
};
this.$router.push({
path: "/invoicesManagerAdd",
query
});
}
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment