0
0
mirror of https://github.com/salesagility/SuiteCRM.git synced 2024-11-22 07:52:36 +00:00
salesagility_SuiteCRM/modules/AOS_Quotes/metadata/listviewdefs.php
2023-07-18 15:53:09 +01:00

201 lines
4.6 KiB
PHP
Executable File

<?php
if (!defined('sugarEntry') || !sugarEntry) {
die('Not A Valid Entry Point');
}
/**
* Advanced OpenSales, Advanced, robust set of sales modules.
* @package Advanced OpenSales for SugarCRM
* @copyright SalesAgility Ltd http://www.salesagility.com
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* 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 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
*
* @author SalesAgility <info@salesagility.com>
*/
global $sugar_config;
$listViewDefs ['AOS_Quotes'] =
array(
'NUMBER' =>
array(
'width' => '5%',
'label' => 'LBL_LIST_NUM',
'default' => true,
),
'NAME' =>
array(
'width' => '15%',
'label' => 'LBL_ACCOUNT_NAME',
'link' => true,
'default' => true,
),
'STAGE' =>
array(
'width' => '10%',
'label' => 'LBL_STAGE',
'default' => true,
),
'BILLING_CONTACT' =>
array(
'width' => '11%',
'label' => 'LBL_BILLING_CONTACT',
'default' => true,
'module' => 'Contacts',
'id' => 'BILLING_CONTACT_ID',
'link' => true,
'related_fields' =>
array(
'billing_contact_id',
),
),
'BILLING_ACCOUNT' =>
array(
'width' => '15%',
'label' => 'LBL_BILLING_ACCOUNT',
'default' => true,
'module' => 'Accounts',
'id' => 'BILLING_ACCOUNT_ID',
'link' => true,
'related_fields' =>
array(
'billing_account_id',
),
),
'TOTAL_AMOUNT' =>
array(
'width' => '10%',
'label' => 'LBL_GRAND_TOTAL',
'default' => true,
'currency_format' => true,
),
'EXPIRATION' =>
array(
'width' => '10%',
'label' => 'LBL_EXPIRATION',
'default' => true,
),
'ASSIGNED_USER_NAME' =>
array(
'width' => '10%',
'label' => 'LBL_ASSIGNED_USER',
'default' => true,
'module' => 'Users',
'id' => 'ASSIGNED_USER_ID',
'link' => true,
),
'AOS_QUOTES_TYPE' =>
array(
'width' => '10%',
'label' => 'LBL_TYPE',
'default' => false,
),
'BILLING_ADDRESS_STREET' =>
array(
'width' => '15%',
'label' => 'LBL_BILLING_ADDRESS_STREET',
'default' => false,
),
'BILLING_ADDRESS_CITY' =>
array(
'width' => '10%',
'label' => 'LBL_CITY',
'default' => false,
),
'BILLING_ADDRESS_STATE' =>
array(
'width' => '7%',
'label' => 'LBL_BILLING_ADDRESS_STATE',
'default' => false,
),
'BILLING_ADDRESS_POSTALCODE' =>
array(
'width' => '10%',
'label' => 'LBL_BILLING_ADDRESS_POSTALCODE',
'default' => false,
),
'BILLING_ADDRESS_COUNTRY' =>
array(
'width' => '10%',
'label' => 'LBL_BILLING_ADDRESS_COUNTRY',
'default' => false,
),
'SHIPPING_ADDRESS_STREET' =>
array(
'width' => '15%',
'label' => 'LBL_SHIPPING_ADDRESS_STREET',
'default' => false,
),
'SHIPPING_ADDRESS_CITY' =>
array(
'width' => '10%',
'label' => 'LBL_SHIPPING_ADDRESS_CITY',
'default' => false,
),
'SHIPPING_ADDRESS_STATE' =>
array(
'width' => '7%',
'label' => 'LBL_SHIPPING_ADDRESS_STATE',
'default' => false,
),
'SHIPPING_ADDRESS_POSTALCODE' =>
array(
'width' => '10%',
'label' => 'LBL_SHIPPING_ADDRESS_POSTALCODE',
'default' => false,
),
'SHIPPING_ADDRESS_COUNTRY' =>
array(
'width' => '10%',
'label' => 'LBL_SHIPPING_ADDRESS_COUNTRY',
'default' => false,
),
'PHONE_ALTERNATE' =>
array(
'width' => '10%',
'label' => 'LBL_PHONE_ALT',
'default' => false,
),
'WEBSITE' =>
array(
'width' => '10%',
'label' => 'LBL_WEBSITE',
'default' => false,
),
'OWNERSHIP' =>
array(
'width' => '10%',
'label' => 'LBL_OWNERSHIP',
'default' => false,
),
'EMPLOYEES' =>
array(
'width' => '10%',
'label' => 'LBL_EMPLOYEES',
'default' => false,
),
'TICKER_SYMBOL' =>
array(
'width' => '10%',
'label' => 'LBL_TICKER_SYMBOL',
'default' => false,
),
'DATE_ENTERED' =>
array(
'width' => '5%',
'label' => 'LBL_DATE_ENTERED',
'default' => preg_match('/^6\.?[2-9]/', (string) $sugar_config['sugar_version']),
),
);