- Added comprehensive AI Assistant system (aiassist/ directory): * Vector search and embedding capabilities * Typebot proxy integration * Elastic search functionality * Message classification and chat history * MCP proxy for external integrations - Implemented Court Status API (GetCourtStatus.php): * Real-time court document status checking * Integration with external court systems * Comprehensive error handling and logging - Enhanced S3 integration: * Improved file backup system with metadata * Batch processing capabilities * Enhanced error logging and recovery * Copy operations with URL fixing - Added Telegram contact creation API - Improved error logging across all modules - Enhanced callback system for AI responses - Extensive backup file storage with timestamps - Updated documentation and README files - File storage improvements: * Thousands of backup files with proper metadata * Fix operations for broken file references * Project-specific backup and recovery systems * Comprehensive file integrity checking Total: 26,461+ files added/modified including AWS SDK, vendor dependencies, and extensive backup system.
264 lines
9.5 KiB
PHP
264 lines
9.5 KiB
PHP
<?php
|
|
/*+**********************************************************************************
|
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.1
|
|
* ("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 Inventory_SubProductsPopup_View extends Vtiger_Popup_View {
|
|
|
|
public function requiresPermission(Vtiger_Request $request){
|
|
$permissions = parent::requiresPermission($request);
|
|
|
|
$permissions[] = array('module_parameter' => 'custom_module', 'action' => 'DetailView');
|
|
$request->set('custom_module', $this->getModule($request));
|
|
return $permissions;
|
|
}
|
|
|
|
/**
|
|
* Function returns module name for which Popup will be initialized
|
|
* @param type $request
|
|
*/
|
|
function getModule($request) {
|
|
return 'Products';
|
|
}
|
|
|
|
function process (Vtiger_Request $request) {
|
|
$viewer = $this->getViewer ($request);
|
|
$companyDetails = Vtiger_CompanyDetails_Model::getInstanceById();
|
|
$companyLogo = $companyDetails->getLogo();
|
|
|
|
$this->initializeListViewContents($request, $viewer);
|
|
|
|
$moduleName = 'Inventory';
|
|
$viewer->assign('COMPANY_LOGO',$companyLogo);
|
|
$viewer->assign('MODULE_NAME',$moduleName);
|
|
$viewer->view('PopupEntries.tpl', $moduleName);
|
|
}
|
|
/*
|
|
* Function to initialize the required data in smarty to display the List View Contents
|
|
*/
|
|
public function initializeListViewContents(Vtiger_Request $request, Vtiger_Viewer $viewer) {
|
|
//src_module value is added to just to stop showing inactive products
|
|
$request->set('src_module', $request->getModule());
|
|
|
|
$moduleName = $this->getModule($request);
|
|
$cvId = $request->get('cvid');
|
|
$pageNumber = $request->get('page');
|
|
$orderBy = $request->get('orderby');
|
|
$sortOrder = $request->get('sortorder');
|
|
$sourceModule = $request->get('src_module');
|
|
$sourceField = $request->get('src_field');
|
|
$sourceRecord = $request->get('src_record');
|
|
$searchKey = $request->get('search_key');
|
|
$searchValue = $request->get('search_value');
|
|
$currencyId = $request->get('currency_id');
|
|
$searchParams=$request->get('search_params');
|
|
|
|
//To handle special operation when selecting record from Popup
|
|
$getUrl = $request->get('get_url');
|
|
|
|
// To handle subproducts in popup view
|
|
$subProductsPopup = $request->get('subProductsPopup');
|
|
$parentProductId = $request->get('productid');
|
|
|
|
//Check whether the request is in multi select mode
|
|
$multiSelectMode = $request->get('multi_select');
|
|
if(empty($multiSelectMode)) {
|
|
$multiSelectMode = false;
|
|
}
|
|
|
|
if(empty($cvId)) {
|
|
$cvId = '0';
|
|
}
|
|
if(empty ($pageNumber)){
|
|
$pageNumber = '1';
|
|
}
|
|
|
|
$pagingModel = new Vtiger_Paging_Model();
|
|
$pagingModel->set('page', $pageNumber);
|
|
|
|
$moduleModel = Vtiger_Module_Model::getInstance($moduleName);
|
|
$listViewModel = Vtiger_ListView_Model::getInstanceForPopup($moduleName);
|
|
$recordStructureInstance = Vtiger_RecordStructure_Model::getInstanceForModule($moduleModel);
|
|
|
|
if(!empty($orderBy)) {
|
|
$listViewModel->set('orderby', $orderBy);
|
|
$listViewModel->set('sortorder', $sortOrder);
|
|
}
|
|
if(!empty($sourceModule)) {
|
|
$listViewModel->set('src_module', $sourceModule);
|
|
$listViewModel->set('src_field', $sourceField);
|
|
$listViewModel->set('src_record', $sourceRecord);
|
|
}
|
|
if((!empty($searchKey)) && (!empty($searchValue))) {
|
|
$listViewModel->set('search_key', $searchKey);
|
|
$listViewModel->set('search_value', $searchValue);
|
|
}
|
|
|
|
if($subProductsPopup && $parentProductId){
|
|
$listViewModel->set('subProductsPopup', true);
|
|
$listViewModel->set('productId', $parentProductId);
|
|
$viewer->assign('SUBPRODUCTS_POPUP', $subProductsPopup);
|
|
$viewer->assign('PARENT_PRODUCT_ID', $parentProductId);
|
|
}
|
|
|
|
if(!empty($searchParams)) {
|
|
$transformedSearchParams = $this->transferListSearchParamsToFilterCondition($searchParams, $listViewModel->getModule());
|
|
$listViewModel->set('search_params',$transformedSearchParams);
|
|
}
|
|
|
|
if(!$this->listViewHeaders){
|
|
$this->listViewHeaders = $listViewModel->getListViewHeaders();
|
|
}
|
|
|
|
if(!$this->listViewEntries){
|
|
$this->listViewEntries = $listViewModel->getListViewEntries($pagingModel);
|
|
}
|
|
|
|
$noOfEntries = count($this->listViewEntries);
|
|
|
|
if(empty($sortOrder)){
|
|
$sortOrder = "ASC";
|
|
}
|
|
if($sortOrder == "ASC"){
|
|
$nextSortOrder = "DESC";
|
|
$sortImage = "downArrowSmall.png";
|
|
}else{
|
|
$nextSortOrder = "ASC";
|
|
$sortImage = "upArrowSmall.png";
|
|
}
|
|
if(empty($searchParams)) {
|
|
$searchParams = array();
|
|
}
|
|
//To make smarty to get the details easily accesible
|
|
foreach($searchParams as $fieldListGroup){
|
|
foreach($fieldListGroup as $fieldSearchInfo){
|
|
$fieldSearchInfo['searchValue'] = $fieldSearchInfo[2];
|
|
$fieldSearchInfo['fieldName'] = $fieldName = $fieldSearchInfo[0];
|
|
$fieldSearchInfo['comparator'] = $fieldSearchInfo[1];
|
|
$searchParams[$fieldName] = $fieldSearchInfo;
|
|
}
|
|
}
|
|
$viewer->assign('MODULE', $moduleName);
|
|
|
|
$viewer->assign('SOURCE_MODULE', $sourceModule);
|
|
$viewer->assign('SOURCE_FIELD', $sourceField);
|
|
$viewer->assign('SOURCE_RECORD', $sourceRecord);
|
|
|
|
$viewer->assign('SEARCH_KEY', $searchKey);
|
|
$viewer->assign('SEARCH_VALUE', $searchValue);
|
|
|
|
$viewer->assign('ORDER_BY',$orderBy);
|
|
$viewer->assign('SORT_ORDER',$sortOrder);
|
|
$viewer->assign('NEXT_SORT_ORDER',$nextSortOrder);
|
|
$viewer->assign('SORT_IMAGE',$sortImage);
|
|
$viewer->assign('GETURL', $getUrl);
|
|
$viewer->assign('CURRENCY_ID', $currencyId);
|
|
|
|
$viewer->assign('RECORD_STRUCTURE_MODEL', $recordStructureInstance);
|
|
$viewer->assign('RECORD_STRUCTURE', $recordStructureInstance->getStructure());
|
|
|
|
$viewer->assign('PAGING_MODEL', $pagingModel);
|
|
$viewer->assign('PAGE_NUMBER',$pageNumber);
|
|
|
|
$viewer->assign('LISTVIEW_ENTRIES_COUNT',$noOfEntries);
|
|
$viewer->assign('LISTVIEW_HEADERS', $this->listViewHeaders);
|
|
$viewer->assign('LISTVIEW_ENTRIES', $this->listViewEntries);
|
|
$viewer->assign('SEARCH_DETAILS', $searchParams);
|
|
|
|
if (PerformancePrefs::getBoolean('LISTVIEW_COMPUTE_PAGE_COUNT', false)) {
|
|
if(!$this->listViewCount){
|
|
$this->listViewCount = $listViewModel->getListViewCount();
|
|
}
|
|
$totalCount = $this->listViewCount;
|
|
$pageLimit = $pagingModel->getPageLimit();
|
|
$pageCount = ceil((int) $totalCount / (int) $pageLimit);
|
|
|
|
if($pageCount == 0){
|
|
$pageCount = 1;
|
|
}
|
|
$viewer->assign('PAGE_COUNT', $pageCount);
|
|
$viewer->assign('LISTVIEW_COUNT', $totalCount);
|
|
}
|
|
$viewer->assign('MODULE_MODEL', $moduleModel);
|
|
$viewer->assign('MULTI_SELECT', $multiSelectMode);
|
|
$viewer->assign('CURRENT_USER_MODEL', Users_Record_Model::getCurrentUserModel());
|
|
|
|
$viewer->assign('MODULE', $request->getModule());
|
|
$viewer->assign('GETURL', 'getTaxesURL');
|
|
$viewer->assign('VIEW', 'SubProductsPopup');
|
|
$viewer->assign('MAIN_PRODUCT_POPUP', true);
|
|
}
|
|
/**
|
|
* Function to get listView count
|
|
* @param Vtiger_Request $request
|
|
*/
|
|
function getListViewCount(Vtiger_Request $request){
|
|
$moduleName = $this->getModule($request);
|
|
$sourceModule = $request->get('src_module');
|
|
$sourceField = $request->get('src_field');
|
|
$sourceRecord = $request->get('src_record');
|
|
$orderBy = $request->get('orderby');
|
|
$sortOrder = $request->get('sortorder');
|
|
|
|
$searchKey = $request->get('search_key');
|
|
$searchValue = $request->get('search_value');
|
|
$subProductsPopup = $request->get('subProductsPopup');
|
|
$parentProductId = $request->get('productid');
|
|
$searchParams=$request->get('search_params');
|
|
$listViewModel = Vtiger_ListView_Model::getInstanceForPopup($moduleName);
|
|
if(!empty($sourceModule)) {
|
|
$listViewModel->set('src_module', $sourceModule);
|
|
$listViewModel->set('src_field', $sourceField);
|
|
$listViewModel->set('src_record', $sourceRecord);
|
|
}
|
|
|
|
if(!empty($orderBy)) {
|
|
$listViewModel->set('orderby', $orderBy);
|
|
$listViewModel->set('sortorder', $sortOrder);
|
|
}
|
|
if((!empty($searchKey)) && (!empty($searchValue))) {
|
|
$listViewModel->set('search_key', $searchKey);
|
|
$listViewModel->set('search_value', $searchValue);
|
|
}
|
|
if($subProductsPopup && $parentProductId){
|
|
$listViewModel->set('subProductsPopup', true);
|
|
$listViewModel->set('productId', $parentProductId);
|
|
}
|
|
if(!empty($searchParams)) {
|
|
$transformedSearchParams = $this->transferListSearchParamsToFilterCondition($searchParams, $listViewModel->getModule());
|
|
$listViewModel->set('search_params',$transformedSearchParams);
|
|
}
|
|
$count = $listViewModel->getListViewCount();
|
|
|
|
return $count;
|
|
}
|
|
|
|
/**
|
|
* Function to get the page count for list
|
|
* @return total number of pages
|
|
*/
|
|
function getPageCount(Vtiger_Request $request){
|
|
$listViewCount = $this->getListViewCount($request);
|
|
$pagingModel = new Vtiger_Paging_Model();
|
|
$pageLimit = $pagingModel->getPageLimit();
|
|
$pageCount = ceil((int) $listViewCount / (int) $pageLimit);
|
|
|
|
if($pageCount == 0){
|
|
$pageCount = 1;
|
|
}
|
|
$result = array();
|
|
$result['page'] = $pageCount;
|
|
$result['numberOfRecords'] = $listViewCount;
|
|
$response = new Vtiger_Response();
|
|
$response->setResult($result);
|
|
$response->emit();
|
|
}
|
|
public function transferListSearchParamsToFilterCondition($listSearchParams, $moduleModel) {
|
|
return Vtiger_Util_Helper::transferListSearchParamsToFilterCondition($listSearchParams, $moduleModel);
|
|
}
|
|
} |