From 54fbdd59d4f33a69bf14ceeac6437b05556cf9db Mon Sep 17 00:00:00 2001
From: juanf <juanf>
Date: Tue, 22 Sep 2015 11:41:24 +0000
Subject: [PATCH] Nexus profile update

SVN: 34687
---
 .../js/config/installations/NexusProfile.js   | 31 ++++++++++++++++++-
 1 file changed, 30 insertions(+), 1 deletion(-)

diff --git a/plasmid/source/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/config/installations/NexusProfile.js b/plasmid/source/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/config/installations/NexusProfile.js
index 11393495275..4223c6dec95 100644
--- a/plasmid/source/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/config/installations/NexusProfile.js
+++ b/plasmid/source/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/config/installations/NexusProfile.js
@@ -10,7 +10,36 @@ $.extend(NexusProfile.prototype, StandardProfile.prototype, {
 		this.inventorySpaces = ["LIBRARIES"];
 		
 		this.storagesConfiguration = {
-			"isEnabled" : false
+			"isEnabled" : true,
+			/*
+			* Should be the same across all storages, if not correct behaviour is not guaranteed.
+			*/
+			"STORAGE_PROPERTIES": [{
+				"STORAGE_PROPERTY_GROUP" : "Physical Storage", //Where the storage will be painted.
+				"STORAGE_GROUP_DISPLAY_NAME" : "Physical Storage", //Storage Group Name
+				"NAME_PROPERTY" : 		"STORAGE_NAMES", //Should be a Vocabulary.
+				"ROW_PROPERTY" : 		"STORAGE_ROW", //Should be an integer.
+				"COLUMN_PROPERTY" : 	"STORAGE_COLUMN",  //Should be an integer.
+				"BOX_PROPERTY" : 		"STORAGE_BOX_NAME", //Should be text.
+				"BOX_SIZE_PROPERTY" : 	"STORAGE_BOX_SIZE", //Should be Vocabulary.
+				"USER_PROPERTY" : 		"STORAGE_USER", //Should be text.
+				"POSITION_PROPERTY" : 	"STORAGE_POSITION" //Should be text.
+			}],
+			/*
+			* Storages map, can hold configurations for several storages.
+			*/
+			"STORAGE_CONFIGS": {
+					"MY_FRIDGE-1" : { //Freezer name given by the NAME_PROPERTY
+									"ROW_NUM" : 4, //Number of rows
+									"COLUMN_NUM" : 4, //Number of columns
+									"BOX_NUM" : 9999 //Boxes on each rack, used for validation, to avoid validation increase the number to 9999 for example
+								},
+					"MY_FRIDGE-2" : { //Freezer name given by the NAME_PROPERTY
+									"ROW_NUM" : 5, //Number of rows
+									"COLUMN_NUM" : 4, //Number of columns
+									"BOX_NUM" : 9999 //Boxes on each rack, used for validation, to avoid validation increase the number to 9999 for example
+								}
+				}
 		};
 		
 		this.sampleTypeDefinitionsExtension = {}
-- 
GitLab