buli
2023-07-14 5b5c1e16deaa3a9d6d0ed1ffca390655ed103df7
force-app/main/default/classes/LexConsumableOrderManageController.cls
@@ -56,8 +56,8 @@
            List<CusCol> cols = new List<CusCol>();
            for (FieldSetMember fsm : fsmList) {
                //add by Link
                if (fsm.getFieldPath() == 'Order_ForHospital__c' && agencyProType == 'ET') {
                } else {
                if(fsm.getFieldPath() == 'Order_ForHospital__c' && agencyProType == 'ET'){
                }else {
                    CusCol col = new CusCol();
                    col.label = fsm.getLabel();
                    col.fieldName = fsm.getFieldPath();
@@ -125,11 +125,7 @@
            raesList = Database.query(soql);
            //add by rentx 2021-3-10 start
            //为 hasHop 赋值 判断当前经销商下是否有特价医院
            List<hospitalprice__c> hopList = [
                SELECT id, hospital__c
                FROM hospitalprice__c
                WHERE account__c = :accountid
            ];
            List<hospitalprice__c> hopList = [SELECT id, hospital__c FROM hospitalprice__c WHERE account__c = :accountid];
            if (hopList == null || hopList.size() == 0) {
                hasHop = false;
            } else {
@@ -147,11 +143,7 @@
                for (Account acc : contractList) {
                    dealIds.add(acc.Id);
                }
                List<Dealer_Product__c> deList = [
                    SELECT id
                    FROM Dealer_Product__c
                    WHERE Dealer_Contact__c IN :dealIds
                ];
                List<Dealer_Product__c> deList = [SELECT id FROM Dealer_Product__c WHERE Dealer_Contact__c IN :dealIds];
                if (deList == null || deList.size() == 0) {
                    hasSpecial = false;
                } else {
@@ -340,4 +332,4 @@
        @AuraEnabled
        public String fieldName;
    }
}
}