0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
vtiger
/
5.0.4
/
standard
/
htdocs
/
modules
/
Products
/
[
Home
]
File: updateRelations.php
<?php /********************************************************************************* ** 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. * ********************************************************************************/ require_once('include/database/PearDatabase.php'); global $adb; $dest_mod = $_REQUEST['destination_module']; //if select Lead, Account, Contact, Potential from Product RelatedList we have to insert in vtiger_seproductsrel if($dest_mod =='Leads' || $dest_mod =='Accounts' ||$dest_mod =='Contacts' ||$dest_mod =='Potentials') { //For Bulk updates if($_REQUEST['idlist'] != '') { $entityids = explode(';',trim($_REQUEST['idlist'],';')); $productid = $_REQUEST['parentid']; } else { $entityids[] = $_REQUEST['entityid']; $productid = $_REQUEST['parid']; } foreach($entityids as $ind => $crmid) { if($crmid != '' && $productid != '') { $sql = "insert into vtiger_seproductsrel values (?,?,?)"; $adb->pquery($sql, array($crmid,$productid,$dest_mod)); } } $return_module = 'Products'; } if($singlepane_view == 'true') $return_action = "DetailView"; else $return_action = "CallRelatedList"; if($_REQUEST['parenttab'] != '') $parent_tab =$_REQUEST['parenttab']; if($_REQUEST['return_module'] != '') $return_module = $_REQUEST['return_module']; header("Location:index.php?action=$return_action&module=$return_module&record=".$productid."&parenttab=".$parent_tab); ?>