44 lines
1.8 KiB
PHP
44 lines
1.8 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 Products_SubProducts_Action extends Vtiger_Action_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 process(Vtiger_Request $request) {
|
|
$productId = $request->get('record');
|
|
$productModel = Vtiger_Record_Model::getInstanceById($productId, 'Products');
|
|
$subProducts = $productModel->getSubProducts($active = true);
|
|
$values = array();
|
|
foreach($subProducts as $id => $subProduct) {
|
|
$stockMessage = '';
|
|
if ($subProduct->get('quantityInBundle') > $subProduct->get('qtyinstock')) {
|
|
$stockMessage = vtranslate('LBL_STOCK_NOT_ENOUGH', $request->getModule());
|
|
}
|
|
$values[$id] = array('productName' => $subProduct->getName(),
|
|
'quantity' => $subProduct->get('quantityInBundle'),
|
|
'stockMessage' => $stockMessage);
|
|
}
|
|
|
|
$result = array('isBundleViewable' => $productModel->isBundleViewable(), 'values' => $values);
|
|
$response = new Vtiger_Response();
|
|
$response->setResult($result);
|
|
$response->emit();
|
|
}
|
|
}
|