Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BCMOHAD-27254 || Adding BRE, Decision Table, and Doc-Gen features #1446

Merged
merged 13 commits into from
Jan 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/Manual Build Check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,12 @@ jobs:
sf force:user:permsetlicense:assign -u ciorg -n "Health Cloud"
sf force:user:permsetlicense:assign -u ciorg -n "Health Cloud Platform"
sf force:user:permset:assign -o ciorg -n HealthCloudFoundation
sf force:user:permset:assign -o ciorg -n DocGenDesigner
sf force:user:permset:assign -o ciorg -n DocGenUser
sf force:user:permset:assign -o ciorg -n BREDesigner
sf force:user:permset:assign -o ciorg -n BRERuntime
sf force:user:permsetlicense:assign -u ciorg -n BREDesigner
sf force:user:permsetlicense:assign -u ciorg -n BRERuntime

- name: Deploy source dev-app-pre
run: sf project deploy start -d dev-app-pre -o ciorg
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/build-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,12 @@ jobs:
sf force:user:permsetlicense:assign -u ciorg -n "Health Cloud"
sf force:user:permsetlicense:assign -u ciorg -n "Health Cloud Platform"
sf force:user:permset:assign -o ciorg -n HealthCloudFoundation
sf force:user:permset:assign -o ciorg -n DocGenDesigner
sf force:user:permset:assign -o ciorg -n DocGenUser
sf force:user:permset:assign -o ciorg -n BREDesigner
sf force:user:permset:assign -o ciorg -n BRERuntime
sf force:user:permsetlicense:assign -u ciorg -n BREDesigner
sf force:user:permsetlicense:assign -u ciorg -n BRERuntime

- name: Deploy source dev-app-pre
run: sf project deploy start -d dev-app-pre -o ciorg
Expand Down
4 changes: 2 additions & 2 deletions config/project-scratch-def.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"orgName": "Special Authority Scratch Org",
"edition": "Developer",
"description": "This org is created for Spring'23 org",
"features": ["PersonAccounts", "LightningServiceConsole", "ServiceCloud","Communities","Sites","HealthCloudForCmty","HealthCloudAddOn","ContactsToMultipleAccounts","OmniStudioDesigner","OmniStudioRuntime","InsuranceCalculationUser","Assessments"],
"description": "This org is created for Spring'25 org",
"features": ["PersonAccounts", "LightningServiceConsole", "ServiceCloud","Communities","Sites","HealthCloudForCmty","HealthCloudAddOn","ContactsToMultipleAccounts","OmniStudioDesigner","OmniStudioRuntime","InsuranceCalculationUser","Assessments","BusinessRulesEngine","DocGen","DocGenDesigner"],
"settings": {
"lightningExperienceSettings": {
"enableS1DesktopEnabled": true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public class medicinalIngredientTriggerHandlerTest {
MIRecList.get(0).Unit_Price__c = 200;
Update MIRecList;
Test.stopTest();
Assert.areEqual([SELECT Id, Expenditure_Estimate__c FROM MedicationRequest WHERE Id =: MRObjList.get(0).Id].get(0).Expenditure_Estimate__c, 800, 'Expenditure Estimate Calculation has Failed');
Assert.areEqual([SELECT Id, Expenditure_Estimate__c FROM MedicationRequest WHERE Id =: MRObjList.get(0).Id].get(0).Expenditure_Estimate__c, 400, 'Expenditure Estimate Calculation has Failed');
Assert.areNotEqual([SELECT Id, Expenditure_Estimate__c FROM MedicationRequest WHERE Id =: MRObjList.get(0).Id].get(0).Expenditure_Estimate__c, NULL, 'Expenditure Estimate Calculation has Populated Blank value');
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@
<field>Auto_Adjudication_Error__c</field>
</layoutItems>
<layoutItems>
<behavior>Readonly</behavior>
<behavior>Edit</behavior>
<field>Pushed_to_Pnet__c</field>
</layoutItems>
<layoutItems>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@
<readable>true</readable>
</fieldPermissions>
<fieldPermissions>
<editable>true</editable>
<editable>false</editable>
<field>Case.Pushed_to_Pnet__c</field>
<readable>true</readable>
</fieldPermissions>
Expand Down Expand Up @@ -1057,6 +1057,10 @@
<recordType>Account.DEC</recordType>
<visible>true</visible>
</recordTypeVisibilities>
<recordTypeVisibilities>
<recordType>Case.Special_Authority_Request</recordType>
<visible>true</visible>
</recordTypeVisibilities>
<recordTypeVisibilities>
<recordType>PersonAccount.Patient</recordType>
<visible>true</visible>
Expand Down
Loading
Loading