diff --git a/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/config/Profile.js b/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/config/Profile.js index c7f6160d9151e143072872395ab746cd9d13e190..49cf5ab380c98fbbe0751367575ae7553d2e1902 100644 --- a/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/config/Profile.js +++ b/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/config/Profile.js @@ -34,7 +34,7 @@ $.extend(DefaultProfile.prototype, { this.searchDomains = [ { "@id" : -1, "@type" : "GobalSearch", label : "Global", name : "global"}]; this.ELNExperiments = ["SYSTEM_EXPERIMENT"]; this.notShowTypes = ["SYSTEM_EXPERIMENT"]; - this.inventorySpaces = []; + this.inventorySpaces = ["INVENTORY"]; this.isInventorySpace = function(spaceCode) { return ($.inArray(spaceCode, this.inventorySpaces) !== -1); @@ -206,25 +206,12 @@ $.extend(DefaultProfile.prototype, { /* * Used by Sample Table */ - this.isShowUnavailablePreviewOnSampleTable = true; - /* - * Used by Sample Form - */ - - this.getSpaceForSampleType = function(type) { - return "DEFAULT"; - } - - this.getExperimentIdentifierForSample = function(type, code, properties) { - return "/" + this.getSpaceForSampleType(type) + "/PROJECT_" + type + "/FOLDER_" + type; - } /* * Used by DataSet Form */ - //Null: Show checkbox to manually input //True: Automatic configuration, will unzip the file before atacching the files //False: Will do nothing to the file before attaching @@ -235,7 +222,6 @@ $.extend(DefaultProfile.prototype, { /* * Used by Main Menu */ - this.mainMenuContentExtra = function() { return ""; } diff --git a/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/views/SampleForm/SampleFormController.js b/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/views/SampleForm/SampleFormController.js index 79397735bef2978dc839b88adf50835594e5ca57..32fbeaeebdeb33eeeca9d1661a6b4a0e1b8ee046 100644 --- a/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/views/SampleForm/SampleFormController.js +++ b/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/views/SampleForm/SampleFormController.js @@ -103,24 +103,12 @@ function SampleFormController(mainController, mode, sample) { // //Identification Info // - var sampleCode = this._sampleFormModel.sample.code; - var properties = this._sampleFormModel.sample.properties; - - var sampleSpace = this._sampleFormModel.sample.spaceCode; //ELN Sub Experiments will have a space by default but not common Samples - if(!sampleSpace) { //Common Samples have maybe a default space to be attached to - sampleSpace = profile.getSpaceForSampleType(this.sampleTypeCode); - } - - var experimentIdentifier = this._sampleFormModel.sample.experimentIdentifierOrNull; //ELN Sub Experiments will have a experiment by default but not common Samples - if(!experimentIdentifier) { //Common Samples have maybe a default experiment to be attached to - experimentIdentifier = profile.getExperimentIdentifierForSample( - this._sampleFormModel.sample.sampleTypeCode, - this._sampleFormModel.sample.code, - properties); - } - + var sampleSpace = this._sampleFormModel.sample.spaceCode; var sampleProject = null; var sampleExperiment = null; + var sampleCode = this._sampleFormModel.sample.code; + var properties = this._sampleFormModel.sample.properties; + var experimentIdentifier = this._sampleFormModel.sample.experimentIdentifierOrNull; if(experimentIdentifier) { //If there is a experiment detected, the sample should be attached to the experiment completely. sampleSpace = experimentIdentifier.split("/")[1]; diff --git a/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/views/SampleForm/SampleFormView.js b/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/views/SampleForm/SampleFormView.js index 3c9e052d6faa1d1c39c8c804120ea044dcd165b4..a6c067a2baef002c0ada48fdaa217b153ce85157 100644 --- a/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/views/SampleForm/SampleFormView.js +++ b/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/views/SampleForm/SampleFormView.js @@ -119,18 +119,13 @@ function SampleFormView(sampleFormController, sampleFormModel) { if(this._sampleFormModel.isELNSubExperiment) { $formColumn.append(FormUtil.getFieldForLabelWithText("Experiment", this._sampleFormModel.sample.experimentIdentifierOrNull)); } else { - var defaultSpace = profile.getSpaceForSampleType(sampleTypeCode); - if(!defaultSpace) { - var spacesDropDown = FormUtil.getSpaceDropdown(); - $formColumn.append(FormUtil.getFieldForComponentWithLabel(spacesDropDown, "Space")); - spacesDropDown.change(function(event){ - var spacesDropDown = $(this); - _this._sampleFormModel.sample.spaceCode = spacesDropDown.val(); - _this._sampleFormModel.isFormDirty = true; - }); - } else { - $formColumn.append(FormUtil.getFieldForLabelWithText("Space", defaultSpace)); - } + var spacesDropDown = FormUtil.getSpaceDropdown(); + $formColumn.append(FormUtil.getFieldForComponentWithLabel(spacesDropDown, "Space")); + spacesDropDown.change(function(event){ + var spacesDropDown = $(this); + _this._sampleFormModel.sample.spaceCode = spacesDropDown.val(); + _this._sampleFormModel.isFormDirty = true; + }); } //