| | |
| | | if (UpdProMap.keySet().size() > 0) update UpdProMap.values(); |
| | | } |
| | | |
| | | //产品降类,只要注册证更新了,就检查一遍,重新给产品上的等级类别字段赋值。 |
| | | //可以找出需要的Id,然后调用方法。 |
| | | //用于降类,产品注册证更新了,就把产品注册证下的产品的等级类别字段赋空,触发产品的触发器 |
| | | public static void checkRegistervervaldatum(List<Product_Register__c> newList, Map<Id, Product_Register__c> newMap, List<Product_Register__c> oldList, Map<Id, Product_Register__c> oldMap) { |
| | | List<String> prcList = new List<String>(); |
| | | for (Product_Register__c pr : newList) { |
| | | Product_Register__c oldpr = oldMap.get(pr.Id); |
| | | //有效期的始与终变了,就把这个产品注册证的id放入一个List集合里面 |
| | | //if (pr.ValidTo__c != oldpr.ValidTo__c || pr.ValidFrom__c != oldpr.ValidFrom__c) { |
| | | prcList.add(pr.id); |
| | | //} |
| | | } |
| | | //放到Map里,用于注册证更新产品 |
| | | Map<Id,Product2> prt2Map = new Map<Id,Product2>(); |
| | | //通过之前存储的Id用于关系表的查询。 |
| | | List<Product_Register_Link__c> prlList = new List<Product_Register_Link__c>(); |
| | | prlList = [select Product2__r.id,Product2__r.demoteer_Sap__c,Product2__r.Diedatvanink__c,Product_Register__r.MedPrdClass__c,Product_Register__r.Stelsedag__c |
| | | prlList = [select Product2__r.id,Product2__r.demoteer_Sap__c,Product2__r.Diedatvanink__c,Product_Register__r.MedPrdClass__c,Product_Register__r.Stelsedag__c,Product_Register__r.ValidTo__c,Product_Register__r.ValidFrom__c |
| | | from Product_Register_Link__c |
| | | where Product_Register__r.Id in : prcList]; |
| | | |
| | | //根据Id存放产品所属的所有注册证下的器械分类。 |
| | | Map<Id,List<String>> pro2Map = new Map<Id,List<String>>(); |
| | | //存放注册证上最前的维护日 |
| | | Map<Id,Date> prSteMap = new Map<Id,Date>(); |
| | | if (prlList.size()>0) { |
| | | for (Product_Register_Link__c prl: prlList) { |
| | | 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 (prSteMap.containsKey(prl.Product2__r.Id)) { |
| | | if (prSteMap.get(prl.Product2__r.Id) > prl.Product_Register__r.Stelsedag__c) { |
| | | prSteMap.remove(prl.Product2__r.Id); |
| | | 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); |
| | | } |
| | | } |
| | | List<ID> proIdList = new List<ID>(); |
| | | for (Product_Register_Link__c prl: prlList) { |
| | | proIdList.add(prl.Product2__r.id); |
| | | } |
| | | System.debug('pro2Map='+pro2Map); |
| | | System.debug('prSteMap='+prSteMap); |
| | | //产品Id与等级类别 |
| | | Map<Id,String> prlMap = new Map<Id,String>(); |
| | | List<ID> pr2Idlsit = new List<ID>(); |
| | | if (pro2Map.size()>0 && prSteMap.size()>0) { |
| | | for (Product_Register_Link__c pr: prlList) { |
| | | if (pro2Map.containsKey(pr.Product2__r.Id) && prSteMap.containsKey(pr.Product2__r.Id)) { |
| | | pr2Idlsit.add(pr.Product2__r.Id); |
| | | //生产日大于维护日,入库日大于维护日 |
| | | if (pr.Product2__r.demoteer_Sap__c <= prSteMap.get(pr.Product2__r.Id) && |
| | | pr.Product2__r.Diedatvanink__c <= prSteMap.get(pr.Product2__r.Id)) { |
| | | if (pro2Map.get(pr.Product2__r.Id).contains('1') || |
| | | pro2Map.get(pr.Product2__r.Id).contains('2') || |
| | | pro2Map.get(pr.Product2__r.Id).contains('3')) { |
| | | prlMap.put(pr.Product2__r.Id, '二类'); |
| | | }else { |
| | | prlMap.put(pr.Product2__r.Id, '非监管'); |
| | | } |
| | | }else { |
| | | //入库日大于维护日 |
| | | if (pr.Product2__r.Diedatvanink__c > prSteMap.get(pr.Product2__r.Id)) { |
| | | //生产日大于维护日 |
| | | if (pr.Product2__r.demoteer_Sap__c > prSteMap.get(pr.Product2__r.Id)) { |
| | | prlMap.put(pr.Product2__r.Id, '一类'); |
| | | }else { |
| | | //生产日小于维护日 |
| | | if (pro2Map.get(pr.Product2__r.Id).contains('1')) { |
| | | prlMap.put(pr.Product2__r.Id, '一类'); |
| | | }else if (!pro2Map.get(pr.Product2__r.Id).contains('1') && |
| | | (pro2Map.get(pr.Product2__r.Id).contains('2') || |
| | | pro2Map.get(pr.Product2__r.Id).contains('3'))) { |
| | | prlMap.put(pr.Product2__r.Id, '二类'); |
| | | }else { |
| | | prlMap.put(pr.Product2__r.Id, '非监管'); |
| | | } |
| | | } |
| | | } |
| | | } |
| | | } |
| | | } |
| | | } |
| | | System.debug('prlMap='+prlMap); |
| | | |
| | | |
| | | List<Product2> por2Lsit = new List<Product2>(); |
| | | //查出产品的id和等级类别的字段 |
| | | por2Lsit = [select Id,Level_Category__c from Product2 where Id in : pr2Idlsit]; |
| | | if (por2Lsit.size() > 0) { |
| | | for (Product2 pr2: por2Lsit) { |
| | | if (prlMap.containsKey(pr2.Id)) { |
| | | pr2.Level_Category__c = prlMap.get(pr2.Id); |
| | | prt2Map.put(pr2.Id,pr2); |
| | | }else { |
| | | pr2.Level_Category__c = null; |
| | | prt2Map.put(pr2.Id,pr2); |
| | | } |
| | | } |
| | | por2Lsit = [select Id,Level_Category__c from Product2 where Id in : proIdList]; |
| | | for (Product2 pro: por2Lsit) { |
| | | pro.Level_Category__c = null; |
| | | prt2Map.put(pro.Id, pro); |
| | | } |
| | | |
| | | if (prlMap.size() > 0) { |
| | | System.debug('prt2Map='+prt2Map); |
| | | if (prt2Map.size() > 0) { |
| | | update prt2Map.values(); |
| | | } |
| | | } |