From 31e438cff476f2681216c04b23b92d9dee60f88f Mon Sep 17 00:00:00 2001 From: Andre Loreth <a.loreth@adito.de> Date: Tue, 18 Feb 2020 11:19:12 +0100 Subject: [PATCH] #1051579: Offer_lib: Add #buildOfferReport(...) function and use neon.openContext(...) for #openOfferReport(...) --- process/Offer_lib/process.js | 28 ++++++++++++++++++++-------- 1 file changed, 20 insertions(+), 8 deletions(-) diff --git a/process/Offer_lib/process.js b/process/Offer_lib/process.js index 4e84661dad..4c2e282be8 100644 --- a/process/Offer_lib/process.js +++ b/process/Offer_lib/process.js @@ -94,15 +94,14 @@ OfferUtils.createNewOffer = function(pContextId, pRowId, pRelationId, pActivityI neon.openContext("Offer", null, null, neon.OPERATINGSTATE_NEW, params); } -/* - * Open Offer report, the report is translated to the language of the offer +/** + * Builds the Offer report. * * @param {String} pOfferID - * - * @return {[]} + * @return {Array} [filename, data_bytes] */ -OfferUtils.openOfferReport = function (pOfferID) -{ +OfferUtils.buildOfferReport = function (pOfferID) +{ var offerReport = new Report("Offer_report"); var sqlUtil = new SqlMaskingUtils(); @@ -165,7 +164,7 @@ OfferUtils.openOfferReport = function (pOfferID) .table(); if (itemData.length == 0) - return; + return null; var fullPrice = 0; var itemSum = 0; @@ -295,7 +294,20 @@ OfferUtils.openOfferReport = function (pOfferID) "OFFERITEM_UNITTEXT" ]) .add(itemData)); - offerReport.openReport(); + + return offerReport.exportReport(); +} + +/* + * Open Offer report, the report is translated to the language of the offer + * + * @param {String} pOfferID + * + * @return {[]} + */ +OfferUtils.openOfferReport = function (pOfferID) +{ + neon.openContext("Offer", "OfferReport_view", [pOfferID], neon.OPERATINGSTATE_VIEW, null) } /** -- GitLab