SuiteCRM-Core/modules/Bugs/Bug.php
Clemente Raposo 804972c3f6 Squashed 'public/legacy/' changes from b065977c61..5750e66a06
5750e66a06 SuiteCRM 7.12.6 Release
d80ca53e48 Update jquery UI to v1.13.1
cacf7aa247 Upgrade jstree to v3.3.12
2c95a4c083 Update Wysiwyg field to work with the new version of TinyMCE
9c487fa43c Update email/template views to work with new versions of TinyMCE
7bcbf2a737 Upgrade TinyMCE to version 5.10
63b89fbd4f Fix #9494 - Force displaying line breaks to textarea fields
63dc9adf21 Fix #9530 - Fatal error on rendering page after upload
59d0b42cf0 Fix Module Builder Acceptance Tests
29f18cf248 Fix AOR_Report unit tests
ccbb40ca4a Fix scrm-core#87 - Prevent disabling the default lang
4c83fe64a3 Fix #9437 - Use application setCookie across the app
b293490c65 Fix #9437 - Change cookie_path handling
4e8924e549 Fix #3157 - Add default option to enable session_gc
120e948307 Fix #9438 - Adding Action keyword to fieldname exception
e037232900 Fix #8599 - Auto-close message boxes in ModuleBuilder
277d40b61a Fix #9435 - Dropdown doesn't return empty selected value

git-subtree-dir: public/legacy
git-subtree-split: 5750e66a060310494cc12b074062ffd36658bc1e
2022-05-17 18:37:50 +01:00

395 lines
13 KiB
PHP
Executable file

