Commit cb92bf27 authored by liudong1993's avatar liudong1993

1

parent 90b6ede9
......@@ -363,7 +363,7 @@ export default {
},
selectable(row, index) {
if (row.InvoiceState>0) {
return false;
return true;
} else {
return true;
}
......@@ -548,16 +548,47 @@ export default {
},
goCreateInvoice(){
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 = {
batch: batchOrder,
blank: "y",
};
this.$router.push({
path: "/invoicesManagerAdd",
query
});
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 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