Skip to content

Commit

Permalink
Merge 23.3 to 23.7
Browse files Browse the repository at this point in the history
  • Loading branch information
labkey-teamcity committed Mar 1, 2024
2 parents eeb412a + da1df27 commit b86b70e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
17 changes: 13 additions & 4 deletions onprc_ehr/resources/web/onprc_ehr/panel/AnimalDetailsCasePanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@

//Created 5-9-2016 R.Blasa

Ext4.define('onprc_ehr.panel.AnimalDetailsCasePanel', {
extend: 'EHR.panel.SnapshotPanel',
alias: 'widget.onprc_ehr-animaldetailspanel',
Ext4.define('ONPRC_EHR.panel.AnimalDetailsCasePanel', {
extend: 'onprc_ehr.panel.SnapshotPanel',
alias: 'widget.onprc_ehr-animaldetailscasepanel',

border: true,
showExtendedInformation: false,
Expand Down Expand Up @@ -88,7 +88,7 @@ Ext4.define('onprc_ehr.panel.AnimalDetailsCasePanel', {
},
items: [{
xtype: 'container',
width: 380,
width: 780, //Modified width 2-15-2024 R. Blasa
defaults: {
xtype: 'displayfield',
labelWidth: this.defaultLabelWidth
Expand Down Expand Up @@ -119,6 +119,13 @@ Ext4.define('onprc_ehr.panel.AnimalDetailsCasePanel', {
xtype: 'displayfield',
fieldLabel: 'Active Cases',
name: 'activeCases'
},{
// Added: 2-15-2024 R. Blasa
xtype: 'ehr-snapshotchildpanel',
headerLabel: 'Sustained Release Medication',
name: 'sdrug'


}]
},{
xtype: 'container',
Expand Down Expand Up @@ -266,6 +273,8 @@ Ext4.define('onprc_ehr.panel.AnimalDetailsCasePanel', {

toSet['assignmentsAndGroups'] = values.length ? values.join('<br>') : null;
} ,


//Added 4-28-2016 R.Blasa
appendCases: function(toSet, results){
var values = [];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*
* @param subjectId
*/
Ext4.define('ONPC_EHR.panel.AnimalDetailsPanel', {
Ext4.define('ONPRC_EHR.panel.AnimalDetailsPanel', {
extend: 'onprc_ehr.panel.SnapshotPanel',
alias: 'widget.onprc_ehr-animaldetailspanels',

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class AnimalDetailsRoundsFormSection extends NonStoreFormSection
public AnimalDetailsRoundsFormSection()
{
// //Modified 5-4-2016 R.Blasa
super("AnimalDetails", "Animal Details", "onprc_ehr-animaldetailspanel" );
super("AnimalDetails", "Animal Details", "onprc_ehr-animaldetailscasepanel" );

//Modified 5-4-2016 R.Blasa
addClientDependency(ClientDependency.supplierFromPath("onprc_ehr/panel/AnimalDetailsCasePanel.js"));
Expand Down

0 comments on commit b86b70e

Please sign in to comment.