Skip to content
Snippets Groups Projects
Commit e2559b87 authored by Benjamin Ulrich's avatar Benjamin Ulrich :speech_balloon:
Browse files

[Projekt: Entwicklung - xRM][TicketNr.: 1055289][[xRM Basic] - Campaign_lib - Bennenung Parameter]

parent a0e9a6d1
No related branches found
No related tags found
No related merge requests found
...@@ -283,17 +283,17 @@ CampaignUtils.getDefaultCampaignStep = function(pCampaignId) ...@@ -283,17 +283,17 @@ CampaignUtils.getDefaultCampaignStep = function(pCampaignId)
/** /**
* Returns the start date to the corresponding campaign id.<br> * Returns the start date to the corresponding campaign id.<br>
* *
* @param {String} pCapmaignId <p> * @param {String} pCampaignId <p>
* The corresponding campaign id.<br> * The corresponding campaign id.<br>
* @return {String} <p> * @return {String} <p>
* The end date in this format:<br> * The end date in this format:<br>
* <b>yyyy-mm-dd</b> * <b>yyyy-mm-dd</b>
*/ */
CampaignUtils.getCampaignStartDate = function(pCapmaignId) CampaignUtils.getCampaignStartDate = function(pCampaignId)
{ {
return newSelect("DATE_START") return newSelect("DATE_START")
.from("CAMPAIGNSTEP") .from("CAMPAIGNSTEP")
.whereIfSet("CAMPAIGNSTEP.CAMPAIGN_ID", pCapmaignId) .whereIfSet("CAMPAIGNSTEP.CAMPAIGN_ID", pCampaignId)
.orderBy("SORTING ASC") .orderBy("SORTING ASC")
.cell(true); .cell(true);
} }
...@@ -301,17 +301,17 @@ CampaignUtils.getCampaignStartDate = function(pCapmaignId) ...@@ -301,17 +301,17 @@ CampaignUtils.getCampaignStartDate = function(pCapmaignId)
/** /**
* Returns the end date to the corresponding campaign id.<br> * Returns the end date to the corresponding campaign id.<br>
* *
* @param {String} pCapmaignId <p> * @param {String} pCampaignId <p>
* The corresponding campaign id.<br> * The corresponding campaign id.<br>
* @return {String} <p> * @return {String} <p>
* The end date in this format:<br> * The end date in this format:<br>
* <b>yyyy-mm-dd</b> * <b>yyyy-mm-dd</b>
*/ */
CampaignUtils.getCampaignEndDate = function(pCapmaignId) CampaignUtils.getCampaignEndDate = function(pCampaignId)
{ {
return newSelect("DATE_END") return newSelect("DATE_END")
.from("CAMPAIGNSTEP") .from("CAMPAIGNSTEP")
.whereIfSet("CAMPAIGNSTEP.CAMPAIGN_ID", pCapmaignId) .whereIfSet("CAMPAIGNSTEP.CAMPAIGN_ID", pCampaignId)
.orderBy("SORTING DESC") .orderBy("SORTING DESC")
.cell(true); .cell(true);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment