📄 detailview.php
字号:
<?php$sugar_config['list_max_entries_per_page'] = 1; ?><?php
if(empty($GLOBALS['sugarEntry'])) die('Not A Valid Entry Point');
/*********************************************************************************
* The contents of this file are subject to the SugarCRM Public License Version
* 1.1.3 ("License"); You may not use this file except in compliance with the
* License. You may obtain a copy of the License at http://www.sugarcrm.com/SPL
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* All copies of the Covered Code must include on each user interface screen:
* (i) the "Powered by SugarCRM" logo and
* (ii) the SugarCRM copyright notice
* in the same form as they appear in the distribution. See full license for
* requirements.
*
* The Original Code is: SugarCRM Open Source
* The Initial Developer of the Original Code is SugarCRM, Inc.
* Portions created by SugarCRM are Copyright (C) 2004-2006 SugarCRM, Inc.;
* All Rights Reserved.
* Contributor(s): ______________________________________.
********************************************************************************/
/*********************************************************************************
* $Id: DetailView.php,v 1.98.4.1 2006/01/08 04:35:45 majed Exp $
* Description: TODO To be written.
* Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
* All Rights Reserved.
* Contributor(s): ______________________________________..
********************************************************************************/
require_once('XTemplate/xtpl.php');
require_once('data/Tracker.php');
require_once('modules/Accounts/Account.php');
require_once('include/TimeDate.php');
require_once('include/DetailView/DetailView.php');
$timedate = new TimeDate();
global $mod_strings;
global $app_strings;
global $app_list_strings;
global $gridline;
$focus = new Account();
$detailView = new DetailView();
$offset=0;
if (isset($_REQUEST['offset']) or isset($_REQUEST['record'])) {
$result = $detailView->processSugarBean("ACCOUNT", $focus, $offset);
if($result == null) {
sugar_die("Error retrieving record. You may not be authorized to view this record.");
}
$focus=$result;
} else {
if(false) header("Location: index.php?module=Accounts&action=index");
}
if(isset($_REQUEST['isDuplicate']) && $_REQUEST['isDuplicate'] == 'true') {
$focus->id = "";
}
global $theme;
$theme_path="themes/".$theme."/";
$image_path=$theme_path."images/";
require_once($theme_path.'layout_utils.php');
echo "\n<p>\n";
echo get_module_title($mod_strings['LBL_MODULE_NAME'], $mod_strings['LBL_MODULE_NAME'].": ".$focus->name, true);
echo "\n</p>\n";
//changed by dingjianting on 2006-6-17 for removing efficiency
echo '<TABLE class=small cellSpacing=0 cellPadding=3 width="100%" border=0>
<TBODY>
<TR>
<TD class=dvtTabCache style="WIDTH: 10px" noWrap> </TD>
<TD class=dvtSelectedCell noWrap align=middle>
'.
$app_strings['LBL_BASIC_INFO'].'
</TD>
<TD class=dvtTabCache style="WIDTH: 10px"> </TD>
<TD class=dvtUnSelectedCell noWrap align=middle><A href="#" title="index.php?action=RelatedView&module=Accounts&record='.$_REQUEST['record'].'">'.$app_strings['LBL_MORE_INFO'].'</a></TD>
<TD class=dvtTabCache style="WIDTH: 100%"> </TD>
</TR></TBODY></TABLE><br>';
$GLOBALS['log']->info("Account detail view");
$focus->assign_display_fields('Accounts'); $xtpl=new XTemplate ('cache/layout/modules/Accounts/DetailView.html');
$xtpl->assign("MOD", $mod_strings);
$xtpl->assign("APP", $app_strings);
$xtpl->assign("THEME", $theme);
$xtpl->assign("GRIDLINE", $gridline);
$xtpl->assign("IMAGE_PATH", $image_path);
$xtpl->assign("PRINT_URL", "index.php?".$GLOBALS['request_string']);
if ($focus->annual_revenue != '')
{
$xtpl->assign("ANNUAL_REVENUE", $sugar_config['default_currency_symbol'].$focus->annual_revenue);
}
$xtpl->assign("BILLING_ADDRESS_STREET", nl2br($focus->billing_address_street));
/*
if (empty($focus->billing_address_state))
{
$xtpl->assign("BILLING_ADDRESS_CITY", $focus->billing_address_city);
}
else
{
$xtpl->assign("BILLING_ADDRESS_CITY", $focus->billing_address_city);
}
*/
if(empty($focus->billing_address_city)) {
$focus->billing_address_city = "Not_set";
}
if(empty($focus->billing_address_state)) {
$focus->billing_address_state = "Not_set";
}
if(empty($focus->billing_address_country)) {
$focus->billing_address_country = "Not_set";
}
$xtpl->assign("BILLING_ADDRESS_CITY", $focus->billing_address_city);
$xtpl->assign("BILLING_ADDRESS_STATE", $focus->billing_address_state);
$xtpl->assign("BILLING_ADDRESS_POSTALCODE", $focus->billing_address_postalcode);
$xtpl->assign("BILLING_ADDRESS_COUNTRY", $focus->billing_address_country);
$xtpl->assign("DATE_ENTERED", $focus->date_entered);
$xtpl->assign("ASSIGNED_TYPE", $app_list_strings['assigned_type_dom'][$focus->get_assigned_type()]);
$xtpl->assign("ASSIGNED_TO", $focus->assigned_user_name);
$xtpl->assign("DESCRIPTION", nl2br(url2html($focus->description)));
$xtpl->assign("EMAIL1", $focus->email1);
$xtpl->assign("EMAIL2", $focus->email2);
$xtpl->assign("EMPLOYEES", $focus->employees);
$xtpl->assign("ID", $focus->id);
$xtpl->assign("INDUSTRY", $app_list_strings['industry_dom'][$focus->industry]);
$xtpl->assign("NAME", $focus->name);
$xtpl->assign("OWNERSHIP", $focus->ownership);
$xtpl->assign("PARENT_ID", $focus->parent_id);
$xtpl->assign("PARENT_NAME", $focus->parent_name);
$xtpl->assign("CREATED_BY", $focus->created_by_name);
$xtpl->assign("MODIFIED_BY", $focus->modified_by_name);
$xtpl->assign("PHONE_ALTERNATE", $focus->phone_alternate);
$xtpl->assign("PHONE_FAX", $focus->phone_fax);
$xtpl->assign("PHONE_OFFICE", $focus->phone_office);
$xtpl->assign("RATING", $focus->rating);
//bank info
$xtpl->assign("BANK1", $focus->bank1);
$xtpl->assign("BANK1_ACCOUNT", $focus->bank1_account);
$xtpl->assign("BANK1_ACCOUNT_ID", $focus->bank1_account_id);
$xtpl->assign("TAX_ID1", $focus->tax_id1);
$xtpl->assign("BANK2", $focus->bank2);
$xtpl->assign("BANK2_ACCOUNT", $focus->bank2_account);
$xtpl->assign("BANK2_ACCOUNT_ID", $focus->bank2_account_id);
$xtpl->assign("TAX_ID2", $focus->tax_id2);
$xtpl->assign("PAYMENT_CREDIT", $focus->payment_credit);
$xtpl->assign("PAYMENT_TYPE", $app_list_strings['payment_type_dom'][$focus->payment_type]);
/*
$xtpl->assign("SHIPPING_ADDRESS_STREET", nl2br($focus->shipping_address_street));
if (empty($focus->shipping_address_state))
{
$xtpl->assign("SHIPPING_ADDRESS_CITY", $focus->shipping_address_city);
}
else
{
$xtpl->assign("SHIPPING_ADDRESS_CITY", $focus->shipping_address_city.', ');
}
$xtpl->assign("SHIPPING_ADDRESS_STATE", $focus->shipping_address_state);
$xtpl->assign("SHIPPING_ADDRESS_COUNTRY", $focus->shipping_address_country);
$xtpl->assign("SHIPPING_ADDRESS_POSTALCODE", $focus->shipping_address_postalcode);
*/
$xtpl->assign("SIC_CODE", $focus->sic_code);
$xtpl->assign("TICKER_SYMBOL", $focus->ticker_symbol);
$xtpl->assign("ACCOUNT_TYPE", $app_list_strings['account_type_dom'][$focus->account_type]);
if ($focus->website != '') $xtpl->assign("WEBSITE", $focus->website);
$xtpl->assign("DATE_MODIFIED", $focus->date_modified);
$xtpl->assign("DATE_ENTERED",$focus->date_entered);
global $current_user;
if(is_admin($current_user) && $_REQUEST['module'] != 'DynamicLayout' && !empty($_SESSION['editinplace'])){
$xtpl->assign("ADMIN_EDIT","<a href='#' alt='index.php?action=index&module=DynamicLayout&from_action=".$_REQUEST['action'] ."&from_module=".$_REQUEST['module'] ."&record=".$_REQUEST['record']. "'>".get_image($image_path."EditLayout","border='0' alt='Edit Layout' align='bottom'")."</a>");
}
// copy to contacts
if(ACLController::checkAccess('Contacts', 'edit', true)) {
$push_billing = '<input disabled readonly class="button" title="' . $mod_strings['LBL_PUSH_CONTACTS_BUTTON_LABEL'] .
'" type="button" onclick=\'open_popup("Contacts", 600, 600, "&account_name=' .
$focus->name . '&html=change_address' .
'&primary_address_street=' . str_replace(array("\rn", "\r", "\n"), array('','','<br>'), $focus->billing_address_street) .
'&primary_address_city=' . $focus->billing_address_city .
'&primary_address_state=' . $focus->billing_address_state .
'&primary_address_postalcode=' . $focus->billing_address_postalcode .
'&primary_address_country=' . $focus->billing_address_country .
'", true, false);\' value="' . $mod_strings['LBL_PUSH_CONTACTS_BUTTON_TITLE']. '">';
/*
$push_shipping = '<input disabled readonly class="button" title="' . $mod_strings['LBL_PUSH_CONTACTS_BUTTON_LABEL'] .
'" type="button" onclick=\'open_popup("Contacts", 600, 600, "&account_name=' .
$focus->name . '&html=change_address' .
'&primary_address_street=' . str_replace(array("\rn", "\r", "\n"), array('','','<br>'), $focus->shipping_address_street) .
'&primary_address_city=' . $focus->shipping_address_city .
'&primary_address_state=' . $focus->shipping_address_state .
'&primary_address_postalcode=' . $focus->shipping_address_postalcode .
'&primary_address_country=' . $focus->shipping_address_country .
'", true, false);\' value="' . $mod_strings['LBL_PUSH_CONTACTS_BUTTON_TITLE'] . '">';
*/
} else {
$push_billing = '';
//$push_shipping = '';
}
$xtpl->assign("PUSH_CONTACTS_BILLING", $push_billing);
//$xtpl->assign("PUSH_CONTACTS_SHIPPING", $push_shipping);
$detailView->processListNavigation($xtpl, "ACCOUNT", $offset, $focus->is_AuditEnabled());
// adding custom fields:
require_once('modules/DynamicFields/templates/Files/DetailView.php');
$xtpl->parse("main.open_source");
$xtpl->parse("main");
$xtpl->out("main");
/*
$sub_xtpl = $xtpl;
require_once('include/SubPanel/SubPanelTiles.php');
$subpanel = new SubPanelTiles($focus, 'Accounts');
echo $subpanel->display();
*/
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -