| force-app/main/default/classes/lexNewQuoteEntryController.cls | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 |
force-app/main/default/classes/lexNewQuoteEntryController.cls
@@ -231,7 +231,7 @@ // } @AuraEnabled public static Map<String,Map<String,List<OptionTemplete>>> addOptions(List<String> idList){ public static Map<String,List<OptionTemplete>> addOptions(List<String> idList){ Map<String,Integer> intList = new Map<String,Integer>(); for(AggregateResult objAgr: [select ProductName__c,COUNT(Id) total from MultiYearWarranty__c where ProductName__c in:idList group by ProductName__c]){ intList.put((String)objAgr.get('ProductName__c'), (Integer)objAgr.get('total'));