发票日期校验逻辑调整

This commit is contained in:
zhangzhiguo 2025-09-25 15:24:30 +08:00
parent 804891979b
commit 6870eb3602
1 changed files with 2 additions and 1 deletions

View File

@ -65,7 +65,8 @@ public class TripreimbursebillIsInvoiceDateCheckOp extends AbstractOperationServ
if(costcompanyObj!=null && costdeptObj != null){
DynamicObject costcompany = (DynamicObject)costcompanyObj;
long costcompanyId = costcompany.getLong("id");
if(OrgCheckUtils.isKS(costcompanyId)){
String number = costcompany.getString("number");
if(OrgCheckUtils.isKS(costcompanyId) && !number.equals("10006476")){
List<String> errorList = new ArrayList<>();
//行程明细会有多个明细
DynamicObjectCollection tripentry = dataEntity.getDynamicObjectCollection("tripentry");