0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
vtiger
/
5.0.4
/
standard
/
htdocs
/
modules
/
Campaigns
/
[
Home
]
File: Campaigns.js
/********************************************************************************* ** The contents of this file are subject to the vtiger CRM Public License Version 1.0 * ("License"); You may not use this file except in compliance with the License * The Original Code is: vtiger CRM Open Source * The Initial Developer of the Original Code is vtiger. * Portions created by vtiger are Copyright (C) vtiger. * All Rights Reserved. ********************************************************************************/ function set_return_specific_campaign(campaign_id, campaign_name) { window.opener.document.EditView.campaignname.value = campaign_name; window.opener.document.EditView.campaignid.value = campaign_id; } function set_return(product_id, product_name) { window.opener.document.EditView.parent_name.value = product_name; window.opener.document.EditView.parent_id.value = product_id; } function set_return_todo(product_id, product_name) { window.opener.document.createTodo.task_parent_name.value = product_name; window.opener.document.createTodo.task_parent_id.value = product_id; }