From e640fb2d03a847353d0d75c8a6f3a4e9610783c7 Mon Sep 17 00:00:00 2001 From: Marty Pradere Date: Tue, 25 Aug 2026 19:59:55 -0700 Subject: [PATCH] Collapse Clinpath request links after mergesync module removal (#1180) ## Rationale The Enter Data panel's "Requests With Manual Results" and "Requests With Automatic Results" links filtered on `mergeSyncInfo/automaticresults`, a column supplied by the mergesync module's table customizer. With that module retired the two sets are no longer distinguishable. ## Changes - Replaces the two Clinpath request links with a single "Requests" link that drops the removed filter. --- ehr/resources/web/ehr/panel/EnterDataPanel.js | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/ehr/resources/web/ehr/panel/EnterDataPanel.js b/ehr/resources/web/ehr/panel/EnterDataPanel.js index 0b223b8a5..cffea9cf6 100644 --- a/ehr/resources/web/ehr/panel/EnterDataPanel.js +++ b/ehr/resources/web/ehr/panel/EnterDataPanel.js @@ -269,14 +269,9 @@ Ext4.define('EHR.panel.EnterDataPanel', { width: 200 },{ xtype: 'ldk-linkbutton', - text: 'Requests With Manual Results', + text: 'Requests', linkCls: 'labkey-text-link', - href: LABKEY.ActionURL.buildURL('query', 'executeQuery', null, {schemaName: 'study', 'query.queryName': 'Clinpath Runs', 'query.viewName': 'Requests', 'query.QCState/Label~startswith': 'Request:', 'query.servicerequested/chargetype~eq': 'Clinpath', 'query.mergeSyncInfo/automaticresults~eq': false}) - },{ - xtype: 'ldk-linkbutton', - text: 'Requests With Automatic Results', - linkCls: 'labkey-text-link', - href: LABKEY.ActionURL.buildURL('query', 'executeQuery', null, {schemaName: 'study', 'query.queryName': 'Clinpath Runs', 'query.viewName': 'Requests', 'query.QCState/Label~startswith': 'Request:', 'query.servicerequested/chargetype~eq': 'Clinpath', 'query.mergeSyncInfo/automaticresults~eq': true}) + href: LABKEY.ActionURL.buildURL('query', 'executeQuery', null, {schemaName: 'study', 'query.queryName': 'Clinpath Runs', 'query.viewName': 'Requests', 'query.QCState/Label~startswith': 'Request:', 'query.servicerequested/chargetype~eq': 'Clinpath'}) }] },{ layout: 'hbox',