diff --git a/ui-eln-lims/src/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/config/Profile.js b/ui-eln-lims/src/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/config/Profile.js index 8f6923cafb94402c144a529cc36ff5dea24219ba..de92a2ae70ca49a576f18a43f3f0c8830576c781 100644 --- a/ui-eln-lims/src/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/config/Profile.js +++ b/ui-eln-lims/src/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/config/Profile.js @@ -1129,9 +1129,8 @@ $.extend(DefaultProfile.prototype, { this.initPropertyTypes = function(callback) { var _this = this; - this.serverFacade.listPropertyTypes(function(data) { - _this.allPropertyTypes = data.result; - + this.serverFacade.listPropertyTypesV3(function(data) { + _this.allPropertyTypes = data; _this.serverFacade.listVocabularies(function(result) { //Init Vocabularies, so we don't miss vocabularies missing on sample types used only on annotations, etc... _this.allVocabularies = result.result; diff --git a/ui-eln-lims/src/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/server/ServerFacade.js b/ui-eln-lims/src/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/server/ServerFacade.js index 52342ad2d7466d3b1c163e2bddbf15799c62ad34..9c185c247f756fd48123645e485c97da923d9f32 100644 --- a/ui-eln-lims/src/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/server/ServerFacade.js +++ b/ui-eln-lims/src/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/server/ServerFacade.js @@ -826,6 +826,18 @@ function ServerFacade(openbisServer) { } } + this.listPropertyTypesV3 = function(doneCallback) { + require([ "openbis", "as/dto/property/search/PropertyTypeSearchCriteria", "as/dto/property/fetchoptions/PropertyTypeFetchOptions" ], + function(openbis, PropertyTypeSearchCriteria, PropertyTypeFetchOptions) { + var ptsc = new PropertyTypeSearchCriteria(); + var ptfo = new PropertyTypeFetchOptions(); + ptfo.withVocabulary(); + mainController.openbisV3.searchPropertyTypes(ptsc, ptfo).done(function(searchResult) { + doneCallback(searchResult.objects); + }); + }); + } + this.generateCode = function(sampleType, action) { if(IdentifierUtil.createContinuousSampleCodes) {