Преглед на файлове

feat: 调整成本管理系统数据入库定时任务账期逻辑

weijianghai преди 1 година
родител
ревизия
980afd4168

+ 3 - 8
src/main/java/com/nokia/finance/tasks/jobs/car/chengben/CarBaoXianJob.java

@@ -25,8 +25,6 @@ import java.nio.file.Files;
 import java.nio.file.Path;
 import java.nio.file.Paths;
 import java.nio.file.StandardCopyOption;
-import java.time.LocalDateTime;
-import java.time.format.DateTimeFormatter;
 import java.util.ArrayList;
 import java.util.LinkedHashMap;
 import java.util.List;
@@ -154,12 +152,9 @@ public class CarBaoXianJob {
         Map<String, AreaPo> areaMap = areaService.getAreaMap(cities, districts);
         Map<String, List<AreaPo>> districtListMap = areaService.getDistrictListMap(cities, districts);
         for (Map<String, String> map : list) {
-            String startTime = map.get("start_time");
-            LocalDateTime localDateTime = LocalDateTime.parse(startTime,
-                    DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"));
-            String yearMonth = localDateTime.format(DateTimeFormatter.ofPattern("yyyyMM"));
-            String year = String.valueOf(localDateTime.getYear());
-            String month = String.valueOf(localDateTime.getMonthValue());
+            String yearMonth = map.get("data_time");
+            String year = yearMonth.substring(0, 4);
+            String month = yearMonth.substring(4, 6);
             map.put("year_month", yearMonth);
             map.put("year_no", year);
             map.put("month_no", month);

+ 3 - 8
src/main/java/com/nokia/finance/tasks/jobs/car/chengben/CarDaWeiXiuJob.java

@@ -25,8 +25,6 @@ import java.nio.file.Files;
 import java.nio.file.Path;
 import java.nio.file.Paths;
 import java.nio.file.StandardCopyOption;
-import java.time.LocalDateTime;
-import java.time.format.DateTimeFormatter;
 import java.util.ArrayList;
 import java.util.LinkedHashMap;
 import java.util.List;
@@ -151,12 +149,9 @@ public class CarDaWeiXiuJob {
         Map<String, AreaPo> areaMap = areaService.getAreaMap(cities, districts);
         Map<String, List<AreaPo>> districtListMap = areaService.getDistrictListMap(cities, districts);
         for (Map<String, String> map : list) {
-            String startTime = map.get("start_time");
-            LocalDateTime localDateTime = LocalDateTime.parse(startTime,
-                    DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"));
-            String yearMonth = localDateTime.format(DateTimeFormatter.ofPattern("yyyyMM"));
-            String year = String.valueOf(localDateTime.getYear());
-            String month = String.valueOf(localDateTime.getMonthValue());
+            String yearMonth = map.get("data_time");
+            String year = yearMonth.substring(0, 4);
+            String month = yearMonth.substring(4, 6);
             map.put("year_month", yearMonth);
             map.put("year_no", year);
             map.put("month_no", month);

+ 3 - 8
src/main/java/com/nokia/finance/tasks/jobs/car/chengben/CarLuQiaoJob.java

@@ -25,8 +25,6 @@ import java.nio.file.Files;
 import java.nio.file.Path;
 import java.nio.file.Paths;
 import java.nio.file.StandardCopyOption;
-import java.time.LocalDateTime;
-import java.time.format.DateTimeFormatter;
 import java.util.ArrayList;
 import java.util.LinkedHashMap;
 import java.util.List;
@@ -150,12 +148,9 @@ public class CarLuQiaoJob {
         Map<String, AreaPo> areaMap = areaService.getAreaMap(cities, districts);
         Map<String, List<AreaPo>> districtListMap = areaService.getDistrictListMap(cities, districts);
         for (Map<String, String> map : list) {
-            String startTime = map.get("start_time");
-            LocalDateTime localDateTime = LocalDateTime.parse(startTime,
-                    DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"));
-            String yearMonth = localDateTime.format(DateTimeFormatter.ofPattern("yyyyMM"));
-            String year = String.valueOf(localDateTime.getYear());
-            String month = String.valueOf(localDateTime.getMonthValue());
+            String yearMonth = map.get("data_time");
+            String year = yearMonth.substring(0, 4);
+            String month = yearMonth.substring(4, 6);
             map.put("year_month", yearMonth);
             map.put("year_no", year);
             map.put("month_no", month);

+ 3 - 8
src/main/java/com/nokia/finance/tasks/jobs/car/chengben/CarNianJianFeiJob.java

@@ -25,8 +25,6 @@ import java.nio.file.Files;
 import java.nio.file.Path;
 import java.nio.file.Paths;
 import java.nio.file.StandardCopyOption;
-import java.time.LocalDateTime;
-import java.time.format.DateTimeFormatter;
 import java.util.ArrayList;
 import java.util.LinkedHashMap;
 import java.util.List;
@@ -150,12 +148,9 @@ public class CarNianJianFeiJob {
         Map<String, AreaPo> areaMap = areaService.getAreaMap(cities, districts);
         Map<String, List<AreaPo>> districtListMap = areaService.getDistrictListMap(cities, districts);
         for (Map<String, String> map : list) {
-            String startTime = map.get("start_time");
-            LocalDateTime localDateTime = LocalDateTime.parse(startTime,
-                    DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"));
-            String yearMonth = localDateTime.format(DateTimeFormatter.ofPattern("yyyyMM"));
-            String year = String.valueOf(localDateTime.getYear());
-            String month = String.valueOf(localDateTime.getMonthValue());
+            String yearMonth = map.get("data_time");
+            String year = yearMonth.substring(0, 4);
+            String month = yearMonth.substring(4, 6);
             map.put("year_month", yearMonth);
             map.put("year_no", year);
             map.put("month_no", month);

+ 3 - 8
src/main/java/com/nokia/finance/tasks/jobs/car/chengben/CarQiTaJob.java

@@ -25,8 +25,6 @@ import java.nio.file.Files;
 import java.nio.file.Path;
 import java.nio.file.Paths;
 import java.nio.file.StandardCopyOption;
-import java.time.LocalDateTime;
-import java.time.format.DateTimeFormatter;
 import java.util.ArrayList;
 import java.util.LinkedHashMap;
 import java.util.List;
@@ -150,12 +148,9 @@ public class CarQiTaJob {
         Map<String, AreaPo> areaMap = areaService.getAreaMap(cities, districts);
         Map<String, List<AreaPo>> districtListMap = areaService.getDistrictListMap(cities, districts);
         for (Map<String, String> map : list) {
-            String startTime = map.get("start_time");
-            LocalDateTime localDateTime = LocalDateTime.parse(startTime,
-                    DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"));
-            String yearMonth = localDateTime.format(DateTimeFormatter.ofPattern("yyyyMM"));
-            String year = String.valueOf(localDateTime.getYear());
-            String month = String.valueOf(localDateTime.getMonthValue());
+            String yearMonth = map.get("data_time");
+            String year = yearMonth.substring(0, 4);
+            String month = yearMonth.substring(4, 6);
             map.put("year_month", yearMonth);
             map.put("year_no", year);
             map.put("month_no", month);

+ 3 - 8
src/main/java/com/nokia/finance/tasks/jobs/car/chengben/CarRanYouJob.java

@@ -25,8 +25,6 @@ import java.nio.file.Files;
 import java.nio.file.Path;
 import java.nio.file.Paths;
 import java.nio.file.StandardCopyOption;
-import java.time.LocalDateTime;
-import java.time.format.DateTimeFormatter;
 import java.util.ArrayList;
 import java.util.LinkedHashMap;
 import java.util.List;
@@ -152,12 +150,9 @@ public class CarRanYouJob {
         Map<String, AreaPo> areaMap = areaService.getAreaMap(cities, districts);
         Map<String, List<AreaPo>> districtListMap = areaService.getDistrictListMap(cities, districts);
         for (Map<String, String> map : list) {
-            String startTime = map.get("start_time");
-            LocalDateTime localDateTime = LocalDateTime.parse(startTime,
-                    DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"));
-            String yearMonth = localDateTime.format(DateTimeFormatter.ofPattern("yyyyMM"));
-            String year = String.valueOf(localDateTime.getYear());
-            String month = String.valueOf(localDateTime.getMonthValue());
+            String yearMonth = map.get("data_time");
+            String year = yearMonth.substring(0, 4);
+            String month = yearMonth.substring(4, 6);
             map.put("year_month", yearMonth);
             map.put("year_no", year);
             map.put("month_no", month);

+ 3 - 8
src/main/java/com/nokia/finance/tasks/jobs/car/chengben/CarWeiXiuJob.java

@@ -25,8 +25,6 @@ import java.nio.file.Files;
 import java.nio.file.Path;
 import java.nio.file.Paths;
 import java.nio.file.StandardCopyOption;
-import java.time.LocalDateTime;
-import java.time.format.DateTimeFormatter;
 import java.util.ArrayList;
 import java.util.LinkedHashMap;
 import java.util.List;
@@ -151,12 +149,9 @@ public class CarWeiXiuJob {
         Map<String, AreaPo> areaMap = areaService.getAreaMap(cities, districts);
         Map<String, List<AreaPo>> districtListMap = areaService.getDistrictListMap(cities, districts);
         for (Map<String, String> map : list) {
-            String startTime = map.get("start_time");
-            LocalDateTime localDateTime = LocalDateTime.parse(startTime,
-                    DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"));
-            String yearMonth = localDateTime.format(DateTimeFormatter.ofPattern("yyyyMM"));
-            String year = String.valueOf(localDateTime.getYear());
-            String month = String.valueOf(localDateTime.getMonthValue());
+            String yearMonth = map.get("data_time");
+            String year = yearMonth.substring(0, 4);
+            String month = yearMonth.substring(4, 6);
             map.put("year_month", yearMonth);
             map.put("year_no", year);
             map.put("month_no", month);

+ 3 - 8
src/main/java/com/nokia/finance/tasks/jobs/house/chengben/HouseBuildingRepairMonthJob.java

@@ -22,8 +22,6 @@ import java.nio.file.Files;
 import java.nio.file.Path;
 import java.nio.file.Paths;
 import java.nio.file.StandardCopyOption;
-import java.time.LocalDateTime;
-import java.time.format.DateTimeFormatter;
 import java.util.ArrayList;
 import java.util.LinkedHashMap;
 import java.util.List;
@@ -137,12 +135,9 @@ public class HouseBuildingRepairMonthJob {
      */
     public List<Map<String, String>> dataProcessing(Path path, List<Map<String, String>> list) {
         for (Map<String, String> map : list) {
-            String startTime = map.get("start_time");
-            LocalDateTime localDateTime = LocalDateTime.parse(startTime,
-                    DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"));
-            String yearMonth = localDateTime.format(DateTimeFormatter.ofPattern("yyyyMM"));
-            String year = String.valueOf(localDateTime.getYear());
-            String month = String.valueOf(localDateTime.getMonthValue());
+            String yearMonth = map.get("data_time");
+            String year = yearMonth.substring(0, 4);
+            String month = yearMonth.substring(4, 6);
             map.put("year_month", yearMonth);
             map.put("year_no", year);
             map.put("month_no", month);