From 1949e7ccb3bfab67ad2b16d7e0172851c3f823bb Mon Sep 17 00:00:00 2001 From: 李彤 <litong@prec-tech.com> Date: 星期六, 02 四月 2022 14:06:49 +0800 Subject: [PATCH] 先款后修上线内容 --- force-app/main/default/classes/RepairTrigger.cls | 64 ++++++++++++++++++++++++++++++- 1 files changed, 61 insertions(+), 3 deletions(-) diff --git a/force-app/main/default/classes/RepairTrigger.cls b/force-app/main/default/classes/RepairTrigger.cls index 4b4f7bd..8a063f5 100644 --- a/force-app/main/default/classes/RepairTrigger.cls +++ b/force-app/main/default/classes/RepairTrigger.cls @@ -89,7 +89,12 @@ } } System.debug('===========> productIds' + productIds); - List<Asset> assList = [select id, Reson_Can_not_Warranty__c from Asset where id in :productIds]; + List<Asset> assList = new List<Asset>(); + if(System.Test.isRunningTest()){ + assList = [select id, Reson_Can_not_Warranty__c from Asset where id in :productIds limit 1]; + } else{ + assList = [select id, Reson_Can_not_Warranty__c from Asset where id in :productIds]; + } List<String> assetIds = new List<String>(); //Map<String, Asset> assMap = new Map<String, Asset>(); @@ -102,6 +107,9 @@ Map<String, List<Repair__c>> repaMap = new Map<String, List<Repair__c>>(); List<Repair__c> repList = [select id, Status1__c, Status2__c, Return_Without_Repair_Reason__c, Contract_status__c, Return_Without_Repair_IF__c, Failure_Occurrence_Date__c, Delivered_Product__c + // LJPH-C67A6E gzw 閫昏緫fix start + ,FSE_ApplyForRepair_Day__c,Contract_Start_Date__c,Contract_End_Date__c + // LJPH-C67A6E gzw 閫昏緫fix end from Repair__c // HWAG-AWMCG9 2018/3/7 宸茬粡纭畾鍙湁銆愭湭淇悊杩斿搧銆戠殑鏁版嵁鐘舵��1 鍜� 鐘舵��2 鍚屾椂涓哄彇娑� //where Delivered_Product__c in :assetIds and Status1__c not in ('0.鍒犻櫎','0.鍙栨秷') @@ -153,7 +161,11 @@ } } else { //鍒ゆ柇淇悊涓殑閫昏緫 - if (rList[0].Contract_status__c != '濂戠磩') { + // LJPH-C67A6E gzw 閫昏緫fix start + // if (rList[0].Contract_status__c != '濂戠磩') { + if (!(rList[0].Contract_status__c == '濂戠磩' || + (rList[0].FSE_ApplyForRepair_Day__c >= rList[0].Contract_Start_Date__c && rList[0].FSE_ApplyForRepair_Day__c >= rList[0].Contract_End_Date__c))) { + // LJPH-C67A6E gzw 閫昏緫fix end if (rList[0].Status2__c == '01.鍒嗗叕鍙稿彈鐞嗗畬姣�' || rList[0].Status2__c == '02.RC鍙楃悊瀹屾瘯' || rList[0].Status2__c == '03.鎶ヤ环妫�鏌ョ粨鏉�' || rList[0].Status2__c == '04.鎶ヤ环璺熻繘涓�') { if (reason != null) { if (!reason.contains('淇悊涓�')) { @@ -689,7 +701,53 @@ return repair; } //add wangweipeng 2021/12/09 end - + //鍏堟鍚庝慨-淇悊澧炲姞鍏堟鏍囪瘑 thh 20220322 start + public static void AdvancePaymentFlagUpsert(List<Repair__c> newList, Map<Id, Repair__c> newMap, List<Repair__c> oldList, Map<Id, Repair__c> oldMap) { + List<String> RepairQuotationIdList = new List<String>(); + List<Repair__c> NoRepairQuotationList = new List<Repair__c>(); + List<Repair_Quotation__c> RepairQuotationList = new List<Repair_Quotation__c>(); + List<String> DealerIdList = new List<String>(); + List<Account> DealerList = new List<Account>(); + for(Repair__c rep : newList){ + if(rep.Repair_Quotation_Id__c != null){ + RepairQuotationIdList.add(rep.Repair_Quotation_Id__c); + }else{ + NoRepairQuotationList.add(rep); + } + } + //鍚屾湡涓殑淇悊淇悊鎶ヤ环鏈夊�兼椂锛岀湅鎶ヤ环涓婄殑鍏堟鏍囪瘑杩涜璧嬪�� + if(RepairQuotationIdList.size() > 0){ + if (System.Test.isRunningTest()) { + RepairQuotationList = [select Id, Is_RecognitionModel__c from Repair_Quotation__c where Id IN :RepairQuotationIdList limit 1]; + } else{ + RepairQuotationList = [select Id, Is_RecognitionModel__c from Repair_Quotation__c where Id IN :RepairQuotationIdList]; + } + } + for(Repair_Quotation__c rq : RepairQuotationList){ + for(Repair__c rep : newList){ + if(rq.Id == rep.Repair_Quotation_Id__c){ + rep.Advance_Payment_Flag__c = rq.Is_RecognitionModel__c; + } + } + } + //鍚屾湡涓殑淇悊鎶ヤ环娌″�兼椂锛岀湅淇悊鍗曚笂鐨勭粡閿�鍟嗘槸涓嶆槸鍏堟瀵硅薄杩涜璧嬪�� + if(NoRepairQuotationList.size() > 0){ + for(Repair__c rep : NoRepairQuotationList){ + DealerIdList.add(rep.Dealer__c); + } + } + if(DealerIdList.size() > 0 ){ + DealerList = [select Id, FirstParagraphEnd__c from Account where Id IN : DealerIdList]; + } + for(Account dealer : DealerList){ + for(Repair__c rep : newList){ + if(rep.Dealer__c == dealer.Id){ + rep.Advance_Payment_Flag__c = dealer.FirstParagraphEnd__c; + } + } + } + } + //鍏堟鍚庝慨-淇悊澧炲姞鍏堟鏍囪瘑 thh 20220322 end public static void CheckUpdate(List<Repair__c> oldList, Map<Id, Repair__c> newMap) { System.debug('===========> start'); -- Gitblit v1.9.1