已开票页面,已收款不允许发票收款判断

This commit is contained in:
wuteng 2025-09-25 16:26:21 +08:00
parent 18f737693d
commit 411ea2e63b

View File

@ -420,7 +420,7 @@ export default {
if(this.selectList&&this.selectList.length>0){
for(let i=0;i<this.selectList.length;i++){
let item=this.selectList[i];
if(item.paymentStatus!=0){
if(item.paymentStatus == '1'){
this.$modal.msgError("有收款,不允许发票收款!");
return;
}