dolibarr/htdocs/contact/perso.php

338 lines
10 KiB
PHP
Raw Normal View History

<?php
2005-07-02 13:29:15 +02:00
/* Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
2011-08-20 17:11:31 +02:00
* Copyright (C) 2004-2011 Laurent Destailleur <eldy@users.sourceforge.net>
2012-12-30 15:13:49 +01:00
* Copyright (C) 2005-2012 Regis Houssin <regis.houssin@capnetworks.com>
2004-01-31 12:56:45 +01:00
*
* 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 3 of the License, or
2004-01-31 12:56:45 +01:00
* (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
2011-08-01 01:54:11 +02:00
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2004-01-31 12:56:45 +01:00
*/
2004-12-25 19:37:40 +01:00
/**
2010-03-26 23:11:11 +01:00
* \file htdocs/contact/perso.php
* \ingroup societe
* \brief Onglet informations personnelles d'un contact
*/
require '../main.inc.php';
require_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php';
require_once DOL_DOCUMENT_ROOT.'/core/lib/contact.lib.php';
2004-01-31 12:56:45 +01:00
2018-05-26 20:32:23 +02:00
// Load translation files required by the page
$langs->loadLangs(array('companies', 'other'));
$id = GETPOST('id','int');
$action = GETPOST('action','alpha');
2008-02-25 17:30:43 +01:00
// Security check
2008-02-25 21:03:21 +01:00
if ($user->societe_id) $socid=$user->societe_id;
$result = restrictedArea($user, 'contact', $id, 'socpeople&societe');
$object = new Contact($db);
2008-06-12 13:51:11 +02:00
/*
* Action
*/
if ($action == 'update' && ! $_POST["cancel"] && $user->rights->societe->contact->creer)
2008-06-12 13:51:11 +02:00
{
$ret = $object->fetch($id);
2012-02-05 12:40:08 +01:00
// Note: Correct date should be completed with location to have exact GM time of birth.
$object->birthday = dol_mktime(0,0,0,$_POST["birthdaymonth"],$_POST["birthdayday"],$_POST["birthdayyear"]);
$object->birthday_alert = $_POST["birthday_alert"];
2012-02-05 12:40:08 +01:00
2016-03-26 18:12:03 +01:00
if (GETPOST('deletephoto')) $object->photo='';
elseif (! empty($_FILES['photo']['name'])) $object->photo = dol_sanitizeFileName($_FILES['photo']['name']);
$result = $object->update_perso($id, $user);
if ($result > 0)
{
$object->old_name='';
$object->old_firstname='';
2016-03-26 18:12:03 +01:00
// Logo/Photo save
2016-03-29 20:06:01 +02:00
$dir= $conf->societe->dir_output.'/contact/' . get_exdir($object->id,0,0,1,$object,'contact').'/photos';
2016-03-26 18:12:03 +01:00
$file_OK = is_uploaded_file($_FILES['photo']['tmp_name']);
if ($file_OK)
{
require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
if (GETPOST('deletephoto'))
{
require_once DOL_DOCUMENT_ROOT . '/core/lib/files.lib.php';
2016-03-29 20:06:01 +02:00
$fileimg=$conf->societe->dir_output.'/contact/'.get_exdir($object->id,0,0,1,$object,'contact').'/photos/'.$object->photo;
$dirthumbs=$conf->societe->dir_output.'/contact/'.get_exdir($object->id,0,0,1,$object,'contact').'/photos/thumbs';
2016-03-26 18:12:03 +01:00
dol_delete_file($fileimg);
dol_delete_dir_recursive($dirthumbs);
}
if (image_format_supported($_FILES['photo']['name']) > 0)
{
dol_mkdir($dir);
if (@is_dir($dir))
{
$newfile=$dir.'/'.dol_sanitizeFileName($_FILES['photo']['name']);
if (! dol_move_uploaded_file($_FILES['photo']['tmp_name'],$newfile,1,0,$_FILES['photo']['error']) > 0)
{
setEventMessages($langs->trans("ErrorFailedToSaveFile"), null, 'errors');
}
else
{
// Create thumbs
$object->addThumbs($newfile);
2016-03-26 18:12:03 +01:00
}
}
}
else
{
setEventMessages("ErrorBadImageFormat", null, 'errors');
}
}
else
{
switch($_FILES['photo']['error'])
{
case 1: //uploaded file exceeds the upload_max_filesize directive in php.ini
case 2: //uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the html form
$errors[] = "ErrorFileSizeTooLarge";
break;
case 3: //uploaded file was only partially uploaded
$errors[] = "ErrorFilePartiallyUploaded";
break;
}
}
}
else
{
$error = $object->error;
}
2008-06-12 13:51:11 +02:00
}
2004-01-31 12:56:45 +01:00
/*
2011-08-20 17:11:31 +02:00
* View
*/
$now=dol_now();
2005-07-02 13:29:15 +02:00
$title = (! empty($conf->global->SOCIETE_ADDRESSES_MANAGEMENT) ? $langs->trans("Contacts") : $langs->trans("ContactsAddresses"));
if (! empty($conf->global->MAIN_HTML_TITLE) && preg_match('/contactnameonly/',$conf->global->MAIN_HTML_TITLE) && $object->lastname) $title=$object->lastname;
$help_url='EN:Module_Third_Parties|FR:Module_Tiers|ES:Empresas';
llxHeader('', $title, $helpurl);
2004-01-31 12:56:45 +01:00
$form = new Form($db);
$object->fetch($id, $user);
$head = contact_prepare_head($object);
if ($action == 'edit')
2004-01-31 12:56:45 +01:00
{
/*
* Fiche en mode edition
*/
print '<form name="perso" method="POST" action="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'">';
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
2005-07-02 13:29:15 +02:00
print '<input type="hidden" name="action" value="update">';
print '<input type="hidden" name="id" value="'.$object->id.'">';
2004-01-31 12:56:45 +01:00
dol_fiche_head($head, 'perso', $title, 0, 'contact');
2012-02-05 12:40:08 +01:00
print '<table class="border" width="100%">';
2011-08-20 17:11:31 +02:00
// Ref
2016-08-10 15:01:43 +02:00
print '<tr><td class="titlefieldcreate">'.$langs->trans("Ref").'</td><td colspan="3">';
print $object->id;
2016-03-26 18:12:03 +01:00
print '</td>';
2016-03-26 18:12:03 +01:00
// Photo
2016-08-10 15:01:43 +02:00
print '<td align="center" class="hideonsmartphone" valign="middle" rowspan="6">';
2016-03-26 18:12:03 +01:00
print $form->showphoto('contact',$object)."\n";
if ($object->photo) print "<br>\n";
2016-03-26 18:12:03 +01:00
print '<table class="nobordernopadding">';
2016-03-26 18:12:03 +01:00
if ($object->photo) print '<tr><td align="center"><input type="checkbox" class="flat photodelete" name="deletephoto" id="photodelete"> '.$langs->trans("Delete").'<br><br></td></tr>';
print '<tr><td>'.$langs->trans("PhotoFile").'</td></tr>';
print '<tr><td><input type="file" class="flat" name="photo" id="photoinput"></td></tr>';
print '</table>';
2007-11-05 19:35:45 +01:00
print '</td></tr>';
2009-08-05 19:49:12 +02:00
2011-08-20 17:11:31 +02:00
// Name
2016-08-10 15:01:43 +02:00
print '<tr><td>'.$langs->trans("Lastname").' / '.$langs->trans("Label").'</td><td colspan="3">'.$object->lastname.'</td></tr>';
print '<tr><td>'.$langs->trans("Firstname").'</td><td colspan="3">'.$object->firstname.'</td>';
2007-11-05 19:35:45 +01:00
// Company
if (empty($conf->global->SOCIETE_DISABLE_CONTACTS))
2004-01-31 12:56:45 +01:00
{
if ($object->socid > 0)
{
$objsoc = new Societe($db);
$objsoc->fetch($object->socid);
2014-12-07 18:24:45 +01:00
print '<tr><td>'.$langs->trans("ThirdParty").'</td><td colspan="3">'.$objsoc->getNomUrl(1).'</td>';
}
else
{
2014-12-07 18:24:45 +01:00
print '<tr><td>'.$langs->trans("ThirdParty").'</td><td colspan="3">';
print $langs->trans("ContactNotLinkedToCompany");
print '</td></tr>';
}
}
2009-08-05 19:49:12 +02:00
2011-08-20 17:11:31 +02:00
// Civility
print '<tr><td>'.$langs->trans("UserTitle").'</td><td colspan="3">';
print $object->getCivilityLabel();
print '</td></tr>';
2009-08-05 19:49:12 +02:00
2011-08-20 17:11:31 +02:00
// Date To Birth
print '<tr><td>'.$langs->trans("DateToBirth").'</td><td>';
$form=new Form($db);
print $form->select_date($object->birthday,'birthday',0,0,1,"perso", 1,0,1);
2005-07-02 13:29:15 +02:00
print '</td>';
print '<td colspan="2">'.$langs->trans("Alert").': ';
2012-07-10 22:10:12 +02:00
if (! empty($object->birthday_alert))
2004-01-31 12:56:45 +01:00
{
print '<input type="checkbox" name="birthday_alert" checked></td>';
2004-01-31 12:56:45 +01:00
}
2005-07-02 13:29:15 +02:00
else
2004-01-31 12:56:45 +01:00
{
2005-07-02 13:29:15 +02:00
print '<input type="checkbox" name="birthday_alert"></td>';
2004-01-31 12:56:45 +01:00
}
2005-07-02 13:29:15 +02:00
print '</tr>';
2004-01-31 12:56:45 +01:00
print "</table>";
dol_fiche_end();
2014-11-25 20:13:43 +01:00
print '<div class="center">';
print '<input type="submit" class="button" name="save" value="'.$langs->trans("Save").'">';
2014-11-25 20:13:43 +01:00
print '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;';
print '<input type="submit" class="button" name="cancel" value="'.$langs->trans("Cancel").'">';
2014-11-25 20:13:43 +01:00
print '</div>';
2004-01-31 12:56:45 +01:00
2005-07-02 13:29:15 +02:00
print "</form>";
2004-01-31 12:56:45 +01:00
}
else
{
// View mode
2017-05-23 01:32:19 +02:00
dol_fiche_head($head, 'perso', $title, -1, 'contact');
$linkback = '<a href="'.DOL_URL_ROOT.'/contact/list.php?restore_lastsearch_values=1">'.$langs->trans("BackToList").'</a>';
2016-12-19 16:35:40 +01:00
$morehtmlref='<div class="refidno">';
if (empty($conf->global->SOCIETE_DISABLE_CONTACTS))
{
$objsoc=new Societe($db);
$objsoc->fetch($object->socid);
// Thirdparty
$morehtmlref.=$langs->trans('ThirdParty') . ' : ';
if ($objsoc->id > 0) $morehtmlref.=$objsoc->getNomUrl(1);
else $morehtmlref.=$langs->trans("ContactNotLinkedToCompany");
}
$morehtmlref.='</div>';
2016-12-19 16:35:40 +01:00
dol_banner_tab($object, 'id', $linkback, 1, 'rowid', 'ref', $morehtmlref);
print '<div class="fichecenter">';
print '<div class="underbanner clearboth"></div>';
print '<table class="border centpercent">';
2007-11-05 19:35:45 +01:00
// Company
2016-12-19 16:35:40 +01:00
/*
if (empty($conf->global->SOCIETE_DISABLE_CONTACTS))
{
if ($object->socid > 0)
{
$objsoc = new Societe($db);
$objsoc->fetch($object->socid);
2014-12-07 18:24:45 +01:00
print '<tr><td>'.$langs->trans("ThirdParty").'</td><td colspan="3">'.$objsoc->getNomUrl(1).'</td></tr>';
}
else
{
2014-12-07 18:24:45 +01:00
print '<tr><td>'.$langs->trans("ThirdParty").'</td><td colspan="3">';
print $langs->trans("ContactNotLinkedToCompany");
print '</td></tr>';
}
2016-12-19 16:35:40 +01:00
}*/
2009-08-05 19:49:12 +02:00
2011-08-20 17:11:31 +02:00
// Civility
print '<tr><td class="titlefield">'.$langs->trans("UserTitle").'</td><td colspan="3">';
print $object->getCivilityLabel();
print '</td></tr>';
2009-08-05 19:49:12 +02:00
2011-08-20 17:11:31 +02:00
// Date To Birth
2012-02-05 12:40:08 +01:00
print '<tr>';
2012-07-10 22:10:12 +02:00
if (! empty($object->birthday))
{
include_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
2011-08-20 17:11:31 +02:00
2012-02-05 12:40:08 +01:00
print '<td>'.$langs->trans("DateToBirth").'</td><td colspan="3">'.dol_print_date($object->birthday,"day");
2011-08-20 17:11:31 +02:00
print ' &nbsp; ';
//var_dump($birthdatearray);
2012-02-07 10:25:58 +01:00
$ageyear=convertSecondToTime($now-$object->birthday,'year')-1970;
$agemonth=convertSecondToTime($now-$object->birthday,'month')-1;
2011-08-20 17:11:31 +02:00
if ($ageyear >= 2) print '('.$ageyear.' '.$langs->trans("DurationYears").')';
else if ($agemonth >= 2) print '('.$agemonth.' '.$langs->trans("DurationMonths").')';
else print '('.$agemonth.' '.$langs->trans("DurationMonth").')';
print ' &nbsp; - &nbsp; ';
if ($object->birthday_alert) print $langs->trans("BirthdayAlertOn");
2009-03-10 22:21:45 +01:00
else print $langs->trans("BirthdayAlertOff");
2011-08-20 17:11:31 +02:00
print '</td>';
2005-07-02 13:29:15 +02:00
}
else
{
print '<td>'.$langs->trans("DateToBirth").'</td><td colspan="3"></td>';
2005-07-02 13:29:15 +02:00
}
print "</tr>";
print "</table>";
2005-07-02 13:29:15 +02:00
print '</div>';
dol_fiche_end();
2012-02-05 12:40:08 +01:00
}
2005-07-02 13:29:15 +02:00
2012-02-05 12:40:08 +01:00
if ($action != 'edit')
{
2005-07-02 13:29:15 +02:00
// Barre d'actions
if ($user->societe_id == 0)
2004-01-31 12:56:45 +01:00
{
2005-07-02 13:29:15 +02:00
print '<div class="tabsAction">';
2009-08-05 19:49:12 +02:00
2011-08-20 17:11:31 +02:00
if ($user->rights->societe->contact->creer)
{
print '<a class="butAction" href="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'&amp;action=edit">'.$langs->trans('Modify').'</a>';
}
2004-01-31 12:56:45 +01:00
2005-07-02 13:29:15 +02:00
print "</div>";
2004-01-31 12:56:45 +01:00
}
}
2012-02-05 12:40:08 +01:00
llxFooter();
$db->close();