Commit 55da8363 by liyanlin

fix

parent f34710fb
...@@ -174,7 +174,7 @@ public class CostPlanServiceFactory { ...@@ -174,7 +174,7 @@ public class CostPlanServiceFactory {
Map<Integer, Map<CostPlanDomain, List<AddItemReq>>> costPlanAndItemMap = new HashMap<>(); Map<Integer, Map<CostPlanDomain, List<AddItemReq>>> costPlanAndItemMap = new HashMap<>();
//公司主体映射 //公司主体映射
Map<String, CostCompanyDomain> costCompanyDomainMap = getCostCompanyService().costCompanyMap(); Map<String, CostCompanyDomain> costCompanyDomainMap = getCostCompanyService().costCompanyMap();
for (int i = 1; i <= sheet.getLastRowNum(); i++) { for (int i = 1; i < sheet.getLastRowNum(); i++) {
Row row = sheet.getRow(i); Row row = sheet.getRow(i);
JSONObject jsonObject = new JSONObject(); JSONObject jsonObject = new JSONObject();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment