0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
vtiger
/
5.0.4
/
standard
/
htdocs
/
modules
/
PriceBooks
/
[
Home
]
File: DetailView.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('Smarty_setup.php'); require_once('modules/PriceBooks/PriceBooks.php'); require_once('include/utils/utils.php'); require_once('user_privileges/default_module_view.php'); $focus = new PriceBooks(); if(isset($_REQUEST['record']) && isset($_REQUEST['record'])) { $focus->retrieve_entity_info($_REQUEST['record'],"PriceBooks"); $focus->id = $_REQUEST['record']; $focus->name = $focus->column_fields['bookname']; } if(isset($_REQUEST['isDuplicate']) && $_REQUEST['isDuplicate'] == 'true') { $focus->id = ""; } global $app_strings,$mod_strings,$theme,$currentModule,$singlepane_view; $theme_path="themes/".$theme."/"; $image_path=$theme_path."images/"; $smarty = new vtigerCRM_Smarty; $smarty->assign("MOD", $mod_strings); $smarty->assign("APP", $app_strings); $smarty->assign("BLOCKS", getBlocks($currentModule,"detail_view",'',$focus->column_fields)); $smarty->assign("UPDATEINFO",updateInfo($focus->id)); $category = getParentTab(); $smarty->assign("CATEGORY",$category); $smarty->assign("CUSTOMFIELD", $cust_fld); if(isPermitted("PriceBooks","PriceBookEditView",$_REQUEST['record']) == 'yes') $smarty->assign("EDIT_DUPLICATE","permitted"); if(isPermitted("PriceBooks","DeletePriceBook",$_REQUEST['record']) == 'yes') $smarty->assign("DELETE","permitted"); $smarty->assign("IMAGE_PATH", $image_path); $smarty->assign("PRINT_URL", "phprint.php?jt=".session_id().$GLOBALS['request_string']); $smarty->assign("ID", $_REQUEST['record']); $smarty->assign("NAME", $focus->name); $check_button = Button_Check($module); $smarty->assign("CHECK", $check_button); $tabid = getTabid("PriceBooks"); $validationData = getDBValidationData($focus->tab_name,$tabid); $data = split_validationdataArray($validationData); $category = getParentTab(); $smarty->assign("CATEGORY",$category); $smarty->assign("VALIDATION_DATA_FIELDNAME",$data['fieldname']); $smarty->assign("VALIDATION_DATA_FIELDDATATYPE",$data['datatype']); $smarty->assign("VALIDATION_DATA_FIELDLABEL",$data['fieldlabel']); $smarty->assign("MODULE", $currentModule); $smarty->assign("SINGLE_MOD", 'PriceBook'); $smarty->assign("EDIT_PERMISSION",isPermitted($currentModule,'EditView',$_REQUEST[record])); if($singlepane_view == 'true') { $related_array = getRelatedLists($currentModule,$focus); $smarty->assign("RELATEDLISTS", $related_array); } $smarty->assign("IS_REL_LIST",isPresentRelatedLists($currentModule)); $smarty->assign("SinglePane_View", $singlepane_view); $smarty->display("Inventory/InventoryDetailView.tpl"); ?>
© 2017 -
ZeroByte.ID
.