Browse Source

上海天华机电(北方)事业部组织处理

yaoyu 4 months ago
parent
commit
d338759975
1 changed files with 7 additions and 0 deletions
  1. 7 0
      pu/pu/src/private/nc/bs/ic/base/InvoiceAfterCheckEvent.java

+ 7 - 0
pu/pu/src/private/nc/bs/ic/base/InvoiceAfterCheckEvent.java

@@ -135,10 +135,17 @@ public class InvoiceAfterCheckEvent implements IRule<InvoiceVO>{
 								if("上海天华室内设计有限公司(嘉易工程)".equals(orgnames)) {
 									orgnames = orgnames.replace("(嘉易工程)", "");
 								}
+								//上海天华机电(北方)事业部不是一家实际的公司,开票时开的是上海天华建筑设计有限公司
+								//如果制单组织是上海天华机电(北方)事业部时,将该字段替换成上海天华建筑设计有限公司,确保后续校验
+								if("上海天华机电(北方)事业部".equals(orgnames)) {
+									orgnames = "上海天华建筑设计有限公司";
+								}
 								if(!orgnames.equals(name2)) {
 									
 									ExceptionUtils.wrappBusinessException("发票抬头与财务组织不一致,请修改财务组织!");
 								}
+								
+								
 								//比较纳税人识别号
 								StringBuffer sql2 = new StringBuffer();
 								sql2.append("SELECT");