From 7560140a14a60e949e6130d98225297e84f0a198 Mon Sep 17 00:00:00 2001
From: GWY <guweiyiscp096@foxmail.com>
Date: 星期三, 06 四月 2022 17:22:30 +0800
Subject: [PATCH] class

---
 force-app/main/default/classes/Product2TriggerHandler.cls |  171 +++++++++++++++++++++++++++++---------------------------
 1 files changed, 89 insertions(+), 82 deletions(-)

diff --git a/force-app/main/default/classes/Product2TriggerHandler.cls b/force-app/main/default/classes/Product2TriggerHandler.cls
index 2b34f41..0d7da62 100644
--- a/force-app/main/default/classes/Product2TriggerHandler.cls
+++ b/force-app/main/default/classes/Product2TriggerHandler.cls
@@ -46,51 +46,69 @@
        }
     }
 
+    //鐢ㄤ簬闄嶇被
     public static void checkProduct2Level(List<Product2> newList, Map<Id, Product2> newMap, List<Product2> oldList, Map<Id, Product2> oldMap) {
+        //鍙栦骇鍝乮d
         List<String> p2ids = new List<String>();
         for(Product2 p2 : newList)
         {
             p2ids.add(p2.id);
         }
 
-        //瀛樻斁鏌ユ壘鐨剆oql鏂�
+        //瀛樻斁鏌ユ壘鐨剆oql鏂�,鍏崇郴琛ㄩ噷鐨勪骇鍝佸拰娉ㄥ唽璇佺浉鍏冲瓧娈�
         List<Product_Register_Link__c> pro2List = new List<Product_Register_Link__c>();
         pro2List = [select Product2__r.id,Product2__r.demoteer_Sap__c,Product2__r.Diedatvanink__c,Product_Register__r.Stelsedag__c,Product_Register__r.MedPrdClass__c,Product_Register__r.ValidTo__c,Product_Register__r.ValidFrom__c,Product_Register__c,Product2__c 
         from Product_Register_Link__c 
         where Product2__r.Id in : p2ids];
         System.debug('pro2List='+pro2List);
-        //瀛樻斁浜у搧鐨刬d鍜岀瓑绾х被鍒瓧娈电殑鍊肩殑闆嗗悎
+        //瀛樻斁浜у搧鐨刬d鍜屾敞鍐岃瘉鍖荤枟鍣ㄦ鍒嗙被鐨勫�肩殑闆嗗悎
         Map<Id,List<String>> pro2Map = new Map<Id,List<String>>();
         //瀛樻斁娉ㄥ唽璇佷笂鏈�鍓嶇殑缁存姢鏃�,涓�绫昏瘉浼樺厛,鍚﹀垯浜岀被璇併��
-        Map<Id,Date> prSteMap = new Map<Id,Date>();
-        Map<Id,Date> prSte1Map = new Map<Id,Date>();
+        Map<Id,Date> prSteMap = new Map<Id,Date>();//瀛樹竴绫荤淮鎶ゆ棩
+        Map<Id,Date> prSte1Map = new Map<Id,Date>();//瀛樹簩绫荤淮鎶ゆ棩
         if (pro2List.size()>0) {
             for (Product_Register_Link__c prl: pro2List) {
+                //鏈夊尰鐤楀櫒姊板垎绫诲氨澧炲姞,娌℃湁灏辨斁杩涘幓
                 if (pro2Map.containsKey(prl.Product2__r.Id)) {
                     pro2Map.get(prl.Product2__r.Id).add(prl.Product_Register__r.MedPrdClass__c);
                 }else {
                     pro2Map.put(prl.Product2__r.Id, new List<String>());
                     pro2Map.get(prl.Product2__r.Id).add(prl.Product_Register__r.MedPrdClass__c);
                 }
-
-                if (prl.Product_Register__r.MedPrdClass__c == '1' && prl.Product_Register__r.Stelsedag__c <> null) {
+                //涓�绫昏瘉.缁存姢鏃ヤ笉涓虹┖.浜у搧鐢熶骇鏃ユ湡鍦ㄦ敞鍐岃瘉鏈夋晥鏈熶箣鍐�,涓嬮潰鐨勬槸浜岀被
+                if (prl.Product_Register__r.MedPrdClass__c == '1' && prl.Product_Register__r.Stelsedag__c <> null && 
+                    (newMap.get(prl.Product2__r.Id).demoteer_Sap__c <= prl.Product_Register__r.ValidTo__c && newMap.get(prl.Product2__r.Id).demoteer_Sap__c >= prl.Product_Register__r.ValidFrom__c)) {
                     if (prSteMap.containsKey(prl.Product2__r.Id)) {
-                        if (prSteMap.get(prl.Product2__r.Id) > prl.Product_Register__r.Stelsedag__c) {
+                        //杩欎竴姝�,map鍙兘鏈塱d,浣嗘槸鍊兼槸null,鎵�浠ユ槸null鏃朵篃缁欎粬璧嬪��
+                        if (prSteMap.get(prl.Product2__r.Id) > prl.Product_Register__r.Stelsedag__c || prSteMap.get(prl.Product2__r.Id) == null) {
                             prSteMap.put(prl.Product2__r.Id,prl.Product_Register__r.Stelsedag__c);
                         }
                     }else {
                         prSteMap.put(prl.Product2__r.Id,prl.Product_Register__r.Stelsedag__c);
                     }
+                }else {
+                    //涓嶇鍚堝氨璧嬬┖,鍜屼笂闈㈢殑鍒ゆ柇鏉′欢鏈夊叧鑱�***
+                    if (!prSteMap.containsKey(prl.Product2__r.Id) || prSteMap.get(prl.Product2__r.Id) == null) {
+                        prSteMap.put(prl.Product2__r.Id,null);
+                    }  
                 }
-
-                if ((prl.Product_Register__r.MedPrdClass__c == '2' || prl.Product_Register__r.MedPrdClass__c == '2') && prl.Product_Register__r.Stelsedag__c <> null) {
+                //鍜屼笂闈竴鏍�               
+                if ((prl.Product_Register__r.MedPrdClass__c == '2' || prl.Product_Register__r.MedPrdClass__c == '3') && prl.Product_Register__r.Stelsedag__c <> null && 
+                    (newMap.get(prl.Product2__r.Id).demoteer_Sap__c <= prl.Product_Register__r.ValidTo__c && newMap.get(prl.Product2__r.Id).demoteer_Sap__c >= prl.Product_Register__r.ValidFrom__c)) {
+                    System.debug(prSte1Map.containsKey(prl.Product2__r.Id));
+                    System.debug(prSte1Map);
                     if (prSte1Map.containsKey(prl.Product2__r.Id)) {
-                        if (prSte1Map.get(prl.Product2__r.Id) > prl.Product_Register__r.Stelsedag__c) {
+                        System.debug(prSte1Map.get(prl.Product2__r.Id) > prl.Product_Register__r.Stelsedag__c);
+                        if (prSte1Map.get(prl.Product2__r.Id) > prl.Product_Register__r.Stelsedag__c || prSte1Map.get(prl.Product2__r.Id) == null) {
                             prSte1Map.put(prl.Product2__r.Id,prl.Product_Register__r.Stelsedag__c);
                         }
                     }else {
                         prSte1Map.put(prl.Product2__r.Id,prl.Product_Register__r.Stelsedag__c);
                     }
+                }else {
+                    if (!prSte1Map.containsKey(prl.Product2__r.Id) || prSte1Map.get(prl.Product2__r.Id) == null) {
+                        prSte1Map.put(prl.Product2__r.Id,null);
+                    }  
                 }
             }
         }
@@ -104,85 +122,79 @@
         System.debug('prSte1Map='+prSte1Map);
         Date stedate;
 
-        //閫氳繃涓婇潰鐨勫惊鐜紝鎶婂叧绯昏〃杩囪幏鍙栫殑鏁版嵁璇诲嚭鏉ワ紝浼犵粰map
+        //閫氳繃涓婇潰鐨勫惊鐜紝鎶婂叧绯昏〃杩囪幏鍙栫殑鏁版嵁璇诲嚭鏉ワ紝浼犵粰map锛屼竴鍏卞垎涓�3涓猰ap锛岃娉ㄦ剰
         if (pro2Map.size()>0) {
             for (Product_Register_Link__c pr: pro2List) {
+                //淇濊瘉id鍦ㄤ笂闈㈢殑map閲屽瓨鍦�,浣嗘槸杩欎竴姝ユ湁娌℃湁濂藉儚娌″暐鍖哄埆,鍙堟病閿欒,绱㈡�т笉鍒犳帀
                 if (pro2Map.containsKey(pr.Product2__r.Id) && (prSteMap.containsKey(pr.Product2__r.Id) || prSte1Map.containsKey(pr.Product2__r.Id))) {
-                    stedate = prSteMap.get(pr.Product2__r.Id)==null?prSte1Map.get(pr.Product2__r.Id)==null?null:prSte1Map.get(pr.Product2__r.Id):prSte1Map.get(pr.Product2__r.Id);
-                    if (newMap.get(pr.Product2__r.Id).demoteer_Sap__c <> null && newMap.get(pr.Product2__r.Id).Diedatvanink__c <> null) {
-                        if (pr.Product_Register__r.Stelsedag__c <> null) {
-                            if (newMap.get(pr.Product2__r.Id).Diedatvanink__c <= stedate) {
-                               if (newMap.get(pr.Product2__r.Id).demoteer_Sap__c <= pr.Product_Register__r.ValidTo__c && newMap.get(pr.Product2__r.Id).demoteer_Sap__c >= pr.Product_Register__r.ValidFrom__c
-                                    && pr.Product_Register__r.MedPrdClass__c == '2' || pr.Product_Register__r.MedPrdClass__c == '3') {
-                                    System.debug('2');
-                                    if (prlMap.get(pr.Product2__r.Id) == null) {
-                                        prlMap.put(pr.Product2__r.Id, '浜岀被');
-                                    }else {
-                                        String Lins = prlMap.get(pr.Product2__r.Id);
-                                        Lins += '浜岀被';
-                                        prlMap.put(pr.Product2__r.Id, Lins);
-                                    }
-                                }else if (newMap.get(pr.Product2__r.Id).demoteer_Sap__c <= pr.Product_Register__r.ValidTo__c && newMap.get(pr.Product2__r.Id).demoteer_Sap__c >= pr.Product_Register__r.ValidFrom__c
-                                    && (pr.Product_Register__r.MedPrdClass__c == '1')) {
-                                    System.debug('1');
-                                        if (prlMap.get(pr.Product2__r.Id) == null) {
-                                            prlMap.put(pr.Product2__r.Id, '涓�绫�');
+                    //鍙栧緱鏄骇鍝佺殑鐢熶骇鏃ユ湡鍦ㄦ敞鍐岃瘉鐨勬湁鏁堟湡鍐呯殑娉ㄥ唽璇佷笂闈㈢殑缁存姢鏃�,涓�绫讳紭鍏�,鍏舵浜岀被
+                    stedate = prSteMap.get(pr.Product2__r.Id)==null?(prSte1Map.get(pr.Product2__r.Id)==null?null:prSte1Map.get(pr.Product2__r.Id)):prSteMap.get(pr.Product2__r.Id);
+                    if (stedate <> null) {
+                        //淇濊瘉浜у搧涓婄殑鐢熶骇鏃ユ湁鍊�
+                        if (newMap.get(pr.Product2__r.Id).demoteer_Sap__c <> null) {
+                            //娉ㄥ唽璇佺淮鎶ゆ棩鏈夊��
+                            if (pr.Product_Register__r.Stelsedag__c <> null) {
+                                //鍏ュ簱鏃ュ皬浜庣瓑浜庣淮鎶ゆ棩
+                                if (newMap.get(pr.Product2__r.Id).Diedatvanink__c == null || newMap.get(pr.Product2__r.Id).Diedatvanink__c <= stedate) {
+                                   if (newMap.get(pr.Product2__r.Id).demoteer_Sap__c <= pr.Product_Register__r.ValidTo__c && newMap.get(pr.Product2__r.Id).demoteer_Sap__c >= pr.Product_Register__r.ValidFrom__c
+                                        && pr.Product_Register__r.MedPrdClass__c == '2' || pr.Product_Register__r.MedPrdClass__c == '3') {
+                                        System.debug('2');
+                                        if (prlMap.get(pr.Product2__r.Id) == null || !prlMap.containsKey(pr.Product2__r.Id)) {
+                                            prlMap.put(pr.Product2__r.Id, '浜岀被');
                                         }else {
                                             String Lins = prlMap.get(pr.Product2__r.Id);
-                                            Lins += '涓�绫�';
+                                            Lins += '浜岀被';
                                             prlMap.put(pr.Product2__r.Id, Lins);
                                         }
-                                }else {
-                                    System.debug('闈�');
-                                    if (prlMap.get(pr.Product2__r.Id) == null) {
-                                        prlMap.put(pr.Product2__r.Id, '闈炵洃绠�');
-                                    }else {
-                                        String Lins = prlMap.get(pr.Product2__r.Id);
-                                        Lins += '闈炵洃绠�';
-                                        prlMap.put(pr.Product2__r.Id, Lins);
+                                    }else if (newMap.get(pr.Product2__r.Id).demoteer_Sap__c <= pr.Product_Register__r.ValidTo__c && newMap.get(pr.Product2__r.Id).demoteer_Sap__c >= pr.Product_Register__r.ValidFrom__c
+                                        && (pr.Product_Register__r.MedPrdClass__c == '1')) {
+                                        System.debug('1');
+                                            if (prlMap.get(pr.Product2__r.Id) == null || !prlMap.containsKey(pr.Product2__r.Id)) {
+                                                prlMap.put(pr.Product2__r.Id, '涓�绫�');
+                                            }else {
+                                                String Lins = prlMap.get(pr.Product2__r.Id);
+                                                Lins += '涓�绫�';
+                                                prlMap.put(pr.Product2__r.Id, Lins);
+                                            }
+                                    }
+                                //鍏ュ簱鏃ュぇ浜庣淮鎶ゆ棩
+                                }else if (newMap.get(pr.Product2__r.Id).Diedatvanink__c <> null && newMap.get(pr.Product2__r.Id).Diedatvanink__c > stedate) {
+                                    if (newMap.get(pr.Product2__r.Id).demoteer_Sap__c <= pr.Product_Register__r.ValidTo__c && newMap.get(pr.Product2__r.Id).demoteer_Sap__c >= pr.Product_Register__r.ValidFrom__c
+                                        && pr.Product_Register__r.MedPrdClass__c == '1') {
+                                        if (prl1Map.get(pr.Product2__r.Id) == null || !prl1Map.containsKey(pr.Product2__r.Id)) {
+                                            prl1Map.put(pr.Product2__r.Id, '涓�绫�');
+                                        }else {
+                                            String Lins = prl1Map.get(pr.Product2__r.Id);
+                                            Lins += '涓�绫�';
+                                            prl1Map.put(pr.Product2__r.Id, Lins);
+                                        }
+                                    }else if (newMap.get(pr.Product2__r.Id).demoteer_Sap__c <= pr.Product_Register__r.ValidTo__c && newMap.get(pr.Product2__r.Id).demoteer_Sap__c >= pr.Product_Register__r.ValidFrom__c
+                                        && pr.Product_Register__r.MedPrdClass__c == '2' || pr.Product_Register__r.MedPrdClass__c == '3') {
+                                        if (prl1Map.get(pr.Product2__r.Id) == null || !prl1Map.containsKey(pr.Product2__r.Id)) {
+                                            prl1Map.put(pr.Product2__r.Id, '浜岀被');
+                                        }else {
+                                            String Lins = prl1Map.get(pr.Product2__r.Id);
+                                            Lins += '浜岀被';
+                                            prl1Map.put(pr.Product2__r.Id, Lins);
+                                        }
                                     }
                                 }
-                            }else if (newMap.get(pr.Product2__r.Id).Diedatvanink__c > stedate) {
-                                if (newMap.get(pr.Product2__r.Id).demoteer_Sap__c <= pr.Product_Register__r.ValidTo__c && newMap.get(pr.Product2__r.Id).demoteer_Sap__c >= pr.Product_Register__r.ValidFrom__c
-                                    && pr.Product_Register__r.MedPrdClass__c == '1') {
-                                    if (prl1Map.get(pr.Product2__r.Id) == null) {
-                                        prl1Map.put(pr.Product2__r.Id, '涓�绫�');
-                                    }else {
-                                        String Lins = prl1Map.get(pr.Product2__r.Id);
-                                        Lins += '涓�绫�';
-                                        prl1Map.put(pr.Product2__r.Id, Lins);
-                                    }
-                                }else if (newMap.get(pr.Product2__r.Id).demoteer_Sap__c <= pr.Product_Register__r.ValidTo__c && newMap.get(pr.Product2__r.Id).demoteer_Sap__c >= pr.Product_Register__r.ValidFrom__c
-                                    && pr.Product_Register__r.MedPrdClass__c == '2' || pr.Product_Register__r.MedPrdClass__c == '3') {
-                                    if (prl1Map.get(pr.Product2__r.Id) == null) {
-                                        prl1Map.put(pr.Product2__r.Id, '浜岀被');
-                                    }else {
-                                        String Lins = prl1Map.get(pr.Product2__r.Id);
-                                        Lins += '浜岀被';
-                                        prl1Map.put(pr.Product2__r.Id, Lins);
-                                    }
-                                }else {
-                                    if (prlMap.get(pr.Product2__r.Id) == null) {
-                                        prlMap.put(pr.Product2__r.Id, '闈炵洃绠�');
-                                    }else {
-                                        String Lins = prlMap.get(pr.Product2__r.Id);
-                                        Lins += '闈炵洃绠�';
-                                        prlMap.put(pr.Product2__r.Id, Lins);
-                                    }
-                                }
+                            }else {
+                                //缁存姢鏃ョ┖锛岃繖涓猰ap缃┖
+                                prl2Map.put(pr.Product2__r.Id, '绌�');
                             }
-                        }else {
-                            prl2Map.put(pr.Product2__r.Id, '绌�');
                         }
+                    }else {
+                        //鍓嶉潰map鏃犲�硷紝杩欎釜map缃┖
+                        prl2Map.put(pr.Product2__r.Id, '绌�');
                     }
                 }
             }
         }
                 
-                System.debug('stedate='+stedate);
                 System.debug('prlMap='+prlMap);
                 System.debug('prl1Map='+prl1Map);
-
+                System.debug('prl2Map='+prl2Map);
         //缁欎骇鍝佷笂鐨勭瓑绾х被鍒瓧娈佃祴鍊�
         for (Product2 pr2: newList) {
             if (prlMap.containsKey(pr2.Id)) {
@@ -191,24 +203,19 @@
                     pr2.Level_Category__c = '浜岀被';
                 }else if (prlMap.get(pr2.Id).contains('涓�绫�') && !prlMap.get(pr2.Id).contains('浜岀被')) {
                     pr2.Level_Category__c = '涓�绫�';
-                }else if (prlMap.get(pr2.Id).contains('闈炵洃绠�') && !prl2Map.containsKey(pr2.Id)) {
-                    pr2.Level_Category__c = '闈炵洃绠�';
-                }else {
-                    pr2.Level_Category__c = null;
                 }
-            }
-            if (prl1Map.containsKey(pr2.Id)) {
+            }else if (prl1Map.containsKey(pr2.Id)) {
                 if (prl1Map.get(pr2.Id).contains('涓�绫�')) {
                     pr2.Level_Category__c = '涓�绫�';
                 }else if (prl1Map.get(pr2.Id).contains('浜岀被') && !prl1Map.get(pr2.Id).contains('涓�绫�')) {
                     pr2.Level_Category__c = '浜岀被';
-                }else if (prl1Map.get(pr2.Id).contains('闈炵洃绠�') && !prl2Map.containsKey(pr2.Id)) {
-                    pr2.Level_Category__c = '闈炵洃绠�';
-                }else {
-                    pr2.Level_Category__c = null;
                 }
+            }else if (prl2Map.containsKey(pr2.Id)) {
+                //涓轰簡閬垮厤楹荤儲涓庡悗缁慨鏀癸紝缁熶竴闈炵洃绠′簡銆�
+                pr2.Level_Category__c = '闈炵洃绠�';
             }
-            if (pr2.demoteer_Sap__c == null || pr2.Diedatvanink__c == null) {
+            //鐢熶骇鏃ユ棤鍊硷紝绛夌骇绫诲埆缃┖
+            if (pr2.demoteer_Sap__c == null) {
                 pr2.Level_Category__c = null;
             }
             System.debug('pr2.Level_Category__c='+pr2.Level_Category__c);

--
Gitblit v1.9.1