From e2559b87a59f5c43efb4a56bcb23136ba1d31408 Mon Sep 17 00:00:00 2001 From: "b.ulrich" <b.ulrich@adito.de> Date: Tue, 22 Dec 2020 12:47:16 +0100 Subject: [PATCH] [Projekt: Entwicklung - xRM][TicketNr.: 1055289][[xRM Basic] - Campaign_lib - Bennenung Parameter] --- process/Campaign_lib/process.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/process/Campaign_lib/process.js b/process/Campaign_lib/process.js index f3934b9336..2d0507917a 100644 --- a/process/Campaign_lib/process.js +++ b/process/Campaign_lib/process.js @@ -283,17 +283,17 @@ CampaignUtils.getDefaultCampaignStep = function(pCampaignId) /** * Returns the start date to the corresponding campaign id.<br> * - * @param {String} pCapmaignId <p> + * @param {String} pCampaignId <p> * The corresponding campaign id.<br> * @return {String} <p> * The end date in this format:<br> * <b>yyyy-mm-dd</b> */ -CampaignUtils.getCampaignStartDate = function(pCapmaignId) +CampaignUtils.getCampaignStartDate = function(pCampaignId) { return newSelect("DATE_START") .from("CAMPAIGNSTEP") - .whereIfSet("CAMPAIGNSTEP.CAMPAIGN_ID", pCapmaignId) + .whereIfSet("CAMPAIGNSTEP.CAMPAIGN_ID", pCampaignId) .orderBy("SORTING ASC") .cell(true); } @@ -301,17 +301,17 @@ CampaignUtils.getCampaignStartDate = function(pCapmaignId) /** * Returns the end date to the corresponding campaign id.<br> * - * @param {String} pCapmaignId <p> + * @param {String} pCampaignId <p> * The corresponding campaign id.<br> * @return {String} <p> * The end date in this format:<br> * <b>yyyy-mm-dd</b> */ -CampaignUtils.getCampaignEndDate = function(pCapmaignId) +CampaignUtils.getCampaignEndDate = function(pCampaignId) { return newSelect("DATE_END") .from("CAMPAIGNSTEP") - .whereIfSet("CAMPAIGNSTEP.CAMPAIGN_ID", pCapmaignId) + .whereIfSet("CAMPAIGNSTEP.CAMPAIGN_ID", pCampaignId) .orderBy("SORTING DESC") .cell(true); } -- GitLab