Skip to content

Commit

Permalink
SIT Defect of EDRD-446 and UAT Defect Story EDRD-597
Browse files Browse the repository at this point in the history
  • Loading branch information
Sumancdey committed Jan 25, 2024
1 parent 375d735 commit 3b6aeb4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public with sharing class EDRDAccountLookupController{
List<Account> accountList = new List<Account>();
if (!String.isBlank(providerAct)){
string providerPHNumber = providerAct;
accountList = [SELECT Id, Name,LastName, Provider_Identifier__pc, PersonContact.Provider_Identifier__c, Provider_Type__pc from Account Where PersonContact.Provider_Identifier__c LIKE :providerPHNumber ORDER BY createdDate DESC LIMIT 5];
accountList = [SELECT Id, Name,LastName, Provider_Identifier__pc, PersonContact.Provider_Identifier__c, PersonContact.Provider_Type__c, Provider_Type__pc from Account Where PersonContact.Provider_Type__c = 'Physician' AND PersonContact.Provider_Identifier__c LIKE :providerPHNumber ORDER BY createdDate DESC LIMIT 5];
}
return accountList;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@
<behavior>Required</behavior>
<field>Case__c</field>
</layoutItems>
<layoutItems>
<behavior>Edit</behavior>
<field>Other_Medication_Detail__c</field>
</layoutItems>
</layoutColumns>
<layoutColumns>
<layoutItems>
Expand Down

0 comments on commit 3b6aeb4

Please sign in to comment.