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 0a2dd1f1e671c0dcee47f11c52b97f54fb8709ea..2d3051ea8c8c80c3a8d94986d3b59d7ee28eb0a6 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 @@ -12,6 +12,54 @@ $.extend(NexusProfile.prototype, StandardProfile.prototype, { this.searchSamplesUsingV3OnDropbox = true; this.searchSamplesUsingV3OnDropboxRunCustom = true; + this.sampleFormContentExtra = function(sampleTypeCode, sample, containerId) { + if(sampleTypeCode === "PLATE") { + var clickFunc = function() { + //Data + var $plateCode = FormUtil.getFieldForLabelWithText("Plate Identifier", sample.identifier, "plate_identifier"); + var $dateField = FormUtil._getDatePickerField("expiry_date", "Expiry Date", true); + + var $expiryDate = FormUtil.getFieldForComponentWithLabel($dateField,"Expiry Date(*)"); + + //Cancel/Ok buttons + var $cancelButton = $("<a>", { "class" : "btn btn-default" }).append("<span class='glyphicon glyphicon-remove'></span>"); + $cancelButton.click(function(event) { + Util.unblockUI(); + }); + + var retireAction = function() { + var plate_identifier = sample.identifier; + var expiry_date = $($($dateField.children()[0]).children()[0]).val(); + + mainController.serverFacade.customELNApi({ + "plate_identifier" : plate_identifier, + "expiry_date" : expiry_date + }, function(result) { + Util.unblockUI(); + }, "plate_version_service"); + } + var $retireButton = FormUtil.getButtonWithText("Retire Plate!", retireAction, "btn-warning"); + + // Mounting the widget with the components + var $retirePlateWidget = $("<div>"); + $retirePlateWidget.append($("<div>", {"style" : "text-align:right;"}).append($cancelButton)); + $retirePlateWidget.append($("<form>", { "class" : "form-horizontal" , "style" : "margin-left:20px; margin-right:20px;"}) + .append($("<h1>").append("Retire Plate")) + .append($plateCode) + .append($expiryDate) + .append($("<br>")).append($retireButton) + ); + + // Show Widget + Util.blockUI($retirePlateWidget, {'text-align' : 'left', 'top' : '10%', 'width' : '60%', 'left' : '10%', 'right' : '10%', 'height' : '40%', 'overflow' : 'auto'}); + + }; + $("#" + containerId) + .append($("<br>")) + .append(FormUtil.getButtonWithText("Retire Plate", clickFunc, "btn-warning")); + } + } + this.storagesConfiguration = { "isEnabled" : true, /* diff --git a/plasmid/source/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/server/ServerFacade.js b/plasmid/source/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/server/ServerFacade.js index 77e03e87789f6f2e687773ab56435fe792cca2cb..3c57a3d703885e1971704dd8f0850a7af84758bc 100644 --- a/plasmid/source/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/server/ServerFacade.js +++ b/plasmid/source/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/server/ServerFacade.js @@ -452,7 +452,7 @@ function ServerFacade(openbisServer) { // // ELN Custom API // - this.customELNApi = function(parameters, callbackFunction) { + this.customELNApi = function(parameters, callbackFunction, service) { var dataStoreCode = profile.getDefaultDataStoreCode(); this.createReportFromAggregationService(dataStoreCode, parameters, function(data) { var error = null; @@ -471,17 +471,20 @@ function ServerFacade(openbisServer) { error = "Unknown Error."; } callbackFunction(error, result); - }); + }, service); } - this.createReportFromAggregationService = function(dataStoreCode, parameters, callbackFunction) { + this.createReportFromAggregationService = function(dataStoreCode, parameters, callbackFunction, service) { + if(!service) { + service = "newbrowserapi"; + } if(!parameters) { parameters = {}; } parameters["sessionToken"] = this.openbisServer.getSession(); parameters["openBISURL"] = this.openbisServer._internal.openbisUrl; - this.openbisServer.createReportFromAggregationService(dataStoreCode, "newbrowserapi", parameters, callbackFunction); + this.openbisServer.createReportFromAggregationService(dataStoreCode, service, parameters, callbackFunction); } // diff --git a/plasmid/source/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/util/FormUtil.js b/plasmid/source/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/util/FormUtil.js index add3f7a121d0119cf7b92a226de8a7825382de53..5d8028cc379fc5211af615de931d861e67b810d3 100644 --- a/plasmid/source/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/util/FormUtil.js +++ b/plasmid/source/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/util/FormUtil.js @@ -412,8 +412,12 @@ var FormUtil = new function() { return $pinBtn; } - this.getButtonWithText = function(text, clickEvent) { - var $pinBtn = $("<a>", { 'class' : 'btn btn-default' }); + this.getButtonWithText = function(text, clickEvent, btnClass) { + var auxBtnClass = "btn-default"; + if(btnClass) { + auxBtnClass = btnClass; + } + var $pinBtn = $("<a>", { 'class' : 'btn ' + auxBtnClass }); $pinBtn.append(text); $pinBtn.click(clickEvent); return $pinBtn;