|
@@ -789,7 +789,7 @@ public class BizArchiveInputServiceImpl extends ServiceImpl<BizArchiveInputMappe
|
|
|
BigDecimal keeFreeMonth = item.getKeepAccountFreeMonth() == null ? BigDecimal.ZERO : BigDecimal.valueOf(item.getKeepAccountFreeMonth());
|
|
|
if (totalMonthsBetween != keepAccountMonth.add(keeFreeMonth).intValue()){
|
|
|
failureNum++;
|
|
|
- failureMsg.append("<br/>").append(failureNum).append("导入的合同编号 ").append(item.getContractNo()).append("代理记账时间不同");
|
|
|
+ failureMsg.append("<br/>").append(failureNum).append(company.getName()+"的代理记账服务的服务月数+赠送月数跟结束月-开始月的时间不等,请检查数据");
|
|
|
continue;
|
|
|
}
|
|
|
|
|
@@ -807,7 +807,8 @@ public class BizArchiveInputServiceImpl extends ServiceImpl<BizArchiveInputMappe
|
|
|
BigDecimal socialSecurityMonth = item.getSocialSecurityFreeMonth() == null ? BigDecimal.ZERO : BigDecimal.valueOf(item.getSocialSecurityFreeMonth());
|
|
|
if (totalMonthsBetween2 != securityMonth.add(socialSecurityMonth).intValue()){
|
|
|
failureNum++;
|
|
|
- failureMsg.append("<br/>").append(failureNum).append("导入的合同编号 ").append(item.getContractNo()).append("社保代缴时间不同");
|
|
|
+
|
|
|
+ failureMsg.append("<br/>").append(failureNum).append(company.getName()+"的社保代缴服务的服务月数+赠送月数跟结束月-开始月的时间不等,请检查数据");
|
|
|
continue;
|
|
|
}
|
|
|
}
|
|
@@ -826,7 +827,7 @@ public class BizArchiveInputServiceImpl extends ServiceImpl<BizArchiveInputMappe
|
|
|
BigDecimal housingFundMonths = item.getHousingFundFreeMonth() == null ? BigDecimal.ZERO : BigDecimal.valueOf(item.getHousingFundFreeMonth());
|
|
|
if (totalMonthsBetween3!= housingFundMonth.add(housingFundMonths).intValue()){
|
|
|
failureNum++;
|
|
|
- failureMsg.append("<br/>").append(failureNum).append("导入的合同编号 ").append(item.getContractNo()).append("公积金时间不同");
|
|
|
+ failureMsg.append("<br/>").append(failureNum).append(company.getName()+"的公积金服务的服务月数+赠送月数跟结束月-开始月的时间不等,请检查数据");
|
|
|
continue;
|
|
|
}
|
|
|
}
|
|
@@ -844,7 +845,7 @@ public class BizArchiveInputServiceImpl extends ServiceImpl<BizArchiveInputMappe
|
|
|
BigDecimal returnTaxFreeMonth = item.getReturnTaxFreeMonth() == null ? BigDecimal.ZERO : BigDecimal.valueOf(item.getReturnTaxFreeMonth());
|
|
|
if (totalMonthsBetween4!= returnTaxMonth.add(returnTaxFreeMonth).intValue()){
|
|
|
failureNum++;
|
|
|
- failureMsg.append("<br/>").append(failureNum).append("导入的合同编号 ").append(item.getContractNo()).append("返税申报时间不同");
|
|
|
+ failureMsg.append("<br/>").append(failureNum).append(company.getName()+"的返税申报服务的服务月数+赠送月数跟结束月-开始月的时间不等,请检查数据");
|
|
|
continue;
|
|
|
}
|
|
|
}
|