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 -10 Feedback Changes #1411

Merged
merged 3 commits into from
Dec 13, 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 @@ -8,6 +8,7 @@
label="Patient Identifier"
value={patientIdentifierSearch}
type="text"
field-level-help="Personal Health Number"
onchange={handlePatientIdentifierChange}>
</lightning-input>
</div>
Expand Down Expand Up @@ -105,8 +106,7 @@
value={manualGender}
options={genderOptions.data.values}
onchange={handleManualInputChange}
data-id="manualGender"
required>
data-id="manualGender">
</lightning-combobox>
</div>
<div class="slds-col slds-var-p-horizontal_x-small slds-size_1-of-3">
Expand All @@ -126,6 +126,7 @@
value={manualPatientIdentifier}
onchange={handleManualInputChange}
data-id="manualPatientIdentifier"
field-level-help="Personal Health Number"
minlength="10"
maxlength="10">
</lightning-input>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,6 @@ export default class eDRD_lwc_SFPatientSearchComponent extends LightningElement
this.isNextDisable = !(
this.patientFirstName &&
this.patientLastName &&
this.patientGender &&
this.patientBirthdate &&
(!this.patient_IdentifierManual || !this.isPHNAvaiable)
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
type="search"
onchange={handlekeychange}
value={patientPHN}
field-level-help="Personal Health Number"
placeholder="Enter Identifier Number">
</lightning-input>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ RecordType.DeveloperName = &apos;EDRD&apos;,
ISCHANGED(Status),
ISBLANK(TEXT(EDRD_MOHFunding_Decision__c)),
OR(ISPICKVAL(Status,&apos;Funding Approved&apos;),
ISPICKVAL(Status,&apos;Funding Denied&apos;))
AND(ISPICKVAL(Status,&apos;Funding Denied&apos;),
NOT(ISPICKVAL(EDRD_Case_closure_reasons__c, &quot;SC Not Recommended&quot;)),
NOT(ISPICKVAL(EDRD_Case_closure_reasons__c, &quot;AC Not Recommended&quot;))) )
)</errorConditionFormula>
<errorMessage>The case cannot be closed without a funding decision.</errorMessage>
</ValidationRule>
Loading