Files
crm.twinpol.com/include/ListView/ListViewDisplay.php

797 lines
44 KiB
PHP
Raw Normal View History

2025-05-12 15:44:39 +00:00
<?php
if (!defined('sugarEntry') || !sugarEntry)
die('Not A Valid Entry Point');
/* * *******************************************************************************
* SugarCRM is a customer relationship management program developed by
* SugarCRM, Inc. Copyright (C) 2004-2010 SugarCRM Inc.
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License version 3 as published by the
* Free Software Foundation with the addition of the following permission added
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
* IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
* details.
*
* You should have received a copy of the GNU Affero General Public License along with
* this program; if not, see http://www.gnu.org/licenses or write to the Free
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301 USA.
*
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
* SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
*
* The interactive user interfaces in modified source and object code versions
* of this program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU Affero General Public License version 3.
*
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "Powered by
* SugarCRM" logo. If the display of the logo is not reasonably feasible for
* technical reasons, the Appropriate Legal Notices must display the words
* "Powered by SugarCRM".
* ****************************************************************************** */
require_once('include/ListView/ListViewData.php');
require_once('include/MassUpdate.php');
class ListViewDisplay
{
var $show_mass_update_form = false;
var $show_action_dropdown = true;
var $rowCount;
var $mass = null;
var $seed;
var $multi_select_popup;
var $lvd;
var $moduleString;
var $export = true;
var $multiSelect = true;
var $mailMerge = true;
var $should_process = true;
/*
* Used in view.popup.php. Sometimes there are fields on the search form that are not referenced in the listviewdefs. If this
* is the case, then the filterFields will be set and the related fields will not be referenced when calling create_new_list_query.
*/
var $mergeDisplayColumns = false;
public $actionsMenuExtraItems = array();
/**
* Constructor
* @return null
*/
function ListViewDisplay()
{
$this->lvd = new ListViewData();
$this->searchColumns = array();
}
function shouldProcess($moduleDir)
{
if (!empty($GLOBALS['sugar_config']['save_query']) && $GLOBALS['sugar_config']['save_query'] == 'populate_only') {
if (empty($GLOBALS['displayListView']) && (!empty($_REQUEST['clear_query']) || $_REQUEST['module'] == $moduleDir && ((empty($_REQUEST['query']) || $_REQUEST['query'] == 'MSI') && (empty($_SESSION['last_search_mod']) || $_SESSION['last_search_mod'] != $moduleDir)))) {
$_SESSION['last_search_mod'] = $_REQUEST['module'];
$this->should_process = false;
return false;
}
}
$this->should_process = true;
return true;
}
/**
* Setup the class
* @param seed SugarBean Seed SugarBean to use
* @param file File Template file to use
* @param string $where
* @param offset:0 int offset to start at
* @param int:-1 $limit
* @param string[]:array() $filter_fields
* @param array:array() $params
* Potential $params are
* $params['distinct'] = use distinct key word
* $params['include_custom_fields'] = (on by default)
* $params['massupdate'] = true by default;
* $params['handleMassupdate'] = true by default, have massupdate.php handle massupdates?
* @param string:'id' $id_field
*/
function setup($seed, $file, $where, $params = array(), $offset = 0, $limit = -1, $filter_fields = array(), $id_field = 'id')
{
$this->should_process = true;
if (isset ($seed->module_dir) && !$this->shouldProcess($seed->module_dir)) {
return false;
}
if (isset ($params ['export'])) {
$this->export = $params ['export'];
}
if (!empty ($params ['multiSelectPopup'])) {
$this->multi_select_popup = $params ['multiSelectPopup'];
}
if (!empty ($params ['massupdate']) && $params ['massupdate'] != false) {
$this->show_mass_update_form = true;
$this->mass = new MassUpdate ();
$this->mass->setSugarBean($seed);
if (!empty ($params ['handleMassupdate']) || !isset ($params ['handleMassupdate'])) {
$this->mass->handleMassUpdate();
}
}
$this->seed = $seed;
// create filter fields based off of display columns
if (empty ($filter_fields) || $this->mergeDisplayColumns) {
foreach ($this->displayColumns as $columnName => $def) {
$filter_fields [strtolower($columnName)] = true;
if (isset ($this->seed->field_defs [strtolower($columnName)] ['type']) && strtolower($this->seed->field_defs [strtolower($columnName)] ['type']) == 'currency' && isset ($this->seed->field_defs ['currency_id'])) {
$filter_fields ['currency_id'] = true;
}
if (!empty ($def ['related_fields'])) {
foreach ($def ['related_fields'] as $field) {
// id column is added by query construction function. This addition creates duplicates
// and causes issues in oracle. #10165
if ($field != 'id') {
$filter_fields [$field] = true;
}
}
}
if (!empty ($this->seed->field_defs [strtolower($columnName)] ['db_concat_fields'])) {
foreach ($this->seed->field_defs [strtolower($columnName)] ['db_concat_fields'] as $index => $field) {
if (!isset ($filter_fields [strtolower($field)]) || !$filter_fields [strtolower($field)]) {
$filter_fields [strtolower($field)] = true;
}
}
}
}
foreach ($this->searchColumns as $columnName => $def) {
$filter_fields [strtolower($columnName)] = true;
}
}
$filter_fields['canceled'] = true;
$data = $this->lvd->getListViewData($seed, $where, $offset, $limit, $filter_fields, $params, $id_field);
// add mz 2015-03-18
//var_dump($filter_fields);
// add summary row to list view
//echo '<pre>';
//var_dump($_REQUEST);
//echo '</pre>';
$sum = array();
$db = $GLOBALS ['db'];
$showSumRow = false;
$list_pdf_settings = array();
$list_pdf_settings['module'] = $_REQUEST['module'];
$list_pdf_settings['table'] = $this->seed->table_name;
$list_pdf_settings['where'] = base64_encode($where);
$list_pdf_settings['order'] = $_SESSION['lvd']['last_ob'];
$list_pdf_settings['direction'] = $_SESSION['lvd']['direction'];
$list_pdf_settings['fields'] = array();
//filter fields
if ($_REQUEST['searchFormTab'] == "basic_search")
$formType = 'basic';
else
$formType = 'advanced';
if ($_REQUEST['register_date_' . $formType . '_from'] != "")
$list_pdf_settings['date_from'] = $_REQUEST['register_date_' . $formType . '_from'];
if ($_REQUEST['register_date_' . $formType . '_to'] != "")
$list_pdf_settings['date_to'] = $_REQUEST['register_date_' . $formType . '_to'];
if ($_REQUEST['ecmproductstockindex_id_' . $formType])
$list_pdf_settings['ecmproductstockindex_id'] = $_REQUEST['ecmproductstockindex_id_' . $formType];
if (is_array($_REQUEST['stock_in_id_' . $formType])) {
$list_pdf_settings['stocks_in'] = array();
foreach ($_REQUEST['stock_in_id_' . $formType] as $k => $v)
$list_pdf_settings['stocks_in'][] = $v;
}
if (is_array($_REQUEST['stock_out_id_' . $formType])) {
$list_pdf_settings['stocks_out'] = array();
foreach ($_REQUEST['stock_out_id_' . $formType] as $k => $v)
$list_pdf_settings['stocks_out'][] = $v;
}
if (is_array($_REQUEST['stock_id_' . $formType])) {
$list_pdf_settings['stocks'] = array();
foreach ($_REQUEST['stock_id_' . $formType] as $k => $v)
$list_pdf_settings['stocks'][] = $v;
}
foreach ($this->displayColumns as $name => $val) {
$tmp = array();
$tmp['name'] = strtolower($name);
$tmp['label'] = $this->displayColumns[$name]['label'];
if ($this->displayColumns [$name] ['sumType'] == 'sum') {
$innerJoin = "";
$aditiona_where = "";
$wal_query = "select * from currency_nbp_archive order by date desc limit 3";
$ik = $db->query($wal_query);
$wal = [];
while ($walutki = $db->fetchByAssoc($ik)) {
$wal[$walutki['currency_id']] = $walutki['value'];
}
if ($_REQUEST['module'] != 'EcmSales') {
$sum_q = "SELECT SUM(" . strtolower($name) . ") as sum FROM " . $this->seed->table_name;
$aditiona_where = " AND canceled ='0'";
} else {
$sum_q = "SELECT
SUM(IF(ecmsales.currency_id = '6336d9a0-ee5f-52e3-7d0c-4e6f1472b2bf',
total_netto * " . $wal['6336d9a0-ee5f-52e3-7d0c-4e6f1472b2bf'] . ",
IF(ecmsales.currency_id = '98b2b752-b0be-37c2-d2eb-511e29f81cab',
total_netto * " . $wal['98b2b752-b0be-37c2-d2eb-511e29f81cab'] . ",
IF(ecmsales.currency_id = '3c8d317e-513b-9a9b-d0e6-511e2abee625',
total_netto * " . $wal['3c8d317e-513b-9a9b-d0e6-511e2abee625'] . ",
total_netto)))) AS sum
FROM
ecmsales";
}
if ($where && $where != " ") {
$sum_q .= $innerJoin . " WHERE deleted='0' AND " . $where . ' ' . $aditiona_where;
} else {
$sum_q .= $innerJoin . " WHERE deleted='0' " . $aditiona_where;
}
$back = $db->fetchByAssoc($db->query($sum_q));
$sum [$name] = $back['sum'];
$showSumRow = true;
$tmp['summary'] = $back['sum'];
$list_pdf_settings['showSum'] = '1';
} else if ($this->displayColumns [$name] ['sumType'] == 'avg') {
$sum_q = "SELECT AVG(" . strtolower($name) . ") as avg FROM " . $this->seed->table_name;
if ($where && $where != " ")
$sum_q .= " WHERE canceled='0' AND " . $where;
$back = $db->fetchByAssoc($db->query($sum_q));
$sum [$name] = $back['avg'];
$showSumRow = true;
$tmp['summary'] = $back['avg'];
$list_pdf_settings['showSum'] = '1';
} else if ($this->displayColumns [$name] ['sumType'] == 'func') {
$func = $this->displayColumns [$name] ['sumFunc'];
if (method_exists($seed->object_name, $func) == false)
echo '<b>ListView Summary Error: Method ' . $seed->object_name . ':' . $func . ' not exist.<br>';
else {
$sum[$name] = call_user_func(array($seed->object_name, $func), $where);
$tmp['summary'] = $sum[$name];
$list_pdf_settings['showSum'] = '1';
}
}
$list_pdf_settings['fields'][] = $tmp;
unset($tmp);
}
$_SESSION['ee'] = base64_encode(json_encode($list_pdf_settings));
if ($showSumRow == true) {
$sum['showSumRow'] = true;
$data ['data'] [] = $sum;
}
foreach ($this->displayColumns as $columnName => $def) {
$seedName = strtolower($columnName);
if (!empty ($this->lvd->seed->field_defs [$seedName])) {
$seedDef = $this->lvd->seed->field_defs [$seedName];
}
if (empty ($this->displayColumns [$columnName] ['type'])) {
if (!empty ($seedDef ['type'])) {
$this->displayColumns [$columnName] ['type'] = (!empty ($seedDef ['custom_type'])) ? $seedDef ['custom_type'] : $seedDef ['type'];
} else {
$this->displayColumns [$columnName] ['type'] = '';
}
} // fi empty(...)
if (!empty ($seedDef ['options'])) {
$this->displayColumns [$columnName] ['options'] = $seedDef ['options'];
}
// C.L. Fix for 11177
if ($this->displayColumns [$columnName] ['type'] == 'html') {
$cField = $this->seed->custom_fields;
if (isset ($cField) && isset ($cField->bean->$seedName)) {
$seedName2 = strtoupper($columnName);
$htmlDisplay = html_entity_decode($cField->bean->$seedName);
$count = 0;
while ($count < count($data ['data'])) {
$data ['data'] [$count] [$seedName2] = &$htmlDisplay;
$count++;
}
}
} // fi == 'html'
if (!empty ($seedDef ['sort_on'])) {
$this->displayColumns [$columnName] ['orderBy'] = $seedDef ['sort_on'];
}
if (isset ($seedDef)) {
// Merge the two arrays together, making sure the seedDef doesn't override anything explicitly set in the displayColumns array.
$this->displayColumns [$columnName] = $this->displayColumns [$columnName] + $seedDef;
}
// C.L. Bug 38388 - ensure that ['id'] is set for related fields
if (!isset ($this->displayColumns [$columnName] ['id']) && isset ($this->displayColumns [$columnName] ['id_name'])) {
$this->displayColumns [$columnName] ['id'] = strtoupper($this->displayColumns [$columnName] ['id_name']);
}
}
$this->process($file, $data, $seed->object_name);
return true;
}
/**
* Any additional processing
* @param file File template file to use
* @param data array row data
* @param html_var string html string to be passed back and forth
*/
function process($file, $data, $htmlVar)
{
$this->rowCount = count($data['data']);
$this->moduleString = $data['pageData']['bean']['moduleDir'] . '2_' . strtoupper($htmlVar) . '_offset';
}
/**
* Display the listview
* @return string ListView contents
*/
function display()
{
if (!$this->should_process)
return '';
$str = '';
if ($this->multiSelect == true && $this->show_mass_update_form)
$str = $this->mass->getDisplayMassUpdateForm(true, $this->multi_select_popup) . $this->mass->getMassUpdateFormHeader($this->multi_select_popup);
return $str;
}
/**
* Display the select link
* @param echo Bool set true if you want it echo'd, set false to have contents returned
* @return string select link html
*/
function buildSelectLink($id = 'select_link', $total = 0, $pageTotal = 0)
{
global $app_strings;
if ($pageTotal < 0)
$pageTotal = $total;
$script = "<script>
function select_overlib() {
return overlib('<a style=\'width: 150px\' class=\'menuItem\' onmouseover=\'hiliteItem(this,\"yes\");\' onmouseout=\'unhiliteItem(this);\' onclick=\'if (document.MassUpdate.select_entire_list.value==1){document.MassUpdate.select_entire_list.value=0;sListView.check_all(document.MassUpdate, \"mass[]\", true, $pageTotal)}else {sListView.check_all(document.MassUpdate, \"mass[]\", true)};\' href=\'#\'>{$app_strings['LBL_LISTVIEW_OPTION_CURRENT']}&nbsp;({$pageTotal})</a>"
. "<a style=\'width: 150px\' class=\'menuItem\' onmouseover=\'hiliteItem(this,\"yes\");\' onmouseout=\'unhiliteItem(this);\' onclick=\'sListView.check_entire_list(document.MassUpdate, \"mass[]\",true,{$total});\' href=\'#\'>{$app_strings['LBL_LISTVIEW_OPTION_ENTIRE']}&nbsp;({$total})</a>"
. "<a style=\'width: 150px\' class=\'menuItem\' onmouseover=\'hiliteItem(this,\"yes\");\' onmouseout=\'unhiliteItem(this);\' onclick=\'sListView.clear_all(document.MassUpdate, \"mass[]\", false);\' href=\'#\'>{$app_strings['LBL_LISTVIEW_NONE']}</a>"
. "', CENTER, '"
. "', STICKY, MOUSEOFF, 3000, CLOSETEXT, '<img border=0 src=" . SugarThemeRegistry::current()->getImageURL('close_inline.gif')
. ">', WIDTH, 150, CLOSETITLE, '" . $app_strings['LBL_ADDITIONAL_DETAILS_CLOSE_TITLE'] . "', CLOSECLICK, FGCLASS, 'olOptionsFgClass', "
. "CGCLASS, 'olOptionsCgClass', BGCLASS, 'olBgClass', TEXTFONTCLASS, 'olFontClass', CAPTIONFONTCLASS, 'olOptionsCapFontClass', CLOSEFONTCLASS, 'olOptionsCloseFontClass',TIMEOUT,1000);
}
</script>";
$script .= "<a id='$id' onclick='return select_overlib();' href=\"#\"><img src='" . SugarThemeRegistry::current()->getImageURL('MoreDetail.png') . "' border='0''>" . "</a>";
return $script;
}
/**
* Display the actions link
*
* @param string $id link id attribute, defaults to 'actions_link'
* @return string HTML source
*/
protected function buildActionsLink($id = 'actions_link')
{
global $app_strings;
$closeText = "<img border=0 src=" . SugarThemeRegistry::current()->getImageURL('close_inline.gif') . " />";
$moreDetailImage = SugarThemeRegistry::current()->getImageURL('MoreDetail.png');
$menuItems = '';
/* // delete
if ( ACLController::checkAccess($this->seed->module_dir,'delete',true) && $this->delete )
$menuItems .= $this->buildDeleteLink();
// compose email
if ( isset($_REQUEST['module']) && $_REQUEST['module'] != 'Users' && $_REQUEST['module'] != 'Employees' &&
( SugarModule::get($_REQUEST['module'])->moduleImplements('Company')
|| SugarModule::get($_REQUEST['module'])->moduleImplements('Person') ) )
$menuItems .= $this->buildComposeEmailLink($this->data['pageData']['offsets']['total']);
// mass update
$mass = new MassUpdate();
$mass->setSugarBean($this->seed);
if ( ACLController::checkAccess($this->seed->module_dir,'edit',true) && $this->showMassupdateFields && $mass->doMassUpdateFieldsExistForFocus() )
$menuItems .= $this->buildMassUpdateLink();
// merge
if ( $this->mailMerge )
$menuItems .= $this->buildMergeLink();
if ( $this->mergeduplicates )
$menuItems .= $this->buildMergeDuplicatesLink();
// add to target list
if ( isset($_REQUEST['module']) && in_array($_REQUEST['module'],array('Contacts','Prospects','Leads','Accounts')))
$menuItems .= $this->buildTargetList();
// favorites ( for reports )
if ( isset($_REQUEST['module'])
&& ($_REQUEST['module'] == 'Reports')
&& (isset($_REQUEST['favorite']) && $_REQUEST['favorite'] == 1) )
$menuItems .= $this->buildRemoveFavoritesLink();
elseif ( isset($_REQUEST['module']) && ($_REQUEST['module'] == 'Reports') )
$menuItems .= $this->buildFavoritesLink();
// export
if ( ACLController::checkAccess($this->seed->module_dir,'export',true) && $this->export )
$menuItems .= $this->buildExportLink(); */
// mh
if ($_REQUEST['module'] == 'EcmServices') {
// Close
$this->actionsMenuExtraItems[] = '<a href="#" class="menuItem" style="width: 150px;" onmouseover=\'hiliteItem(this, "yes");\' onmouseout="unhiliteItem(this);" onclick="sugarListView.get_checks(); if(sugarListView.get_checks_count() < 1) { alert(\'' . $app_strings['LBL_LISTVIEW_NO_SELECTED'] . '\'); return false; } document.MassUpdate.action.value=\'close\'; document.MassUpdate.submit();"/>' . $GLOBALS['mod_strings']['LBL_LISTVIEW_SERVICE_CLOSE'] . '</a>';
// FK
$this->actionsMenuExtraItems[] = '<a href="#" class="menuItem" style="width: 150px;" onmouseover=\'hiliteItem(this, "yes");\' onmouseout="unhiliteItem(this);" onclick="sugarListView.get_checks(); if(sugarListView.get_checks_count() < 1) { alert(\'' . $app_strings['LBL_LISTVIEW_NO_SELECTED'] . '\'); return false; } if(sugarListView.get_checks_count() > 1) { alert(\'' . $app_strings['LBL_LISTVIEW_GT_1'] . '\'); return false; } document.MassUpdate.action.value=\'invoice\'; document.MassUpdate.submit();"/>' . $GLOBALS['mod_strings']['LBL_LISTVIEW_SERVICE_INVOICE'] . '</a>';
// RW
$this->actionsMenuExtraItems[] = '<a href="#" class="menuItem" style="width: 150px;" onmouseover=\'hiliteItem(this, "yes");\' onmouseout="unhiliteItem(this);" onclick="sugarListView.get_checks(); if(sugarListView.get_checks_count() < 1) { alert(\'' . $app_strings['LBL_LISTVIEW_NO_SELECTED'] . '\'); return false; } if(sugarListView.get_checks_count() > 1) { alert(\'' . $app_strings['LBL_LISTVIEW_GT_1'] . '\'); return false; } document.MassUpdate.action.value=\'rw\'; document.MassUpdate.submit();"/>' . $GLOBALS['mod_strings']['LBL_LISTVIEW_SERVICE_RW'] . '</a>';
}
global $current_user;
//add mz 2012-04-02
//add component in InsideOrders
if ($_REQUEST['module'] == 'EcmInsideOrders')
$this->actionsMenuExtraItems[] = '<a href="#" class="menuItem" style="width: 150px;" onmouseover=\'hiliteItem(this,"yes");\' onmouseout="unhiliteItem(this);" onclick="sugarListView.get_checks();if(sugarListView.get_checks_count() < 1) {alert(\'' . $app_strings['LBL_LISTVIEW_NO_SELECTED'] . '\');return false;}if(sugarListView.get_checks_count() > 1) {alert(\'' . $app_strings['LBL_LISTVIEW_TO_MANY_SELECTED'] . '\');return false;}document.MassUpdate.action.value=\'displaypassedids\';document.MassUpdate.submit();"/>' . $GLOBALS['mod_strings']['LBL_LISTVIEW_IMPORT_COMPONENTS'] . '</a>';
if ($_REQUEST['module'] == 'Documents') {
$this->actionsMenuExtraItems[] = '<a href="#" class="menuItem" style="width: 150px;" onmouseover=\'hiliteItem(this,"yes");\' onmouseout="unhiliteItem(this);" onclick="sugarListView.get_checks();if(sugarListView.get_checks_count() < 1) {alert(\'' . $app_strings['LBL_LISTVIEW_NO_SELECTED'] . '\');return false;}document.MassUpdate.action.value=\'changeStatus\';document.MassUpdate.return_module.value=\'0\';document.MassUpdate.submit();"/>Zmień status na: do zapłaty</a>';
$this->actionsMenuExtraItems[] = '<a href="#" class="menuItem" style="width: 150px;" onmouseover=\'hiliteItem(this,"yes");\' onmouseout="unhiliteItem(this);" onclick="sugarListView.get_checks();if(sugarListView.get_checks_count() < 1) {alert(\'' . $app_strings['LBL_LISTVIEW_NO_SELECTED'] . '\');return false;}document.MassUpdate.action.value=\'changeStatus\';document.MassUpdate.return_module.value=\'1\';document.MassUpdate.submit();"/>Zmień status na: przekazano do autoryzacji</a>';
$this->actionsMenuExtraItems[] = '<a href="#" class="menuItem" style="width: 150px;" onmouseover=\'hiliteItem(this,"yes");\' onmouseout="unhiliteItem(this);" onclick="sugarListView.get_checks();if(sugarListView.get_checks_count() < 1) {alert(\'' . $app_strings['LBL_LISTVIEW_NO_SELECTED'] . '\');return false;}document.MassUpdate.action.value=\'changeStatus\';document.MassUpdate.return_module.value=\'2\';document.MassUpdate.submit();"/>Zmień status na: zapłacono</a>';
$this->actionsMenuExtraItems[] = '<a href="#" class="menuItem" style="width: 150px;" onmouseover=\'hiliteItem(this,"yes");\' onmouseout="unhiliteItem(this);" onclick="sugarListView.get_checks();if(sugarListView.get_checks_count() < 1) {alert(\'' . $app_strings['LBL_LISTVIEW_NO_SELECTED'] . '\');return false;}document.MassUpdate.action.value=\'changeStatus\';document.MassUpdate.return_module.value=\'3\';document.MassUpdate.submit();"/>Zmień status na: kompensata</a>';
if ($current_user->id != '6826e9ec-9e04-4f3b-76fc-4ce320b4e459' || $current_user->id != 'd8d28f31-6f5c-cd1c-f196-4ce31f2cb55e') {
$this->actionsMenuExtraItems[] = '<a href="#" class="menuItem" style="width: 150px;" onmouseover=\'hiliteItem(this,"yes");\' onmouseout="unhiliteItem(this);" onclick="sugarListView.get_checks();if(sugarListView.get_checks_count() < 1) {alert(\'' . $app_strings['LBL_LISTVIEW_NO_SELECTED'] . '\');return false;}document.MassUpdate.action.value=\'changeStatus\';document.MassUpdate.return_module.value=\'_empty_\';document.MassUpdate.submit();"/>Zmień status na: Inne</a>';
}
}
//create PZ from selected PurchaseOrders in action menu
if ($_REQUEST['module'] == 'EcmPurchaseOrders')
$this->actionsMenuExtraItems[] = '<a href="#" class="menuItem" style="width: 150px;" onmouseover=\'hiliteItem(this,"yes");\' onmouseout="unhiliteItem(this);" onclick="sugarListView.get_checks();if(sugarListView.get_checks_count() < 1) {alert(\'' . $app_strings['LBL_LISTVIEW_NO_SELECTED'] . '\');return false;}document.MassUpdate.action.value=\'displaypassedids\';document.MassUpdate.submit();"/>Wystaw fakturę</a>';
//create Invoice from selected WZ Documents in action menu
if ($_REQUEST['module'] == 'EcmStockDocOuts')
$this->actionsMenuExtraItems[] = '<a href="#" class="menuItem" style="width: 150px;" onmouseover=\'hiliteItem(this,"yes");\' onmouseout="unhiliteItem(this);" onclick="sugarListView.get_checks();if(sugarListView.get_checks_count() < 1) {alert(\'' . $app_strings['LBL_LISTVIEW_NO_SELECTED'] . '\');return false;}document.MassUpdate.action.value=\'displaypassedids\';document.MassUpdate.submit();"/>' . $GLOBALS['mod_strings']['LBL_LISTVIEW_CREATE_INVOICE'] . '</a>';
if ($_REQUEST['module'] == 'Accounts') {
$this->actionsMenuExtraItems[] = '<a href="#" class="menuItem" style="width: 150px;" onmouseover=\'hiliteItem(this,"yes");\' onmouseout="unhiliteItem(this);" onclick="sugarListView.get_checks();if(sugarListView.get_checks_count() < 1) {alert(\'' . $app_strings['LBL_LISTVIEW_NO_SELECTED'] . '\');return false;}document.MassUpdate.action.value=\'showMap\';document.MassUpdate.submit();"/> Pokaż na mapie </a>';
$this->actionsMenuExtraItems[] = '<a href="#" class="menuItem" style="width: 150px;" onmouseover=\'hiliteItem(this,"yes");\' onmouseout="unhiliteItem(this);" onclick="sugarListView.get_checks();if(sugarListView.get_checks_count() < 1) {alert(\'' . $app_strings['LBL_LISTVIEW_NO_SELECTED'] . '\');return false;}document.MassUpdate.action.value=\'SendEmail\';document.MassUpdate.submit();"/> Wyślij email </a>';
$this->actionsMenuExtraItems[] = '<a href="#" class="menuItem" style="width: 150px;" onmouseover=\'hiliteItem(this,"yes");\' onmouseout="unhiliteItem(this);" onclick="sugarListView.get_checks();if(sugarListView.get_checks_count() < 1) {alert(\'' . $app_strings['LBL_LISTVIEW_NO_SELECTED'] . '\');return false;}document.MassUpdate.action.value=\'share\';document.MassUpdate.submit();"/> Udostępnij </a>';
}
if ($_REQUEST['module'] == 'EcmProducts') {
$this->actionsMenuExtraItems[] = '<a href="#" class="menuItem" style="width: 150px;" onmouseover=\'hiliteItem(this,"yes");\' onmouseout="unhiliteItem(this);" onclick="sugarListView.get_checks();if(sugarListView.get_checks_count() < 1) {alert(\'' . $app_strings['LBL_LISTVIEW_NO_SELECTED'] . '\');return false;}document.MassUpdate.action.value=\'share\';document.MassUpdate.submit();"/> Udostępnij </a>';
}
if ($_REQUEST['module'] == 'EcmSales') {
$this->actionsMenuExtraItems[] = '<a href="#" class="menuItem" style="width: 150px;" onmouseover=\'hiliteItem(this,"yes");\' onmouseout="unhiliteItem(this);" onclick="sugarListView.get_checks();if(sugarListView.get_checks_count() < 1) {alert(\'' . $app_strings['LBL_LISTVIEW_NO_SELECTED'] . '\');return false;}document.MassUpdate.action.value=\'wzCreator\';document.MassUpdate.setAttribute(\'target\',\'_blank\');document.MassUpdate.submit();"/> Wystaw dokument WZ </a>';
$this->actionsMenuExtraItems[] = '<a href="#" class="menuItem" style="width: 150px;" onmouseover=\'hiliteItem(this,"yes");\' onmouseout="unhiliteItem(this);" onclick="sugarListView.get_checks();if(sugarListView.get_checks_count() < 1) {alert(\'' . $app_strings['LBL_LISTVIEW_NO_SELECTED'] . '\');return false;}document.MassUpdate.action.value=\'ComponentsList\';document.MassUpdate.removeAttribute(\'target\');document.MassUpdate.submit();"/> Lista komponentów </a>';
// $this->actionsMenuExtraItems[] = '<a href="#" class="menuItem" style="width: 150px;" onmouseover=\'hiliteItem(this,"yes");\' onmouseout="unhiliteItem(this);" onclick="sugarListView.get_checks();if(sugarListView.get_checks_count() < 1) {alert(\'' . $app_strings['LBL_LISTVIEW_NO_SELECTED'] . '\');return false;}var r = confirm(\'Czy napewno chcesz zmienić status zaznaczonych dokumentów?\');if (r == true) {document.MassUpdate.action.value=\'change_status\';document.MassUpdate.submit();}"/>Zmień status</a>';
}
if ($_REQUEST['module'] == 'EcmInvoiceOuts') {
$this->actionsMenuExtraItems[] = '<a href="#" class="menuItem" style="width: 150px;" onmouseover=\'hiliteItem(this,"yes");\' onmouseout="unhiliteItem(this);" onclick="sugarListView.get_checks();if(sugarListView.get_checks_count() < 1) {alert(\'' . $app_strings['LBL_LISTVIEW_NO_SELECTED'] . '\');return false;}document.MassUpdate.action.value=\'generuj\';document.MassUpdate.submit();"/> Generuj zbiorczy PDF </a>';
}
if ($_REQUEST['module'] == 'EcmSales') {
$this->actionsMenuExtraItems[] = '<a target="new" href="#" class="menuItem" style="width: 150px;" onmouseover=\'hiliteItem(this,"yes");\' onmouseout="unhiliteItem(this);" onclick="sugarListView.get_checks();if(sugarListView.get_checks_count() < 1) {alert(\'' . $app_strings['LBL_LISTVIEW_NO_SELECTED'] . '\');return false;}document.MassUpdate.action.value=\'massAction_PDF\';document.MassUpdate.submit();"/> Generuj zbiorczy PDF </a>';
}
if ($_REQUEST['module'] == 'EcmStockDocOuts') {
$this->actionsMenuExtraItems[] = '<a href="#" class="menuItem" style="width: 150px;" onmouseover=\'hiliteItem(this,"yes");\' onmouseout="unhiliteItem(this);" onclick="sugarListView.get_checks();if(sugarListView.get_checks_count() < 1) {alert(\'' . $app_strings['LBL_LISTVIEW_NO_SELECTED'] . '\');return false;}if(checkIsTheSameContractor()) {alert(\'Proszę o wybranie tego samego kontrahenta lub dokumentów bez wystawionej faktury.\');return false;} else { gotoInvoice(); return false;}document.MassUpdate.action.value=\'createInvoice\';document.MassUpdate.submit();"/> Wystaw fakturę zbiorczą </a>';
}
//end mz
foreach ($this->actionsMenuExtraItems as $item)
$menuItems .= $item;
$menuItems = str_replace('"', '\"', $menuItems);
if (empty($menuItems))
return '';
return <<<EOHTML
<script type="text/javascript">
<!--
function actions_overlib()
{
if($('#overDiv').css('visibility')=='visible'){
$('#overDiv').css('visibility','hidden');
} else {
return overlib("{$menuItems}", CENTER, '', STICKY, MOUSEOFF, 3000, CLOSETEXT, "{$closeText}", WIDTH, 150,
CLOSETITLE, "{$app_strings['LBL_ADDITIONAL_DETAILS_CLOSE_TITLE']}", CLOSECLICK,
FGCLASS, 'olOptionsFgClass', CGCLASS, 'olOptionsCgClass', BGCLASS, 'olBgClass',
TEXTFONTCLASS, 'olFontClass', CAPTIONFONTCLASS, 'olOptionsCapFontClass',
CLOSEFONTCLASS, 'olOptionsCloseFontClass');
}
}
-->
</script>
<a id='$id' onclick='return actions_overlib();' href="#">
{$app_strings['LBL_LINK_ACTIONS']}&nbsp;<img src='{$moreDetailImage}' border='0' />
</a>
EOHTML;
}
/**
* Builds the export link
*
* @return string HTML
*/
protected function buildExportLink()
{
global $app_strings;
return "<a href='#' style='width: 150px' class='menuItem' onmouseover='hiliteItem(this,\"yes\");' onmouseout='unhiliteItem(this);' onclick=\"return sListView.send_form(true, '{$_REQUEST['module']}', 'index.php?entryPoint=export','{$app_strings['LBL_LISTVIEW_NO_SELECTED']}')\">{$app_strings['LBL_EXPORT']}</a>";
}
/**
* Builds the massupdate link
*
* @return string HTML
*/
protected function buildMassUpdateLink()
{
global $app_strings;
return "<a href='#massupdate_form' style='width: 150px' class='menuItem' onmouseover='hiliteItem(this,\"yes\");' onmouseout='unhiliteItem(this);' onclick=\"document.getElementById('massupdate_form').style.display = '';\">{$app_strings['LBL_MASS_UPDATE']}</a>";
}
/**
* Builds the compose email link
*
* @return string HTML
*/
protected function buildComposeEmailLink(
$totalCount
)
{
global $app_strings, $dictionary;
if (!is_array($this->seed->field_defs)) {
return '';
}
$foundEmailField = false;
// Search for fields that look like an email address
foreach ($this->seed->field_defs as $field) {
if (isset($field['type']) && $field['type'] == 'link'
&& isset($field['relationship']) && isset($dictionary[$this->seed->object_name]['relationships'][$field['relationship']])
&& $dictionary[$this->seed->object_name]['relationships'][$field['relationship']]['rhs_module'] == 'EmailAddresses') {
$foundEmailField = true;
break;
}
}
if (!$foundEmailField) {
return '';
}
$userPref = $GLOBALS['current_user']->getPreference('email_link_type');
$defaultPref = $GLOBALS['sugar_config']['email_default_client'];
if ($userPref != '')
$client = $userPref;
else
$client = $defaultPref;
if ($client == 'sugar')
$script = "<a href='#' style='width: 150px' class='menuItem' onmouseover='hiliteItem(this,\"yes\");' onmouseout='unhiliteItem(this);' " .
'onclick="return sListView.send_form_for_emails(true, \'' . "Emails" . '\', \'index.php?module=Emails&action=Compose&ListView=true\',\'' . $app_strings['LBL_LISTVIEW_NO_SELECTED'] . '\', \'' . $_REQUEST['module'] . '\', \'' . $totalCount . '\', \'' . $app_strings['LBL_LISTVIEW_LESS_THAN_TEN_SELECT'] . '\')">' .
$app_strings['LBL_EMAIL_COMPOSE'] . '</a>';
else
$script = "<a href='#' style='width: 150px' class='menuItem' onmouseover='hiliteItem(this,\"yes\");' onmouseout='unhiliteItem(this);' " .
'onclick="return sListView.use_external_mail_client(\'' . $app_strings['LBL_LISTVIEW_NO_SELECTED'] . '\');">' .
$app_strings['LBL_EMAIL_COMPOSE'] . '</a>';
return $script;
}
// fn
/**
* Builds the favorites link ( for reports )
*
* @return string HTML
*/
protected function buildFavoritesLink()
{
global $app_strings;
return "<a href='#' style='width: 150px' class='menuItem' onmouseover='hiliteItem(this,\"yes\");' onmouseout='unhiliteItem(this);' name='Mark as Favorites' onclick='document.MassUpdate.massupdate.value = false; document.MassUpdate.action.value = document.MassUpdate.return_action.value; document.MassUpdate.addtofavorites.value = true; document.MassUpdate.submit();'>{$app_strings['LBL_MARK_AS_FAVORITES']}</a>";
}
/**
* Builds the remote favorites link ( for reports )
*
* @return string HTML
*/
protected function buildRemoveFavoritesLink()
{
global $app_strings;
return "<a href='#' style='width: 150px' class='menuItem' onmouseover='hiliteItem(this,\"yes\");' onmouseout='unhiliteItem(this);' name='Add to Favorites' onclick='document.MassUpdate.massupdate.value = false; document.MassUpdate.action.value = document.MassUpdate.return_action.value; document.MassUpdate.removefromfavorites.value = true; document.MassUpdate.submit();'>{$app_strings['LBL_REMOVE_FROM_FAVORITES']}</a>";
}
/**
* Builds the delete link
*
* @return string HTML
*/
protected function buildDeleteLink()
{
global $app_strings;
return "<a href='#' style='width: 150px' class='menuItem' onmouseover='hiliteItem(this,\"yes\");' onmouseout='unhiliteItem(this);' onclick=\"return sListView.send_mass_update('selected', '{$app_strings['LBL_LISTVIEW_NO_SELECTED']}', 1)\">{$app_strings['LBL_DELETE_BUTTON_LABEL']}</a>";
}
/**
* Display the selected object span object
*
* @return string select object span
*/
function buildSelectedObjectsSpan($echo = true, $total = 0)
{
global $app_strings;
$selectedObjectSpan = "{$app_strings['LBL_LISTVIEW_SELECTED_OBJECTS']}<input style='border: 0px; background: transparent; font-size: inherit; color: inherit' type='text' id='selectCountTop' readonly name='selectCount[]' value='{$total}' />";
return $selectedObjectSpan;
}
/**
* Builds the mail merge link
* The link can be disabled by setting module level duplicate_merge property to false
* in the moudle's vardef file.
*
* @return string HTML
*/
protected function buildMergeDuplicatesLink()
{
global $app_strings, $dictionary;
$return_string = '';
$return_string .= isset($_REQUEST['module']) ? "&return_module={$_REQUEST['module']}" : "";
$return_string .= isset($_REQUEST['action']) ? "&return_action={$_REQUEST['action']}" : "";
$return_string .= isset($_REQUEST['record']) ? "&return_id={$_REQUEST['record']}" : "";
//need delete and edit access.
if (!(ACLController::checkAccess($_REQUEST['module'], 'edit', true)) or !(ACLController::checkAccess($_REQUEST['module'], 'delete', true))) {
return '';
}
if (isset($dictionary[$this->seed->object_name]['duplicate_merge']) && $dictionary[$this->seed->object_name]['duplicate_merge'] == true) {
return "<a href='#' style='width: 150px' class='menuItem' onmouseover='hiliteItem(this,\"yes\");' onmouseout='unhiliteItem(this);' " .
"onclick='if (sugarListView.get_checks_count()> 1) {sListView.send_form(true, \"MergeRecords\", \"index.php\", \"{$app_strings['LBL_LISTVIEW_NO_SELECTED']}\", \"{$this->seed->module_dir}\",\"$return_string\");} else {alert(\"{$app_strings['LBL_LISTVIEW_TWO_REQUIRED']}\");return false;}'>" .
$app_strings['LBL_MERGE_DUPLICATES'] . '</a>';
}
return '';
}
/**
* Builds the mail merge link
*
* @return string HTML
*/
protected function buildMergeLink()
{
require_once('modules/MailMerge/modules_array.php');
global $current_user, $app_strings;
$admin = new Administration();
$admin->retrieveSettings('system');
$user_merge = $current_user->getPreference('mailmerge_on');
$module_dir = (!empty($this->seed->module_dir) ? $this->seed->module_dir : '');
$str = '';
if ($user_merge == 'on' && isset($admin->settings['system_mailmerge_on']) && $admin->settings['system_mailmerge_on'] && !empty($modules_array[$module_dir])) {
$str = "<a href='#' style='width: 150px' class='menuItem' onmouseover='hiliteItem(this,\"yes\");' onmouseout='unhiliteItem(this);' " .
'onclick="if (document.MassUpdate.select_entire_list.value==1){document.location.href=\'index.php?action=index&module=MailMerge&entire=true\'} else {return sListView.send_form(true, \'MailMerge\',\'index.php\',\'' . $app_strings['LBL_LISTVIEW_NO_SELECTED'] . '\');}">' .
$app_strings['LBL_MAILMERGE'] . '</a>';
}
return $str;
}
/**
* Builds the add to target list link
*
* @return string HTML
*/
protected function buildTargetList()
{
global $app_strings;
$js = <<<EOF
if(sugarListView.get_checks_count() < 1) {
alert('{$app_strings['LBL_LISTVIEW_NO_SELECTED']}');
return false;
}
if ( document.forms['targetlist_form'] ) {
var form = document.forms['targetlist_form'];
form.reset;
} else
var form = document.createElement ( 'form' ) ;
form.setAttribute ( 'name' , 'targetlist_form' );
form.setAttribute ( 'method' , 'post' ) ;
form.setAttribute ( 'action' , 'index.php' );
document.body.appendChild ( form ) ;
if ( !form.module ) {
var input = document.createElement('input');
input.setAttribute ( 'name' , 'module' );
input.setAttribute ( 'value' , '{$_REQUEST['module']}' );
input.setAttribute ( 'type' , 'hidden' );
form.appendChild ( input ) ;
var input = document.createElement('input');
input.setAttribute ( 'name' , 'action' );
input.setAttribute ( 'value' , 'TargetListUpdate' );
input.setAttribute ( 'type' , 'hidden' );
form.appendChild ( input ) ;
}
if ( !form.uids ) {
var input = document.createElement('input');
input.setAttribute ( 'name' , 'uids' );
input.setAttribute ( 'type' , 'hidden' );
form.appendChild ( input ) ;
}
if ( !form.prospect_list ) {
var input = document.createElement('input');
input.setAttribute ( 'name' , 'prospect_list' );
input.setAttribute ( 'type' , 'hidden' );
form.appendChild ( input ) ;
}
if ( !form.return_module ) {
var input = document.createElement('input');
input.setAttribute ( 'name' , 'return_module' );
input.setAttribute ( 'type' , 'hidden' );
form.appendChild ( input ) ;
}
if ( !form.return_action ) {
var input = document.createElement('input');
input.setAttribute ( 'name' , 'return_action' );
input.setAttribute ( 'type' , 'hidden' );
form.appendChild ( input ) ;
}
open_popup('ProspectLists','600','400','',true,false,{ 'call_back_function':'set_return_and_save_targetlist','form_name':'targetlist_form','field_to_name_array':{'id':'prospect_list'} } );
EOF;
$js = str_replace(array("\r", "\n"), '', $js);
return "<a href='#' style='width: 150px' class='menuItem' onmouseover='hiliteItem(this,\"yes\");' onmouseout='unhiliteItem(this);' onclick=\"$js\">{$app_strings['LBL_ADD_TO_PROSPECT_LIST_BUTTON_LABEL']}</a>";
}
/**
* Display the bottom of the ListView (ie MassUpdate
* @return string contents
*/
function displayEnd()
{
$str = '';
if ($this->show_mass_update_form) {
$str .= $this->mass->getMassUpdateForm(true);
$str .= $this->mass->endMassUpdateForm();
}
return $str;
}
/**
* Display the multi select data box etc.
* @return string contents
*/
function getMultiSelectData()
{
$str = "<script>YAHOO.util.Event.addListener(window, \"load\", sListView.check_boxes);</script>\n";
$massUpdateRun = isset($_REQUEST['massupdate']) && $_REQUEST['massupdate'] == 'true';
$uids = empty($_REQUEST['uid']) || $massUpdateRun ? '' : $_REQUEST['uid'];
$select_entire_list = isset($_REQUEST['select_entire_list']) && !$massUpdateRun ? $_REQUEST['select_entire_list'] : 0;
$str .= "<textarea style='display: none' name='uid'>{$uids}</textarea>\n" .
"<input type='hidden' name='select_entire_list' value='{$select_entire_list}'>\n" .
"<input type='hidden' name='{$this->moduleString}' value='0'>\n";
return $str;
}
}