diff --git a/process/Campaign_lib/process.js b/process/Campaign_lib/process.js index f3934b933660f8cb2ba2fe7b756d1b0094b87e7f..2d0507917a2047a0e9a8028ceb221045a9db3326 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); }