ly vor 1 Jahr
Ursprung
Commit
302cd18c98

+ 1 - 1
src/main/java/cn/ezhizao/project/business/housingFund/controller/BizHousingFundDeclareController.java

@@ -125,7 +125,7 @@ public class BizHousingFundDeclareController extends BaseController {
             List<EmployeeExcel> list = getList(vo, employees, employeeExcels);
             HashMap<String, Object> map = new HashMap<>();
             BizCompany company = companyService.getById(vo.getCompanyId());
-            String titleName = vo.getYear() + "年" + vo.getMonth() + "月" + company.getName()+ "公司公积金明细";
+            String titleName = vo.getYear() + "年" + vo.getMonth() + "月" + company.getName()+ "公积金明细";
             AtomicReference<BigDecimal> totat1 = new AtomicReference<>(BigDecimal.ZERO);
             AtomicReference<BigDecimal> totat2 = new AtomicReference<>(BigDecimal.ZERO);
             AtomicReference<BigDecimal> totat3 = new AtomicReference<>(BigDecimal.ZERO);

+ 1 - 1
src/main/java/cn/ezhizao/project/business/socialSecurity/controller/SocialSecurityDeclareController.java

@@ -174,7 +174,7 @@ public class SocialSecurityDeclareController extends BaseController {
             List<SocialSecurityEmployeeExcel> list = getList(vo, employees, employeeExcels);
             HashMap<String, Object> map = new HashMap<>();
             BizCompany company = companyService.getById(vo.getCompanyId());
-            String titleName = vo.getYear() + "年" + vo.getMonth() + "月" + company.getName() + "公司社保明细";
+            String titleName = vo.getYear() + "年" + vo.getMonth() + "月" + company.getName() + "社保明细";
             AtomicReference<BigDecimal>[] totals = new AtomicReference[17];
             // 初始化数组
             for (int i = 0; i < totals.length; i++) {