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

EDRD Sprint - 9 Development #1389

Merged
merged 18 commits into from
Nov 11, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,23 @@
<requiredForUpsert>false</requiredForUpsert>
<upsertKey>false</upsertKey>
</omniDataTransformItem>
<omniDataTransformItem>
<disabled>false</disabled>
<filterGroup>0.0</filterGroup>
<filterOperator>=</filterOperator>
<filterValue>&apos;false&apos;</filterValue>
<globalKey>FetchRelatedMedicationRequestCustom4086</globalKey>
<inputFieldName>Medication.One_time_Dose__c</inputFieldName>
<inputObjectName>MedicationRequest</inputObjectName>
<inputObjectQuerySequence>1.0</inputObjectQuerySequence>
<linkedObjectSequence>0.0</linkedObjectSequence>
<name>FetchRelatedMedicationRequest</name>
<outputCreationSequence>0.0</outputCreationSequence>
<outputFieldName>MedicationRequests</outputFieldName>
<outputObjectName>json</outputObjectName>
<requiredForUpsert>false</requiredForUpsert>
<upsertKey>false</upsertKey>
</omniDataTransformItem>
<omniDataTransformItem>
<disabled>false</disabled>
<filterGroup>0.0</filterGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1970,6 +1970,10 @@
&quot;field&quot; : &quot;PatientDeceasedCheck&quot;,
&quot;condition&quot; : &quot;&lt;&gt;&quot;,
&quot;data&quot; : &quot;true&quot;
}, {
&quot;field&quot; : &quot;PhnCount&quot;,
&quot;condition&quot; : &quot;&lt;&gt;&quot;,
&quot;data&quot; : &quot;0&quot;
} ]
}
},
Expand Down Expand Up @@ -2264,6 +2268,10 @@
&quot;data&quot; : &quot;null&quot;,
&quot;condition&quot; : &quot;&lt;&gt;&quot;,
&quot;field&quot; : &quot;CareProgramCheck&quot;
}, {
&quot;field&quot; : &quot;PhnCount&quot;,
&quot;condition&quot; : &quot;&lt;&gt;&quot;,
&quot;data&quot; : &quot;0&quot;
} ]
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1728,6 +1728,10 @@
&quot;field&quot; : &quot;PatientDeceasedCheck&quot;,
&quot;condition&quot; : &quot;&lt;&gt;&quot;,
&quot;data&quot; : &quot;true&quot;
}, {
&quot;field&quot; : &quot;PhnCount&quot;,
&quot;condition&quot; : &quot;&lt;&gt;&quot;,
&quot;data&quot; : &quot;0&quot;
} ]
}
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
*** CASE ASSIGNMENT NOTIFICATION ***

Hello,
Hello {!Case.OwnerFullName},

A case has been assigned to you. Below are the details:

Case #: {!Case.CaseNumber}

Case Type: {!Case.Type}

Status: {!Case.Status}

Date/Time Opened: {!Case.CreatedDate}

Click on the link to access the case: {!Case.Link}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<encodingKey>UTF-8</encodingKey>
<name>General Case Assignment Notification</name>
<style>none</style>
<subject>Case # {!Case.CaseNumber} has been assigned to you.</subject>
<subject>Case # {!Case.CaseNumber} in {!Case.Status} has been assigned to you.</subject>
<type>text</type>
<uiType>Aloha</uiType>
</EmailTemplate>
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<html>
<head>
<title></title>
</head>
<body style="height: auto; min-height: auto;">*** CASE ASSIGNMENT NOTIFICATION ***<br />
<br />
Hello {{{Case.OwnerFullName}}},<br />
<br />
A case has been assigned to you. Below are the details:<br />
<br />
Case #: {{{Case.CaseNumber}}}<br />
<br />
Case Type: {{{Case.Type}}}<br />
<br />
<strong>Status:&nbsp; {{{Case.Status}}}</strong><br />
<br />
Date Opened: {{{Case.CreatedDate}}}<br />
<br />
Click on the link to access the case: {{{Case.Link}}}<br />
<br />
Thank you,<br />
BC Ministry of Health</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<EmailTemplate xmlns="http://soap.sforce.com/2006/04/metadata">
<available>true</available>
<encodingKey>UTF-8</encodingKey>
<name>Case_Assignment_Notification</name>
<relatedEntityType>Case</relatedEntityType>
<style>none</style>
<subject>Case # {{{Case.CaseNumber}}} in {{{Case.Status}}} has been assigned to you.</subject>
<type>custom</type>
<uiType>SFX</uiType>
</EmailTemplate>
Loading