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,6 +548,36 @@ export default { ...@@ -548,6 +548,36 @@ 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 errFinanceIds=[];
this.multipleSelection.forEach(x => {
if(x.InvoiceState>0){
errFinanceIds.push(x.FrID);
}
})
if(errFinanceIds.length>0){
let errF=errFinanceIds.join(',');
this.$confirm(errF+"存在发票信息,是否继续提交?", this.$t('tips.tips'), {
confirmButtonText: this.$t('pub.sureBtn'),
cancelButtonText: this.$t('pub.cancelBtn'),
type: 'warning'
}).then(() => {
let batchOrder=this.multipleSelection.map(x=>x.FrID).join(',');
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 batchOrder=this.multipleSelection.map(x=>x.FrID).join(',');
let query = { let query = {
...@@ -560,5 +590,6 @@ export default { ...@@ -560,5 +590,6 @@ export default {
}); });
} }
} }
}
} }
</script> </script>
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