-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
24.11 fb surgery procedure default blood (#1257)
* Modified Surgical Procedure default entries for blood. * Modified Surgical Procedure default entries for blood. * Modified Surgical Procedure default entries for blood. * Modified Surgical Procedure default entries for blood. * Modified Surgical Procedure default entries for blood. * Modified Surgical Procedure default entries for blood. * Modified Surgical Procedure default entries for blood. * Modified Surgical input forms to include blood input form and accompanying surgical procedure defaults. * Modified Surgical input forms to include blood input form and accompanying surgical procedure defaults. * Modified Surgical input forms to include blood input form and accompanying surgical procedure defaults. * Modified Surgical input forms to include blood input form and accompanying surgical procedure defaults. * Modified Surgical input forms to include blood input form and accompanying surgical procedure defaults.
- Loading branch information
Showing
9 changed files
with
621 additions
and
5 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
onprc_ehr/resources/schemas/dbscripts/sqlserver/onprc_ehr-24.005-24.006.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
CREATE TABLE onprc_ehr.procedure_default_blood ( | ||
rowid int identity(1,1), | ||
procedureid int, | ||
sampletype varchar(300) Null, | ||
additionalServices varchar(1000) Null, | ||
reason varchar(300) Null, | ||
instructions varchar(2000) Null, | ||
chargetype varchar(400) Null | ||
|
||
|
||
CONSTRAINT PK_procedure_default_blood PRIMARY KEY (rowid) | ||
) | ||
|
||
GO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
onprc_ehr/resources/web/onprc_ehr/panel/SurgeryInstructionsPanel.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* | ||
* Copyright (c) 2014-2019 LabKey Corporation | ||
* | ||
* Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0 | ||
*/ | ||
Ext4.define('ONPRC_EHR.panel.SurgeryInstructionsPanel', { | ||
extend: 'Ext.panel.Panel', | ||
alias: 'widget.onprc_ehr-surgeryinstructionspanel', | ||
|
||
initComponent: function(){ | ||
var buttons = []; | ||
LDK.Assert.assertNotEmpty('No data entry panel', this.dataEntryPanel); | ||
var btnCfg = EHR.DataEntryUtils.getDataEntryFormButton('APPLYENCOUNTERDEFAULTSAMENDED'); | ||
if (btnCfg){ | ||
btnCfg = this.dataEntryPanel.configureButton(btnCfg); | ||
if (btnCfg){ | ||
btnCfg.text = 'Add Procedure Defaults'; | ||
buttons.push(btnCfg); | ||
} | ||
} | ||
|
||
Ext4.apply(this, { | ||
defaults: { | ||
|
||
}, | ||
bodyStyle: 'padding: 5px;', | ||
title: 'Instructions', | ||
items: [{ | ||
html: 'This form is designed for surgery entry. The top section contains basic information on the procedure(s). The bottom sections can be used to enter the narrative, medications, etc. Once you enter entered the animal(s) and procedures, use the bottom below to apply defaults to the other sections for those procedures.', | ||
maxWidth: Ext4.getBody().getWidth() * 0.8, | ||
style: 'padding-top: 10px;padding-bottom: 10px;', | ||
border: false | ||
},btnCfg] | ||
}); | ||
|
||
this.callParent(arguments); | ||
} | ||
|
||
}); |
Oops, something went wrong.