NEW Support color of type of event
This commit is contained in:
parent
fc9d6cef97
commit
56d2ac274a
@ -85,6 +85,11 @@ class ActionComm extends CommonObject
|
|||||||
*/
|
*/
|
||||||
public $type_id;
|
public $type_id;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string Calendar of event (Type of type of event). 'system'=Default calendar, 'systemauto'=Auto calendar, 'birthdate', 'holiday', 'module'=Calendar specific to a module
|
||||||
|
*/
|
||||||
|
public $type;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var string Code into parent table llx_c_actioncomm (used only if option to use type is set). With default setup, should be AC_OTH_AUTO or AC_OTH.
|
* @var string Code into parent table llx_c_actioncomm (used only if option to use type is set). With default setup, should be AC_OTH_AUTO or AC_OTH.
|
||||||
*/
|
*/
|
||||||
@ -95,16 +100,16 @@ class ActionComm extends CommonObject
|
|||||||
*/
|
*/
|
||||||
public $type_label;
|
public $type_label;
|
||||||
|
|
||||||
/**
|
|
||||||
* @var string Label into parent table llx_c_actioncomm (used only if option to use type is set)
|
|
||||||
*/
|
|
||||||
public $type;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var string Color into parent table llx_c_actioncomm (used only if option to use type is set)
|
* @var string Color into parent table llx_c_actioncomm (used only if option to use type is set)
|
||||||
*/
|
*/
|
||||||
public $type_color;
|
public $type_color;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string Picto for type of event (used only if option to use type is set)
|
||||||
|
*/
|
||||||
|
public $type_picto;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var string Free code to identify action. Ie: Agenda trigger add here AC_TRIGGERNAME ('AC_COMPANY_CREATE', 'AC_PROPAL_VALIDATE', ...)
|
* @var string Free code to identify action. Ie: Agenda trigger add here AC_TRIGGERNAME ('AC_COMPANY_CREATE', 'AC_PROPAL_VALIDATE', ...)
|
||||||
*/
|
*/
|
||||||
@ -1376,7 +1381,7 @@ class ActionComm extends CommonObject
|
|||||||
* @param int $maxlength Max number of charaters into label. If negative, use the ref as label.
|
* @param int $maxlength Max number of charaters into label. If negative, use the ref as label.
|
||||||
* @param string $classname Force style class on a link
|
* @param string $classname Force style class on a link
|
||||||
* @param string $option '' = Link to action, 'birthday'= Link to contact, 'holiday' = Link to leave
|
* @param string $option '' = Link to action, 'birthday'= Link to contact, 'holiday' = Link to leave
|
||||||
* @param int $overwritepicto 1 = Overwrite picto
|
* @param int $overwritepicto 1 = Overwrite picto with this one
|
||||||
* @param int $notooltip 1 = Disable tooltip
|
* @param int $notooltip 1 = Disable tooltip
|
||||||
* @param int $save_lastsearch_value -1 = Auto, 0 = No save of lastsearch_values when clicking, 1 = Save lastsearch_values whenclicking
|
* @param int $save_lastsearch_value -1 = Auto, 0 = No save of lastsearch_values when clicking, 1 = Save lastsearch_values whenclicking
|
||||||
* @return string Chaine avec URL
|
* @return string Chaine avec URL
|
||||||
@ -1426,8 +1431,8 @@ class ActionComm extends CommonObject
|
|||||||
if (!empty($this->note_private))
|
if (!empty($this->note_private))
|
||||||
$tooltip .= '<br><b>'.$langs->trans('Note').':</b> '.(dol_textishtml($this->note_private) ? str_replace(array("\r", "\n"), "", $this->note_private) : str_replace(array("\r", "\n"), '<br>', $this->note_private));
|
$tooltip .= '<br><b>'.$langs->trans('Note').':</b> '.(dol_textishtml($this->note_private) ? str_replace(array("\r", "\n"), "", $this->note_private) : str_replace(array("\r", "\n"), '<br>', $this->note_private));
|
||||||
$linkclose = '';
|
$linkclose = '';
|
||||||
if (!empty($conf->global->AGENDA_USE_EVENT_TYPE) && $this->type_color)
|
//if (!empty($conf->global->AGENDA_USE_EVENT_TYPE) && $this->type_color)
|
||||||
$linkclose = ' style="background-color:#'.$this->type_color.'"';
|
// $linkclose = ' style="background-color:#'.$this->type_color.'"';
|
||||||
|
|
||||||
if (empty($notooltip))
|
if (empty($notooltip))
|
||||||
{
|
{
|
||||||
@ -1453,6 +1458,7 @@ class ActionComm extends CommonObject
|
|||||||
elseif ($option == 'holiday')
|
elseif ($option == 'holiday')
|
||||||
$url = DOL_URL_ROOT.'/holiday/card.php?id='.$this->id;
|
$url = DOL_URL_ROOT.'/holiday/card.php?id='.$this->id;
|
||||||
else $url = DOL_URL_ROOT.'/comm/action/card.php?id='.$this->id;
|
else $url = DOL_URL_ROOT.'/comm/action/card.php?id='.$this->id;
|
||||||
|
|
||||||
if ($option !== 'nolink')
|
if ($option !== 'nolink')
|
||||||
{
|
{
|
||||||
// Add param to save lastsearch_values or not
|
// Add param to save lastsearch_values or not
|
||||||
@ -1494,7 +1500,7 @@ class ActionComm extends CommonObject
|
|||||||
}
|
}
|
||||||
|
|
||||||
$result .= $linkstart;
|
$result .= $linkstart;
|
||||||
if ($withpicto) $result .= img_object(($notooltip ? '' : $langs->trans("ShowAction").': '.$libelle), ($overwritepicto ? $overwritepicto : 'action'), ($notooltip ? 'class="'.(($withpicto != 2) ? 'paddingright ' : '').'"' : 'class="'.(($withpicto != 2) ? 'paddingright ' : '').'classfortooltip"'), 0, 0, $notooltip ? 0 : 1);
|
if ($withpicto) $result .= img_object(($notooltip ? '' : $langs->trans("ShowAction").': '.$libelle), ($overwritepicto ? $overwritepicto : 'action'), ($this->type_color ? 'style="color: #'.$this->type_color.' !important;" ' : '').($notooltip ? 'class="'.(($withpicto != 2) ? 'paddingright ' : '').'"' : 'class="'.(($withpicto != 2) ? 'paddingright ' : '').'classfortooltip"'), 0, 0, $notooltip ? 0 : 1);
|
||||||
$result .= $libelleshort;
|
$result .= $libelleshort;
|
||||||
$result .= $linkend;
|
$result .= $linkend;
|
||||||
|
|
||||||
@ -1520,21 +1526,25 @@ class ActionComm extends CommonObject
|
|||||||
$imgpicto = '';
|
$imgpicto = '';
|
||||||
if (!empty($conf->global->AGENDA_USE_EVENT_TYPE))
|
if (!empty($conf->global->AGENDA_USE_EVENT_TYPE))
|
||||||
{
|
{
|
||||||
|
$color = '';
|
||||||
|
if ($this->type_color) {
|
||||||
|
$color = 'style="color: #'.$this->type_color.' !important;"';
|
||||||
|
}
|
||||||
if ($this->type_picto) {
|
if ($this->type_picto) {
|
||||||
$imgpicto = img_picto('', $this->type_picto, 'class="paddingright"');
|
$imgpicto = img_picto('', $this->type_picto, 'class="paddingright"');
|
||||||
} else {
|
} else {
|
||||||
if ($this->type_code == 'AC_RDV') $imgpicto = img_picto('', 'meeting', '', false, 0, 0, '', 'paddingright');
|
if ($this->type_code == 'AC_RDV') $imgpicto = img_picto('', 'meeting', $color, false, 0, 0, '', 'paddingright');
|
||||||
elseif ($this->type_code == 'AC_TEL') $imgpicto = img_picto('', 'object_phoning', '', false, 0, 0, '', 'paddingright');
|
elseif ($this->type_code == 'AC_TEL') $imgpicto = img_picto('', 'object_phoning', $color, false, 0, 0, '', 'paddingright');
|
||||||
elseif ($this->type_code == 'AC_FAX') $imgpicto = img_picto('', 'object_phoning_fax', '', false, 0, 0, '', 'paddingright');
|
elseif ($this->type_code == 'AC_FAX') $imgpicto = img_picto('', 'object_phoning_fax', $color, false, 0, 0, '', 'paddingright');
|
||||||
elseif ($this->type_code == 'AC_EMAIL' || $this->type_code == 'AC_EMAIL_IN') $imgpicto = img_picto('', 'object_email', '', false, 0, 0, '', 'paddingright');
|
elseif ($this->type_code == 'AC_EMAIL' || $this->type_code == 'AC_EMAIL_IN') $imgpicto = img_picto('', 'object_email', $color, false, 0, 0, '', 'paddingright');
|
||||||
elseif ($this->type_code == 'AC_INT') $imgpicto = img_picto('', 'object_intervention', '', false, 0, 0, '', 'paddingright');
|
elseif ($this->type_code == 'AC_INT') $imgpicto = img_picto('', 'object_intervention', $color, false, 0, 0, '', 'paddingright');
|
||||||
elseif ($this->type_code == 'AC_OTH' && $this->code == 'TICKET_MSG') $imgpicto = img_picto('', 'object_conversation', '', false, 0, 0, '', 'paddingright');
|
elseif ($this->type_code == 'AC_OTH' && $this->code == 'TICKET_MSG') $imgpicto = img_picto('', 'object_conversation', $color, false, 0, 0, '', 'paddingright');
|
||||||
elseif (!preg_match('/_AUTO/', $this->type_code)) $imgpicto = img_picto('', 'user-cog', '', false, 0, 0, '', 'paddingright');
|
elseif ($this->type != 'systemauto') $imgpicto = img_picto('', 'user-cog', $color, false, 0, 0, '', 'paddingright');
|
||||||
else $imgpicto = img_picto('', 'cog', '', false, 0, 0, '', 'paddingright');
|
else $imgpicto = img_picto('', 'cog', $color, false, 0, 0, '', 'paddingright');
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// 2 picto: 1 for auto, 1 for manual
|
// 2 picto: 1 for auto, 1 for manual
|
||||||
if (!preg_match('/_AUTO/', $this->type_code)) $imgpicto = img_picto('', 'user-cog', '', false, 0, 0, '', 'paddingright');
|
if ($this->type != 'systemauto') $imgpicto = img_picto('', 'user-cog', '', false, 0, 0, '', 'paddingright');
|
||||||
else $imgpicto = img_picto('', 'cog', '', false, 0, 0, '', 'paddingright');
|
else $imgpicto = img_picto('', 'cog', '', false, 0, 0, '', 'paddingright');
|
||||||
}
|
}
|
||||||
return $imgpicto;
|
return $imgpicto;
|
||||||
|
|||||||
@ -142,7 +142,7 @@ class CActionComm
|
|||||||
* Return list of event types: array(id=>label) or array(code=>label)
|
* Return list of event types: array(id=>label) or array(code=>label)
|
||||||
*
|
*
|
||||||
* @param string|int $active 1 or 0 to filter on event state active or not ('' by default = no filter)
|
* @param string|int $active 1 or 0 to filter on event state active or not ('' by default = no filter)
|
||||||
* @param string $idorcode 'id' or 'code'
|
* @param string $idorcode 'id' or 'code' or 'all'
|
||||||
* @param string $excludetype Type to exclude ('system' or 'systemauto')
|
* @param string $excludetype Type to exclude ('system' or 'systemauto')
|
||||||
* @param int $onlyautoornot 1=Group all type AC_XXX into 1 line AC_MANUAL. 0=Keep details of type, -1=Keep details and add a combined line per calendar (Default, Auto, BoothConf, ...)
|
* @param int $onlyautoornot 1=Group all type AC_XXX into 1 line AC_MANUAL. 0=Keep details of type, -1=Keep details and add a combined line per calendar (Default, Auto, BoothConf, ...)
|
||||||
* @param string $morefilter Add more SQL filter
|
* @param string $morefilter Add more SQL filter
|
||||||
@ -157,6 +157,7 @@ class CActionComm
|
|||||||
|
|
||||||
$repid = array();
|
$repid = array();
|
||||||
$repcode = array();
|
$repcode = array();
|
||||||
|
$repall = array();
|
||||||
|
|
||||||
$sql = "SELECT id, code, libelle as label, module, type, color, picto";
|
$sql = "SELECT id, code, libelle as label, module, type, color, picto";
|
||||||
$sql .= " FROM ".MAIN_DB_PREFIX."c_actioncomm";
|
$sql .= " FROM ".MAIN_DB_PREFIX."c_actioncomm";
|
||||||
@ -175,6 +176,7 @@ class CActionComm
|
|||||||
$nump = $this->db->num_rows($resql);
|
$nump = $this->db->num_rows($resql);
|
||||||
if ($nump)
|
if ($nump)
|
||||||
{
|
{
|
||||||
|
$idforallfornewmodule = 97;
|
||||||
$i = 0;
|
$i = 0;
|
||||||
while ($i < $nump)
|
while ($i < $nump)
|
||||||
{
|
{
|
||||||
@ -220,25 +222,40 @@ class CActionComm
|
|||||||
if ($onlyautoornot == -1 && !empty($conf->global->AGENDA_USE_EVENT_TYPE))
|
if ($onlyautoornot == -1 && !empty($conf->global->AGENDA_USE_EVENT_TYPE))
|
||||||
{
|
{
|
||||||
if ($typecalendar == 'system') {
|
if ($typecalendar == 'system') {
|
||||||
$label = ' '.$label;
|
$label = ' '.$label;
|
||||||
$repid[-99] = $langs->trans("ActionAC_MANUAL");
|
$repid[-99] = $langs->trans("ActionAC_MANUAL");
|
||||||
$repcode['AC_NON_AUTO'] = '-- '.$langs->trans("ActionAC_MANUAL");
|
$repcode['AC_NON_AUTO'] = '-- '.$langs->trans("ActionAC_MANUAL");
|
||||||
}
|
}
|
||||||
if ($typecalendar == 'systemauto') {
|
if ($typecalendar == 'systemauto') {
|
||||||
$label = ' '.$label;
|
$label = ' '.$label;
|
||||||
$repid[-98] = $langs->trans("ActionAC_AUTO");
|
$repid[-98] = $langs->trans("ActionAC_AUTO");
|
||||||
$repcode['AC_ALL_AUTO'] = '-- '.$langs->trans("ActionAC_AUTO");
|
$repcode['AC_ALL_AUTO'] = '-- '.$langs->trans("ActionAC_AUTO");
|
||||||
}
|
}
|
||||||
|
if ($typecalendar == 'module') {
|
||||||
|
$label = ' '.$label;
|
||||||
|
if (!isset($repcode['AC_ALL_'.strtoupper($obj->module)])) { // If first time for this module
|
||||||
|
$idforallfornewmodule--;
|
||||||
|
}
|
||||||
|
$repid[$idforallfornewmodule] = $langs->trans("ActionAC_ALL_".strtoupper($obj->module));
|
||||||
|
$repcode['AC_ALL_'.strtoupper($obj->module)] = '-- '.$langs->trans("Module").' '.ucfirst($obj->module);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
$repid[$obj->id] = $label;
|
$repid[$obj->id] = $label;
|
||||||
$repcode[$obj->code] = $label;
|
$repcode[$obj->code] = $label;
|
||||||
if ($onlyautoornot > 0 && preg_match('/^module/', $obj->type) && $obj->module) $repcode[$obj->code] .= ' ('.$langs->trans("Module").': '.$obj->module.')';
|
$repall[$obj->code] = array('id' => $label, 'label' => $label, 'type' => $typecalendar, 'color' => $obj->color, 'picto' => $obj->picto);
|
||||||
|
if ($onlyautoornot > 0 && preg_match('/^module/', $obj->type) && $obj->module) {
|
||||||
|
$repcode[$obj->code] .= ' ('.$langs->trans("Module").': '.$obj->module.')';
|
||||||
|
$repall[$obj->code]['label'] .= ' ('.$langs->trans("Module").': '.$obj->module.')';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
$i++;
|
$i++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($idorcode == 'id') $this->liste_array = $repid;
|
if ($idorcode == 'id') $this->liste_array = $repid;
|
||||||
if ($idorcode == 'code') $this->liste_array = $repcode;
|
elseif ($idorcode == 'code') $this->liste_array = $repcode;
|
||||||
|
else $this->liste_array = $repall;
|
||||||
|
|
||||||
return $this->liste_array;
|
return $this->liste_array;
|
||||||
} else {
|
} else {
|
||||||
$this->error = $this->db->lasterror();
|
$this->error = $this->db->lasterror();
|
||||||
|
|||||||
@ -557,10 +557,11 @@ if (!empty($conf->use_javascript_ajax)) // If javascript on
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// DEFAULT CALENDAR + AUTOEVENT CALENDAR + CONFERENCEBOOTH CALENDAR
|
|
||||||
// Load events from database into $eventarray
|
// Load events from database into $eventarray
|
||||||
$eventarray = array();
|
$eventarray = array();
|
||||||
|
|
||||||
|
|
||||||
|
// DEFAULT CALENDAR + AUTOEVENT CALENDAR + CONFERENCEBOOTH CALENDAR
|
||||||
$sql = 'SELECT ';
|
$sql = 'SELECT ';
|
||||||
if ($usergroup > 0) $sql .= " DISTINCT";
|
if ($usergroup > 0) $sql .= " DISTINCT";
|
||||||
$sql .= ' a.id, a.label,';
|
$sql .= ' a.id, a.label,';
|
||||||
@ -571,7 +572,7 @@ $sql .= ' a.fk_user_author,a.fk_user_action,';
|
|||||||
$sql .= ' a.transparency, a.priority, a.fulldayevent, a.location,';
|
$sql .= ' a.transparency, a.priority, a.fulldayevent, a.location,';
|
||||||
$sql .= ' a.fk_soc, a.fk_contact, a.fk_project,';
|
$sql .= ' a.fk_soc, a.fk_contact, a.fk_project,';
|
||||||
$sql .= ' a.fk_element, a.elementtype,';
|
$sql .= ' a.fk_element, a.elementtype,';
|
||||||
$sql .= ' ca.code as type_code, ca.libelle as type_label, ca.color as type_color';
|
$sql .= ' ca.code as type_code, ca.libelle as type_label, ca.color as type_color, ca.type as type_type, ca.picto as type_picto';
|
||||||
$sql .= ' FROM '.MAIN_DB_PREFIX.'c_actioncomm as ca, '.MAIN_DB_PREFIX."actioncomm as a";
|
$sql .= ' FROM '.MAIN_DB_PREFIX.'c_actioncomm as ca, '.MAIN_DB_PREFIX."actioncomm as a";
|
||||||
if (!$user->rights->societe->client->voir && !$socid) $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."societe_commerciaux as sc ON a.fk_soc = sc.fk_soc";
|
if (!$user->rights->societe->client->voir && !$socid) $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."societe_commerciaux as sc ON a.fk_soc = sc.fk_soc";
|
||||||
// We must filter on resource table
|
// We must filter on resource table
|
||||||
@ -689,13 +690,17 @@ if ($resql)
|
|||||||
$event->type_code = $obj->type_code;
|
$event->type_code = $obj->type_code;
|
||||||
$event->type_label = $obj->type_label;
|
$event->type_label = $obj->type_label;
|
||||||
$event->type_color = $obj->type_color;
|
$event->type_color = $obj->type_color;
|
||||||
|
$event->type = $obj->type_type;
|
||||||
|
$event->type_picto = $obj->type_picto;
|
||||||
|
|
||||||
$event->libelle = $obj->label; // deprecated
|
$event->libelle = $obj->label; // deprecated
|
||||||
$event->label = $obj->label;
|
$event->label = $obj->label;
|
||||||
$event->percentage = $obj->percent;
|
$event->percentage = $obj->percent;
|
||||||
|
|
||||||
$event->authorid = $obj->fk_user_author; // user id of creator
|
$event->authorid = $obj->fk_user_author; // user id of creator
|
||||||
$event->userownerid = $obj->fk_user_action; // user id of owner
|
$event->userownerid = $obj->fk_user_action; // user id of owner
|
||||||
$event->fetch_userassigned(); // This load $event->userassigned
|
$event->fetch_userassigned(); // This load $event->userassigned
|
||||||
|
|
||||||
$event->priority = $obj->priority;
|
$event->priority = $obj->priority;
|
||||||
$event->fulldayevent = $obj->fulldayevent;
|
$event->fulldayevent = $obj->fulldayevent;
|
||||||
$event->location = $obj->location;
|
$event->location = $obj->location;
|
||||||
@ -793,7 +798,13 @@ if ($showbirthday)
|
|||||||
$datearray = dol_getdate($datebirth, true);
|
$datearray = dol_getdate($datebirth, true);
|
||||||
$event->datep = dol_mktime(0, 0, 0, $datearray['mon'], $datearray['mday'], $year, true); // For full day events, date are also GMT but they wont but converted during output
|
$event->datep = dol_mktime(0, 0, 0, $datearray['mon'], $datearray['mday'], $year, true); // For full day events, date are also GMT but they wont but converted during output
|
||||||
$event->datef = $event->datep;
|
$event->datef = $event->datep;
|
||||||
|
|
||||||
$event->type_code = 'BIRTHDAY';
|
$event->type_code = 'BIRTHDAY';
|
||||||
|
$event->type_label = '';
|
||||||
|
$event->type_color = '';
|
||||||
|
$event->type = 'birthdate';
|
||||||
|
$event->type_picto = 'birthdate';
|
||||||
|
|
||||||
$event->label = $langs->trans("Birthday").' '.dolGetFirstLastname($obj->firstname, $obj->lastname);
|
$event->label = $langs->trans("Birthday").' '.dolGetFirstLastname($obj->firstname, $obj->lastname);
|
||||||
$event->percentage = 100;
|
$event->percentage = 100;
|
||||||
$event->fulldayevent = 1;
|
$event->fulldayevent = 1;
|
||||||
@ -862,7 +873,12 @@ if ($conf->global->AGENDA_SHOW_HOLIDAYS)
|
|||||||
$event->id = $obj->rowid;
|
$event->id = $obj->rowid;
|
||||||
$event->ref = $event->id;
|
$event->ref = $event->id;
|
||||||
|
|
||||||
$event->type_code = 'HOLIDAY';
|
$event->type_code = 'HOLIDAY';
|
||||||
|
$event->type_label = '';
|
||||||
|
$event->type_color = '';
|
||||||
|
$event->type = 'holiday';
|
||||||
|
$event->type_picto = 'holiday';
|
||||||
|
|
||||||
$event->datep = dol_mktime(0, 0, 0, $dateStartArray['mon'], $dateStartArray['mday'], $dateStartArray['year'], true);
|
$event->datep = dol_mktime(0, 0, 0, $dateStartArray['mon'], $dateStartArray['mday'], $dateStartArray['year'], true);
|
||||||
$event->datef = dol_mktime(0, 0, 0, $dateEndArray['mon'], $dateEndArray['mday'], $dateEndArray['year'], true);
|
$event->datef = dol_mktime(0, 0, 0, $dateEndArray['mon'], $dateEndArray['mday'], $dateEndArray['year'], true);
|
||||||
$event->date_start_in_calendar = $event->datep;
|
$event->date_start_in_calendar = $event->datep;
|
||||||
@ -1095,9 +1111,12 @@ if (count($listofextcals))
|
|||||||
$event->userassigned[$userId] = $userId;
|
$event->userassigned[$userId] = $userId;
|
||||||
$event->percentage = -1;
|
$event->percentage = -1;
|
||||||
}
|
}
|
||||||
else {
|
|
||||||
$event->type_code = "ICALEVENT";
|
$event->type_code = "ICALEVENT";
|
||||||
}
|
$event->type_label = $namecal;
|
||||||
|
$event->type_color = $colorcal;
|
||||||
|
$event->type = 'icalevent';
|
||||||
|
$event->type_picto = 'rss';
|
||||||
|
|
||||||
$event->icalname = $namecal;
|
$event->icalname = $namecal;
|
||||||
$event->icalcolor = $colorcal;
|
$event->icalcolor = $colorcal;
|
||||||
@ -1660,7 +1679,7 @@ function show_day_events($db, $day, $month, $year, $monthshown, $style, &$eventa
|
|||||||
// Show rect of event
|
// Show rect of event
|
||||||
print "\n";
|
print "\n";
|
||||||
print '<!-- start event '.$i.' -->'."\n";
|
print '<!-- start event '.$i.' -->'."\n";
|
||||||
print '<div id="event_'.$ymd.'_'.$i.'" class="event '.$cssclass.'"';
|
print '<div id="event_'.$ymd.'_'.$i.'" class="event family_'.$event->type.' '.$cssclass.'"';
|
||||||
//print ' style="height: 100px;';
|
//print ' style="height: 100px;';
|
||||||
//print ' position: absolute; top: 40px; width: 50%;';
|
//print ' position: absolute; top: 40px; width: 50%;';
|
||||||
//print '"';
|
//print '"';
|
||||||
@ -1695,14 +1714,11 @@ function show_day_events($db, $day, $month, $year, $monthshown, $style, &$eventa
|
|||||||
|
|
||||||
$daterange = '';
|
$daterange = '';
|
||||||
|
|
||||||
if ($event->type_code == 'BIRTHDAY') // It's a birthday
|
if ($event->type_code == 'BIRTHDAY') { // It's birthday calendar
|
||||||
{
|
|
||||||
print $event->getNomUrl(1, $maxnbofchar, 'cal_event', 'birthday', 'contact');
|
print $event->getNomUrl(1, $maxnbofchar, 'cal_event', 'birthday', 'contact');
|
||||||
} elseif ($event->type_code == 'HOLIDAY')
|
} elseif ($event->type_code == 'HOLIDAY') { // It's holiday calendar
|
||||||
{
|
|
||||||
print $event->getNomUrl(1, $maxnbofchar, 'cal_event', 'holiday', 'user');
|
print $event->getNomUrl(1, $maxnbofchar, 'cal_event', 'holiday', 'user');
|
||||||
} elseif ($event->type_code != 'BIRTHDAY' && $event->type_code != 'HOLIDAY')
|
} else { // Other calendar
|
||||||
{
|
|
||||||
// Picto
|
// Picto
|
||||||
if (empty($event->fulldayevent))
|
if (empty($event->fulldayevent))
|
||||||
{
|
{
|
||||||
@ -1761,7 +1777,8 @@ function show_day_events($db, $day, $month, $year, $monthshown, $style, &$eventa
|
|||||||
$event->label = $titletoshow;
|
$event->label = $titletoshow;
|
||||||
$event->libelle = $titletoshow;
|
$event->libelle = $titletoshow;
|
||||||
// Note: List of users are inside $event->userassigned. Link may be clickable depending on permissions of user.
|
// Note: List of users are inside $event->userassigned. Link may be clickable depending on permissions of user.
|
||||||
$titletoshow = $event->getNomUrl(0, $maxnbofchar, 'cal_event cal_event_title', '', 0, 0);
|
$titletoshow = (($event->type_picto || $event->type_code) ? $event->getTypePicto() : '');
|
||||||
|
$titletoshow .= $event->getNomUrl(0, $maxnbofchar, 'cal_event cal_event_title', '', 0, 0);
|
||||||
$event->label = $savlabel;
|
$event->label = $savlabel;
|
||||||
$event->libelle = $savlabel;
|
$event->libelle = $savlabel;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -308,7 +308,7 @@ $sql .= " a.id, a.code, a.label, a.note, a.datep as dp, a.datep2 as dp2, a.fulld
|
|||||||
$sql .= ' a.fk_user_author,a.fk_user_action,';
|
$sql .= ' a.fk_user_author,a.fk_user_action,';
|
||||||
$sql .= " a.fk_contact, a.note, a.percent as percent,";
|
$sql .= " a.fk_contact, a.note, a.percent as percent,";
|
||||||
$sql .= " a.fk_element, a.elementtype, a.datec, a.tms as datem,";
|
$sql .= " a.fk_element, a.elementtype, a.datec, a.tms as datem,";
|
||||||
$sql .= " c.code as type_code, c.libelle as type_label,";
|
$sql .= " c.code as type_code, c.libelle as type_label, c.color as type_color, c.type as type_type, c.picto as type_picto,";
|
||||||
$sql .= " sp.lastname, sp.firstname, sp.email, sp.phone, sp.address, sp.phone as phone_pro, sp.phone_mobile, sp.phone_perso, sp.fk_pays as country_id";
|
$sql .= " sp.lastname, sp.firstname, sp.email, sp.phone, sp.address, sp.phone as phone_pro, sp.phone_mobile, sp.phone_perso, sp.fk_pays as country_id";
|
||||||
|
|
||||||
// Add fields from extrafields
|
// Add fields from extrafields
|
||||||
|
|||||||
@ -430,6 +430,8 @@ print '</div>';
|
|||||||
// Get event in an array
|
// Get event in an array
|
||||||
$eventarray = array();
|
$eventarray = array();
|
||||||
|
|
||||||
|
|
||||||
|
// DEFAULT CALENDAR + AUTOEVENT CALENDAR + CONFERENCEBOOTH CALENDAR
|
||||||
$sql = 'SELECT';
|
$sql = 'SELECT';
|
||||||
if ($usergroup > 0) $sql .= " DISTINCT";
|
if ($usergroup > 0) $sql .= " DISTINCT";
|
||||||
$sql .= ' a.id, a.label,';
|
$sql .= ' a.id, a.label,';
|
||||||
@ -439,7 +441,7 @@ $sql .= ' a.percent,';
|
|||||||
$sql .= ' a.fk_user_author,a.fk_user_action,';
|
$sql .= ' a.fk_user_author,a.fk_user_action,';
|
||||||
$sql .= ' a.transparency, a.priority, a.fulldayevent, a.location,';
|
$sql .= ' a.transparency, a.priority, a.fulldayevent, a.location,';
|
||||||
$sql .= ' a.fk_soc, a.fk_contact, a.fk_element, a.elementtype, a.fk_project,';
|
$sql .= ' a.fk_soc, a.fk_contact, a.fk_element, a.elementtype, a.fk_project,';
|
||||||
$sql .= ' ca.code, ca.color';
|
$sql .= ' ca.code, ca.libelle as type_label, ca.color, ca.type as type_type, ca.picto as type_picto';
|
||||||
$sql .= ' FROM '.MAIN_DB_PREFIX.'c_actioncomm as ca, '.MAIN_DB_PREFIX."actioncomm as a";
|
$sql .= ' FROM '.MAIN_DB_PREFIX.'c_actioncomm as ca, '.MAIN_DB_PREFIX."actioncomm as a";
|
||||||
if (!$user->rights->societe->client->voir && !$socid) $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."societe_commerciaux as sc ON a.fk_soc = sc.fk_soc";
|
if (!$user->rights->societe->client->voir && !$socid) $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."societe_commerciaux as sc ON a.fk_soc = sc.fk_soc";
|
||||||
// We must filter on resource table
|
// We must filter on resource table
|
||||||
|
|||||||
@ -435,10 +435,11 @@ print_actions_filter($form, $canedit, $search_status, $year, $month, $day, $show
|
|||||||
print '</div>';
|
print '</div>';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// Get event in an array
|
// Get event in an array
|
||||||
$eventarray = array();
|
$eventarray = array();
|
||||||
|
|
||||||
|
|
||||||
|
// DEFAULT CALENDAR + AUTOEVENT CALENDAR + CONFERENCEBOOTH CALENDAR
|
||||||
$sql = 'SELECT';
|
$sql = 'SELECT';
|
||||||
if ($usergroup > 0) $sql .= " DISTINCT";
|
if ($usergroup > 0) $sql .= " DISTINCT";
|
||||||
$sql .= ' a.id, a.label,';
|
$sql .= ' a.id, a.label,';
|
||||||
@ -448,7 +449,7 @@ $sql .= ' a.percent,';
|
|||||||
$sql .= ' a.fk_user_author,a.fk_user_action,';
|
$sql .= ' a.fk_user_author,a.fk_user_action,';
|
||||||
$sql .= ' a.transparency, a.priority, a.fulldayevent, a.location,';
|
$sql .= ' a.transparency, a.priority, a.fulldayevent, a.location,';
|
||||||
$sql .= ' a.fk_soc, a.fk_contact, a.fk_element, a.elementtype, a.fk_project,';
|
$sql .= ' a.fk_soc, a.fk_contact, a.fk_element, a.elementtype, a.fk_project,';
|
||||||
$sql .= ' ca.code, ca.color';
|
$sql .= ' ca.code, ca.libelle as type_label, ca.color, ca.type as type_type, ca.picto as type_picto';
|
||||||
$sql .= ' FROM '.MAIN_DB_PREFIX.'c_actioncomm as ca, '.MAIN_DB_PREFIX."actioncomm as a";
|
$sql .= ' FROM '.MAIN_DB_PREFIX.'c_actioncomm as ca, '.MAIN_DB_PREFIX."actioncomm as a";
|
||||||
if (!$user->rights->societe->client->voir && !$socid) $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."societe_commerciaux as sc ON a.fk_soc = sc.fk_soc";
|
if (!$user->rights->societe->client->voir && !$socid) $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."societe_commerciaux as sc ON a.fk_soc = sc.fk_soc";
|
||||||
// We must filter on resource table
|
// We must filter on resource table
|
||||||
|
|||||||
@ -355,7 +355,7 @@ class FormActions
|
|||||||
if (!is_array($selected) && !empty($selected)) $selected = explode(',', $selected);
|
if (!is_array($selected) && !empty($selected)) $selected = explode(',', $selected);
|
||||||
$out .= $form->multiselectarray($htmlname, $arraylist, $selected, 0, 0, 'centpercent', 0, 0);
|
$out .= $form->multiselectarray($htmlname, $arraylist, $selected, 0, 0, 'centpercent', 0, 0);
|
||||||
} else {
|
} else {
|
||||||
$out .= $form->selectarray($htmlname, $arraylist, $selected, 0, 0, 0, '', 0, 0, 0, '', 'minwidth200'.($morecss ? ' '.$morecss : ''), 1);
|
$out .= $form->selectarray($htmlname, $arraylist, $selected, 0, 0, 0, '', 0, 0, 0, '', 'minwidth300'.($morecss ? ' '.$morecss : ''), 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($user->admin && empty($onlyautoornot) && $hideinfohelp <= 0)
|
if ($user->admin && empty($onlyautoornot) && $hideinfohelp <= 0)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user