You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
93 lines
4.0 KiB
93 lines
4.0 KiB
<?php
|
|
/*********************************************************************************
|
|
* The contents of this file are subject to the SugarCRM Public License Version 1.1.2
|
|
* ("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.
|
|
* The Original Code is: SugarCRM Open Source
|
|
* The Initial Developer of the Original Code is SugarCRM, Inc.
|
|
* Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.;
|
|
* All Rights Reserved.
|
|
* Contributor(s): ______________________________________.
|
|
********************************************************************************/
|
|
/*********************************************************************************
|
|
* $Header: vtiger_crm/sugarcrm/modules/Cases/EditView.php,v 1.4 2005/01/13 09:15:21 jack 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/Cases/Case.php');
|
|
require_once('modules/Cases/Forms.php');
|
|
|
|
global $app_strings;
|
|
global $app_list_strings;
|
|
global $mod_strings;
|
|
global $current_user;
|
|
|
|
$focus = new aCase();
|
|
|
|
if(isset($_REQUEST['record'])) {
|
|
$focus->retrieve($_REQUEST['record']);
|
|
}
|
|
if(isset($_REQUEST['isDuplicate']) && $_REQUEST['isDuplicate'] == 'true') {
|
|
$focus->id = "";
|
|
}
|
|
|
|
//needed when creating a new case with a default account value passed in
|
|
if (isset($_REQUEST['account_name']) && is_null($focus->account_name)) {
|
|
$focus->account_name = $_REQUEST['account_name'];
|
|
|
|
}
|
|
if (isset($_REQUEST['account_id']) && is_null($focus->account_id)) {
|
|
$focus->account_id = $_REQUEST['account_id'];
|
|
}
|
|
if (isset($_REQUEST['contact_id']) && is_null($focus->contact_id)) {
|
|
$focus->contact_id = $_REQUEST['contact_id'];
|
|
}
|
|
|
|
if (is_null($focus->status)) {
|
|
$focus->status = $app_list_strings['case_status_default_key'];
|
|
}
|
|
|
|
global $theme;
|
|
$theme_path="themes/".$theme."/";
|
|
$image_path=$theme_path."images/";
|
|
require_once($theme_path.'layout_utils.php');
|
|
|
|
$log->info("Case detail view");
|
|
|
|
$xtpl=new XTemplate ('modules/Cases/EditView.html');
|
|
$xtpl->assign("MOD", $mod_strings);
|
|
$xtpl->assign("APP", $app_strings);
|
|
|
|
if(isset($_REQUEST['return_module'])) $xtpl->assign("RETURN_MODULE", $_REQUEST['return_module']);
|
|
if(isset($_REQUEST['return_action'])) $xtpl->assign("RETURN_ACTION", $_REQUEST['return_action']);
|
|
if(isset($_REQUEST['return_id'])) $xtpl->assign("RETURN_ID", $_REQUEST['return_id']);
|
|
$xtpl->assign("THEME", $theme);
|
|
$xtpl->assign("IMAGE_PATH", $image_path);$xtpl->assign("PRINT_URL", "phprint.php?jt=".session_id().$GLOBALS['request_string']);
|
|
$xtpl->assign("JAVASCRIPT", get_set_focus_js().get_validate_record_js());
|
|
$xtpl->assign("ID", $focus->id);
|
|
if (isset($focus->account_name)) $xtpl->assign("ACCOUNT_NAME", $focus->account_name);
|
|
$xtpl->assign("ACCOUNT_ID", $focus->account_id);
|
|
$xtpl->assign("CONTACT_ID", $focus->contact_id);
|
|
if (isset($focus->name)) $xtpl->assign("NAME", $focus->name);
|
|
else $xtpl->assign("NAME", "");
|
|
$xtpl->assign("DATE_ENTERED", $focus->date_entered);
|
|
$xtpl->assign("NUMBER", $focus->number);
|
|
$xtpl->assign("DESCRIPTION", $focus->description);
|
|
|
|
if ($focus->assigned_user_id == '' && (!isset($focus->id) || $focus->id=0)) $focus->assigned_user_id = $current_user->id;
|
|
$xtpl->assign("ASSIGNED_USER_OPTIONS", get_select_options_with_id(get_user_array(TRUE, "Active", $focus->assigned_user_id), $focus->assigned_user_id));
|
|
$xtpl->assign("STATUS_OPTIONS", get_select_options_with_id($app_list_strings['case_status_dom'], $focus->status));
|
|
|
|
$xtpl->parse("main");
|
|
|
|
$xtpl->out("main");
|
|
|
|
?>
|
|
|