0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
vtiger
/
5.0.4
/
standard
/
htdocs
/
modules
/
Vendors
/
[
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'); require_once('user_privileges/default_module_view.php'); global $adb, $singlepane_view; $idlist = $_REQUEST['idlist']; if($singlepane_view == 'true') $action = "DetailView"; else $action = "CallRelatedList"; $dest_mod = $_REQUEST['destination_module']; //This will be true, when we select product from vendor related list if($_REQUEST['destination_module']=='Products') { if(isset($_REQUEST['idlist']) && $_REQUEST['idlist'] != '') { $record = $_REQUEST["parentid"]; $storearray = explode (";",$idlist); foreach($storearray as $id) { if($id != '') $adb->pquery("update vtiger_products set vendor_id=? where productid=?", array($record ,$id)); } } elseif($_REQUEST['parid'] != '' && $_REQUEST['entityid'] != '') { $sql = "update vtiger_products set vendor_id=? where productid=?"; $adb->pquery($sql, array($_REQUEST['parid'], $_REQUEST['entityid'])); $record = $_REQUEST['parid']; } } //select contact from vendor relatedlist if($_REQUEST['destination_module']=='Contacts') { if(isset($_REQUEST['idlist']) && $_REQUEST['idlist'] != '') { $record = $_REQUEST["parentid"]; //split the string and store in an array $storearray = explode (";",$idlist); foreach($storearray as $id) { if($id != '') { $sql = "insert into vtiger_vendorcontactrel values (?,?)"; $adb->pquery($sql, array($record, $id)); } } } elseif(isset($_REQUEST['entityid']) && $_REQUEST['entityid'] != '') { $record = $_REQUEST["parid"]; $sql = "insert into vtiger_vendorcontactrel values (?,?)"; $adb->pquery($sql, array($record, $_REQUEST['entityid'])); } } header("Location:index.php?action=$action&module=Vendors&record=".$record); ?>