From daa75ba490b6b4bfbe977156184e9f60ef0a6859 Mon Sep 17 00:00:00 2001 From: Marty Pradere Date: Thu, 19 Mar 2026 21:32:16 -0700 Subject: [PATCH 1/2] assign correct variable --- ehr/resources/web/ehr/data/StoreCollection.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ehr/resources/web/ehr/data/StoreCollection.js b/ehr/resources/web/ehr/data/StoreCollection.js index e3612bb1b..4efa982b0 100644 --- a/ehr/resources/web/ehr/data/StoreCollection.js +++ b/ehr/resources/web/ehr/data/StoreCollection.js @@ -665,13 +665,13 @@ Ext4.define('EHR.data.StoreCollection', { perRowWarningThreshold = this.formConfig.perRowWarningThreshold; } if (this.formConfig.totalTransactionWarningThrehsold){ - perRowWarningThreshold = this.formConfig.totalTransactionWarningThrehsold; + totalTransactionWarningThreshold = this.formConfig.totalTransactionWarningThrehsold; } if (this.formConfig.perRowValidationWarningThrehsold){ - perRowWarningThreshold = this.formConfig.perRowValidationWarningThrehsold; + perRowValidationWarningThreshold = this.formConfig.perRowValidationWarningThrehsold; } if (this.formConfig.totalValidationTransactionWarningThrehsold){ - perRowWarningThreshold = this.formConfig.totalValidationTransactionWarningThrehsold; + totalValidationTransactionWarningThreshold = this.formConfig.totalValidationTransactionWarningThrehsold; } } From 734f50599055f5caee0ff96131f33e7aa841f723 Mon Sep 17 00:00:00 2001 From: Marty Pradere Date: Fri, 20 Mar 2026 04:48:08 -0700 Subject: [PATCH 2/2] Lower info to debug message --- .../org/labkey/ehr/demographics/EHRDemographicsServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ehr/src/org/labkey/ehr/demographics/EHRDemographicsServiceImpl.java b/ehr/src/org/labkey/ehr/demographics/EHRDemographicsServiceImpl.java index ba696f427..61c3c8920 100644 --- a/ehr/src/org/labkey/ehr/demographics/EHRDemographicsServiceImpl.java +++ b/ehr/src/org/labkey/ehr/demographics/EHRDemographicsServiceImpl.java @@ -503,7 +503,7 @@ private List createRecords(Container c, Collection ids, bo while (start < allIds.size()) { List sublist = allIds.subList(start, Math.min(allIds.size(), start + DemographicsProvider.MAXIMUM_BATCH_SIZE)); - _log.info("Creating demographics records for " + sublist.size() + " animals (" + start + " of " + allIds.size() + " already complete)"); + _log.debug("Creating demographics records for " + sublist.size() + " animals (" + start + " of " + allIds.size() + " already complete)"); start = start + DemographicsProvider.MAXIMUM_BATCH_SIZE; DefaultSchema defaultSchema = DefaultSchema.get(u, c);