From b7917e93514896811481153f29948b86c758a35c Mon Sep 17 00:00:00 2001 From: appu <apparao@vtiger.com> Date: Wed, 20 Dec 2023 15:34:56 +0530 Subject: [PATCH] #Fixed: Installation is failed --- includes/runtime/LanguageHandler.php | 4 ++-- layouts/v7/modules/PurchaseOrder/PopupContents.tpl | 12 ------------ modules/Migration/schema/540_to_600RC.php | 6 ++++-- 3 files changed, 6 insertions(+), 16 deletions(-) delete mode 100644 layouts/v7/modules/PurchaseOrder/PopupContents.tpl diff --git a/includes/runtime/LanguageHandler.php b/includes/runtime/LanguageHandler.php index 5815b6801..b570bd7ad 100644 --- a/includes/runtime/LanguageHandler.php +++ b/includes/runtime/LanguageHandler.php @@ -132,7 +132,7 @@ class Vtiger_Language_Handler { $qualifiedName = 'languages.'.$language.'.'.$module; $file = Vtiger_Loader::resolveNameToPath($qualifiedName); $languageStrings = $jsLanguageStrings = array(); - if (!self::$fileExists[$file]) { + if (!isset(self::$fileExists[$file])) { self::$fileExists[$file] = file_exists($file) ? 'yes' : 'no'; } if (self::$fileExists[$file] == 'yes') { @@ -147,7 +147,7 @@ class Vtiger_Language_Handler { $file = Vtiger_Loader::resolveNameToPath($qualifiedCustomName); $languageStrings = $jsLanguageStrings = array(); - if (!self::$fileExists[$file]) { + if (!isset(self::$fileExists[$file])) { self::$fileExists[$file] = file_exists($file) ? 'yes' : 'no'; } if (self::$fileExists[$file] == 'yes') { diff --git a/layouts/v7/modules/PurchaseOrder/PopupContents.tpl b/layouts/v7/modules/PurchaseOrder/PopupContents.tpl deleted file mode 100644 index 3bf4eb1bf..000000000 --- a/layouts/v7/modules/PurchaseOrder/PopupContents.tpl +++ /dev/null @@ -1,12 +0,0 @@ -{*+********************************************************************************** - * 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. - ************************************************************************************} -{* modules/PurchaseOrder/views/ProductsPopupAjax.php *} - -{* START YOUR IMPLEMENTATION FROM BELOW. Use {debug} for information *} -<DIV>TEMPLATE: layout/modules/PurchaseOrder/PopupContents.tpl</DIV> diff --git a/modules/Migration/schema/540_to_600RC.php b/modules/Migration/schema/540_to_600RC.php index 8151c9fcb..96054ff69 100644 --- a/modules/Migration/schema/540_to_600RC.php +++ b/modules/Migration/schema/540_to_600RC.php @@ -1603,8 +1603,10 @@ foreach($entityModules as $moduleModel) { $crmInstance = CRMEntity::getInstance($moduleModel->getName()); $tabId = $moduleModel->getId(); $defaultRelatedFields = $crmInstance->list_fields_name; - $updateQuery = 'UPDATE vtiger_field SET summaryfield=1 where tabid=? and fieldname IN ('.generateQuestionMarks($defaultRelatedFields).')'; - Migration_Index_View::ExecuteQuery($updateQuery, array_merge(array($tabId), array_values($defaultRelatedFields))); + if($defaultRelatedFields) { + $updateQuery = 'UPDATE vtiger_field SET summaryfield=1 where tabid=? and fieldname IN ('.generateQuestionMarks($defaultRelatedFields).')'; + Migration_Index_View::ExecuteQuery($updateQuery, array_merge(array($tabId), array_values($defaultRelatedFields))); + } } Migration_Index_View::ExecuteQuery('UPDATE vtiger_currencies SET currency_name = ? where currency_name = ? and currency_code = ?', -- GitLab