a letter
*
* The table document_type are the possible actions
*/
/*!
* \brief class_action for manipulating actions
* action can be :
*
*
a meeting
*
an order
*
a letter
*
* The table document_type are the possible actions
*/
class action
{
/*!< $db database connexion
* $ag_comment description (ag_gestion.ag_comment)
* $ag_timestamp document date (ag_gestion.ag_timestamp)
* $dt_id type of the document (document_type.dt_id)
* $d_state stage of the document (printed, send to client...)
* $d_number number of the document
* $d_filename filename's document
* $d_mimetype document's filename
* $ag_title title document
* $f_id_dest fiche id (From field )
* $f_id_exp fiche id (to field)
* $ag_ref_ag_id concern previous action
* $ag_id pk of the table action_gestion
* \todo replace attribut from class document document by an object document
*/
var $db;
var $ag_comment;
var $ag_timestamp;
var $dt_id;
var $d_state;
var $d_number;
var $d_filename;
var $d_mimetype;
var $ag_title;
var $f_id;
var $ag_ref_ag_id;
/*! constructor
* \brief constructor
* \param p_cn database connection
*/
function action ($p_cn)
{
$this->db=$p_cn;
$this->f_id=0;
}
//----------------------------------------------------------------------
/*! Display
* \brief Display the object, the tags for the FORM
* are in the caller. It will be used for adding and updating
* action
*\note If ag_id is not equal to zero then it is an update otherwise
* it is a new document
*
* \param $p_view if set to true the form will be in readonly mode
* \param $p_gen true we show the tag for generating a doc
*
* \note update the reference number or the document type is not allowed
*
*
* \return string containing the html code
*/
function Display($p_view,$p_gen)
{
echo_debug('class_action',__LINE__,'Display() :'.var_export($_POST,true));
echo_debug('class_action',__LINE__,'Display $this :'.var_export($this,true));
if ( $p_view=='UPD')
{
$upd=true;
$readonly=false;
}
elseif ($p_view=="NEW")
{
$upd=false;
$readonly=false;
}
elseif ($p_view=='READ')
{
$upd=true;
$readonly=true;
}
else
{
exit('class_action'.__LINE__.'Action::Display error unknown parameter'.$p_view);
}
// Compute the widget
// Date
$date=new widget("js_date");
$date->readonly=$readonly;
$date->name="ag_timestamp";
$date->value=$this->ag_timestamp;
// for insert mode only
if ( $upd == false )
{
// Doc Type
$doc_type=new widget("select");
$doc_type->name="dt_id";
$doc_type->value=make_array($this->db,"select dt_id,dt_value from document_type where dt_id in (".ACTION.")");
$doc_type->selected=$this->dt_id;
$doc_type->readonly=false;
$str_doc_type=$doc_type->IOValue();
echo_debug('class_action',__LINE__,var_export($doc_type,true));
}
else {
// Doc Type
$doc_type=new widget("hidden");
$doc_type->name="dt_id";
$doc_type->value=$this->dt_id;
$str_doc_type=$doc_type->IOValue()." ".getDbValue($this->db,"select dt_value from document_type where dt_id=".$this->dt_id);
}
// Description
$desc=new widget('RICHTEXT');
$desc->width=700;
$desc->heigh=100;
$desc->name="ag_comment";
$desc->readonly=$readonly;
$desc->value=FormatString(urldecode($this->ag_comment));
// state
// Retrieve the value
if ( $p_view != 'READ' )
{
$a=make_array($this->db,"select s_id,s_value from document_state ");
$state=new widget("select");
$state->readonly=$readonly;
$state->name="d_state";
$state->value=$a;
$state->selected=$this->d_state;
$str_state=$state->IOValue();
} else {
$str_state="";
if ( strlen($this->d_state) != 0 )
{ $str_state=getDbValue($this->db,"select s_value from document_state where s_id=".$this->d_state);
$g=new widget("hidden");
$str_state.=$g->IOValue('d_state',$this->d_state);
}
}
// Retrieve the value if there is an attached doc
$doc_ref="";
// Document id
$h2=new widget("hidden");
$h2->name="d_id";
$h2->value=$this->d_id;
if ( $this->d_id != 0 && $this->d_id != "" )
{
$h2->readonly=($p_view=='NEW')?false:true;
$doc=new Document($this->db,$this->d_id);
$doc->get();
if ( strlen(trim($doc->d_lob)) != 0 )
{
$d_id=new widget("hidden");
$doc_ref="
Document ".$doc->a_ref().'
';
$doc_ref.=$h2->IOValue().$d_id->IOValue('d_id',$this->d_id);
}
}
// title
$title=new widget("text");
$title->readonly=$readonly;
$title->name="ag_title";
// $title->value=FormatString($this->ag_title);
$title->value=$this->ag_title;
$title->size=80;
// ag_ref
// Always false for update
$ag_ref=new widget("text");
$ag_ref->readonly=$upd;
$ag_ref->name="ag_ref";
$ag_ref->value=FormatString($this->ag_ref);
$client_label=new widget("span");
// f_id_dest destination
if ( $this->qcode_dest != '- ERROR -' && strlen(trim($this->qcode_dest)) != 0)
{
$tiers=new fiche($this->db);
$tiers->get_by_qcode($this->qcode_dest);
$qcode_dest_label=$tiers->strAttribut(1);
} else {
// echo "f_id $this->f_id";
$qcode_dest_label=($this->f_id_dest==0 || trim($this->qcode_dest)=="")?'Interne ':'Error';
}
// f_id_exp sender
if ( $this->qcode_exp != '- ERROR -' && strlen(trim($this->qcode_exp)) != 0)
{
$tiers=new fiche($this->db);
$tiers->get_by_qcode($this->qcode_exp);
$qcode_exp_label=$tiers->strAttribut(1);
} else {
$qcode_exp_label=($this->f_id_exp==0 || trim($this->qcode_exp)=="")?'Interne ':'Error';
}
$h_ag_id=new widget("hidden");
// if concerns another action : show the link otherwise nothing
$lag_ref_ag_id=" X / XX ";
if ( $this->ag_ref_ag_id != 0 )
{
// $this->GetAgRef("ag_ref_ag_id")."";
$lag_ref_ag_id=''.
getDbValue($this->db,"select ag_ref from action_gestion where ag_id=".$this->ag_ref_ag_id).
"";
}
// sender
$w=new widget('js_search_only');
$w->readonly=$readonly;
$w->name='qcode_exp';
$w->value=($this->f_id_exp != 0)?$this->qcode_exp:"";
$w->label="";
$w->extra='frd_id in (14,25,8,9,16)';
$w->extra2='Recherche';
$sp= new widget("span");
$h_agrefid=new widget('hidden');
// destination
$wdest=new widget('js_search_only');
$wdest->readonly=$readonly;
$wdest->name='qcode_dest';
$wdest->value=($this->f_id_dest != 0)?$this->qcode_dest:"";
$wdest->label="";
$wdest->extra='frd_id in (14,25,8,9,16)';
$wdest->extra2='Recherche';
$spdest= new widget("span");
$h_agrefid=new widget('hidden');
$str_ag_ref="".(($this->ag_ref != "")?$this->ag_ref:" Nouveau ")."";
// Preparing the return string
$r="";
$r.=JS_SEARCH_CARD;
$r.= '
Date :'.$date->IOValue()." Reference ".$str_ag_ref;
$r.=" Concerne :".$lag_ref_ag_id.
' Type d\' action';
echo_debug('class_action',__LINE__,"str_doc_type $str_doc_type");
$r.= $str_doc_type;
// state
$r.=" Etat :".$str_state."
";
// show the list of the concern operation
if ( CountSql($this->db,'select * from action_gestion where ag_ref_ag_id!=0 and ag_ref_ag_id='.$this->ag_id.
" limit 2") > 0 )
$r.=$this->myList(ACTION," and ag_ref_ag_id=".$this->ag_id);
return $r;
}
//----------------------------------------------------------------------
/*!\brief This function shows the detail of an action thanks the ag_id
*/
function get()
{
echo_debug('class_action',__LINE__,'Action::Get() ');
$sql="select ag_id, ag_comment,to_char (ag_timestamp,'DD-MM-YYYY') as ag_timestamp,".
" f_id_dest,f_id_exp,ag_title,ag_comment,ag_ref,d_id,ag_type,d_state, ".
" ag_ref_ag_id ".
" from action_gestion left join document using (ag_id) where ag_id=".$this->ag_id;
$r=ExecSql($this->db,$sql);
$row=pg_fetch_all($r);
if ( $row==false) return;
$this->ag_comment=$row[0]['ag_comment'];
$this->ag_timestamp=$row[0]['ag_timestamp'];
$this->f_id_dest=$row[0]['f_id_dest'];
$this->f_id_exp=$row[0]['f_id_exp'];
$this->ag_title=$row[0]['ag_title'];
$this->ag_type=$row[0]['ag_type'];
$this->ag_ref=$row[0]['ag_ref'];
$this->ag_ref_ag_id=$row[0]['ag_ref_ag_id'];
$this->d_id=$row[0]['d_id'];
//
echo_debug('class_action',__LINE__,' Document id = '.$this->d_id);
// if there is no document set 0 to d_id
if ( $this->d_id == "" )
$this->d_id=0;
// if there is a document fill the object
if ($this->d_id != 0 )
{
$this->state=$row['0']['d_state'];
$this->d_state=$row[0]['d_state'];
}
echo_debug('class_action',__LINE__,' After test Document id = '.$this->d_id);
$this->dt_id=$this->ag_type;
$adest=new fiche($this->db,$this->f_id_dest);
$this->qcode_dest=$adest->strAttribut(ATTR_DEF_QUICKCODE);
$aexp=new fiche($this->db,$this->f_id_exp);
$this->qcode_exp=$aexp->strAttribut(ATTR_DEF_QUICKCODE);
echo_debug('class_action',__LINE__,'Detail end () :'.var_export($_POST,true));
echo_debug('class_action',__LINE__,'Detail $this :'.var_export($this,true));
}
/*! Confirm
* \brief Display the encoded data and ask a confirmation
* this correspond to the stage 1, before the generation
* or the upload of document
*
*
* \return string containing the form
*/
function Confirm()
{
echo_debug('class_action',__LINE__,'confirm() :'.var_export($_POST,true));
echo_debug('class_action',__LINE__,'confirm $this :'.var_export($this,true));
if ( isDate($this->ag_timestamp) == null )
{
// if the date is invalid, default date is today
$this->ag_timestamp=date("d.m.Y");
}
// Compute the widget
// Date
$date=new widget("text");
$date->readonly=true;
$date->name="ag_timestamp";
$date->value=$this->ag_timestamp;
// Doc Type
$doc_type=new widget("hidden");
$doc_type->name="dt_id";
$doc_type->value=$this->dt_id;
$a=ExecSql($this->db,"select dt_value from document_type where dt_id=".$this->dt_id);
$v=pg_fetch_array($a,0);
$str_type=$v[0];
if ( isset ($_REQUEST['url']))
{
$retour=widget::button_href('Retour',urldecode($_REQUEST['url']));
$h_url=sprintf('',urldecode($_REQUEST['url']));
}
else
{
$retour="";
$h_url="";
}
// state
$a=ExecSql($this->db,"select s_value from document_state where s_id=".$this->d_state);
$v=pg_fetch_array($a,0);
$str_state=$v[0];
$state=new widget("hidden");
$state->name="d_state";
$state->value=$this->d_state;
// title
$title=new widget("text");
$title->readonly=true;
$title->name="ag_title";
$title->value=FormatString($this->ag_title);
// Description
$desc=new widget('textarea');
$desc->name="ag_comment";
$desc->readonly=" disabled ";
$desc->value=$this->ag_comment;
// Propose to generate a document
$gen=new widget ("checkbox");
$gen->name="p_gen";
$doc_gen=new widget("select");
$doc_gen->name="gen_doc";
$doc_gen->value=make_array($this->db,
"select md_id,md_name from document_modele where md_type=".$this->dt_id);
$h_agrefid=new widget('hidden');
// f_id
if ( trim($this->qcode_dest) =="")
{
// internal document
$this->f_id_dest=0; // internal document
$namedest="interne";
}
else // ( trim($this->qcode_dest) !="" )
{
$tiers=new fiche($this->db);
$tiers->get_by_qcode($this->qcode_dest);
$this->f_id_dest=$tiers->id;
$namedest=$tiers->strAttribut(1);
if ( $namedest == '- ERROR -') $this->f_id_dest=-1;
}
// f_id
if ( trim($this->qcode_exp) =="")
{
// internal document
$this->f_id_exp=0; // internal document
$nameexp="interne";
}
else // ( trim($this->qcode_exp) !="" )
{
$tiers=new fiche($this->db);
$tiers->get_by_qcode($this->qcode_exp);
$this->f_id_exp=$tiers->id;
$nameexp=$tiers->strAttribut(1);
if ( $nameexp == '- ERROR -') $this->f_id_exp=-1;
}
// Preparing the return string
$r=$retour."";
return $r;
}
/*! SaveStage2
* \brief Save the document and propose to save the generated document or
* to upload one, the data are included except the file. Temporary the generated
* document is save
*
* \return
*/
function SaveStage2()
{
echo_debug('class_action',__LINE__,'saveStage2() :'.var_export($_POST,true));
echo_debug('class_action',__LINE__,' saveStage2() $this :'.var_export($this,true));
// Get The sequence id,
$seq_name="seq_doc_type_".$this->dt_id;
$str_file="";
$add_file='';
// f_id dest
$tiers=new fiche($this->db);
$tiers->get_by_qcode($this->qcode_dest);
// f_id exp
$exp=new fiche($this->db);
$exp->get_by_qcode($this->qcode_exp);
if ( trim($this->ag_title) == "")
{
$doc_mod=new document_type($this->db);
$doc_mod->dt_id=$this->dt_id;
$doc_mod->get();
$this->ag_title=$doc_mod->dt_value;
}
echo_debug('class_action',__LINE__," tiers->id ".$tiers->id);
$this->ag_id=NextSequence($this->db,'action_gestion_ag_id_seq');
// Create the reference
$ref=$this->dt_id.'/'.$this->ag_id;
$this->ag_ref=$ref;
/*!\brief the ag_comment is already urlencoded
*/
//we remove newline
$this->ag_comment=str_replace("%OD","",$this->ag_comment);
$this->ag_comment=str_replace("%OA","",$this->ag_comment);
// save into the database
$sql=sprintf("insert into action_gestion".
"(ag_id,ag_timestamp,ag_type,ag_title,f_id_dest,f_id_exp,ag_comment,ag_ref,ag_ref_ag_id) ".
" values (%d,to_date('%s','DD-MM-YYYY'),'%d','%s',%d,%d,'%s','%s',%d)",
$this->ag_id,
$this->ag_timestamp,
$this->dt_id,
FormatString($this->ag_title),
$tiers->id,
$exp->id,
$this->ag_comment,
$ref,
$this->ag_ref_ag_id
);
ExecSql($this->db,$sql);
// the lob filename and the mimetype needed if we want to generate a doc.
if ( $this->gen == 'on' )
{
$doc=new Document($this->db);
$doc->f_id=$tiers->id;
$doc->md_id=$this->md_id;
$doc->ag_id=$this->ag_id;
$doc->d_state=$this->d_state;
$str_file=$doc->Generate();
$d='';
}
$r="";
// readonly and upload of a file
$r.="";
$r.='";
return $r;
}
/*! SaveStage3
* \brief Upload the document or save the generated document
* \param $d_id document_id when we upload we don't increment seq. if = 0 then no file
*
*/
function SaveStage3($d_id)
{
echo_debug('class_action',__LINE__,'SaveStage3() :'.var_export($_POST,true));
echo_debug('class_action',__LINE__,'SaveStage3 :'.var_export($this,true));
// if we save the generated doc
if ( isset($_POST['save_generate']))
{
return;
}
// Upload a new document
$doc=new Document($this->db);
$doc->ag_id=$this->ag_id;
// if there is a document and it is not an update
if ( sizeof($_FILES) !=0 && $d_id==0)
{
$doc->md_type=$this->dt_id;
$doc->blank();
}
else
$doc->d_id=$d_id;
$doc->Upload($this->ag_id);
}
/*! myList($p_filter="")
* \brief Show list of action
* \param $p_filter filters on the document_type
* \param $p_search must a valid sql command ( ex 'and ag_title like upper('%hjkh%'))
*
*
* \return string containing html code
*/
function myList($p_filter="",$p_search="")
{
$str_dossier=dossier::get();
// for the sort
$sort="";
$image_asc='';
$image_desc='';
$image_sel_desc='';
$image_sel_asc='';
$url=CleanUrl();
$sort_date='