1
chenjingwu
2024-04-10 3b96b51ff6a671445bbeeb0ec155d9b5d85f2998
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'));