Bug : fix create event from AGENDA
This commit is contained in:
parent
50bebad93c
commit
2d262a2016
6 changed files with 66 additions and 9 deletions
|
|
@ -58,7 +58,7 @@ if ($op=='action_save')
|
|||
$event_group=$http->get("event_group", "string",0);
|
||||
$event_priority=$http->get("event_priority", "string",0);
|
||||
$title=$http->get("title_event","string", NULL);
|
||||
$summary=$http->get("summary","string", "");
|
||||
$summary= $http->get("summary","raw", "");
|
||||
$type_event=$http->get('type_event', "string",-1);
|
||||
$hour_event=$http->get('hour_event', "string",null);
|
||||
if ($date_event==-1||isDate($date_event)==0)
|
||||
|
|
@ -103,7 +103,8 @@ if ($op=='action_save')
|
|||
$gestion->f_id_dest=$dest_id;
|
||||
$gestion->ag_state=3;
|
||||
$gestion->dt_id=$type_event;
|
||||
$gestion->ag_comment=h($summary);
|
||||
$gestion->ag_comment=strip_tags($summary);
|
||||
$gestion->ag_comment=$summary;
|
||||
$gestion->ag_timestamp=$date_event;
|
||||
$gestion->ag_remind_date=$date_event;
|
||||
$gestion->ag_hour=$hour_event;
|
||||
|
|
|
|||
|
|
@ -1936,7 +1936,7 @@ where
|
|||
include NOALYSS_TEMPLATE.'/action_display_short.php';
|
||||
}
|
||||
/**
|
||||
* Add an event , with the minimum of informations,
|
||||
* @brief Add an event , with the minimum of informations,
|
||||
* used in Dashboard and Scheduler
|
||||
*/
|
||||
function save_short()
|
||||
|
|
@ -1996,8 +1996,12 @@ where
|
|||
|
||||
if (trim($this->ag_comment??"")!='')
|
||||
{
|
||||
$this->db->exec_sql("insert into action_gestion_comment (ag_id,tech_user,agc_comment) values ($1,$2,$3)"
|
||||
, array($this->ag_id, $_SESSION[SESSION_KEY.'g_user'], $this->ag_comment));
|
||||
$action_comment=new Action_Gestion_Comment_SQL($this->db);
|
||||
$action_comment->ag_id=$this->ag_id;
|
||||
$action_comment->tech_user= $_SESSION[SESSION_KEY.'g_user'];
|
||||
$action_comment->agc_comment=$this->ag_comment;
|
||||
$action_comment->agc_comment_raw=$this->ag_comment;
|
||||
$action_comment->insert();
|
||||
}
|
||||
}
|
||||
/**
|
||||
|
|
@ -2028,7 +2032,7 @@ where
|
|||
return -1;
|
||||
}
|
||||
/**
|
||||
* Compute an array of the complete tree depending of $p_id
|
||||
* @brief Compute an array of the complete tree depending of $p_id
|
||||
* @param $p_id ag_id
|
||||
* @return array
|
||||
* key index :
|
||||
|
|
|
|||
|
|
@ -45,6 +45,7 @@ class Action_Gestion_Comment_SQL extends Table_Data_SQL
|
|||
, "ag_id"=>"ag_id"
|
||||
, "agc_date"=>"agc_date"
|
||||
, "agc_comment"=>"agc_comment"
|
||||
, "agc_comment_raw"=>"agc_comment_raw"
|
||||
, "tech_user"=>"tech_user"
|
||||
);
|
||||
/*
|
||||
|
|
@ -55,6 +56,7 @@ class Action_Gestion_Comment_SQL extends Table_Data_SQL
|
|||
, "ag_id"=>"numeric"
|
||||
, "agc_date"=>"timestamp with time zone"
|
||||
, "agc_comment"=>"text"
|
||||
, "agc_comment_raw"=>"text"
|
||||
, "tech_user"=>"text"
|
||||
);
|
||||
|
||||
|
|
|
|||
|
|
@ -34,7 +34,8 @@ $title->size="60";
|
|||
$title->css_isze="60%";
|
||||
// Description
|
||||
$summary=new ITextarea('summary');
|
||||
$summary->style='class="itextarea" style="padding:0px;margin:0px"';
|
||||
$summary->set_enrichText('enrich');
|
||||
$summary->style='class="itextarea" style="background-color:white;padding:0px;margin:0px"';
|
||||
|
||||
// Type of document / event
|
||||
$type=new ISelect("type_event");
|
||||
|
|
@ -113,9 +114,9 @@ echo HtmlInput::title_box(_('Nouvel événement'), 'action_add_div',"close","","
|
|||
</p>
|
||||
<span > <?php echo _("Description")?>
|
||||
</span>
|
||||
<p>
|
||||
<div style="background-color:white">
|
||||
<?php echo $summary->input()?>
|
||||
</p>
|
||||
</div>
|
||||
<?php
|
||||
echo HtmlInput::hidden('gDossier',Dossier::id());
|
||||
echo HtmlInput::hidden('op','action_save');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue