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

各项目经营分析取值调整

fyz преди 2 месеца
родител
ревизия
73de4b11a3

+ 5 - 0
mjava-lanyun/src/main/java/com/malk/lanyun/schedule/NCTask.java

@@ -21,6 +21,7 @@ public class NCTask {
      */
     @Scheduled(cron = "0 0 4 * * ?")
     void productCosts() {
+        log.info("开始跑批更新NC生产成本");
         ncService.getNcInfo();
     }
 
@@ -29,6 +30,7 @@ public class NCTask {
      */
     @Scheduled(cron = "0 30 4 * * ?")
     void materialCost() {
+        log.info("开始跑批更新NC生产成本");
         ncService.getNcCgInfo();
     }
     /**
@@ -36,6 +38,7 @@ public class NCTask {
      */
     @Scheduled(cron = "0 0 5 * * ?")
     void bigProductCosts() {
+        log.info("开始跑批更新NC大业主生产成本");
         ncService.getNcCost();
     }
     /**
@@ -43,6 +46,7 @@ public class NCTask {
      */
     @Scheduled(cron = "0 30 5 * * ?")
     void departmentCost() {
+        log.info("开始跑批更新NC-部门费用达成明细");
         ncService.getNcCollection();
     }
     /**
@@ -50,6 +54,7 @@ public class NCTask {
      */
     @Scheduled(cron = "0 0 6 * * ?")
     void supplierPay() {
+        log.info("开始跑批更新NC供应商付款");
         ncService.getSupplierPay();
     }
     /**

Файловите разлики са ограничени, защото са твърде много
+ 105 - 478
mjava-lanyun/src/main/java/com/malk/lanyun/service/impl/NCServiceImpl.java