-
Notifications
You must be signed in to change notification settings - Fork 4
Add container option to ehr billing ext cols #998
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
Add container option to ehr billing ext cols #998
Conversation
| const ctx = EHR.Utils.getEHRContext(); | ||
| const container = document.getElementById("ehrbilling_container").value; | ||
| if (!container) { | ||
| LABKEY.Utils.alert("Error", "Must enter the container path of the compliance folder."); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like the wrong message here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed
| var ctx = EHR.Utils.getEHRContext(); | ||
| const ctx = EHR.Utils.getEHRContext(); | ||
| const container = document.getElementById("ehrbilling_container").value; | ||
| if (!container) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this will require a test update:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for heads up. New PRs opened for broken tests related to this.
https://github.com/LabKey/tnprcEHRModules/pull/149
LabKey/wnprc-modules#861
…fb_ehr_billing_ext_col
Rationale
Update extensible col UI to allow ehr billing ext columns in other folders.
Changes