From 9a0ef802a678ffc421fc1d416f7f867e89e5536a Mon Sep 17 00:00:00 2001 From: D C <chenbangcai@prec-tech.com> Date: 星期五, 26 五月 2023 10:32:04 +0800 Subject: [PATCH] 维修合同 多年保修消费率逻辑更改 --- force-app/main/default/classes/ConsumAutoSelectBatchSchedule.cls | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/force-app/main/default/classes/ConsumAutoSelectBatchSchedule.cls b/force-app/main/default/classes/ConsumAutoSelectBatchSchedule.cls index d1f5dae..835c77d 100644 --- a/force-app/main/default/classes/ConsumAutoSelectBatchSchedule.cls +++ b/force-app/main/default/classes/ConsumAutoSelectBatchSchedule.cls @@ -1,5 +1,9 @@ global class ConsumAutoSelectBatchSchedule implements Schedulable { global void execute(SchedulableContext sc) { ConsumAutoSelectBatch.run(); + // 2023/04/19 add SummaryContractFMBatch + Id execBTId = Database.executeBatch(new SummaryContractFMBatch(),100); + //2023/05/11 add SummaryConsumptionRateBatch + Id execConsumptionRateId = Database.executeBatch(new SummaryConsumptionRateBatch(),100); } } \ No newline at end of file -- Gitblit v1.9.1