From e6068da47c1bef5517c9e5fdc8c726766867ad4e Mon Sep 17 00:00:00 2001 From: buli <137736985@qq.com> Date: 星期五, 14 七月 2023 15:10:02 +0800 Subject: [PATCH] Merge branch 'master' into LEXUpgrade2023-Deloitte --- force-app/main/default/classes/LexConsumableOrderManageController.cls | 12 ++---------- 1 files changed, 2 insertions(+), 10 deletions(-) diff --git a/force-app/main/default/classes/LexConsumableOrderManageController.cls b/force-app/main/default/classes/LexConsumableOrderManageController.cls index e086bbb..81e1a82 100644 --- a/force-app/main/default/classes/LexConsumableOrderManageController.cls +++ b/force-app/main/default/classes/LexConsumableOrderManageController.cls @@ -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 { -- Gitblit v1.9.1