From a8604ebab18a419f26662a083eae785c89ce318a Mon Sep 17 00:00:00 2001
From: juanf <juanf@ethz.ch>
Date: Wed, 30 Aug 2023 12:00:19 +0200
Subject: [PATCH] SSDM-13962: Fix saving when project samples disabled

---
 .../eln-lims/html/js/views/SampleForm/SampleFormController.js | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/ui-eln-lims/src/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/SampleForm/SampleFormController.js b/ui-eln-lims/src/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/SampleForm/SampleFormController.js
index 535a5d9010e..8fd8753fb48 100644
--- a/ui-eln-lims/src/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/SampleForm/SampleFormController.js
+++ b/ui-eln-lims/src/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/SampleForm/SampleFormController.js
@@ -505,7 +505,9 @@ function SampleFormController(mainController, mode, sample, paginationInfo) {
                 var project = parameters["sampleProject"];
                 if (project != null) {
                     object.setProjectId(new ProjectIdentifier("/" + space + "/" + project));
-                    sampleIdentifier += "/" + project;
+                    if(IdentifierUtil.isProjectSamplesEnabled) {
+                        sampleIdentifier += "/" + project;
+                    }
                     var experiment = parameters["sampleExperiment"]
                     if (experiment != null) {
                         object.setExperimentId(new ExperimentIdentifier("/" + space + "/" + project + "/" + experiment));
-- 
GitLab