<?php
if (!defined('sugarEntry') || !sugarEntry) {
die('Not A Valid Entry Point');
}
/**
*
* SugarCRM Community Edition is a customer relationship management program developed by
* SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
*
* SuiteCRM is an extension to SugarCRM Community Edition developed by SalesAgility Ltd.
* Copyright (C) 2011 - 2018 SalesAgility Ltd.
*
* 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 and "Supercharged by SuiteCRM" logo. If the display of the logos is not
* reasonably feasible for technical reasons, the Appropriate Legal Notices must
* display the words "Powered by SugarCRM" and "Supercharged by SuiteCRM".
*/
// Bug is used to store customer information.
class Bug extends SugarBean
{
public $field_name_map = array();
// Stored fields
public $id;
public $date_entered;
public $date_modified;
public $modified_user_id;
public $assigned_user_id;
public $bug_number;
public $description;
public $name;
public $status;
public $priority;
// These are related
public $resolution;
public $found_in_release;
public $release_name;
public $fixed_in_release_name;
public $created_by;
public $created_by_name;
public $modified_by_name;
public $account_id;
public $contact_id;
public $case_id;
public $task_id;
public $note_id;
public $meeting_id;
public $call_id;
public $email_id;
public $assigned_user_name;
public $type;
//BEGIN Additional fields being added to Bugs
public $fixed_in_release;
public $work_log;
public $source;
public $product_category;
//END Additional fields being added to Bugs
public $module_dir = 'Bugs';
public $table_name = "bugs";
public $rel_account_table = "accounts_bugs";
public $rel_contact_table = "contacts_bugs";
public $rel_case_table = "cases_bugs";
public $importable = true;
public $object_name = "Bug";
// This is used to retrieve related fields from form posts.
public $additional_column_fields = array('assigned_user_name', 'assigned_user_id', 'case_id', 'account_id', 'contact_id', 'task_id', 'note_id', 'meeting_id', 'call_id', 'email_id');
public $relationship_fields = array('case_id'=>'cases', 'account_id' => 'accounts', 'contact_id'=>'contacts',
'task_id'=>'tasks', 'note_id'=>'notes', 'meeting_id'=>'meetings',
'call_id'=>'calls', 'email_id'=>'emails');
public function __construct()
{
parent::__construct();
$this->setupCustomFields('Bugs');
foreach ($this->field_defs as $field) {
$this->field_name_map[$field['name']] = $field;
}
}
public $new_schema = true;
public function get_summary_text()
{
return (string)$this->name;
}
public function create_list_query($order_by, $where, $show_deleted = 0)
{
// Fill in the assigned_user_name
// $this->assigned_user_name = get_assigned_user_name($this->assigned_user_id);
$custom_join = $this->getCustomJoin();
$query = "SELECT ";
$query .= "
bugs.*
,users.user_name as assigned_user_name, releases.id release_id, releases.name release_name";
$query .= $custom_join['select'];
$query .= " FROM bugs ";
$query .= " LEFT JOIN releases ON bugs.found_in_release=releases.id
LEFT JOIN users
ON bugs.assigned_user_id=users.id";
$query .= " ";
$query .= $custom_join['join'];
$where_auto = '1=1';
if ($show_deleted == 0) {
$where_auto = " $this->table_name.deleted=0 ";
} else {
if ($show_deleted == 1) {
$where_auto = " $this->table_name.deleted=1 ";
}
}
if ($where != "") {
$query .= "where $where AND ".$where_auto;
} else {
$query .= "where ".$where_auto;
}
if (substr_count($order_by, '.') > 0) {
$query .= " ORDER BY $order_by";
} else {
if ($order_by != "") {
$query .= " ORDER BY $order_by";
} else {
$query .= " ORDER BY bugs.name";
}
}
return $query;
}
public function create_export_query($order_by, $where, $relate_link_join='')
{
$custom_join = $this->getCustomJoin(true, true, $where);
$custom_join['join'] .= $relate_link_join;
$query = "SELECT
bugs.*,
r1.name found_in_release_name,
r2.name fixed_in_release_name,
users.user_name assigned_user_name";
$query .= $custom_join['select'];
$query .= " FROM bugs ";
$query .= " LEFT JOIN releases r1 ON bugs.found_in_release = r1.id
LEFT JOIN releases r2 ON bugs.fixed_in_release = r2.id
LEFT JOIN users
ON bugs.assigned_user_id=users.id";
$query .= $custom_join['join'];
$query .= "";
$where_auto = " bugs.deleted=0
";
if ($where != "") {
$query .= " where $where AND ".$where_auto;
} else {
$query .= " where ".$where_auto;
}
if ($order_by != "") {
$query .= " ORDER BY $order_by";
} else {
$query .= " ORDER BY bugs.bug_number";
}
return $query;
}
public function fill_in_additional_list_fields()
{
parent::fill_in_additional_list_fields();
// Fill in the assigned_user_name
//$this->assigned_user_name = get_assigned_user_name($this->assigned_user_id);
// $this->set_fixed_in_release();
}
public function fill_in_additional_detail_fields()
{
/*
// Fill in the assigned_user_name
$this->assigned_user_name = get_assigned_user_name($this->assigned_user_id);
*/
parent::fill_in_additional_detail_fields();
//$this->created_by_name = get_assigned_user_name($this->created_by);
//$this->modified_by_name = get_assigned_user_name($this->modified_user_id);
$this->set_release();
$this->set_fixed_in_release();
}
public function set_release()
{
static $releases;
if (empty($this->found_in_release)) {
return;
}
if (isset($releases[$this->found_in_release])) {
$this->release_name = $releases[$this->found_in_release];
return;
}
$query = "SELECT r1.name from releases r1, $this->table_name i1 where r1.id = i1.found_in_release and i1.id = '$this->id' and i1.deleted=0 and r1.deleted=0";
$result = $this->db->query($query, true, " Error filling in additional detail fields: ");
// Get the id and the name.
$row = $this->db->fetchByAssoc($result);
if ($row != null) {
$this->release_name = $row['name'];
} else {
$this->release_name = '';
}
$releases[$this->found_in_release] = $this->release_name;
}
public function set_fixed_in_release()
{
static $releases;
if (empty($this->fixed_in_release)) {
return;
}
if (isset($releases[$this->fixed_in_release])) {
$this->fixed_in_release_name = $releases[$this->fixed_in_release];
return;
}
$query = "SELECT r1.name from releases r1, $this->table_name i1 where r1.id = i1.fixed_in_release and i1.id = '$this->id' and i1.deleted=0 and r1.deleted=0";
$result = $this->db->query($query, true, " Error filling in additional detail fields: ");
// Get the id and the name.
$row = $this->db->fetchByAssoc($result);
if ($row != null) {
$this->fixed_in_release_name = $row['name'];
} else {
$this->fixed_in_release_name = '';
}
$releases[$this->fixed_in_release] = $this->fixed_in_release_name;
}
public function get_list_view_data()
{
global $current_language;
$the_array = parent::get_list_view_data();
$app_list_strings = return_app_list_strings_language($current_language);
$mod_strings = return_module_language($current_language, 'Bugs');
$this->set_release();
// The new listview code only fetches columns that we're displaying and not all
// the columns so we need these checks.
$the_array['NAME'] = (($this->name == "") ? "<em>blank</em>" : $this->name);
$the_array['PRIORITY'] = empty($this->priority)? "" : (!isset($app_list_strings[$this->field_name_map['priority']['options']][$this->priority]) ? $this->priority : $app_list_strings[$this->field_name_map['priority']['options']][$this->priority]);
$the_array['STATUS'] = empty($this->status)? "" : (!isset($app_list_strings[$this->field_name_map['status']['options']][$this->status]) ? $this->status : $app_list_strings[$this->field_name_map['status']['options']][$this->status]);
$the_array['TYPE'] = empty($this->type)? "" : (!isset($app_list_strings[$this->field_name_map['type']['options']][$this->type]) ? $this->type : $app_list_strings[$this->field_name_map['type']['options']][$this->type]);
$the_array['RELEASE']= $this->release_name;
$the_array['BUG_NUMBER'] = $this->bug_number;
$the_array['ENCODED_NAME']=$this->name;
return $the_array;
}
/**
builds a generic search based on the query string using or
do not include any $this-> because this is called on without having the class instantiated
*/
public function build_generic_where_clause($the_query_string)
{
$where_clauses = array();
$the_query_string = $this->db->quote($the_query_string);
array_push($where_clauses, "bugs.name like '$the_query_string%'");
if (is_numeric($the_query_string)) {
array_push($where_clauses, "bugs.bug_number like '$the_query_string%'");
}
$the_where = "";
foreach ($where_clauses as $clause) {
if ($the_where != "") {
$the_where .= " or ";
}
$the_where .= $clause;
}
return $the_where;
}
public function set_notification_body($xtpl, $bug)
{
global $mod_strings, $app_list_strings;
$bug->set_release();
$xtpl->assign("BUG_SUBJECT", $bug->name);
$xtpl->assign("BUG_TYPE", $app_list_strings['bug_type_dom'][$bug->type]);
$xtpl->assign("BUG_PRIORITY", $app_list_strings['bug_priority_dom'][$bug->priority]);
$xtpl->assign("BUG_STATUS", $app_list_strings['bug_status_dom'][$bug->status]);
$xtpl->assign("BUG_RESOLUTION", $app_list_strings['bug_resolution_dom'][$bug->resolution]);
$xtpl->assign("BUG_RELEASE", $bug->release_name);
$xtpl->assign("BUG_DESCRIPTION", nl2br($bug->description));
$xtpl->assign("BUG_WORK_LOG", $bug->work_log);
$xtpl->assign("BUG_BUG_NUMBER", $bug->bug_number);
return $xtpl;
}
public function bean_implements($interface)
{
switch ($interface) {
case 'ACL':return true;
}
return false;
}
public function save($check_notify = false)
{
return parent::save($check_notify);
}
}
function getReleaseDropDown()
{
static $releases = null;
if (!$releases) {
$seedRelease = BeanFactory::newBean('Releases');
$releases = $seedRelease->get_releases(true, "Active");
}
return $releases;
}