46 lines
1.7 KiB
PHP
46 lines
1.7 KiB
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.
|
|
*************************************************************************************/
|
|
|
|
class PriceBooks_ListPriceUpdate_View extends Vtiger_View_Controller {
|
|
|
|
function checkPermission(Vtiger_Request $request) {
|
|
$moduleName = $request->getModule();
|
|
$moduleModel = Vtiger_Module_Model::getInstance($moduleName);
|
|
|
|
$currentUserPriviligesModel = Users_Privileges_Model::getCurrentUserPrivilegesModel();
|
|
if(!$currentUserPriviligesModel->hasModulePermission($moduleModel->getId())) {
|
|
throw new AppException(vtranslate($moduleName, $moduleName).' '.vtranslate('LBL_NOT_ACCESSIBLE'));
|
|
}
|
|
}
|
|
|
|
function preProcess(Vtiger_Request $request, $display = true) {
|
|
}
|
|
|
|
function process(Vtiger_Request $request) {
|
|
$moduleName = $request->getModule();
|
|
$priceBookId = $request->get('record');
|
|
$relId = $request->get('relid');
|
|
$currentPrice = $request->get('currentPrice');
|
|
|
|
$viewer = $this->getViewer($request);
|
|
$viewer->assign('MODULE',$moduleName);
|
|
$viewer->assign('PRICEBOOK_ID', $priceBookId);
|
|
$viewer->assign('REL_ID', $relId);
|
|
$viewer->assign('CURRENT_PRICE', $currentPrice);
|
|
$viewer->assign('USER_MODEL', Users_Record_Model::getCurrentUserModel());
|
|
$viewer->view('ListPriceUpdate.tpl', $moduleName);
|
|
}
|
|
|
|
function postProcess(Vtiger_Request $request) {
|
|
}
|
|
}
|
|
|
|
?>
|