Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
commit
d03d81a174
@ -1025,7 +1025,7 @@ class Adherent extends CommonObject
|
|||||||
|
|
||||||
$sql = "SELECT d.rowid, d.civilite, d.prenom as firstname, d.nom as lastname, d.societe, d.fk_soc, d.statut, d.public, d.adresse as address, d.cp as zip, d.ville as town, d.note,";
|
$sql = "SELECT d.rowid, d.civilite, d.prenom as firstname, d.nom as lastname, d.societe, d.fk_soc, d.statut, d.public, d.adresse as address, d.cp as zip, d.ville as town, d.note,";
|
||||||
$sql.= " d.email, d.phone, d.phone_perso, d.phone_mobile, d.login, d.pass,";
|
$sql.= " d.email, d.phone, d.phone_perso, d.phone_mobile, d.login, d.pass,";
|
||||||
$sql.= " d.photo, d.fk_adherent_type, d.morphy,";
|
$sql.= " d.photo, d.fk_adherent_type, d.morphy, d.entity,";
|
||||||
$sql.= " d.datec as datec,";
|
$sql.= " d.datec as datec,";
|
||||||
$sql.= " d.tms as datem,";
|
$sql.= " d.tms as datem,";
|
||||||
$sql.= " d.datefin as datefin,";
|
$sql.= " d.datefin as datefin,";
|
||||||
@ -1057,63 +1057,66 @@ class Adherent extends CommonObject
|
|||||||
{
|
{
|
||||||
$obj = $this->db->fetch_object($resql);
|
$obj = $this->db->fetch_object($resql);
|
||||||
|
|
||||||
$this->ref = $obj->rowid;
|
$this->entity = $obj->entity;
|
||||||
$this->id = $obj->rowid;
|
$this->ref = $obj->rowid;
|
||||||
$this->civilite_id = $obj->civilite;
|
$this->id = $obj->rowid;
|
||||||
$this->prenom = $obj->firstname; // deprecated
|
$this->civilite_id = $obj->civilite;
|
||||||
$this->firstname = $obj->firstname;
|
$this->prenom = $obj->firstname; // deprecated
|
||||||
$this->nom = $obj->lastname; // deprecated
|
$this->firstname = $obj->firstname;
|
||||||
$this->lastname = $obj->lastname;
|
$this->nom = $obj->lastname; // deprecated
|
||||||
$this->login = $obj->login;
|
$this->lastname = $obj->lastname;
|
||||||
$this->pass = $obj->pass;
|
$this->login = $obj->login;
|
||||||
$this->societe = $obj->societe;
|
$this->pass = $obj->pass;
|
||||||
$this->fk_soc = $obj->fk_soc;
|
$this->societe = $obj->societe;
|
||||||
$this->adresse = $obj->address; // deprecated
|
$this->fk_soc = $obj->fk_soc;
|
||||||
$this->address = $obj->address;
|
$this->adresse = $obj->address; // deprecated
|
||||||
$this->cp = $obj->zip; // deprecated
|
$this->address = $obj->address;
|
||||||
$this->zip = $obj->zip;
|
$this->cp = $obj->zip; // deprecated
|
||||||
$this->ville = $obj->town; // deprecated
|
$this->zip = $obj->zip;
|
||||||
$this->town = $obj->town;
|
$this->ville = $obj->town; // deprecated
|
||||||
|
$this->town = $obj->town;
|
||||||
|
|
||||||
$this->state_id = $obj->fk_departement;
|
$this->state_id = $obj->fk_departement;
|
||||||
$this->state_code = $obj->fk_departement?$obj->state_code:'';
|
$this->state_code = $obj->fk_departement?$obj->state_code:'';
|
||||||
$this->state = $obj->fk_departement?$obj->state:'';
|
$this->state = $obj->fk_departement?$obj->state:'';
|
||||||
$this->fk_departement = $obj->fk_departement; // deprecated
|
$this->fk_departement = $obj->fk_departement; // deprecated
|
||||||
$this->departement_code = $obj->fk_departement?$obj->state_code:''; // deprecated
|
$this->departement_code = $obj->fk_departement?$obj->state_code:''; // deprecated
|
||||||
$this->departement = $obj->fk_departement?$obj->state:''; // deprecated
|
$this->departement = $obj->fk_departement?$obj->state:''; // deprecated
|
||||||
|
|
||||||
$this->country_id = $obj->country_id;
|
$this->country_id = $obj->country_id;
|
||||||
$this->country_code = $obj->country_code;
|
$this->country_code = $obj->country_code;
|
||||||
if ($langs->trans("Country".$obj->country_code) != "Country".$obj->country_code) $this->country = $langs->transnoentitiesnoconv("Country".$obj->country_code);
|
if ($langs->trans("Country".$obj->country_code) != "Country".$obj->country_code)
|
||||||
else $this->country=$obj->country;
|
$this->country = $langs->transnoentitiesnoconv("Country".$obj->country_code);
|
||||||
$this->pays_id = $obj->country_id; // deprecated
|
else
|
||||||
$this->pays_code = $obj->country_code; // deprecated
|
$this->country=$obj->country;
|
||||||
$this->pays = $this->country; // deprecated
|
$this->pays_id = $obj->country_id; // deprecated
|
||||||
|
$this->pays_code = $obj->country_code; // deprecated
|
||||||
|
$this->pays = $this->country; // deprecated
|
||||||
|
|
||||||
$this->phone = $obj->phone;
|
$this->phone = $obj->phone;
|
||||||
$this->phone_perso = $obj->phone_perso;
|
$this->phone_perso = $obj->phone_perso;
|
||||||
$this->phone_mobile = $obj->phone_mobile;
|
$this->phone_mobile = $obj->phone_mobile;
|
||||||
$this->email = $obj->email;
|
$this->email = $obj->email;
|
||||||
|
|
||||||
$this->photo = $obj->photo;
|
$this->photo = $obj->photo;
|
||||||
$this->statut = $obj->statut;
|
$this->statut = $obj->statut;
|
||||||
$this->public = $obj->public;
|
$this->public = $obj->public;
|
||||||
|
|
||||||
$this->datec = $this->db->jdate($obj->datec);
|
$this->datec = $this->db->jdate($obj->datec);
|
||||||
$this->datem = $this->db->jdate($obj->datem);
|
$this->datem = $this->db->jdate($obj->datem);
|
||||||
$this->datefin = $this->db->jdate($obj->datefin);
|
$this->datefin = $this->db->jdate($obj->datefin);
|
||||||
$this->datevalid = $this->db->jdate($obj->datev);
|
$this->datevalid = $this->db->jdate($obj->datev);
|
||||||
$this->naiss = $this->db->jdate($obj->datenaiss);
|
$this->naiss = $this->db->jdate($obj->datenaiss);
|
||||||
|
|
||||||
$this->note = $obj->note;
|
$this->note = $obj->note;
|
||||||
$this->morphy = $obj->morphy;
|
$this->morphy = $obj->morphy;
|
||||||
|
|
||||||
$this->typeid = $obj->fk_adherent_type;
|
$this->typeid = $obj->fk_adherent_type;
|
||||||
$this->type = $obj->type;
|
$this->type = $obj->type;
|
||||||
$this->need_subscription = ($obj->cotisation=='yes'?1:0);
|
$this->need_subscription = ($obj->cotisation=='yes'?1:0);
|
||||||
|
|
||||||
$this->user_id = $obj->user_id;
|
$this->user_id = $obj->user_id;
|
||||||
$this->user_login = $obj->user_login;
|
$this->user_login = $obj->user_login;
|
||||||
|
|
||||||
// Load other properties
|
// Load other properties
|
||||||
$result=$this->fetch_subscriptions();
|
$result=$this->fetch_subscriptions();
|
||||||
|
|||||||
@ -3908,26 +3908,29 @@ class Form
|
|||||||
{
|
{
|
||||||
global $conf;
|
global $conf;
|
||||||
|
|
||||||
|
$entity = (! empty($object->entity) ? $object->entity : $conf->entity);
|
||||||
|
$id = (! empty($object->id) ? $object->id : $object->rowid);
|
||||||
|
|
||||||
$ret='';$dir='';$file='';$altfile='';$email='';
|
$ret='';$dir='';$file='';$altfile='';$email='';
|
||||||
|
|
||||||
if ($modulepart=='societe')
|
if ($modulepart=='societe')
|
||||||
{
|
{
|
||||||
$dir=$conf->societe->multidir_output[$object->entity];
|
$dir=$conf->societe->multidir_output[$entity];
|
||||||
$smallfile=$object->logo;
|
$smallfile=$object->logo;
|
||||||
$smallfile=preg_replace('/(\.png|\.gif|\.jpg|\.jpeg|\.bmp)/i','_small\\1',$smallfile);
|
$smallfile=preg_replace('/(\.png|\.gif|\.jpg|\.jpeg|\.bmp)/i','_small\\1',$smallfile);
|
||||||
if ($object->logo) $file=$object->id.'/logos/thumbs/'.$smallfile;
|
if ($object->logo) $file=$id.'/logos/thumbs/'.$smallfile;
|
||||||
}
|
}
|
||||||
else if ($modulepart=='userphoto')
|
else if ($modulepart=='userphoto')
|
||||||
{
|
{
|
||||||
$dir=$conf->user->dir_output;
|
$dir=$conf->user->dir_output;
|
||||||
if ($object->photo) $file=get_exdir($object->id,2).$object->photo;
|
if ($object->photo) $file=get_exdir($id, 2).$object->photo;
|
||||||
if (! empty($conf->global->MAIN_OLD_IMAGE_LINKS)) $altfile=$object->id.".jpg"; // For backward compatibility
|
if (! empty($conf->global->MAIN_OLD_IMAGE_LINKS)) $altfile=$object->id.".jpg"; // For backward compatibility
|
||||||
$email=$object->email;
|
$email=$object->email;
|
||||||
}
|
}
|
||||||
else if ($modulepart=='memberphoto')
|
else if ($modulepart=='memberphoto')
|
||||||
{
|
{
|
||||||
$dir=$conf->adherent->dir_output;
|
$dir=$conf->adherent->dir_output;
|
||||||
if ($object->photo) $file=get_exdir($object->id,2).'photos/'.$object->photo;
|
if ($object->photo) $file=get_exdir($id, 2).'photos/'.$object->photo;
|
||||||
if (! empty($conf->global->MAIN_OLD_IMAGE_LINKS)) $altfile=$object->id.".jpg"; // For backward compatibility
|
if (! empty($conf->global->MAIN_OLD_IMAGE_LINKS)) $altfile=$object->id.".jpg"; // For backward compatibility
|
||||||
$email=$object->email;
|
$email=$object->email;
|
||||||
}
|
}
|
||||||
@ -3938,14 +3941,14 @@ class Form
|
|||||||
if ($file && file_exists($dir."/".$file))
|
if ($file && file_exists($dir."/".$file))
|
||||||
{
|
{
|
||||||
// TODO Link to large image
|
// TODO Link to large image
|
||||||
$ret.='<a href="'.DOL_URL_ROOT.'/viewimage.php?modulepart='.$modulepart.'&entity='.$object->entity.'&file='.urlencode($file).'&cache='.$cache.'">';
|
$ret.='<a href="'.DOL_URL_ROOT.'/viewimage.php?modulepart='.$modulepart.'&entity='.$entity.'&file='.urlencode($file).'&cache='.$cache.'">';
|
||||||
$ret.='<img alt="Photo" id="photologo'.(preg_replace('/[^a-z]/i','_',$file)).'" class="photologo" border="0" width="'.$width.'" src="'.DOL_URL_ROOT.'/viewimage.php?modulepart='.$modulepart.'&entity='.$object->entity.'&file='.urlencode($file).'&cache='.$cache.'">';
|
$ret.='<img alt="Photo" id="photologo'.(preg_replace('/[^a-z]/i','_',$file)).'" class="photologo" border="0" width="'.$width.'" src="'.DOL_URL_ROOT.'/viewimage.php?modulepart='.$modulepart.'&entity='.$entity.'&file='.urlencode($file).'&cache='.$cache.'">';
|
||||||
$ret.='</a>';
|
$ret.='</a>';
|
||||||
}
|
}
|
||||||
else if ($altfile && file_exists($dir."/".$altfile))
|
else if ($altfile && file_exists($dir."/".$altfile))
|
||||||
{
|
{
|
||||||
$ret.='<a href="'.DOL_URL_ROOT.'/viewimage.php?modulepart='.$modulepart.'&entity='.$object->entity.'&file='.urlencode($file).'&cache='.$cache.'">';
|
$ret.='<a href="'.DOL_URL_ROOT.'/viewimage.php?modulepart='.$modulepart.'&entity='.$entity.'&file='.urlencode($file).'&cache='.$cache.'">';
|
||||||
$ret.='<img alt="Photo alt" id="photologo'.(preg_replace('/[^a-z]/i','_',$file)).'" class="photologo" border="0" width="'.$width.'" src="'.DOL_URL_ROOT.'/viewimage.php?modulepart='.$modulepart.'&entity='.$object->entity.'&file='.urlencode($altfile).'&cache='.$cache.'">';
|
$ret.='<img alt="Photo alt" id="photologo'.(preg_replace('/[^a-z]/i','_',$file)).'" class="photologo" border="0" width="'.$width.'" src="'.DOL_URL_ROOT.'/viewimage.php?modulepart='.$modulepart.'&entity='.$entity.'&file='.urlencode($altfile).'&cache='.$cache.'">';
|
||||||
$ret.='</a>';
|
$ret.='</a>';
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|||||||
@ -72,7 +72,7 @@ llxHeaderVierge($langs->trans("MemberCard"));
|
|||||||
$extralabels=$extrafields->fetch_name_optionals_label('member');
|
$extralabels=$extrafields->fetch_name_optionals_label('member');
|
||||||
if ($id > 0)
|
if ($id > 0)
|
||||||
{
|
{
|
||||||
$res=$object->fetch($id,$ref);
|
$res=$object->fetch($id);
|
||||||
if ($res < 0) { dol_print_error($db,$object->error); exit; }
|
if ($res < 0) { dol_print_error($db,$object->error); exit; }
|
||||||
$res=$object->fetch_optionals($object->id,$extralabels);
|
$res=$object->fetch_optionals($object->id,$extralabels);
|
||||||
|
|
||||||
@ -87,27 +87,22 @@ if ($id > 0)
|
|||||||
print '<table class="border" cellspacing="0" width="100%" cellpadding="3">';
|
print '<table class="border" cellspacing="0" width="100%" cellpadding="3">';
|
||||||
|
|
||||||
print '<tr><td width="15%">'.$langs->trans("Type").'</td><td class="valeur">'.$object->type."</td></tr>\n";
|
print '<tr><td width="15%">'.$langs->trans("Type").'</td><td class="valeur">'.$object->type."</td></tr>\n";
|
||||||
|
|
||||||
print '<tr><td>'.$langs->trans("Person").'</td><td class="valeur">'.$object->morphy.'</td></tr>';
|
print '<tr><td>'.$langs->trans("Person").'</td><td class="valeur">'.$object->morphy.'</td></tr>';
|
||||||
|
|
||||||
print '<tr><td>'.$langs->trans("Firstname").'</td><td class="valeur" width="35%">'.$object->firstname.' </td></tr>';
|
print '<tr><td>'.$langs->trans("Firstname").'</td><td class="valeur" width="35%">'.$object->firstname.' </td></tr>';
|
||||||
|
|
||||||
print '<tr><td>'.$langs->trans("Lastname").'</td><td class="valeur">'.$object->lastname.' </td></tr>';
|
print '<tr><td>'.$langs->trans("Lastname").'</td><td class="valeur">'.$object->lastname.' </td></tr>';
|
||||||
|
|
||||||
print '<tr><td>'.$langs->trans("Company").'</td><td class="valeur">'.$object->societe.' </td></tr>';
|
print '<tr><td>'.$langs->trans("Company").'</td><td class="valeur">'.$object->societe.' </td></tr>';
|
||||||
|
|
||||||
print '<tr><td>'.$langs->trans("Address").'</td><td class="valeur">'.nl2br($object->address).' </td></tr>';
|
print '<tr><td>'.$langs->trans("Address").'</td><td class="valeur">'.nl2br($object->address).' </td></tr>';
|
||||||
|
|
||||||
print '<tr><td>'.$langs->trans("Zip").' '.$langs->trans("Town").'</td><td class="valeur">'.$object->zip.' '.$object->town.' </td></tr>';
|
print '<tr><td>'.$langs->trans("Zip").' '.$langs->trans("Town").'</td><td class="valeur">'.$object->zip.' '.$object->town.' </td></tr>';
|
||||||
|
|
||||||
print '<tr><td>'.$langs->trans("Country").'</td><td class="valeur">'.$object->pays.' </td></tr>';
|
print '<tr><td>'.$langs->trans("Country").'</td><td class="valeur">'.$object->pays.' </td></tr>';
|
||||||
|
|
||||||
print '<tr><td>'.$langs->trans("EMail").'</td><td class="valeur">'.$object->email.' </td></tr>';
|
print '<tr><td>'.$langs->trans("EMail").'</td><td class="valeur">'.$object->email.' </td></tr>';
|
||||||
|
|
||||||
print '<tr><td>'.$langs->trans("Birthday").'</td><td class="valeur">'.$object->naiss.' </td></tr>';
|
print '<tr><td>'.$langs->trans("Birthday").'</td><td class="valeur">'.$object->naiss.' </td></tr>';
|
||||||
|
|
||||||
if (isset($object->photo) && $object->photo !=''){
|
if (isset($object->photo) && $object->photo !='')
|
||||||
print '<tr><td>URL Photo</td><td class="valeur">'."<A HREF=\"$object->photo\"><IMG SRC=\"$object->photo\"></A>".' </td></tr>';
|
{
|
||||||
|
$form = new Form($db);
|
||||||
|
print '<tr><td>URL Photo</td><td class="valeur">';
|
||||||
|
print $form->showphoto('memberphoto', $object, 64);
|
||||||
|
print '</td></tr>'."\n";
|
||||||
}
|
}
|
||||||
// foreach($objecto->attribute_label as $key=>$value){
|
// foreach($objecto->attribute_label as $key=>$value){
|
||||||
// print "<tr><td>$value</td><td>".$object->array_options["options_$key"]." </td></tr>\n";
|
// print "<tr><td>$value</td><td>".$object->array_options["options_$key"]." </td></tr>\n";
|
||||||
|
|||||||
@ -67,10 +67,10 @@ function llxHeaderVierge($title, $head = "")
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Show footer for member list
|
* Show footer for member list
|
||||||
*
|
*
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
function llxFooterVierge()
|
function llxFooterVierge()
|
||||||
{
|
{
|
||||||
printCommonFooter('public');
|
printCommonFooter('public');
|
||||||
@ -88,8 +88,8 @@ $offset = $conf->liste_limit * $page;
|
|||||||
$pageprev = $page - 1;
|
$pageprev = $page - 1;
|
||||||
$pagenext = $page + 1;
|
$pagenext = $page + 1;
|
||||||
|
|
||||||
$filter=$_GET["filter"];
|
$filter=GETPOST('filter');
|
||||||
$statut=isset($_GET["statut"])?$_GET["statut"]:'';
|
$statut=GETPOST('statut');
|
||||||
|
|
||||||
if (! $sortorder) { $sortorder="ASC"; }
|
if (! $sortorder) { $sortorder="ASC"; }
|
||||||
if (! $sortfield) { $sortfield="nom"; }
|
if (! $sortfield) { $sortfield="nom"; }
|
||||||
@ -101,8 +101,7 @@ if (! $sortfield) { $sortfield="nom"; }
|
|||||||
|
|
||||||
llxHeaderVierge($langs->trans("ListOfValidatedPublicMembers"));
|
llxHeaderVierge($langs->trans("ListOfValidatedPublicMembers"));
|
||||||
|
|
||||||
|
$sql = "SELECT rowid, prenom, nom, societe, cp as zip, ville as town, email, naiss, photo";
|
||||||
$sql = "SELECT rowid, prenom, nom, societe, cp, ville, email, naiss, photo";
|
|
||||||
$sql.= " FROM ".MAIN_DB_PREFIX."adherent";
|
$sql.= " FROM ".MAIN_DB_PREFIX."adherent";
|
||||||
$sql.= " WHERE entity = ".$entity;
|
$sql.= " WHERE entity = ".$entity;
|
||||||
$sql.= " AND statut = 1";
|
$sql.= " AND statut = 1";
|
||||||
@ -122,12 +121,14 @@ if ($result)
|
|||||||
|
|
||||||
$param="&statut=$statut&sortorder=$sortorder&sortfield=$sortfield";
|
$param="&statut=$statut&sortorder=$sortorder&sortfield=$sortfield";
|
||||||
print_barre_liste($langs->trans("ListOfValidatedPublicMembers"), $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, '', $num, 0, '');
|
print_barre_liste($langs->trans("ListOfValidatedPublicMembers"), $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, '', $num, 0, '');
|
||||||
print "<table class=\"noborder\" width=\"100%\">";
|
print '<table class="noborder" width="100%">';
|
||||||
|
|
||||||
print '<tr class="liste_titre">';
|
print '<tr class="liste_titre">';
|
||||||
print "<td><a href=\"".$_SERVER["PHP_SELF"]."?page=$page&sortorder=ASC&sortfield=prenom\">".$langs->trans("Firstname")."</a> <a href=\"".$_SERVER['PHP_SELF']."?page=$page&sortorder=ASC&sortfield=nom\">".$langs->trans("Lastname")."</a> / <a href=\"".$_SERVER["PHP_SELF"]."?page=$page&sortorder=ASC&sortfield=societe\">".$langs->trans("Company")."</a></td>\n";
|
print '<td><a href="'.$_SERVER["PHP_SELF"].'?page='.$page.'&sortorder=ASC&sortfield=prenom">'.$langs->trans("Firstname").'</a>';
|
||||||
print_liste_field_titre($langs->trans("DateToBirth"),"public_list.php","naiss","",$param,$sortfield,$sortorder);
|
print ' <a href="'.$_SERVER['PHP_SELF'].'?page='.$page.'&sortorder=ASC&sortfield=nom">'.$langs->trans("Lastname").'</a>';
|
||||||
print_liste_field_titre($langs->trans("EMail"),"public_list.php","email","",$param,$sortfield,$sortorder);
|
print ' / <a href="'.$_SERVER["PHP_SELF"].'?page='.$page.'&sortorder=ASC&sortfield=societe">'.$langs->trans("Company").'</a></td>'."\n";
|
||||||
|
//print_liste_field_titre($langs->trans("DateToBirth"),"public_list.php","naiss",'',$param,$sortfield,$sortorder); // est-ce nécessaire ??
|
||||||
|
print_liste_field_titre($langs->trans("EMail"),"public_list.php","email",'',$param,$sortfield,$sortorder);
|
||||||
print_liste_field_titre($langs->trans("Zip"),"public_list.php","cp","",$param,$sortfield,$sortorder);
|
print_liste_field_titre($langs->trans("Zip"),"public_list.php","cp","",$param,$sortfield,$sortorder);
|
||||||
print_liste_field_titre($langs->trans("Town"),"public_list.php","ville","",$param,$sortfield,$sortorder);
|
print_liste_field_titre($langs->trans("Town"),"public_list.php","ville","",$param,$sortfield,$sortorder);
|
||||||
print "<td>".$langs->trans("Photo")."</td>\n";
|
print "<td>".$langs->trans("Photo")."</td>\n";
|
||||||
@ -139,14 +140,17 @@ if ($result)
|
|||||||
$objp = $db->fetch_object($result);
|
$objp = $db->fetch_object($result);
|
||||||
$var=!$var;
|
$var=!$var;
|
||||||
print "<tr $bc[$var]>";
|
print "<tr $bc[$var]>";
|
||||||
print "<td><a href=\"public_card.php?id=$objp->rowid\">".$objp->prenom." ".$objp->nom.($objp->societe?" / ".$objp->societe:"")."</a></TD>\n";
|
print '<td><a href="public_card.php?id='.$objp->rowid.'">'.$objp->prenom.' '.$objp->nom.($objp->societe?' / '.$objp->societe:'').'</a></td>'."\n";
|
||||||
print "<td>$objp->naiss</td>\n";
|
//print "<td>$objp->naiss</td>\n"; // est-ce nécessaire ??
|
||||||
print "<td>$objp->email</td>\n";
|
print '<td>'.$objp->email.'</td>'."\n";
|
||||||
print "<td>$objp->cp</td>\n";
|
print '<td>'.$objp->zip.'</td>'."\n";
|
||||||
print "<td>$objp->ville</td>\n";
|
print '<td>'.$objp->town.'</td>'."\n";
|
||||||
if (isset($objp->photo) && $objp->photo!= '')
|
if (isset($objp->photo) && $objp->photo != '')
|
||||||
{
|
{
|
||||||
print "<td><a href=\"$objp->photo\"><img src=\"$objp->photo\" height=\"64\" width=\"64\"></a></td>\n";
|
$form = new Form($db);
|
||||||
|
print '<td>';
|
||||||
|
print $form->showphoto('memberphoto', $objp, 64);
|
||||||
|
print '</td>'."\n";
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
@ -123,6 +123,11 @@ if (! empty($conf->fournisseur->enabled))
|
|||||||
$url=DOL_MAIN_URL_ROOT.'/webservices/server_supplier_invoice.php?wsdl';
|
$url=DOL_MAIN_URL_ROOT.'/webservices/server_supplier_invoice.php?wsdl';
|
||||||
print img_picto('','object_globe.png').' <a href="'.$url.'" target="_blank">'.$url."</a><br>\n";
|
print img_picto('','object_globe.png').' <a href="'.$url.'" target="_blank">'.$url."</a><br>\n";
|
||||||
}
|
}
|
||||||
|
if (! empty($conf->agenda->enabled))
|
||||||
|
{
|
||||||
|
$url=DOL_MAIN_URL_ROOT.'/webservices/server_actioncomm.php?wsdl';
|
||||||
|
print img_picto('','object_globe.png').' <a href="'.$url.'" target="_blank">'.$url."</a><br>\n";
|
||||||
|
}
|
||||||
print '<br>';
|
print '<br>';
|
||||||
|
|
||||||
|
|
||||||
@ -150,6 +155,11 @@ if (! empty($conf->fournisseur->enabled))
|
|||||||
$url=DOL_MAIN_URL_ROOT.'/webservices/server_supplier_invoice.php';
|
$url=DOL_MAIN_URL_ROOT.'/webservices/server_supplier_invoice.php';
|
||||||
print img_picto('','object_globe.png').' <a href="'.$url.'" target="_blank">'.$url."</a><br>\n";
|
print img_picto('','object_globe.png').' <a href="'.$url.'" target="_blank">'.$url."</a><br>\n";
|
||||||
}
|
}
|
||||||
|
if (! empty($conf->agenda->enabled))
|
||||||
|
{
|
||||||
|
$url=DOL_MAIN_URL_ROOT.'/webservices/server_actioncomm.php';
|
||||||
|
print img_picto('','object_globe.png').' <a href="'.$url.'" target="_blank">'.$url."</a><br>\n";
|
||||||
|
}
|
||||||
print '<br>';
|
print '<br>';
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
165
htdocs/webservices/demo_wsclient_actioncomm.php-NORUN
Executable file
165
htdocs/webservices/demo_wsclient_actioncomm.php-NORUN
Executable file
@ -0,0 +1,165 @@
|
|||||||
|
<?php
|
||||||
|
/* Copyright (C) 2006-2010 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||||
|
* Copyright (C) 2012 Florian Henry <florian.henry@open-concept.pro>
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* 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 General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \file htdocs/webservices/demo_wsclient_actioncomm.php
|
||||||
|
* \brief Demo page to make a client call to Dolibarr WebServices "server_other"
|
||||||
|
*/
|
||||||
|
|
||||||
|
// This is to make Dolibarr working with Plesk
|
||||||
|
set_include_path($_SERVER['DOCUMENT_ROOT'].'/htdocs');
|
||||||
|
|
||||||
|
require_once '../master.inc.php';
|
||||||
|
require_once NUSOAP_PATH.'/nusoap.php'; // Include SOAP
|
||||||
|
|
||||||
|
$WS_DOL_URL = DOL_MAIN_URL_ROOT.'/webservices/server_actioncomm.php';
|
||||||
|
//$WS_DOL_URL = 'http://localhost:8080/'; // If not a page, should end with /
|
||||||
|
$WS_METHOD_GET = 'getActionComm';
|
||||||
|
$WS_METHOD_CREATE = 'createActionComm';
|
||||||
|
$WS_METHOD_GET_C_LIST = 'getListActionCommType';
|
||||||
|
$ns='http://www.dolibarr.org/ns/';
|
||||||
|
|
||||||
|
//Chosse action to do
|
||||||
|
//$action='get';
|
||||||
|
//$action='getlist';
|
||||||
|
$action='create';
|
||||||
|
|
||||||
|
|
||||||
|
// Set the WebService URL
|
||||||
|
dol_syslog("Create nusoap_actioncomm for URL=".$WS_DOL_URL);
|
||||||
|
$soapclient = new nusoap_client($WS_DOL_URL);
|
||||||
|
if ($soapclient)
|
||||||
|
{
|
||||||
|
$soapclient->soap_defencoding='UTF-8';
|
||||||
|
$soapclient->decodeUTF8(false);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Call the WebService method and store its result in $result.
|
||||||
|
$authentication=array(
|
||||||
|
'dolibarrkey'=>$conf->global->WEBSERVICES_KEY,
|
||||||
|
'sourceapplication'=>'DEMO',
|
||||||
|
'login'=>'admin_dolibarDev',
|
||||||
|
'password'=>'homedread',
|
||||||
|
'entity'=>'1');
|
||||||
|
|
||||||
|
|
||||||
|
// Test URL
|
||||||
|
if ($action=='get')
|
||||||
|
{
|
||||||
|
$WS_METHOD=$WS_METHOD_GET;
|
||||||
|
$parameters = array('authentication'=>$authentication,'id'=>1);
|
||||||
|
dol_syslog("Call method ".$WS_METHOD_GET);
|
||||||
|
$result = $soapclient->call($WS_METHOD_GET,$parameters,$ns,'');
|
||||||
|
if (! $result)
|
||||||
|
{
|
||||||
|
print $soapclient->error_str;
|
||||||
|
print "<br>\n\n";
|
||||||
|
print $soapclient->request;
|
||||||
|
print "<br>\n\n";
|
||||||
|
print $soapclient->response;
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Test URL
|
||||||
|
if ($action=='getlist')
|
||||||
|
{
|
||||||
|
$WS_METHOD=$WS_METHOD_GET_C_LIST;
|
||||||
|
$parameters = array('authentication'=>$authentication);
|
||||||
|
dol_syslog("Call method ".$WS_METHOD_GET_C_LIST);
|
||||||
|
$result = $soapclient->call($WS_METHOD_GET_C_LIST,$parameters,$ns,'');
|
||||||
|
if (! $result)
|
||||||
|
{
|
||||||
|
print $soapclient->error_str;
|
||||||
|
print "<br>\n\n";
|
||||||
|
print $soapclient->request;
|
||||||
|
print "<br>\n\n";
|
||||||
|
print $soapclient->response;
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Test URL
|
||||||
|
if ($action=='create')
|
||||||
|
{
|
||||||
|
$WS_METHOD=$WS_METHOD_CREATE;
|
||||||
|
$new=array(
|
||||||
|
'datep'=>dol_mktime(13, 30, 00, 12, 16, 2012),
|
||||||
|
'datef'=>dol_mktime(15, 30, 00, 12, 16, 2012),
|
||||||
|
'type_code'=>'AC_RDV',
|
||||||
|
'socid'=>'1',
|
||||||
|
'projectid'=>'',
|
||||||
|
'note'=>'This is note',
|
||||||
|
'contactid'=>'',
|
||||||
|
'usertodo'=>'1',
|
||||||
|
'userdone'=>'1',
|
||||||
|
'label'=>'Ceci est les titre de l\'envenement',
|
||||||
|
'percentage'=>'100',
|
||||||
|
'location'=>'Location1'
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
$parameters = array('authentication'=>$authentication,'actioncomm'=>$new);
|
||||||
|
dol_syslog("Call method ".$WS_METHOD_CREATE);
|
||||||
|
$result = $soapclient->call($WS_METHOD_CREATE,$parameters,$ns,'');
|
||||||
|
if (! $result)
|
||||||
|
{
|
||||||
|
print $soapclient->error_str;
|
||||||
|
print "<br>\n\n";
|
||||||
|
print $soapclient->request;
|
||||||
|
print "<br>\n\n";
|
||||||
|
print $soapclient->response;
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* View
|
||||||
|
*/
|
||||||
|
|
||||||
|
header("Content-type: text/html; charset=utf8");
|
||||||
|
print '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">'."\n";
|
||||||
|
echo '<html>'."\n";
|
||||||
|
echo '<head>';
|
||||||
|
echo '<title>WebService Test: '.$WS_METHOD.'</title>';
|
||||||
|
echo '</head>'."\n";
|
||||||
|
|
||||||
|
echo '<body>'."\n";
|
||||||
|
echo 'NUSOAP_PATH='.NUSOAP_PATH.'<br>';
|
||||||
|
|
||||||
|
echo "<h2>Request:</h2>";
|
||||||
|
echo '<h4>Function</h4>';
|
||||||
|
echo $WS_METHOD;
|
||||||
|
echo '<h4>SOAP Message</h4>';
|
||||||
|
echo '<pre>' . htmlspecialchars($soapclient->request, ENT_QUOTES) . '</pre>';
|
||||||
|
|
||||||
|
echo '<hr>';
|
||||||
|
|
||||||
|
echo "<h2>Response:</h2>";
|
||||||
|
echo '<h4>Result</h4>';
|
||||||
|
echo '<pre>';
|
||||||
|
print_r($result);
|
||||||
|
echo '</pre>';
|
||||||
|
echo '<h4>SOAP Message</h4>';
|
||||||
|
echo '<pre>' . htmlspecialchars($soapclient->response, ENT_QUOTES) . '</pre>';
|
||||||
|
|
||||||
|
echo '</body>'."\n";;
|
||||||
|
echo '</html>'."\n";;
|
||||||
|
?>
|
||||||
481
htdocs/webservices/server_actioncomm.php
Normal file
481
htdocs/webservices/server_actioncomm.php
Normal file
@ -0,0 +1,481 @@
|
|||||||
|
<?php
|
||||||
|
/* Copyright (C) 2006-2011 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||||
|
* Copyright (C) 2012 Florian Henry <florian.henry@open-concept.pro>
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* 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 General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \file htdocs/webservices/server_actioncomm.php
|
||||||
|
* \brief File that is entry point to call Dolibarr WebServices
|
||||||
|
* \version $Id: server_actioncomm.php,v 1.7 2010/12/19 11:49:37 eldy Exp $
|
||||||
|
*/
|
||||||
|
|
||||||
|
// This is to make Dolibarr working with Plesk
|
||||||
|
set_include_path($_SERVER['DOCUMENT_ROOT'].'/htdocs');
|
||||||
|
|
||||||
|
require_once("../master.inc.php");
|
||||||
|
require_once(NUSOAP_PATH.'/nusoap.php'); // Include SOAP
|
||||||
|
require_once(DOL_DOCUMENT_ROOT."/core/lib/ws.lib.php");
|
||||||
|
|
||||||
|
require_once(DOL_DOCUMENT_ROOT."/comm/action/class/actioncomm.class.php");
|
||||||
|
require_once(DOL_DOCUMENT_ROOT."/comm/action/class/cactioncomm.class.php");
|
||||||
|
require_once DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php';
|
||||||
|
|
||||||
|
|
||||||
|
dol_syslog("Call ActionComm webservices interfaces");
|
||||||
|
|
||||||
|
// Enable and test if module web services is enabled
|
||||||
|
if (empty($conf->global->MAIN_MODULE_WEBSERVICES))
|
||||||
|
{
|
||||||
|
$langs->load("admin");
|
||||||
|
dol_syslog("Call Dolibarr webservices interfaces with module webservices disabled");
|
||||||
|
print $langs->trans("WarningModuleNotActive",'WebServices').'.<br><br>';
|
||||||
|
print $langs->trans("ToActivateModule");
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Create the soap Object
|
||||||
|
$server = new nusoap_server();
|
||||||
|
$server->soap_defencoding='UTF-8';
|
||||||
|
$server->decode_utf8=false;
|
||||||
|
$ns='http://www.dolibarr.org/ns/';
|
||||||
|
$server->configureWSDL('WebServicesDolibarrActionComm',$ns);
|
||||||
|
$server->wsdl->schemaTargetNamespace=$ns;
|
||||||
|
|
||||||
|
|
||||||
|
// Define WSDL Authentication object
|
||||||
|
$server->wsdl->addComplexType(
|
||||||
|
'authentication',
|
||||||
|
'complexType',
|
||||||
|
'struct',
|
||||||
|
'all',
|
||||||
|
'',
|
||||||
|
array(
|
||||||
|
'dolibarrkey' => array('name'=>'dolibarrkey','type'=>'xsd:string'),
|
||||||
|
'sourceapplication' => array('name'=>'sourceapplication','type'=>'xsd:string'),
|
||||||
|
'login' => array('name'=>'login','type'=>'xsd:string'),
|
||||||
|
'password' => array('name'=>'password','type'=>'xsd:string'),
|
||||||
|
'entity' => array('name'=>'entity','type'=>'xsd:string'),
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
// Define WSDL Return object
|
||||||
|
$server->wsdl->addComplexType(
|
||||||
|
'result',
|
||||||
|
'complexType',
|
||||||
|
'struct',
|
||||||
|
'all',
|
||||||
|
'',
|
||||||
|
array(
|
||||||
|
'result_code' => array('name'=>'result_code','type'=>'xsd:string'),
|
||||||
|
'result_label' => array('name'=>'result_label','type'=>'xsd:string'),
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
$actioncomm_fields= array(
|
||||||
|
'id' => array('name'=>'id','type'=>'xsd:string'),
|
||||||
|
'ref' => array('name'=>'ref','type'=>'xsd:string'),
|
||||||
|
'ref_ext' => array('name'=>'ref_ext','type'=>'xsd:string'),
|
||||||
|
'type_id' => array('name'=>'type_id','type'=>'xsd:string'),
|
||||||
|
'type_code' => array('name'=>'type_code','type'=>'xsd:string'),
|
||||||
|
'type' => array('name'=>'type','type'=>'xsd:string'),
|
||||||
|
'label' => array('name'=>'label','type'=>'xsd:string'),
|
||||||
|
'datep' => array('name'=>'datep','type'=>'xsd:dateTime'),
|
||||||
|
'datef' => array('name'=>'datef','type'=>'xsd:dateTime'),
|
||||||
|
'datec' => array('name'=>'datec','type'=>'xsd:dateTime'),
|
||||||
|
'datem' => array('name'=>'datem','type'=>'xsd:dateTime'),
|
||||||
|
'note' => array('name'=>'note','type'=>'xsd:string'),
|
||||||
|
'percentage' => array('name'=>'percentage','type'=>'xsd:string'),
|
||||||
|
'author' => array('name'=>'author','type'=>'xsd:string'),
|
||||||
|
'usermod' => array('name'=>'usermod','type'=>'xsd:string'),
|
||||||
|
'usertodo' => array('name'=>'usertodo','type'=>'xsd:string'),
|
||||||
|
'userdone' => array('name'=>'userdone','type'=>'xsd:string'),
|
||||||
|
'priority' => array('name'=>'priority','type'=>'xsd:string'),
|
||||||
|
'fulldayevent' => array('name'=>'fulldayevent','type'=>'xsd:string'),
|
||||||
|
'location' => array('name'=>'location','type'=>'xsd:string'),
|
||||||
|
'socid' => array('name'=>'socid','type'=>'xsd:string'),
|
||||||
|
'contactid' => array('name'=>'contactid','type'=>'xsd:string'),
|
||||||
|
'projectid' => array('name'=>'projectid','type'=>'xsd:string'),
|
||||||
|
'fk_element' => array('name'=>'fk_element','type'=>'xsd:string'),
|
||||||
|
'elementtype' => array('name'=>'elementtype','type'=>'xsd:string'));
|
||||||
|
|
||||||
|
//Retreive all extrafield for actioncomm
|
||||||
|
// fetch optionals attributes and labels
|
||||||
|
$extrafields=new ExtraFields($db);
|
||||||
|
$extralabels=$extrafields->fetch_name_optionals_label('actioncomm');
|
||||||
|
if (count($extrafields)>0) {
|
||||||
|
$extrafield_array = array();
|
||||||
|
}
|
||||||
|
foreach($extrafields->attribute_label as $key=>$label)
|
||||||
|
{
|
||||||
|
$type =$extrafields->attribute_type[$key];
|
||||||
|
if ($type=='date' || $type=='datetime') {$type='xsd:dateTime';}
|
||||||
|
else {$type='xsd:string';}
|
||||||
|
|
||||||
|
$extrafield_array['options_'.$key]=array('name'=>'options_'.$key,'type'=>$type);
|
||||||
|
}
|
||||||
|
|
||||||
|
$actioncomm_fields=array_merge($actioncomm_fields,$extrafield_array);
|
||||||
|
|
||||||
|
// Define other specific objects
|
||||||
|
$server->wsdl->addComplexType(
|
||||||
|
'actioncomm',
|
||||||
|
'complexType',
|
||||||
|
'struct',
|
||||||
|
'all',
|
||||||
|
'',
|
||||||
|
$actioncomm_fields
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
$server->wsdl->addComplexType(
|
||||||
|
'actioncommtype',
|
||||||
|
'complexType',
|
||||||
|
'array',
|
||||||
|
'sequence',
|
||||||
|
'',
|
||||||
|
array(
|
||||||
|
'code' => array('name'=>'code','type'=>'xsd:string'),
|
||||||
|
'libelle' => array('name'=>'libelle','type'=>'xsd:string')
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
$server->wsdl->addComplexType(
|
||||||
|
'actioncommtypes',
|
||||||
|
'complexType',
|
||||||
|
'array',
|
||||||
|
'sequence',
|
||||||
|
'',
|
||||||
|
array(
|
||||||
|
'actioncommtype' => array(
|
||||||
|
'name' => 'actioncommtype',
|
||||||
|
'type' => 'tns:actioncommtype',
|
||||||
|
'minOccurs' => '0',
|
||||||
|
'maxOccurs' => 'unbounded'
|
||||||
|
)
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
// 5 styles: RPC/encoded, RPC/literal, Document/encoded (not WS-I compliant), Document/literal, Document/literal wrapped
|
||||||
|
// Style merely dictates how to translate a WSDL binding to a SOAP message. Nothing more. You can use either style with any programming model.
|
||||||
|
// http://www.ibm.com/developerworks/webservices/library/ws-whichwsdl/
|
||||||
|
$styledoc='rpc'; // rpc/document (document is an extend into SOAP 1.0 to support unstructured messages)
|
||||||
|
$styleuse='encoded'; // encoded/literal/literal wrapped
|
||||||
|
// Better choice is document/literal wrapped but literal wrapped not supported by nusoap.
|
||||||
|
|
||||||
|
|
||||||
|
// Register WSDL
|
||||||
|
$server->register(
|
||||||
|
'getListActionCommType',
|
||||||
|
// Entry values
|
||||||
|
array('authentication'=>'tns:authentication'),
|
||||||
|
// Exit values
|
||||||
|
array('result'=>'tns:result','actioncommtypes'=>'tns:actioncommtypes'),
|
||||||
|
$ns,
|
||||||
|
$ns.'#getListActionCommType',
|
||||||
|
$styledoc,
|
||||||
|
$styleuse,
|
||||||
|
'WS to get actioncommType'
|
||||||
|
);
|
||||||
|
|
||||||
|
// Register WSDL
|
||||||
|
$server->register(
|
||||||
|
'getActionComm',
|
||||||
|
// Entry values
|
||||||
|
array('authentication'=>'tns:authentication','id'=>'xsd:string'),
|
||||||
|
// Exit values
|
||||||
|
array('result'=>'tns:result','actioncomm'=>'tns:actioncomm'),
|
||||||
|
$ns,
|
||||||
|
$ns.'#getActionComm',
|
||||||
|
$styledoc,
|
||||||
|
$styleuse,
|
||||||
|
'WS to get actioncomm'
|
||||||
|
);
|
||||||
|
|
||||||
|
// Register WSDL
|
||||||
|
$server->register(
|
||||||
|
'createActionComm',
|
||||||
|
// Entry values
|
||||||
|
array('authentication'=>'tns:authentication','actioncomm'=>'tns:actioncomm'),
|
||||||
|
// Exit values
|
||||||
|
array('result'=>'tns:result','id'=>'xsd:string'),
|
||||||
|
$ns,
|
||||||
|
$ns.'#createActionComm',
|
||||||
|
$styledoc,
|
||||||
|
$styleuse,
|
||||||
|
'WS to create a actioncomm'
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get ActionComm
|
||||||
|
*
|
||||||
|
* @param array $authentication Array of authentication information
|
||||||
|
* @param int $id Id of object
|
||||||
|
* @param string $ref Ref of object
|
||||||
|
* @param ref_ext $ref_ext Ref external of object
|
||||||
|
* @return mixed
|
||||||
|
*/
|
||||||
|
function getActionComm($authentication,$id)
|
||||||
|
{
|
||||||
|
global $db,$conf,$langs;
|
||||||
|
|
||||||
|
dol_syslog("Function: getActionComm login=".$authentication['login']." id=".$id);
|
||||||
|
|
||||||
|
if ($authentication['entity']) $conf->entity=$authentication['entity'];
|
||||||
|
|
||||||
|
// Init and check authentication
|
||||||
|
$objectresp=array();
|
||||||
|
$errorcode='';$errorlabel='';
|
||||||
|
$error=0;
|
||||||
|
$fuser=check_authentication($authentication,$error,$errorcode,$errorlabel);
|
||||||
|
// Check parameters
|
||||||
|
if ($error || (! $id))
|
||||||
|
{
|
||||||
|
$error++;
|
||||||
|
$errorcode='BAD_PARAMETERS'; $errorlabel="Parameter id, ref and ref_ext can't be both provided. You must choose one or other but not both.";
|
||||||
|
}
|
||||||
|
|
||||||
|
if (! $error)
|
||||||
|
{
|
||||||
|
$fuser->getrights();
|
||||||
|
|
||||||
|
if ($fuser->rights->agenda->allactions->read)
|
||||||
|
{
|
||||||
|
$actioncomm=new ActionComm($db);
|
||||||
|
$result=$actioncomm->fetch($id);
|
||||||
|
if ($result > 0)
|
||||||
|
{
|
||||||
|
|
||||||
|
$actioncomm_result_fields=array(
|
||||||
|
'id' => $actioncomm->id,
|
||||||
|
'ref'=> $actioncomm->ref,
|
||||||
|
'ref_ext'=> $actioncomm->ref_ext,
|
||||||
|
'type_id'=> $actioncomm->type_id,
|
||||||
|
'type_code'=> $actioncomm->type_code,
|
||||||
|
'type'=> $actioncomm->type,
|
||||||
|
'label'=> $actioncomm->label,
|
||||||
|
'datep'=> dol_print_date($actioncomm->datep,'dayhourrfc'),
|
||||||
|
'datef'=> dol_print_date($actioncomm->datef,'dayhourrfc'),
|
||||||
|
'datec'=> dol_print_date($actioncomm->datec,'dayhourrfc'),
|
||||||
|
'datem'=> dol_print_date($actioncomm->datem,'dayhourrfc'),
|
||||||
|
'note'=> $actioncomm->note,
|
||||||
|
'percentage'=> $actioncomm->percentage,
|
||||||
|
'author'=> $actioncomm->author->id,
|
||||||
|
'usermod'=> $actioncomm->usermod->id,
|
||||||
|
'usertodo'=> $actioncomm->usertodo->id,
|
||||||
|
'userdone'=> $actioncomm->userdone->id,
|
||||||
|
'priority'=> $actioncomm->priority,
|
||||||
|
'fulldayevent'=> $actioncomm->fulldayevent,
|
||||||
|
'location'=> $actioncomm->location,
|
||||||
|
'socid'=> $actioncomm->societe->id,
|
||||||
|
'contactid'=> $actioncomm->contact->id,
|
||||||
|
'projectid'=> $actioncomm->fk_project,
|
||||||
|
'fk_element'=> $actioncomm->fk_element,
|
||||||
|
'elementtype'=> $actioncomm->elementtype);
|
||||||
|
|
||||||
|
//Retreive all extrafield for actioncomm
|
||||||
|
// fetch optionals attributes and labels
|
||||||
|
$extrafields=new ExtraFields($db);
|
||||||
|
$extralabels=$extrafields->fetch_name_optionals_label('actioncomm');
|
||||||
|
//Get extrafield values
|
||||||
|
$actioncomm->fetch_optionals($actioncomm->id,$extralabels);
|
||||||
|
|
||||||
|
foreach($extrafields->attribute_label as $key=>$label)
|
||||||
|
{
|
||||||
|
$actioncomm_result_fields=array_merge($actioncomm_result_fields,array('options_'.$key => $actioncomm->array_options['options_'.$key]));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Create
|
||||||
|
$objectresp = array(
|
||||||
|
'result'=>array('result_code'=>'OK', 'result_label'=>''),
|
||||||
|
'actioncomm'=>$actioncomm_result_fields);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$error++;
|
||||||
|
$errorcode='NOT_FOUND'; $errorlabel='Object not found for id='.$id.' nor ref='.$ref.' nor ref_ext='.$ref_ext;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$error++;
|
||||||
|
$errorcode='PERMISSION_DENIED'; $errorlabel='User does not have permission for this request';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($error)
|
||||||
|
{
|
||||||
|
$objectresp = array('result'=>array('result_code' => $errorcode, 'result_label' => $errorlabel));
|
||||||
|
}
|
||||||
|
|
||||||
|
return $objectresp;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get getListActionCommType
|
||||||
|
*
|
||||||
|
* @param array $authentication Array of authentication information
|
||||||
|
* @return mixed
|
||||||
|
*/
|
||||||
|
function getListActionCommType($authentication)
|
||||||
|
{
|
||||||
|
global $db,$conf,$langs;
|
||||||
|
|
||||||
|
dol_syslog("Function: getListActionCommType login=".$authentication['login']);
|
||||||
|
|
||||||
|
if ($authentication['entity']) $conf->entity=$authentication['entity'];
|
||||||
|
|
||||||
|
// Init and check authentication
|
||||||
|
$objectresp=array();
|
||||||
|
$errorcode='';$errorlabel='';
|
||||||
|
$error=0;
|
||||||
|
$fuser=check_authentication($authentication,$error,$errorcode,$errorlabel);
|
||||||
|
|
||||||
|
if (! $error)
|
||||||
|
{
|
||||||
|
$fuser->getrights();
|
||||||
|
|
||||||
|
if ($fuser->rights->agenda->myactions->read)
|
||||||
|
{
|
||||||
|
$cactioncomm=new CActionComm($db);
|
||||||
|
$result=$cactioncomm->liste_array('','code');
|
||||||
|
if ($result > 0)
|
||||||
|
{
|
||||||
|
$resultarray=array();
|
||||||
|
foreach($cactioncomm->liste_array as $code=>$libeller) {
|
||||||
|
$resultarray[]=array('code'=>$code,'libelle'=>$libeller);
|
||||||
|
}
|
||||||
|
|
||||||
|
$objectresp = array(
|
||||||
|
'result'=>array('result_code'=>'OK', 'result_label'=>''),
|
||||||
|
'actioncommtypes'=>$resultarray);
|
||||||
|
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$error++;
|
||||||
|
$errorcode='NOT_FOUND'; $errorlabel='Object not found for id='.$id.' nor ref='.$ref.' nor ref_ext='.$ref_ext;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$error++;
|
||||||
|
$errorcode='PERMISSION_DENIED'; $errorlabel='User does not have permission for this request';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($error)
|
||||||
|
{
|
||||||
|
$objectresp = array('result'=>array('result_code' => $errorcode, 'result_label' => $errorlabel));
|
||||||
|
}
|
||||||
|
|
||||||
|
return $objectresp;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create ActionComm
|
||||||
|
*
|
||||||
|
* @param array $authentication Array of authentication information
|
||||||
|
* @param ActionComm $actioncomm $actioncomm
|
||||||
|
* @return array Array result
|
||||||
|
*/
|
||||||
|
function createActionComm($authentication,$actioncomm)
|
||||||
|
{
|
||||||
|
global $db,$conf,$langs;
|
||||||
|
|
||||||
|
$now=dol_now();
|
||||||
|
|
||||||
|
dol_syslog("Function: createActionComm login=".$authentication['login']);
|
||||||
|
|
||||||
|
if ($authentication['entity']) $conf->entity=$authentication['entity'];
|
||||||
|
|
||||||
|
// Init and check authentication
|
||||||
|
$objectresp=array();
|
||||||
|
$errorcode='';$errorlabel='';
|
||||||
|
$error=0;
|
||||||
|
$fuser=check_authentication($authentication,$error,$errorcode,$errorlabel);
|
||||||
|
|
||||||
|
if (! $error)
|
||||||
|
{
|
||||||
|
$newobject=new ActionComm($db);
|
||||||
|
|
||||||
|
$newobject->datep=$actioncomm['datep'];
|
||||||
|
$newobject->datef=$actioncomm['datef'];
|
||||||
|
$newobject->type_code=$actioncomm['type_code'];
|
||||||
|
$newobject->societe->id=$actioncomm['socid'];
|
||||||
|
$newobject->fk_project=$actioncomm['projectid'];
|
||||||
|
$newobject->note=$actioncomm['note'];
|
||||||
|
$newobject->contact->id=$actioncomm['contactid'];
|
||||||
|
$newobject->usertodo->id=$actioncomm['usertodo'];
|
||||||
|
$newobject->userdone->id=$actioncomm['userdone'];
|
||||||
|
$newobject->label=$actioncomm['label'];
|
||||||
|
$newobject->percentage=$actioncomm['percentage'];
|
||||||
|
$newobject->priority=$actioncomm['priority'];
|
||||||
|
$newobject->fulldayevent=$actioncomm['fulldayevent'];
|
||||||
|
$newobject->location=$actioncomm['location'];
|
||||||
|
$newobject->fk_element=$actioncomm['fk_element'];
|
||||||
|
$newobject->elementtype=$actioncomm['elementtype'];
|
||||||
|
|
||||||
|
//Retreive all extrafield for actioncomm
|
||||||
|
// fetch optionals attributes and labels
|
||||||
|
$extrafields=new ExtraFields($db);
|
||||||
|
$extralabels=$extrafields->fetch_name_optionals_label('actioncomm');
|
||||||
|
foreach($extrafields->attribute_label as $key=>$label)
|
||||||
|
{
|
||||||
|
$key='options_'.$key;
|
||||||
|
$newobject->array_options[$key]=$actioncomm[$key];
|
||||||
|
}
|
||||||
|
|
||||||
|
$db->begin();
|
||||||
|
|
||||||
|
$result=$newobject->add($fuser);
|
||||||
|
if ($result <= 0)
|
||||||
|
{
|
||||||
|
$error++;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (! $error)
|
||||||
|
{
|
||||||
|
$db->commit();
|
||||||
|
$objectresp=array('result'=>array('result_code'=>'OK', 'result_label'=>''),'id'=>$newobject->id,'ref'=>$newobject->ref);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$db->rollback();
|
||||||
|
$error++;
|
||||||
|
$errorcode='KO';
|
||||||
|
$errorlabel=$newobject->error;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($error)
|
||||||
|
{
|
||||||
|
$objectresp = array('result'=>array('result_code' => $errorcode, 'result_label' => $errorlabel));
|
||||||
|
}
|
||||||
|
|
||||||
|
return $objectresp;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Return the results.
|
||||||
|
$server->service($HTTP_RAW_POST_DATA);
|
||||||
|
|
||||||
|
?>
|
||||||
Loading…
Reference in New Issue
Block a user