2004-10-19 22:19:58 +02:00
< ? php
2005-01-04 10:00:29 +01:00
/* Copyright ( C ) 2001 - 2005 Rodolphe Quiedeville < rodolphe @ quiedeville . org >
2014-09-20 00:57:29 +02:00
* Copyright ( C ) 2004 - 2014 Laurent Destailleur < eldy @ users . sourceforge . net >
2005-09-06 09:11:19 +02:00
* Copyright ( C ) 2005 Simon TOSSER < simon @ kornog - computing . com >
2012-12-30 15:11:07 +01:00
* Copyright ( C ) 2005 - 2012 Regis Houssin < regis . houssin @ capnetworks . com >
2014-02-26 16:55:42 +01:00
* Copyright ( C ) 2010 - 2013 Juanjo Menent < jmenent @ 2 byte . es >
2013-06-14 22:33:01 +02:00
* Copyright ( C ) 2013 Florian Henry < florian . henry @ open - concept . pro >
2014-08-08 14:25:14 +02:00
* Copyright ( C ) 2014 Cedric GROSS < c . gross @ kreiz - it . fr >
2002-04-29 20:01:16 +02: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
2013-01-16 15:36:08 +01:00
* the Free Software Foundation ; either version 3 of the License , or
2002-04-29 20:01:16 +02: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 00:21:57 +02:00
* along with this program . If not , see < http :// www . gnu . org / licenses />.
2002-04-29 20:01:16 +02:00
*/
2006-09-16 02:14:11 +02:00
2004-12-25 20:54:16 +01:00
/**
2014-09-18 21:18:25 +02:00
* \file htdocs / comm / action / card . php
2008-10-06 23:31:05 +02:00
* \ingroup agenda
2011-02-02 14:29:54 +01:00
* \brief Page for event card
2008-10-06 23:31:05 +02:00
*/
2006-09-16 02:14:11 +02:00
2012-08-22 23:24:21 +02:00
require '../../main.inc.php' ;
2012-08-22 23:11:24 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/lib/agenda.lib.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/lib/date.lib.php' ;
require_once DOL_DOCUMENT_ROOT . '/contact/class/contact.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/user/class/user.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/comm/action/class/cactioncomm.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/comm/action/class/actioncomm.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/class/html.formactions.class.php' ;
2014-11-04 16:08:07 +01:00
require_once DOL_DOCUMENT_ROOT . '/core/class/html.formfile.class.php' ;
2014-09-29 13:21:03 +02:00
if ( ! empty ( $conf -> projet -> enabled ))
{
2013-06-14 22:33:01 +02:00
require_once DOL_DOCUMENT_ROOT . '/projet/class/project.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/class/html.formprojet.class.php' ;
}
2012-12-08 12:49:20 +01:00
require_once DOL_DOCUMENT_ROOT . '/core/class/extrafields.class.php' ;
2004-10-30 04:01:06 +02:00
$langs -> load ( " companies " );
$langs -> load ( " commercial " );
$langs -> load ( " other " );
2005-04-24 04:11:50 +02:00
$langs -> load ( " bills " );
2006-06-10 18:48:54 +02:00
$langs -> load ( " orders " );
2008-04-15 10:34:36 +02:00
$langs -> load ( " agenda " );
2002-05-09 16:57:48 +02:00
2012-02-27 17:02:56 +01:00
$action = GETPOST ( 'action' , 'alpha' );
2012-07-13 11:40:06 +02:00
$cancel = GETPOST ( 'cancel' , 'alpha' );
2012-02-27 17:02:56 +01:00
$backtopage = GETPOST ( 'backtopage' , 'alpha' );
2012-07-13 11:40:06 +02:00
$contactid = GETPOST ( 'contactid' , 'int' );
2013-08-27 15:51:06 +02:00
$origin = GETPOST ( 'origin' , 'alpha' );
$originid = GETPOST ( 'originid' , 'int' );
2009-08-28 03:14:35 +02:00
2014-09-09 14:38:10 +02:00
$fulldayevent = GETPOST ( 'fullday' );
$datep = dol_mktime ( $fulldayevent ? '00' : GETPOST ( " aphour " ), $fulldayevent ? '00' : GETPOST ( " apmin " ), 0 , GETPOST ( " apmonth " ), GETPOST ( " apday " ), GETPOST ( " apyear " ));
$datef = dol_mktime ( $fulldayevent ? '23' : GETPOST ( " p2hour " ), $fulldayevent ? '59' : GETPOST ( " p2min " ), $fulldayevent ? '59' : '0' , GETPOST ( " p2month " ), GETPOST ( " p2day " ), GETPOST ( " p2year " ));
2008-04-16 03:04:12 +02:00
// Security check
2012-02-27 17:02:56 +01:00
$socid = GETPOST ( 'socid' , 'int' );
$id = GETPOST ( 'id' , 'int' );
2009-04-29 08:22:37 +02:00
if ( $user -> societe_id ) $socid = $user -> societe_id ;
2014-05-10 18:57:04 +02:00
$result = restrictedArea ( $user , 'agenda' , $id , 'actioncomm&societe' , 'myactions|allactions' , 'fk_soc' , 'id' );
2013-09-18 11:56:42 +02:00
if ( $user -> societe_id && $socid ) $result = restrictedArea ( $user , 'societe' , $socid );
2009-04-29 08:22:37 +02:00
2012-02-13 01:43:35 +01:00
$error = GETPOST ( " error " );
2014-10-03 15:58:08 +02:00
$donotclearsession = GETPOST ( 'donotclearsession' ) ? GETPOST ( 'donotclearsession' ) : 0 ;
2005-07-08 00:47:02 +02:00
2008-04-15 10:34:36 +02:00
$cactioncomm = new CActionComm ( $db );
2014-01-30 00:40:00 +01:00
$object = new ActionComm ( $db );
2008-04-15 10:34:36 +02:00
$contact = new Contact ( $db );
2012-12-08 12:49:20 +01:00
$extrafields = new ExtraFields ( $db );
2014-10-27 10:54:50 +01:00
$formfile = new FormFile ( $db );
2012-12-08 12:49:20 +01:00
2013-04-01 19:43:26 +02:00
// fetch optionals attributes and labels
2014-01-30 00:40:00 +01:00
$extralabels = $extrafields -> fetch_name_optionals_label ( $object -> table_element );
2013-04-01 19:43:26 +02:00
2011-04-09 13:52:11 +02:00
//var_dump($_POST);
2009-08-28 03:14:35 +02:00
Add: hooks and triggers for a lot of core modules (action/calendrier, deplacement, dons, tva, contact/tiers, contrat, product lines, expedition, fournisseur commandes et factures, fiche intervention, projet et taches)
Signed-off-by: Stephen L. <lrq3000@gmail.com>
2012-08-14 15:50:45 +02:00
// Initialize technical object to manage hooks of thirdparties. Note that conf->hooks_modules contains array array
2014-10-06 07:20:58 +02:00
$hookmanager -> initHooks ( array ( 'actioncard' , 'globalcard' ));
Add: hooks and triggers for a lot of core modules (action/calendrier, deplacement, dons, tva, contact/tiers, contrat, product lines, expedition, fournisseur commandes et factures, fiche intervention, projet et taches)
Signed-off-by: Stephen L. <lrq3000@gmail.com>
2012-08-14 15:50:45 +02:00
2011-08-24 14:19:32 +02:00
2002-04-29 20:01:16 +02:00
/*
2013-09-25 21:26:06 +02:00
* Actions
2002-04-29 20:01:16 +02:00
*/
2013-09-25 21:26:06 +02:00
2014-09-20 00:57:29 +02:00
// Remove user to assigned list
2014-10-03 18:04:13 +02:00
if ( GETPOST ( 'removedassigned' ) || GETPOST ( 'removedassigned' ) == '0' )
2014-09-20 00:57:29 +02:00
{
2014-10-03 18:04:13 +02:00
$idtoremove = GETPOST ( 'removedassigned' );
2014-09-20 00:57:29 +02:00
if ( ! empty ( $_SESSION [ 'assignedtouser' ])) $tmpassigneduserids = dol_json_decode ( $_SESSION [ 'assignedtouser' ], 1 );
else $tmpassigneduserids = array ();
2014-10-03 18:04:13 +02:00
2014-09-23 16:15:15 +02:00
foreach ( $tmpassigneduserids as $key => $val )
{
2014-10-03 18:04:13 +02:00
if ( $val [ 'id' ] == $idtoremove || $val [ 'id' ] == - 1 ) unset ( $tmpassigneduserids [ $key ]);
2014-09-23 16:15:15 +02:00
}
2014-09-20 00:57:29 +02:00
//var_dump($_POST['removedassigned']);exit;
$_SESSION [ 'assignedtouser' ] = dol_json_encode ( $tmpassigneduserids );
$donotclearsession = 1 ;
if ( $action == 'add' ) $action = 'create' ;
if ( $action == 'update' ) $action = 'edit' ;
}
// Add user to assigned list
if ( GETPOST ( 'addassignedtouser' ) || GETPOST ( 'updateassignedtouser' ))
2014-09-09 14:38:10 +02:00
{
// Add a new user
2014-09-23 12:18:42 +02:00
if ( GETPOST ( 'assignedtouser' ) > 0 )
2014-09-09 14:38:10 +02:00
{
$assignedtouser = array ();
2014-09-23 16:15:15 +02:00
if ( ! empty ( $_SESSION [ 'assignedtouser' ]))
{
$assignedtouser = dol_json_decode ( $_SESSION [ 'assignedtouser' ], true );
}
$assignedtouser [ GETPOST ( 'assignedtouser' )] = array ( 'id' => GETPOST ( 'assignedtouser' ), 'transparency' => GETPOST ( 'transparency' ), 'mandatory' => 1 );
2014-09-09 14:38:10 +02:00
$_SESSION [ 'assignedtouser' ] = dol_json_encode ( $assignedtouser );
}
$donotclearsession = 1 ;
2014-09-20 00:57:29 +02:00
if ( $action == 'add' ) $action = 'create' ;
if ( $action == 'update' ) $action = 'edit' ;
2014-09-09 14:38:10 +02:00
}
2014-09-20 00:57:29 +02:00
// Add event
2014-09-15 19:04:30 +02:00
if ( $action == 'add' )
2002-12-19 19:59:23 +01:00
{
2011-11-07 17:31:03 +01:00
$error = 0 ;
2012-01-04 21:23:50 +01:00
2012-02-27 17:02:56 +01:00
if ( empty ( $backtopage ))
2010-12-13 18:06:04 +01:00
{
2011-03-27 03:20:10 +02:00
if ( $socid > 0 ) $backtopage = DOL_URL_ROOT . '/societe/agenda.php?socid=' . $socid ;
2010-12-13 18:06:04 +01:00
else $backtopage = DOL_URL_ROOT . '/comm/action/index.php' ;
}
2012-07-13 11:40:06 +02:00
if ( $contactid )
2009-03-03 01:20:21 +01:00
{
2012-07-13 11:40:06 +02:00
$result = $contact -> fetch ( $contactid );
2009-03-03 01:20:21 +01:00
}
2009-02-04 21:43:18 +01:00
2012-07-13 11:40:06 +02:00
if ( $cancel )
2008-01-26 14:18:47 +01:00
{
2008-04-17 14:15:20 +02:00
header ( " Location: " . $backtopage );
2009-02-04 21:43:18 +01:00
exit ;
2008-01-26 14:18:47 +01:00
}
2012-09-07 17:23:16 +02:00
$percentage = in_array ( GETPOST ( 'status' ), array ( - 1 , 100 )) ? GETPOST ( 'status' ) : GETPOST ( " percentage " ); // If status is -1 or 100, percentage is not defined and we must use status
2010-11-18 23:17:44 +01:00
// Clean parameters
2014-09-09 14:38:10 +02:00
$datep = dol_mktime ( $fulldayevent ? '00' : GETPOST ( " aphour " ), $fulldayevent ? '00' : GETPOST ( " apmin " ), 0 , GETPOST ( " apmonth " ), GETPOST ( " apday " ), GETPOST ( " apyear " ));
$datef = dol_mktime ( $fulldayevent ? '23' : GETPOST ( " p2hour " ), $fulldayevent ? '59' : GETPOST ( " p2min " ), $fulldayevent ? '59' : '0' , GETPOST ( " p2month " ), GETPOST ( " p2day " ), GETPOST ( " p2year " ));
2010-01-05 00:33:23 +01:00
2010-02-21 15:06:41 +01:00
// Check parameters
2012-09-02 14:26:40 +02:00
if ( ! $datef && $percentage == 100 )
2008-10-06 23:31:05 +02:00
{
2014-09-20 00:57:29 +02:00
$error ++ ; $donotclearsession = 1 ;
2011-04-09 13:52:11 +02:00
$action = 'create' ;
2014-07-20 01:09:43 +02:00
setEventMessage ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " DateEnd " )), 'errors' );
2008-10-06 23:31:05 +02:00
}
2009-02-04 21:43:18 +01:00
2012-12-01 15:45:05 +01:00
if ( empty ( $conf -> global -> AGENDA_USE_EVENT_TYPE ) && ! GETPOST ( 'label' ))
{
2014-09-20 00:57:29 +02:00
$error ++ ; $donotclearsession = 1 ;
2012-12-01 15:45:05 +01:00
$action = 'create' ;
2014-07-20 01:09:43 +02:00
setEventMessage ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " Title " )), 'errors' );
2012-12-01 15:45:05 +01:00
}
2008-04-15 10:34:36 +02:00
// Initialisation objet cactioncomm
2014-10-05 04:51:34 +02:00
if ( ! GETPOST ( 'actioncode' ) > 0 ) // actioncode is id
2009-03-03 01:20:21 +01:00
{
2014-09-20 00:57:29 +02:00
$error ++ ; $donotclearsession = 1 ;
2011-04-09 13:52:11 +02:00
$action = 'create' ;
2014-07-20 01:09:43 +02:00
setEventMessage ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " Type " )), 'errors' );
2009-03-03 01:20:21 +01:00
}
2009-02-04 21:43:18 +01:00
else
2008-04-15 10:34:36 +02:00
{
2014-10-05 04:51:34 +02:00
$object -> type_code = GETPOST ( 'actioncode' );
2008-04-15 10:34:36 +02:00
}
2009-02-04 21:43:18 +01:00
2014-10-05 04:51:34 +02:00
if ( ! $error )
2008-04-15 10:34:36 +02:00
{
2014-10-05 04:51:34 +02:00
// Initialisation objet actioncomm
$object -> priority = GETPOST ( " priority " ) ? GETPOST ( " priority " ) : 0 ;
$object -> fulldayevent = ( ! empty ( $fulldayevent ) ? 1 : 0 );
$object -> location = GETPOST ( " location " );
$object -> label = trim ( GETPOST ( 'label' ));
$object -> fk_element = GETPOST ( " fk_element " );
$object -> elementtype = GETPOST ( " elementtype " );
if ( ! GETPOST ( 'label' ))
2008-04-15 10:34:36 +02:00
{
2014-10-05 04:51:34 +02:00
if ( GETPOST ( 'actioncode' ) == 'AC_RDV' && $contact -> getFullName ( $langs ))
2008-04-15 10:34:36 +02:00
{
2014-10-05 04:51:34 +02:00
$object -> label = $langs -> transnoentitiesnoconv ( " TaskRDVWith " , $contact -> getFullName ( $langs ));
}
else
{
if ( $langs -> trans ( " Action " . $object -> type_code ) != " Action " . $object -> type_code )
{
$object -> label = $langs -> transnoentitiesnoconv ( " Action " . $object -> type_code ) . " \n " ;
}
else $object -> label = $cactioncomm -> libelle ;
2008-04-15 10:34:36 +02:00
}
}
2014-10-05 04:51:34 +02:00
$object -> fk_project = isset ( $_POST [ " projectid " ]) ? $_POST [ " projectid " ] : 0 ;
$object -> datep = $datep ;
$object -> datef = $datef ;
$object -> percentage = $percentage ;
$object -> duree = (( float ) ( GETPOST ( 'dureehour' ) * 60 ) + ( float ) GETPOST ( 'dureemin' )) * 60 ;
2006-09-16 02:14:11 +02:00
2014-10-05 04:51:34 +02:00
$listofuserid = array ();
if ( ! empty ( $_SESSION [ 'assignedtouser' ])) $listofuserid = dol_json_decode ( $_SESSION [ 'assignedtouser' ]);
$i = 0 ;
foreach ( $listofuserid as $key => $value )
2014-09-20 00:57:29 +02:00
{
2014-10-05 04:51:34 +02:00
if ( $i == 0 ) // First entry
2014-09-20 00:57:29 +02:00
{
2014-10-13 00:50:51 +02:00
if ( $value [ 'id' ] > 0 ) $object -> userownerid = $value [ 'id' ];
2014-10-05 04:51:34 +02:00
$object -> transparency = ( GETPOST ( " transparency " ) == 'on' ? 1 : 0 );
2014-09-20 00:57:29 +02:00
}
2014-10-05 04:51:34 +02:00
$object -> userassigned [ $value [ 'id' ]] = array ( 'id' => $value [ 'id' ], 'transparency' => ( GETPOST ( " transparency " ) == 'on' ? 1 : 0 ));
2014-09-20 00:57:29 +02:00
2014-10-05 04:51:34 +02:00
$i ++ ;
}
2008-04-15 10:34:36 +02:00
}
2014-09-20 00:57:29 +02:00
2014-10-05 04:51:34 +02:00
if ( ! $error && ! empty ( $conf -> global -> AGENDA_ENABLE_DONEBY ))
2008-04-15 10:34:36 +02:00
{
2014-10-11 15:04:42 +02:00
if ( GETPOST ( " doneby " ) > 0 ) $object -> userdoneid = GETPOST ( " doneby " , " int " );
2008-04-15 10:34:36 +02:00
}
2009-02-04 21:43:18 +01:00
2014-01-30 00:40:00 +01:00
$object -> note = trim ( $_POST [ " note " ]);
2014-09-24 01:35:29 +02:00
2014-01-30 00:40:00 +01:00
if ( isset ( $_POST [ " contactid " ])) $object -> contact = $contact ;
2014-09-24 01:35:29 +02:00
2012-02-27 22:26:22 +01:00
if ( GETPOST ( 'socid' , 'int' ) > 0 )
2008-04-15 10:34:36 +02:00
{
2014-10-05 04:51:34 +02:00
$object -> socid = GETPOST ( 'socid' , 'int' );
$object -> fetch_thirdparty ();
$object -> societe = $object -> thirdparty ; // For backward compatibility
2008-04-15 10:34:36 +02:00
}
2008-05-07 02:50:24 +02:00
// Special for module webcal and phenix
2013-12-15 14:26:27 +01:00
// TODO external modules
2014-01-30 00:40:00 +01:00
if ( ! empty ( $conf -> webcalendar -> enabled ) && GETPOST ( 'add_webcal' ) == 'on' ) $object -> use_webcal = 1 ;
if ( ! empty ( $conf -> phenix -> enabled ) && GETPOST ( 'add_phenix' ) == 'on' ) $object -> use_phenix = 1 ;
2008-04-15 10:34:36 +02:00
2008-09-09 19:57:12 +02:00
// Check parameters
2014-11-03 20:02:11 +01:00
if ( empty ( $object -> userownerid ) && empty ( $_SESSION [ 'assignedtouser' ]))
2014-09-20 00:57:29 +02:00
{
$error ++ ; $donotclearsession = 1 ;
$action = 'create' ;
2014-11-03 20:02:11 +01:00
setEventMessage ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " ActionsOwnedBy " )), 'errors' );
2014-09-20 00:57:29 +02:00
}
2014-01-30 00:40:00 +01:00
if ( $object -> type_code == 'AC_RDV' && ( $datep == '' || ( $datef == '' && empty ( $fulldayevent ))))
2008-09-09 19:57:12 +02:00
{
2014-09-20 00:57:29 +02:00
$error ++ ; $donotclearsession = 1 ;
2011-04-09 13:52:11 +02:00
$action = 'create' ;
2014-07-20 01:09:43 +02:00
setEventMessage ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " DateEnd " )), 'errors' );
2008-09-09 19:57:12 +02:00
}
2009-02-04 21:43:18 +01:00
2012-08-20 11:04:56 +02:00
if ( ! GETPOST ( 'apyear' ) && ! GETPOST ( 'adyear' ))
2009-03-03 01:20:21 +01:00
{
2014-09-20 00:57:29 +02:00
$error ++ ; $donotclearsession = 1 ;
2011-04-09 13:52:11 +02:00
$action = 'create' ;
2014-07-20 01:09:43 +02:00
setEventMessage ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " Date " )), 'errors' );
2009-03-03 01:20:21 +01:00
}
2013-04-01 19:43:26 +02:00
// Fill array 'array_options' with data from add form
2014-01-30 00:40:00 +01:00
$ret = $extrafields -> setOptionalsFromPost ( $extralabels , $object );
2015-02-26 14:25:30 +01:00
if ( $ret < 0 ) $error ++ ;
2012-12-08 12:49:20 +01:00
2009-03-03 01:20:21 +01:00
if ( ! $error )
{
$db -> begin ();
// On cree l'action
2014-01-30 00:40:00 +01:00
$idaction = $object -> add ( $user );
2009-03-03 01:20:21 +01:00
if ( $idaction > 0 )
{
2014-01-30 00:40:00 +01:00
if ( ! $object -> error )
2009-03-03 01:20:21 +01:00
{
2014-09-23 16:15:15 +02:00
unset ( $_SESSION [ 'assignedtouser' ]);
2014-10-14 00:27:23 +02:00
$moreparam = '' ;
if ( $user -> id != $object -> ownerid ) $moreparam = " usertodo=-1 " ; // We force to remove filter so created record is visible when going back to per user view.
2014-10-13 17:45:52 +02:00
2009-03-03 01:20:21 +01:00
$db -> commit ();
2010-12-13 18:06:04 +01:00
if ( ! empty ( $backtopage ))
2009-03-03 01:20:21 +01:00
{
2014-10-14 00:27:23 +02:00
dol_syslog ( " Back to " . $backtopage . ( $moreparam ? ( preg_match ( '/\?/' , $backtopage ) ? '&' . $moreparam : '?' . $moreparam ) : '' ));
header ( " Location: " . $backtopage . ( $moreparam ? ( preg_match ( '/\?/' , $backtopage ) ? '&' . $moreparam : '?' . $moreparam ) : '' ));
2009-03-03 01:20:21 +01:00
}
elseif ( $idaction )
{
2014-10-14 00:27:23 +02:00
header ( " Location: " . DOL_URL_ROOT . '/comm/action/card.php?id=' . $idaction . ( $moreparam ? '&' . $moreparam : '' ));
2009-03-03 01:20:21 +01:00
}
else
{
2014-10-13 17:45:52 +02:00
header ( " Location: " . DOL_URL_ROOT . '/comm/action/index.php' . ( $moreparam ? '?' . $moreparam : '' ));
2009-03-03 01:20:21 +01:00
}
exit ;
}
else
{
2012-12-30 13:49:37 +01:00
// If error
2009-03-03 01:20:21 +01:00
$db -> rollback ();
2009-01-07 14:40:07 +01:00
$langs -> load ( " errors " );
2014-01-30 00:40:00 +01:00
$error = $langs -> trans ( $object -> error );
2013-05-17 14:45:54 +02:00
setEventMessage ( $error , 'errors' );
2014-09-20 00:57:29 +02:00
$action = 'create' ; $donotclearsession = 1 ;
2009-03-03 01:20:21 +01:00
}
}
else
{
$db -> rollback ();
2014-09-20 00:57:29 +02:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
$action = 'create' ; $donotclearsession = 1 ;
2009-07-22 22:41:50 +02:00
}
2009-03-03 01:20:21 +01:00
}
2003-08-03 14:18:29 +02:00
}
2004-10-02 16:24:43 +02:00
/*
2012-09-02 14:10:51 +02:00
* Action update event
2004-10-02 16:24:43 +02:00
*/
2011-04-09 13:52:11 +02:00
if ( $action == 'update' )
2003-08-03 19:26:19 +02:00
{
2012-08-20 11:04:56 +02:00
if ( empty ( $cancel ))
2009-03-03 01:20:21 +01:00
{
2012-08-20 11:04:56 +02:00
$fulldayevent = GETPOST ( 'fullday' );
$aphour = GETPOST ( 'aphour' );
$apmin = GETPOST ( 'apmin' );
$p2hour = GETPOST ( 'p2hour' );
$p2min = GETPOST ( 'p2min' );
2014-09-15 19:04:30 +02:00
$percentage = in_array ( GETPOST ( 'status' ), array ( - 1 , 100 )) ? GETPOST ( 'status' ) : ( in_array ( GETPOST ( 'complete' ), array ( - 1 , 100 )) ? GETPOST ( 'complete' ) : GETPOST ( " percentage " )); // If status is -1 or 100, percentage is not defined and we must use status
2010-11-18 23:17:44 +01:00
// Clean parameters
2012-08-20 11:04:56 +02:00
if ( $aphour == - 1 ) $aphour = '0' ;
if ( $apmin == - 1 ) $apmin = '0' ;
if ( $p2hour == - 1 ) $p2hour = '0' ;
if ( $p2min == - 1 ) $p2min = '0' ;
2006-09-16 02:14:11 +02:00
2014-01-30 00:40:00 +01:00
$object -> fetch ( $id );
2014-09-23 16:15:15 +02:00
$object -> fetch_userassigned ();
2006-09-10 15:46:25 +02:00
2012-08-20 11:04:56 +02:00
$datep = dol_mktime ( $fulldayevent ? '00' : $aphour , $fulldayevent ? '00' : $apmin , 0 , $_POST [ " apmonth " ], $_POST [ " apday " ], $_POST [ " apyear " ]);
$datef = dol_mktime ( $fulldayevent ? '23' : $p2hour , $fulldayevent ? '59' : $p2min , $fulldayevent ? '59' : '0' , $_POST [ " p2month " ], $_POST [ " p2day " ], $_POST [ " p2year " ]);
2011-08-24 14:19:32 +02:00
2014-10-03 18:04:13 +02:00
$object -> fk_action = dol_getIdFromCode ( $db , GETPOST ( " actioncode " ), 'c_actioncomm' );
2014-10-03 15:58:08 +02:00
$object -> label = GETPOST ( " label " );
2014-01-30 00:40:00 +01:00
$object -> datep = $datep ;
$object -> datef = $datef ;
$object -> percentage = $percentage ;
2014-10-03 15:58:08 +02:00
$object -> priority = GETPOST ( " priority " );
$object -> fulldayevent = GETPOST ( " fullday " ) ? 1 : 0 ;
2014-01-30 00:40:00 +01:00
$object -> location = GETPOST ( 'location' );
2014-10-03 15:58:08 +02:00
$object -> socid = GETPOST ( " socid " );
2014-10-03 18:04:13 +02:00
$object -> contactid = GETPOST ( " contactid " , 'int' );
2014-09-29 13:21:03 +02:00
//$object->societe->id = $_POST["socid"]; // deprecated
//$object->contact->id = $_POST["contactid"]; // deprecated
2014-10-03 18:04:13 +02:00
$object -> fk_project = GETPOST ( " projectid " , 'int' );
2014-10-03 15:58:08 +02:00
$object -> note = GETPOST ( " note " );
$object -> pnote = GETPOST ( " note " );
$object -> fk_element = GETPOST ( " fk_element " );
$object -> elementtype = GETPOST ( " elementtype " );
2014-09-15 19:04:30 +02:00
2012-09-02 14:10:51 +02:00
if ( ! $datef && $percentage == 100 )
2009-03-03 01:20:21 +01:00
{
2014-09-20 00:57:29 +02:00
$error ++ ; $donotclearsession = 1 ;
setEventMessages ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " DateEnd " )), $object -> errors , 'errors' );
2011-04-09 13:52:11 +02:00
$action = 'edit' ;
2009-03-03 01:20:21 +01:00
}
2014-09-29 13:21:03 +02:00
$transparency = ( GETPOST ( " transparency " ) == 'on' ? 1 : 0 );
2008-02-11 16:51:03 +01:00
// Users
2014-09-23 16:15:15 +02:00
$listofuserid = array ();
2014-09-29 13:21:03 +02:00
if ( ! empty ( $_SESSION [ 'assignedtouser' ])) // Now concat assigned users
2008-02-11 16:51:03 +01:00
{
2014-09-23 16:15:15 +02:00
// Restore array with key with same value than param 'id'
$tmplist1 = dol_json_decode ( $_SESSION [ 'assignedtouser' ], true ); $tmplist2 = array ();
foreach ( $tmplist1 as $key => $val )
2014-09-20 00:57:29 +02:00
{
2014-10-03 18:25:38 +02:00
if ( $val [ 'id' ] > 0 && $val [ 'id' ] != $assignedtouser ) $listofuserid [ $val [ 'id' ]] = $val ;
2014-09-20 00:57:29 +02:00
}
2014-09-23 16:15:15 +02:00
}
2014-10-14 00:27:23 +02:00
else {
$assignedtouser = ( ! empty ( $object -> userownerid ) && $object -> userownerid > 0 ? $object -> userownerid : 0 );
if ( $assignedtouser ) $listofuserid [ $assignedtouser ] = array ( 'id' => $assignedtouser , 'mandatory' => 0 , 'transparency' => ( $user -> id == $assignedtouser ? $transparency : '' )); // Owner first
}
2014-09-20 00:57:29 +02:00
2014-10-14 00:27:23 +02:00
$object -> userassigned = array (); $object -> userownerid = 0 ; // Clear old content
$i = 0 ;
2014-09-23 16:15:15 +02:00
foreach ( $listofuserid as $key => $val )
{
2014-10-14 00:27:23 +02:00
if ( $i == 0 ) $object -> userownerid = $val [ 'id' ];
2014-09-29 13:21:03 +02:00
$object -> userassigned [ $val [ 'id' ]] = array ( 'id' => $val [ 'id' ], 'mandatory' => 0 , 'transparency' => ( $user -> id == $val [ 'id' ] ? $transparency : '' ));
2014-10-14 00:27:23 +02:00
$i ++ ;
2008-02-11 16:51:03 +01:00
}
2013-04-06 17:39:31 +02:00
2014-09-20 00:57:29 +02:00
if ( ! empty ( $conf -> global -> AGENDA_ENABLE_DONEBY ))
2008-02-11 16:51:03 +01:00
{
2014-10-11 15:04:42 +02:00
if ( GETPOST ( " doneby " )) $object -> userdoneid = GETPOST ( " doneby " , " int " );
2014-09-20 00:57:29 +02:00
}
// Check parameters
if ( ! GETPOST ( 'actioncode' ) > 0 )
{
$error ++ ; $donotclearsession = 1 ;
$action = 'edit' ;
setEventMessage ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " Type " )), 'errors' );
}
else
{
$result = $cactioncomm -> fetch ( GETPOST ( 'actioncode' ));
}
2014-10-11 15:04:42 +02:00
if ( empty ( $object -> userownerid ))
2014-09-20 00:57:29 +02:00
{
$error ++ ; $donotclearsession = 1 ;
$action = 'edit' ;
2014-11-03 20:02:11 +01:00
setEventMessage ( $langs -> trans ( " ErrorFieldRequired " , $langs -> transnoentitiesnoconv ( " ActionsOwnedBy " )), 'errors' );
2008-02-11 16:51:03 +01:00
}
2013-04-01 19:43:26 +02:00
// Fill array 'array_options' with data from add form
2014-01-30 00:40:00 +01:00
$ret = $extrafields -> setOptionalsFromPost ( $extralabels , $object );
2015-02-26 14:25:30 +01:00
if ( $ret < 0 ) $error ++ ;
2012-12-21 17:56:40 +01:00
2008-04-16 03:04:12 +02:00
if ( ! $error )
{
$db -> begin ();
2009-01-04 23:19:25 +01:00
2014-01-30 00:40:00 +01:00
$result = $object -> update ( $user );
2009-02-04 21:43:18 +01:00
2008-04-16 03:04:12 +02:00
if ( $result > 0 )
{
2014-09-23 16:15:15 +02:00
unset ( $_SESSION [ 'assignedtouser' ]);
2008-04-16 03:04:12 +02:00
$db -> commit ();
}
else
{
2014-09-20 00:57:29 +02:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2008-04-16 03:04:12 +02:00
$db -> rollback ();
2009-02-04 21:43:18 +01:00
}
2008-04-16 03:04:12 +02:00
}
2009-03-03 01:20:21 +01:00
}
2006-09-16 02:14:11 +02:00
2014-09-20 00:57:29 +02:00
if ( ! $error )
2009-03-03 01:20:21 +01:00
{
2012-02-27 17:02:56 +01:00
if ( ! empty ( $backtopage ))
2010-12-13 18:06:04 +01:00
{
2014-09-23 16:15:15 +02:00
unset ( $_SESSION [ 'assignedtouser' ]);
2012-02-27 17:02:56 +01:00
header ( " Location: " . $backtopage );
2010-12-13 18:06:04 +01:00
exit ;
}
2009-03-03 01:20:21 +01:00
}
2003-08-03 19:26:19 +02:00
}
2003-08-03 14:18:29 +02:00
2014-09-20 00:57:29 +02:00
/*
* delete event
*/
if ( $action == 'confirm_delete' && GETPOST ( " confirm " ) == 'yes' )
{
$object -> fetch ( $id );
if ( $user -> rights -> agenda -> myactions -> delete
|| $user -> rights -> agenda -> allactions -> delete )
{
$result = $object -> delete ();
if ( $result >= 0 )
{
header ( " Location: index.php " );
exit ;
}
else
{
setEventMessages ( $object -> error , $object -> errors , 'errors' );
}
}
}
2014-08-08 14:25:14 +02:00
/*
* Action move update , used when user move an event in calendar by drag ' n drop
*/
if ( $action == 'mupdate' )
{
$object -> fetch ( $id );
2014-09-23 16:15:15 +02:00
$object -> fetch_userassigned ();
2014-08-08 14:25:14 +02:00
$shour = dol_print_date ( $object -> datep , " %H " );
$smin = dol_print_date ( $object -> datep , " %M " );
2014-09-07 19:56:17 +02:00
2014-08-08 14:25:14 +02:00
$newdate = GETPOST ( 'newdate' , 'alpha' );
if ( empty ( $newdate ) || strpos ( $newdate , 'dayevent_' ) != 0 )
{
2014-09-07 19:56:17 +02:00
header ( " Location: " . $backtopage );
2014-08-08 14:25:14 +02:00
exit ;
}
2011-04-09 13:52:11 +02:00
2014-08-08 15:00:03 +02:00
$datep = dol_mktime ( $shour , $smin , 0 , substr ( $newdate , 13 , 2 ), substr ( $newdate , 15 , 2 ), substr ( $newdate , 9 , 4 ));
2014-08-08 14:25:14 +02:00
if ( $datep != $object -> datep )
2014-09-07 19:56:17 +02:00
{
2014-08-08 14:25:14 +02:00
if ( ! empty ( $object -> datef ))
{
$object -> datef += $datep - $object -> datep ;
}
$object -> datep = $datep ;
$result = $object -> update ( $user );
if ( $result < 0 )
{
setEventMessage ( $object -> error , 'errors' );
setEventMessage ( $object -> errors , 'errors' );
2014-09-07 19:56:17 +02:00
}
2014-08-08 14:25:14 +02:00
}
if ( ! empty ( $backtopage ))
{
header ( " Location: " . $backtopage );
exit ;
}
2014-09-07 19:56:17 +02:00
else
2014-08-08 14:25:14 +02:00
{
$action = '' ;
}
2014-09-07 19:56:17 +02:00
2014-08-08 14:25:14 +02:00
}
2014-09-07 19:56:17 +02:00
2008-10-06 23:31:05 +02:00
/*
* View
*/
2009-08-24 19:11:30 +02:00
$help_url = 'EN:Module_Agenda_En|FR:Module_Agenda|ES:M&omodulodulo_Agenda' ;
llxHeader ( '' , $langs -> trans ( " Agenda " ), $help_url );
2004-08-07 01:39:54 +02:00
2011-11-08 10:18:45 +01:00
$form = new Form ( $db );
2015-02-03 08:59:57 +01:00
$formfile = new FormFile ( $db );
2014-06-26 20:24:00 +02:00
$formactions = new FormActions ( $db );
2004-08-07 01:39:54 +02:00
2011-04-09 13:52:11 +02:00
if ( $action == 'create' )
2003-08-03 19:26:19 +02:00
{
2009-03-07 02:19:28 +01:00
$contact = new Contact ( $db );
2010-09-12 22:59:38 +02:00
if ( GETPOST ( " contactid " ))
2006-09-05 01:55:19 +02:00
{
2010-08-29 20:23:56 +02:00
$result = $contact -> fetch ( GETPOST ( " contactid " ));
2009-03-07 02:19:28 +01:00
if ( $result < 0 ) dol_print_error ( $db , $contact -> error );
2006-09-05 01:55:19 +02:00
}
2003-08-29 22:22:27 +02:00
2013-02-19 13:24:32 +01:00
dol_set_focus ( " #label " );
2013-04-03 18:37:54 +02:00
2012-07-13 11:40:06 +02:00
if ( ! empty ( $conf -> use_javascript_ajax ))
2010-08-29 20:23:56 +02:00
{
2012-11-13 16:20:15 +01:00
print " \n " . '<script type="text/javascript">' ;
print ' $ ( document ) . ready ( function () {
function setdatefields ()
{
if ( $ ( " #fullday:checked " ) . val () == null ) {
$ ( " .fulldaystarthour " ) . removeAttr ( " disabled " );
$ ( " .fulldaystartmin " ) . removeAttr ( " disabled " );
$ ( " .fulldayendhour " ) . removeAttr ( " disabled " );
$ ( " .fulldayendmin " ) . removeAttr ( " disabled " );
2012-12-01 15:45:05 +01:00
$ ( " #p2 " ) . removeAttr ( " disabled " );
2012-11-13 16:20:15 +01:00
} else {
$ ( " .fulldaystarthour " ) . attr ( " disabled " , " disabled " ) . val ( " 00 " );
$ ( " .fulldaystartmin " ) . attr ( " disabled " , " disabled " ) . val ( " 00 " );
$ ( " .fulldayendhour " ) . attr ( " disabled " , " disabled " ) . val ( " 23 " );
$ ( " .fulldayendmin " ) . attr ( " disabled " , " disabled " ) . val ( " 59 " );
2013-04-04 19:57:16 +02:00
$ ( " #p2 " ) . removeAttr ( " disabled " );
2012-11-13 16:20:15 +01:00
}
}
2010-11-18 23:17:44 +01:00
setdatefields ();
2012-11-13 16:20:15 +01:00
$ ( " #fullday " ) . change ( function () {
2010-11-18 23:17:44 +01:00
setdatefields ();
2010-08-29 20:23:56 +02:00
});
2012-11-13 16:20:15 +01:00
$ ( " #selectcomplete " ) . change ( function () {
if ( $ ( " #selectcomplete " ) . val () == 100 )
2011-03-19 20:06:15 +01:00
{
2012-11-13 16:20:15 +01:00
if ( $ ( " #doneby " ) . val () <= 0 ) $ ( " #doneby " ) . val ( \ '' . $user -> id . ' \ ' );
2011-03-19 20:06:15 +01:00
}
2012-11-13 16:20:15 +01:00
if ( $ ( " #selectcomplete " ) . val () == 0 )
2011-03-19 20:06:15 +01:00
{
2012-11-13 16:20:15 +01:00
$ ( " #doneby " ) . val ( - 1 );
2011-03-19 20:06:15 +01:00
}
});
2012-11-13 16:20:15 +01:00
$ ( " #actioncode " ) . change ( function () {
if ( $ ( " #actioncode " ) . val () == \ ' AC_RDV\ ' ) $ ( " #dateend " ) . addClass ( " fieldrequired " );
else $ ( " #dateend " ) . removeClass ( " fieldrequired " );
2011-04-09 13:52:11 +02:00
});
2010-08-29 20:23:56 +02:00
}) ' ;
print '</script>' . " \n " ;
}
2012-11-13 16:20:15 +01:00
print '<form name="formaction" action="' . $_SERVER [ 'PHP_SELF' ] . '" method="POST">' ;
2009-05-17 10:01:54 +02:00
print '<input type="hidden" name="token" value="' . $_SESSION [ 'newtoken' ] . '">' ;
2014-09-15 19:04:30 +02:00
print '<input type="hidden" name="action" value="add">' ;
2014-10-03 15:58:08 +02:00
print '<input type="hidden" name="donotclearsession" value="1">' ;
2012-05-12 15:53:57 +02:00
if ( $backtopage ) print '<input type="hidden" name="backtopage" value="' . ( $backtopage != '1' ? $backtopage : $_SERVER [ " HTTP_REFERER " ]) . '">' ;
2014-10-05 04:51:34 +02:00
if ( empty ( $conf -> global -> AGENDA_USE_EVENT_TYPE )) print '<input type="hidden" name="actioncode" value="' . dol_getIdFromCode ( $db , 'AC_OTH' , 'c_actioncomm' ) . '">' ;
2002-05-09 16:57:48 +02:00
2012-01-08 00:15:36 +01:00
if ( GETPOST ( " actioncode " ) == 'AC_RDV' ) print_fiche_titre ( $langs -> trans ( " AddActionRendezVous " ));
else print_fiche_titre ( $langs -> trans ( " AddAnAction " ));
2004-08-07 01:39:54 +02:00
2008-04-16 03:04:12 +02:00
print '<table class="border" width="100%">' ;
2009-02-04 21:43:18 +01:00
2014-10-03 18:04:13 +02:00
// Type of event
2012-12-01 15:45:05 +01:00
if ( ! empty ( $conf -> global -> AGENDA_USE_EVENT_TYPE ))
2008-04-16 03:04:12 +02:00
{
2012-12-01 15:45:05 +01:00
print '<tr><td width="30%"><span class="fieldrequired">' . $langs -> trans ( " Type " ) . '</span></b></td><td>' ;
2014-06-26 20:24:00 +02:00
$formactions -> select_type_actions ( GETPOST ( " actioncode " ) ? GETPOST ( " actioncode " ) : $object -> type_code , " actioncode " , " systemauto " );
2012-12-01 15:45:05 +01:00
print '</td></tr>' ;
2008-04-16 03:04:12 +02:00
}
2005-02-09 22:15:28 +01:00
2008-09-09 19:57:12 +02:00
// Title
2013-02-19 13:24:32 +01:00
print '<tr><td' . ( empty ( $conf -> global -> AGENDA_USE_EVENT_TYPE ) ? ' class="fieldrequired"' : '' ) . '>' . $langs -> trans ( " Title " ) . '</td><td><input type="text" id="label" name="label" size="60" value="' . GETPOST ( 'label' ) . '"></td></tr>' ;
2009-02-04 21:43:18 +01:00
2010-11-18 23:17:44 +01:00
// Full day
2014-09-07 20:22:02 +02:00
print '<tr><td>' . $langs -> trans ( " EventOnFullDay " ) . '</td><td><input type="checkbox" id="fullday" name="fullday" ' . ( GETPOST ( 'fullday' ) ? ' checked="checked"' : '' ) . '></td></tr>' ;
2013-12-15 14:26:27 +01:00
2010-11-08 02:25:36 +01:00
// Date start
2014-09-09 14:38:10 +02:00
$datep = ( $datep ? $datep : $object -> datep );
2010-11-21 17:11:52 +01:00
if ( GETPOST ( 'datep' , 'int' , 1 )) $datep = dol_stringtotime ( GETPOST ( 'datep' , 'int' , 1 ), 0 );
2013-04-25 01:13:13 +02:00
print '<tr><td width="30%" class="nowrap"><span class="fieldrequired">' . $langs -> trans ( " DateActionStart " ) . '</span></td><td>' ;
2011-11-08 10:18:45 +01:00
if ( GETPOST ( " afaire " ) == 1 ) $form -> select_date ( $datep , 'ap' , 1 , 1 , 0 , " action " , 1 , 1 , 0 , 0 , 'fulldayend' );
else if ( GETPOST ( " afaire " ) == 2 ) $form -> select_date ( $datep , 'ap' , 1 , 1 , 1 , " action " , 1 , 1 , 0 , 0 , 'fulldayend' );
else $form -> select_date ( $datep , 'ap' , 1 , 1 , 1 , " action " , 1 , 1 , 0 , 0 , 'fulldaystart' );
2010-11-08 02:25:36 +01:00
print '</td></tr>' ;
2014-09-09 14:38:10 +02:00
2010-11-08 02:25:36 +01:00
// Date end
2014-09-09 14:38:10 +02:00
$datef = ( $datef ? $datef : $object -> datef );
2010-11-21 17:11:52 +01:00
if ( GETPOST ( 'datef' , 'int' , 1 )) $datef = dol_stringtotime ( GETPOST ( 'datef' , 'int' , 1 ), 0 );
2014-09-15 10:19:08 +02:00
if ( empty ( $datef ) && ! empty ( $datep ) && ! empty ( $conf -> global -> AGENDA_AUTOSET_END_DATE_WITH_DELTA_HOURS ))
{
$datef = dol_time_plus_duree ( $datep , $conf -> global -> AGENDA_AUTOSET_END_DATE_WITH_DELTA_HOURS , 'h' );
}
2011-04-09 13:52:11 +02:00
print '<tr><td><span id="dateend"' . ( GETPOST ( " actioncode " ) == 'AC_RDV' ? ' class="fieldrequired"' : '' ) . '>' . $langs -> trans ( " DateActionEnd " ) . '</span></td><td>' ;
2011-11-08 10:18:45 +01:00
if ( GETPOST ( " afaire " ) == 1 ) $form -> select_date ( $datef , 'p2' , 1 , 1 , 1 , " action " , 1 , 1 , 0 , 0 , 'fulldayend' );
else if ( GETPOST ( " afaire " ) == 2 ) $form -> select_date ( $datef , 'p2' , 1 , 1 , 1 , " action " , 1 , 1 , 0 , 0 , 'fulldayend' );
else $form -> select_date ( $datef , 'p2' , 1 , 1 , 1 , " action " , 1 , 1 , 0 , 0 , 'fulldayend' );
2010-11-08 02:25:36 +01:00
print '</td></tr>' ;
2010-11-20 19:41:09 +01:00
// Status
2010-11-08 02:25:36 +01:00
print '<tr><td width="10%">' . $langs -> trans ( " Status " ) . ' / ' . $langs -> trans ( " Percentage " ) . '</td>' ;
print '<td>' ;
2011-03-19 20:06:15 +01:00
$percent =- 1 ;
2014-09-09 14:38:10 +02:00
if ( isset ( $_GET [ 'status' ]) || isset ( $_POST [ 'status' ])) $percent = GETPOST ( 'status' );
else if ( isset ( $_GET [ 'percentage' ]) || isset ( $_POST [ 'percentage' ])) $percent = GETPOST ( 'percentage' );
2010-11-08 02:25:36 +01:00
else
{
2014-09-09 14:38:10 +02:00
if ( GETPOST ( 'complete' ) == '0' || GETPOST ( " afaire " ) == 1 ) $percent = '0' ;
else if ( GETPOST ( 'complete' ) == 100 || GETPOST ( " afaire " ) == 2 ) $percent = 100 ;
2010-11-08 02:25:36 +01:00
}
2014-06-26 20:24:00 +02:00
$formactions -> form_select_status_action ( 'formaction' , $percent , 1 , 'complete' );
2010-11-08 02:25:36 +01:00
print '</td></tr>' ;
2010-11-20 19:41:09 +01:00
// Location
2014-09-22 20:16:58 +02:00
if ( empty ( $conf -> global -> AGENDA_DISABLE_LOCATION ))
{
print '<tr><td>' . $langs -> trans ( " Location " ) . '</td><td colspan="3"><input type="text" name="location" size="50" value="' . ( GETPOST ( 'location' ) ? GETPOST ( 'location' ) : $object -> location ) . '"></td></tr>' ;
}
2010-11-20 19:41:09 +01:00
2014-08-03 23:32:36 +02:00
// Assigned to
print '<tr><td class="nowrap">' . $langs -> trans ( " ActionAffectedTo " ) . '</td><td>' ;
2014-09-23 16:15:15 +02:00
$listofuserid = array ();
2014-09-09 14:38:10 +02:00
if ( empty ( $donotclearsession ))
{
2014-09-29 13:21:03 +02:00
$assignedtouser = GETPOST ( " assignedtouser " ) ? GETPOST ( " assignedtouser " ) : ( ! empty ( $object -> userownerid ) && $object -> userownerid > 0 ? $object -> userownerid : $user -> id );
2014-09-23 16:15:15 +02:00
if ( $assignedtouser ) $listofuserid [ $assignedtouser ] = array ( 'id' => $assignedtouser , 'mandatory' => 0 , 'transparency' => $object -> transparency ); // Owner first
$_SESSION [ 'assignedtouser' ] = dol_json_encode ( $listofuserid );
2014-09-09 14:38:10 +02:00
}
2014-10-05 03:44:20 +02:00
else
{
if ( ! empty ( $_SESSION [ 'assignedtouser' ]))
{
$listofuserid = dol_json_decode ( $_SESSION [ 'assignedtouser' ], true );
}
}
2014-12-23 17:46:30 +01:00
print $form -> select_dolusers_forevent (( $action == 'create' ? 'add' : 'update' ), 'assignedtouser' , 1 , '' , 0 , '' , '' , 0 , 0 , 0 , 'AND u.statut != 0' );
2014-10-05 03:44:20 +02:00
if ( in_array ( $user -> id , array_keys ( $listofuserid ))) print $langs -> trans ( " MyAvailability " ) . ': <input id="transparency" type="checkbox" name="transparency"' . ((( ! isset ( $_GET [ 'transparency' ]) && ! isset ( $_POST [ 'transparency' ])) || GETPOST ( 'transparency' )) ? ' checked="checked"' : '' ) . '> ' . $langs -> trans ( " Busy " );
2013-06-05 16:24:32 +02:00
print '</td></tr>' ;
2013-04-06 17:39:31 +02:00
2010-11-08 02:25:36 +01:00
// Realised by
2014-09-20 00:57:29 +02:00
if ( ! empty ( $conf -> global -> AGENDA_ENABLE_DONEBY ))
2013-04-06 17:39:31 +02:00
{
2013-07-19 14:23:42 +02:00
print '<tr><td class="nowrap">' . $langs -> trans ( " ActionDoneBy " ) . '</td><td>' ;
2014-09-29 13:21:03 +02:00
print $form -> select_dolusers ( GETPOST ( " doneby " ) ? GETPOST ( " doneby " ) : ( ! empty ( $object -> userdoneid ) && $percent == 100 ? $object -> userdoneid : 0 ), 'doneby' , 1 );
2013-04-06 17:39:31 +02:00
print '</td></tr>' ;
}
2010-11-08 02:25:36 +01:00
print '</table>' ;
2012-02-13 02:24:17 +01:00
print '<br><br>' ;
2010-11-08 02:25:36 +01:00
print '<table class="border" width="100%">' ;
2009-02-04 21:43:18 +01:00
2008-04-16 03:04:12 +02:00
// Societe, contact
2013-04-25 01:13:13 +02:00
print '<tr><td width="30%" class="nowrap">' . $langs -> trans ( " ActionOnCompany " ) . '</td><td>' ;
2012-02-27 22:26:22 +01:00
if ( GETPOST ( 'socid' , 'int' ) > 0 )
2008-04-16 03:04:12 +02:00
{
$societe = new Societe ( $db );
2012-02-27 22:26:22 +01:00
$societe -> fetch ( GETPOST ( 'socid' , 'int' ));
2008-04-16 03:04:12 +02:00
print $societe -> getNomUrl ( 1 );
2014-09-15 17:34:32 +02:00
print '<input type="hidden" id="socid" name="socid" value="' . GETPOST ( 'socid' , 'int' ) . '">' ;
2008-04-16 03:04:12 +02:00
}
else
{
2013-12-15 14:26:27 +01:00
2013-10-01 18:11:53 +02:00
$events = array ();
$events [] = array ( 'method' => 'getContacts' , 'url' => dol_buildpath ( '/core/ajax/contacts.php' , 1 ), 'htmlname' => 'contactid' , 'params' => array ( 'add-customer-contact' => 'disabled' ));
2013-01-09 20:34:36 +01:00
//For external user force the company to user company
if ( ! empty ( $user -> societe_id )) {
2014-11-13 16:46:40 +01:00
print $form -> select_thirdparty_list ( $user -> societe_id , 'socid' , '' , 1 , 1 , 0 , $events );
2013-01-09 20:34:36 +01:00
} else {
2014-11-13 16:46:40 +01:00
print $form -> select_thirdparty_list ( '' , 'socid' , '' , 1 , 1 , 0 , $events );
2013-01-09 20:34:36 +01:00
}
2013-02-12 15:01:16 +01:00
2008-04-16 03:04:12 +02:00
}
print '</td></tr>' ;
2006-09-16 02:14:11 +02:00
2013-10-01 18:11:53 +02:00
print '<tr><td class="nowrap">' . $langs -> trans ( " ActionOnContact " ) . '</td><td>' ;
$form -> select_contacts ( GETPOST ( 'socid' , 'int' ), GETPOST ( 'contactid' ), 'contactid' , 1 );
print '</td></tr>' ;
2013-12-15 14:26:27 +01:00
2006-09-05 01:55:19 +02:00
2010-01-05 00:33:23 +01:00
// Project
2012-07-13 11:40:06 +02:00
if ( ! empty ( $conf -> projet -> enabled ))
2010-01-05 00:33:23 +01:00
{
2013-06-14 22:33:01 +02:00
$formproject = new FormProjets ( $db );
2013-06-16 23:15:20 +02:00
2010-01-05 00:33:23 +01:00
// Projet associe
2014-01-26 18:43:30 +01:00
$langs -> load ( " projects " );
2010-01-05 00:33:23 +01:00
print '<tr><td valign="top">' . $langs -> trans ( " Project " ) . '</td><td>' ;
2013-06-16 23:15:20 +02:00
2013-06-14 22:33:01 +02:00
$numproject = $formproject -> select_projects (( ! empty ( $societe -> id ) ? $societe -> id : 0 ), GETPOST ( " projectid " ) ? GETPOST ( " projectid " ) : '' , 'projectid' );
2010-03-11 15:31:16 +01:00
if ( $numproject == 0 )
2010-01-05 00:33:23 +01:00
{
2014-09-18 21:18:25 +02:00
print ' <a href="' . DOL_URL_ROOT . '/projet/card.php?socid=' . $societe -> id . '&action=create">' . $langs -> trans ( " AddProject " ) . '</a>' ;
2010-01-05 00:33:23 +01:00
}
print '</td></tr>' ;
}
2013-08-27 15:51:06 +02:00
if ( ! empty ( $origin ) && ! empty ( $originid ))
{
2015-04-23 15:54:49 +02:00
include_once DOL_DOCUMENT_ROOT . '/core/lib/functions2.lib.php' ;
print '<tr><td>' . $langs -> trans ( " LinkedObject " ) . '</td>' ;
print '<td colspan="3">' . dolGetElementUrl ( $originid , $origin , 1 ) . '</td></tr>' ;
2013-08-27 15:51:06 +02:00
print '<input type="hidden" name="fk_element" size="10" value="' . GETPOST ( 'originid' ) . '">' ;
print '<input type="hidden" name="elementtype" size="10" value="' . GETPOST ( 'origin' ) . '">' ;
}
2010-01-05 00:33:23 +01:00
2010-08-29 20:23:56 +02:00
if ( GETPOST ( " datep " ) && preg_match ( '/^([0-9][0-9][0-9][0-9])([0-9][0-9])([0-9][0-9])$/' , GETPOST ( " datep " ), $reg ))
2008-04-16 03:04:12 +02:00
{
2014-01-30 00:40:00 +01:00
$object -> datep = dol_mktime ( 0 , 0 , 0 , $reg [ 2 ], $reg [ 3 ], $reg [ 1 ]);
2003-08-03 19:26:19 +02:00
}
2006-09-05 01:55:19 +02:00
2008-10-06 23:31:05 +02:00
// Priority
2013-07-19 14:23:42 +02:00
print '<tr><td class="nowrap">' . $langs -> trans ( " Priority " ) . '</td><td colspan="3">' ;
2014-01-30 00:40:00 +01:00
print '<input type="text" name="priority" value="' . ( GETPOST ( 'priority' ) ? GETPOST ( 'priority' ) : ( $object -> priority ? $object -> priority : '' )) . '" size="5">' ;
2008-10-06 23:31:05 +02:00
print '</td></tr>' ;
2004-10-02 16:24:43 +02:00
2010-11-20 19:41:09 +01:00
// Description
print '<tr><td valign="top">' . $langs -> trans ( " Description " ) . '</td><td>' ;
2012-08-22 23:11:24 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/class/doleditor.class.php' ;
2014-09-09 14:38:10 +02:00
$doleditor = new DolEditor ( 'note' ,( GETPOST ( 'note' ) ? GETPOST ( 'note' ) : $object -> note ), '' , 180 , 'dolibarr_notes' , 'In' , true , true , $conf -> fckeditor -> enabled , ROWS_6 , 90 );
2010-11-20 19:41:09 +01:00
$doleditor -> Create ();
print '</td></tr>' ;
2013-12-15 14:26:27 +01:00
2005-09-07 00:37:37 +02:00
2012-12-08 12:49:20 +01:00
// Other attributes
2014-01-30 00:40:00 +01:00
$parameters = array ( 'id' => $object -> id );
$reshook = $hookmanager -> executeHooks ( 'formObjectOptions' , $parameters , $object , $action ); // Note that $action and $object may have been modified by hook
Add: hooks and triggers for a lot of core modules (action/calendrier, deplacement, dons, tva, contact/tiers, contrat, product lines, expedition, fournisseur commandes et factures, fiche intervention, projet et taches)
Signed-off-by: Stephen L. <lrq3000@gmail.com>
2012-08-14 15:50:45 +02:00
2010-02-25 22:28:17 +01:00
2012-12-08 12:49:20 +01:00
if ( empty ( $reshook ) && ! empty ( $extrafields -> attribute_label ))
{
2014-01-30 00:40:00 +01:00
print $object -> showOptionals ( $extrafields , 'edit' );
2012-12-08 12:49:20 +01:00
}
2013-04-03 18:37:54 +02:00
2013-04-01 19:43:26 +02:00
print '</table>' ;
2012-12-08 12:49:20 +01:00
2014-11-25 20:13:43 +01:00
print '<br><div class="center">' ;
2008-04-16 03:04:12 +02:00
print '<input type="submit" class="button" value="' . $langs -> trans ( " Add " ) . '">' ;
2014-11-25 20:13:43 +01:00
print ' ' ;
2008-04-16 03:04:12 +02:00
print '<input type="submit" class="button" name="cancel" value="' . $langs -> trans ( " Cancel " ) . '">' ;
2014-11-25 20:13:43 +01:00
print '</div>' ;
2003-05-25 18:32:02 +02:00
2006-09-05 01:55:19 +02:00
print " </form> " ;
2002-04-29 20:01:16 +02:00
}
2004-08-07 01:39:54 +02:00
2010-11-18 23:17:44 +01:00
// View or edit
2012-12-30 13:49:37 +01:00
if ( $id > 0 )
2002-12-19 19:59:23 +01:00
{
2014-09-23 16:15:15 +02:00
$result1 = $object -> fetch ( $id );
2014-09-24 01:35:29 +02:00
$result2 = $object -> fetch_thirdparty ();
2014-11-03 01:07:07 +01:00
$result3 = $object -> fetch_contact ();
$result4 = $object -> fetch_userassigned ();
$result5 = $object -> fetch_optionals ( $id , $extralabels );
2012-12-21 17:56:40 +01:00
2014-11-03 01:07:07 +01:00
if ( $result1 < 0 || $result2 < 0 || $result3 < 0 || $result4 < 0 || $result5 < 0 )
2010-05-07 21:33:17 +02:00
{
2014-01-30 00:40:00 +01:00
dol_print_error ( $db , $object -> error );
2010-05-07 21:33:17 +02:00
exit ;
}
2009-02-04 21:43:18 +01:00
2014-09-29 13:21:03 +02:00
if ( $object -> authorid > 0 ) { $tmpuser = new User ( $db ); $res = $tmpuser -> fetch ( $object -> authorid ); $object -> author = $tmpuser ; }
if ( $object -> usermodid > 0 ) { $tmpuser = new User ( $db ); $res = $tmpuser -> fetch ( $object -> usermodid ); $object -> usermod = $tmpuser ; }
2004-10-02 16:24:43 +02:00
2009-03-03 01:20:21 +01:00
/*
2014-09-29 13:21:03 +02:00
* Show tabs
2009-03-03 01:20:21 +01:00
*/
2004-10-02 16:24:43 +02:00
2014-01-30 00:40:00 +01:00
$head = actions_prepare_head ( $object );
2004-10-02 16:24:43 +02:00
2010-06-09 20:25:20 +02:00
$now = dol_now ();
2009-01-07 16:21:16 +01:00
$delay_warning = $conf -> global -> MAIN_DELAY_ACTIONS_TODO * 24 * 60 * 60 ;
2009-02-04 21:43:18 +01:00
2009-03-03 01:20:21 +01:00
// Confirmation suppression action
2011-04-09 13:52:11 +02:00
if ( $action == 'delete' )
2009-03-03 01:20:21 +01:00
{
2014-09-18 21:18:25 +02:00
print $form -> formconfirm ( " card.php?id= " . $id , $langs -> trans ( " DeleteAction " ), $langs -> trans ( " ConfirmDeleteAction " ), " confirm_delete " , '' , '' , 1 );
2009-03-03 01:20:21 +01:00
}
2005-10-01 16:25:34 +02:00
2011-04-09 13:52:11 +02:00
if ( $action == 'edit' )
2009-03-03 01:20:21 +01:00
{
2012-11-13 16:20:15 +01:00
if ( ! empty ( $conf -> use_javascript_ajax ))
2010-11-18 23:17:44 +01:00
{
2012-11-13 16:20:15 +01:00
print " \n " . '<script type="text/javascript">' ;
print ' $ ( document ) . ready ( function () {
function setdatefields ()
{
if ( $ ( " #fullday:checked " ) . val () == null ) {
$ ( " .fulldaystarthour " ) . removeAttr ( " disabled " );
$ ( " .fulldaystartmin " ) . removeAttr ( " disabled " );
$ ( " .fulldayendhour " ) . removeAttr ( " disabled " );
$ ( " .fulldayendmin " ) . removeAttr ( " disabled " );
} else {
$ ( " .fulldaystarthour " ) . attr ( " disabled " , " disabled " ) . val ( " 00 " );
$ ( " .fulldaystartmin " ) . attr ( " disabled " , " disabled " ) . val ( " 00 " );
$ ( " .fulldayendhour " ) . attr ( " disabled " , " disabled " ) . val ( " 23 " );
$ ( " .fulldayendmin " ) . attr ( " disabled " , " disabled " ) . val ( " 59 " );
}
}
setdatefields ();
$ ( " #fullday " ) . change ( function () {
setdatefields ();
});
2010-11-18 23:17:44 +01:00
}) ' ;
print '</script>' . " \n " ;
}
2012-11-13 16:20:15 +01:00
print '<form name="formaction" action="' . $_SERVER [ 'PHP_SELF' ] . '" method="POST">' ;
2009-05-17 10:01:54 +02:00
print '<input type="hidden" name="token" value="' . $_SESSION [ 'newtoken' ] . '">' ;
2009-03-03 01:20:21 +01:00
print '<input type="hidden" name="action" value="update">' ;
2010-09-12 22:59:38 +02:00
print '<input type="hidden" name="id" value="' . $id . '">' ;
2014-01-30 00:40:00 +01:00
print '<input type="hidden" name="ref_ext" value="' . $object -> ref_ext . '">' ;
2012-05-12 15:53:57 +02:00
if ( $backtopage ) print '<input type="hidden" name="backtopage" value="' . ( $backtopage != '1' ? $backtopage : $_SERVER [ " HTTP_REFERER " ]) . '">' ;
2014-10-05 04:51:34 +02:00
if ( empty ( $conf -> global -> AGENDA_USE_EVENT_TYPE )) print '<input type="hidden" name="actioncode" value="' . $object -> type_code . '">' ;
2004-08-07 01:39:54 +02:00
2013-04-21 17:56:29 +02:00
dol_fiche_head ( $head , 'card' , $langs -> trans ( " Action " ), 0 , 'action' );
2013-04-25 01:13:13 +02:00
2009-03-03 01:20:21 +01:00
print '<table class="border" width="100%">' ;
2008-09-09 19:57:12 +02:00
2009-03-03 01:20:21 +01:00
// Ref
2014-01-30 00:40:00 +01:00
print '<tr><td width="30%">' . $langs -> trans ( " Ref " ) . '</td><td colspan="3">' . $object -> id . '</td></tr>' ;
2009-02-04 21:43:18 +01:00
2014-10-03 18:04:13 +02:00
// Type of event
2012-12-01 15:45:05 +01:00
if ( ! empty ( $conf -> global -> AGENDA_USE_EVENT_TYPE ))
{
2013-02-27 19:43:40 +01:00
print '<tr><td class="fieldrequired">' . $langs -> trans ( " Type " ) . '</td><td colspan="3">' ;
2014-06-26 20:24:00 +02:00
$formactions -> select_type_actions ( GETPOST ( " actioncode " ) ? GETPOST ( " actioncode " ) : $object -> type_code , " actioncode " , " systemauto " );
2013-02-27 19:43:40 +01:00
print '</td></tr>' ;
2012-12-01 15:45:05 +01:00
}
2009-02-04 21:43:18 +01:00
2009-03-03 01:20:21 +01:00
// Title
2014-01-30 00:40:00 +01:00
print '<tr><td' . ( empty ( $conf -> global -> AGENDA_USE_EVENT_TYPE ) ? ' class="fieldrequired"' : '' ) . '>' . $langs -> trans ( " Title " ) . '</td><td colspan="3"><input type="text" name="label" size="50" value="' . $object -> label . '"></td></tr>' ;
2009-02-04 21:43:18 +01:00
2010-11-18 23:17:44 +01:00
// Full day event
2014-01-30 00:40:00 +01:00
print '<tr><td class="fieldrequired">' . $langs -> trans ( " EventOnFullDay " ) . '</td><td colspan="3"><input type="checkbox" id="fullday" name="fullday" ' . ( $object -> fulldayevent ? ' checked="checked"' : '' ) . '></td></tr>' ;
2010-11-18 23:17:44 +01:00
2010-11-08 02:25:36 +01:00
// Date start
2013-04-25 01:13:13 +02:00
print '<tr><td class="nowrap"><span class="fieldrequired">' . $langs -> trans ( " DateActionStart " ) . '</span></td><td colspan="3">' ;
2015-01-26 10:31:41 +01:00
if ( GETPOST ( " afaire " ) == 1 ) $form -> select_date ( $datep ? $datep : $object -> datep , 'ap' , 1 , 1 , 0 , " action " , 1 , 1 , 0 , 0 , 'fulldaystart' );
else if ( GETPOST ( " afaire " ) == 2 ) $form -> select_date ( $datep ? $datep : $object -> datep , 'ap' , 1 , 1 , 1 , " action " , 1 , 1 , 0 , 0 , 'fulldaystart' );
else $form -> select_date ( $datep ? $datep : $object -> datep , 'ap' , 1 , 1 , 1 , " action " , 1 , 1 , 0 , 0 , 'fulldaystart' );
2010-11-08 02:25:36 +01:00
print '</td></tr>' ;
// Date end
print '<tr><td>' . $langs -> trans ( " DateActionEnd " ) . '</td><td colspan="3">' ;
2015-01-26 10:31:41 +01:00
if ( GETPOST ( " afaire " ) == 1 ) $form -> select_date ( $datef ? $datef : $object -> datef , 'p2' , 1 , 1 , 1 , " action " , 1 , 1 , 0 , 0 , 'fulldayend' );
else if ( GETPOST ( " afaire " ) == 2 ) $form -> select_date ( $datef ? $datef : $object -> datef , 'p2' , 1 , 1 , 1 , " action " , 1 , 1 , 0 , 0 , 'fulldayend' );
else $form -> select_date ( $datef ? $datef : $object -> datef , 'p2' , 1 , 1 , 1 , " action " , 1 , 1 , 0 , 0 , 'fulldayend' );
2010-11-08 02:25:36 +01:00
print '</td></tr>' ;
// Status
2013-04-25 01:13:13 +02:00
print '<tr><td class="nowrap">' . $langs -> trans ( " Status " ) . ' / ' . $langs -> trans ( " Percentage " ) . '</td><td colspan="3">' ;
2014-01-30 00:40:00 +01:00
$percent = GETPOST ( " percentage " ) ? GETPOST ( " percentage " ) : $object -> percentage ;
2014-06-26 20:24:00 +02:00
$formactions -> form_select_status_action ( 'formaction' , $percent , 1 );
2010-11-08 02:25:36 +01:00
print '</td></tr>' ;
2010-11-20 19:41:09 +01:00
// Location
2014-09-22 20:16:58 +02:00
if ( empty ( $conf -> global -> AGENDA_DISABLE_LOCATION ))
{
print '<tr><td>' . $langs -> trans ( " Location " ) . '</td><td colspan="3"><input type="text" name="location" size="50" value="' . $object -> location . '"></td></tr>' ;
}
2010-11-20 19:41:09 +01:00
2013-04-06 17:39:31 +02:00
// Assigned to
2014-12-08 23:59:33 +01:00
print '<tr><td class="nowrap">' . $langs -> trans ( " ActionAssignedTo " ) . '</td><td colspan="3">' ;
2014-09-20 00:57:29 +02:00
$listofuserid = array ();
if ( empty ( $donotclearsession ))
{
2014-09-29 13:21:03 +02:00
if ( $object -> userownerid > 0 ) $listofuserid [ $object -> userownerid ] = array ( 'id' => $object -> userownerid , 'transparency' => $object -> userassigned [ $user -> id ][ 'transparency' ], 'answer_status' => $object -> userassigned [ $user -> id ][ 'answer_status' ], 'mandatory' => $object -> userassigned [ $user -> id ][ 'mandatory' ]); // Owner first
if ( ! empty ( $object -> userassigned )) // Now concat assigned users
{
// Restore array with key with same value than param 'id'
$tmplist1 = $object -> userassigned ; $tmplist2 = array ();
foreach ( $tmplist1 as $key => $val )
{
if ( $val [ 'id' ] && $val [ 'id' ] != $object -> userownerid ) $listofuserid [ $val [ 'id' ]] = $val ;
}
}
2014-09-20 00:57:29 +02:00
$_SESSION [ 'assignedtouser' ] = dol_json_encode ( $listofuserid );
}
2014-10-05 03:44:20 +02:00
else
{
if ( ! empty ( $_SESSION [ 'assignedtouser' ]))
{
$listofuserid = dol_json_decode ( $_SESSION [ 'assignedtouser' ], true );
}
}
2014-12-23 17:46:30 +01:00
print $form -> select_dolusers_forevent (( $action == 'create' ? 'add' : 'update' ), 'assignedtouser' , 1 , '' , 0 , '' , '' , 0 , 0 , 0 , 'AND u.statut != 0' );
2014-10-05 03:44:20 +02:00
if ( in_array ( $user -> id , array_keys ( $listofuserid ))) print $langs -> trans ( " MyAvailability " ) . ': <input id="transparency" type="checkbox" name="transparency"' . ( $listofuserid [ $user -> id ][ 'transparency' ] ? ' checked="checked"' : '' ) . '">' . $langs -> trans ( " Busy " );
2013-06-05 16:24:32 +02:00
print '</td></tr>' ;
2010-11-08 02:25:36 +01:00
// Realised by
2014-09-20 00:57:29 +02:00
if ( ! empty ( $conf -> global -> AGENDA_ENABLE_DONEBY ))
2013-06-05 16:24:32 +02:00
{
2013-04-25 01:13:13 +02:00
print '<tr><td class="nowrap">' . $langs -> trans ( " ActionDoneBy " ) . '</td><td colspan="3">' ;
2014-09-29 13:21:03 +02:00
print $form -> select_dolusers ( $object -> userdoneid > 0 ? $object -> userdoneid :- 1 , 'doneby' , 1 );
2013-04-06 17:39:31 +02:00
print '</td></tr>' ;
}
2010-11-08 02:25:36 +01:00
2014-09-29 13:21:03 +02:00
print '</table>' ;
print '<br><br>' ;
2010-11-08 02:25:36 +01:00
print '<table class="border" width="100%">' ;
2012-12-21 17:56:40 +01:00
// Thirdparty - Contact
if ( $conf -> societe -> enabled )
{
print '<tr><td width="30%">' . $langs -> trans ( " ActionOnCompany " ) . '</td>' ;
print '<td>' ;
2013-10-01 18:11:53 +02:00
$events = array ();
$events [] = array ( 'method' => 'getContacts' , 'url' => dol_buildpath ( '/core/ajax/contacts.php' , 1 ), 'htmlname' => 'contactid' , 'params' => array ( 'add-customer-contact' => 'disabled' ));
2014-09-29 13:21:03 +02:00
print $form -> select_company ( $object -> socid , 'socid' , '' , 1 , 1 , 0 , $events );
2012-12-21 17:56:40 +01:00
print '</td>' ;
// Contact
print '<td>' . $langs -> trans ( " Contact " ) . '</td><td width="30%">' ;
2014-09-29 13:21:03 +02:00
$form -> select_contacts ( $object -> socid , $object -> contactid , 'contactid' , 1 );
2012-12-21 17:56:40 +01:00
print '</td></tr>' ;
}
2005-10-01 16:25:34 +02:00
2010-01-05 00:33:23 +01:00
// Project
2012-09-15 10:01:35 +02:00
if ( ! empty ( $conf -> projet -> enabled ))
2010-01-05 00:33:23 +01:00
{
2013-06-16 23:15:20 +02:00
2013-06-14 22:33:01 +02:00
$formproject = new FormProjets ( $db );
2013-06-16 23:15:20 +02:00
2010-01-05 00:33:23 +01:00
// Projet associe
$langs -> load ( " project " );
2012-12-21 17:56:40 +01:00
print '<tr><td width="30%" valign="top">' . $langs -> trans ( " Project " ) . '</td><td colspan="3">' ;
2014-09-29 13:21:03 +02:00
$numprojet = $formproject -> select_projects ( $object -> socid , $object -> fk_project , 'projectid' );
2010-01-05 00:33:23 +01:00
if ( $numprojet == 0 )
{
2014-09-29 13:21:03 +02:00
print ' <a href="../../projet/card.php?socid=' . $object -> socid . '&action=create">' . $langs -> trans ( " AddProject " ) . '</a>' ;
2010-01-05 00:33:23 +01:00
}
print '</td></tr>' ;
}
2008-10-06 23:31:05 +02:00
// Priority
2012-12-21 17:56:40 +01:00
print '<tr><td nowrap width="30%">' . $langs -> trans ( " Priority " ) . '</td><td colspan="3">' ;
2014-01-30 00:40:00 +01:00
print '<input type="text" name="priority" value="' . ( $object -> priority ? $object -> priority : '' ) . '" size="5">' ;
2008-04-24 22:59:29 +02:00
print '</td></tr>' ;
2009-03-03 01:20:21 +01:00
// Object linked
2014-01-30 00:40:00 +01:00
if ( ! empty ( $object -> fk_element ) && ! empty ( $object -> elementtype ))
2009-03-03 01:20:21 +01:00
{
2013-06-16 23:15:20 +02:00
include_once DOL_DOCUMENT_ROOT . '/core/lib/functions2.lib.php' ;
2009-03-03 01:20:21 +01:00
print '<tr><td>' . $langs -> trans ( " LinkedObject " ) . '</td>' ;
2014-01-30 00:40:00 +01:00
print '<td colspan="3">' . dolGetElementUrl ( $object -> fk_element , $object -> elementtype , 1 ) . '</td></tr>' ;
2009-03-03 01:20:21 +01:00
}
2005-10-01 16:25:34 +02:00
2010-11-20 19:41:09 +01:00
// Description
print '<tr><td valign="top">' . $langs -> trans ( " Description " ) . '</td><td colspan="3">' ;
// Editeur wysiwyg
2012-08-22 23:11:24 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/class/doleditor.class.php' ;
2014-01-30 00:40:00 +01:00
$doleditor = new DolEditor ( 'note' , $object -> note , '' , 240 , 'dolibarr_notes' , 'In' , true , true , $conf -> fckeditor -> enabled , ROWS_5 , 90 );
2010-11-20 19:41:09 +01:00
$doleditor -> Create ();
print '</td></tr>' ;
2005-10-01 16:25:34 +02:00
2012-12-08 12:49:20 +01:00
// Other attributes
2014-01-30 00:40:00 +01:00
$parameters = array ( 'colspan' => ' colspan="3"' , 'colspanvalue' => '3' , 'id' => $object -> id );
$reshook = $hookmanager -> executeHooks ( 'formObjectOptions' , $parameters , $object , $action ); // Note that $action and $object may have been modified by hook
2012-12-08 12:49:20 +01:00
if ( empty ( $reshook ) && ! empty ( $extrafields -> attribute_label ))
{
2014-01-30 00:40:00 +01:00
print $object -> showOptionals ( $extrafields , 'edit' );
2012-12-08 12:49:20 +01:00
}
2012-12-21 17:56:40 +01:00
2013-04-01 19:43:26 +02:00
print '</table>' ;
2012-12-08 12:49:20 +01:00
2013-04-21 17:56:29 +02:00
dol_fiche_end ();
2013-04-25 01:13:13 +02:00
2014-11-25 20:13:43 +01:00
print '<div class="center">' ;
print '<input type="submit" class="button" name="edit" value="' . $langs -> trans ( " Save " ) . '">' ;
print ' ' ;
print '<input type="submit" class="button" name="cancel" value="' . $langs -> trans ( " Cancel " ) . '">' ;
print '</div>' ;
2005-07-10 04:05:09 +02:00
2010-02-25 22:28:17 +01:00
print '</form>' ;
2009-03-03 01:20:21 +01:00
}
else
{
2013-04-21 17:56:29 +02:00
dol_fiche_head ( $head , 'card' , $langs -> trans ( " Action " ), 0 , 'action' );
2013-04-25 01:13:13 +02:00
2009-03-03 01:20:21 +01:00
// Affichage fiche action en mode visu
print '<table class="border" width="100%">' ;
2006-09-10 15:53:20 +02:00
2012-08-31 19:07:47 +02:00
$linkback = '<a href="' . DOL_URL_ROOT . '/comm/action/listactions.php">' . $langs -> trans ( " BackToList " ) . '</a>' ;
2012-07-28 21:49:47 +02:00
2006-09-10 15:53:20 +02:00
// Ref
2010-06-09 20:25:20 +02:00
print '<tr><td width="30%">' . $langs -> trans ( " Ref " ) . '</td><td colspan="3">' ;
2014-01-30 00:40:00 +01:00
print $form -> showrefnav ( $object , 'id' , $linkback , ( $user -> societe_id ? 0 : 1 ), 'id' , 'ref' , '' );
2010-06-09 20:25:20 +02:00
print '</td></tr>' ;
2006-09-10 15:53:20 +02:00
// Type
2012-12-01 15:45:05 +01:00
if ( ! empty ( $conf -> global -> AGENDA_USE_EVENT_TYPE ))
{
2014-01-30 00:40:00 +01:00
print '<tr><td>' . $langs -> trans ( " Type " ) . '</td><td colspan="3">' . $object -> type . '</td></tr>' ;
2012-12-01 15:45:05 +01:00
}
2006-09-10 15:53:20 +02:00
2008-09-09 19:57:12 +02:00
// Title
2014-01-30 00:40:00 +01:00
print '<tr><td>' . $langs -> trans ( " Title " ) . '</td><td colspan="3">' . $object -> label . '</td></tr>' ;
2009-02-04 21:43:18 +01:00
2010-11-18 23:17:44 +01:00
// Full day event
2014-12-07 01:57:23 +01:00
print '<tr><td>' . $langs -> trans ( " EventOnFullDay " ) . '</td><td colspan="3">' . yn ( $object -> fulldayevent , 3 ) . '</td></tr>' ;
2010-11-18 23:17:44 +01:00
2014-09-22 20:16:58 +02:00
$rowspan = 4 ;
if ( empty ( $conf -> global -> AGENDA_DISABLE_LOCATION )) $rowspan ++ ;
2010-11-20 19:41:09 +01:00
// Date start
2014-09-29 13:21:03 +02:00
print '<tr><td width="30%">' . $langs -> trans ( " DateActionStart " ) . '</td><td colspan="3">' ;
2014-01-30 00:40:00 +01:00
if ( ! $object -> fulldayevent ) print dol_print_date ( $object -> datep , 'dayhour' );
else print dol_print_date ( $object -> datep , 'day' );
if ( $object -> percentage == 0 && $object -> datep && $object -> datep < ( $now - $delay_warning )) print img_warning ( $langs -> trans ( " Late " ));
2010-11-20 19:41:09 +01:00
print '</td>' ;
print '</tr>' ;
2010-11-08 02:25:36 +01:00
2010-11-20 19:41:09 +01:00
// Date end
2014-09-29 13:21:03 +02:00
print '<tr><td>' . $langs -> trans ( " DateActionEnd " ) . '</td><td colspan="3">' ;
2014-01-30 00:40:00 +01:00
if ( ! $object -> fulldayevent ) print dol_print_date ( $object -> datef , 'dayhour' );
else print dol_print_date ( $object -> datef , 'day' );
if ( $object -> percentage > 0 && $object -> percentage < 100 && $object -> datef && $object -> datef < ( $now - $delay_warning )) print img_warning ( $langs -> trans ( " Late " ));
2010-11-08 02:25:36 +01:00
print '</td></tr>' ;
2011-03-20 15:38:54 +01:00
// Status
2014-09-29 13:21:03 +02:00
print '<tr><td class="nowrap">' . $langs -> trans ( " Status " ) . ' / ' . $langs -> trans ( " Percentage " ) . '</td><td colspan="3">' ;
2014-01-30 00:40:00 +01:00
print $object -> getLibStatut ( 4 );
2010-11-08 02:25:36 +01:00
print '</td></tr>' ;
2010-11-20 19:41:09 +01:00
// Location
2014-09-22 20:16:58 +02:00
if ( empty ( $conf -> global -> AGENDA_DISABLE_LOCATION ))
{
2014-09-29 13:21:03 +02:00
print '<tr><td>' . $langs -> trans ( " Location " ) . '</td><td colspan="3">' . $object -> location . '</td></tr>' ;
2014-09-22 20:16:58 +02:00
}
2010-11-20 19:41:09 +01:00
2013-04-06 17:39:31 +02:00
// Assigned to
2014-12-08 23:59:33 +01:00
print '<tr><td width="30%" class="nowrap">' . $langs -> trans ( " ActionAssignedTo " ) . '</td><td colspan="3">' ;
2014-09-23 16:15:15 +02:00
$listofuserid = array ();
if ( empty ( $donotclearsession ))
{
2014-10-14 00:27:23 +02:00
if ( $object -> userownerid > 0 ) $listofuserid [ $object -> userownerid ] = array ( 'id' => $object -> userownerid , 'transparency' => $object -> transparency ); // Owner first
2014-09-29 13:21:03 +02:00
if ( ! empty ( $object -> userassigned )) // Now concat assigned users
{
// Restore array with key with same value than param 'id'
$tmplist1 = $object -> userassigned ; $tmplist2 = array ();
foreach ( $tmplist1 as $key => $val )
{
if ( $val [ 'id' ] && $val [ 'id' ] != $object -> userownerid ) $listofuserid [ $val [ 'id' ]] = $val ;
}
}
2014-09-23 16:15:15 +02:00
$_SESSION [ 'assignedtouser' ] = dol_json_encode ( $listofuserid );
}
2014-10-05 03:44:20 +02:00
else
{
if ( ! empty ( $_SESSION [ 'assignedtouser' ]))
{
$listofuserid = dol_json_decode ( $_SESSION [ 'assignedtouser' ], true );
}
}
2014-09-23 16:15:15 +02:00
print $form -> select_dolusers_forevent ( 'view' , 'assignedtouser' , 1 );
2014-10-05 03:44:20 +02:00
if ( in_array ( $user -> id , array_keys ( $listofuserid ))) print $langs -> trans ( " MyAvailability " ) . ': ' . (( $object -> userassigned [ $user -> id ][ 'transparency' ] > 0 ) ? $langs -> trans ( " Busy " ) : $langs -> trans ( " Available " )); // We show nothing if event is assigned to nobody
2014-09-29 13:21:03 +02:00
print ' </td></tr>' ;
2010-11-08 02:25:36 +01:00
2010-11-20 00:50:27 +01:00
// Done by
2013-04-06 17:39:31 +02:00
if ( $conf -> global -> AGENDA_ENABLE_DONEBY )
{
2013-04-25 01:13:13 +02:00
print '<tr><td class="nowrap">' . $langs -> trans ( " ActionDoneBy " ) . '</td><td colspan="3">' ;
2014-10-11 15:04:42 +02:00
if ( $object -> userdoneid > 0 )
{
$tmpuser = new User ( $db );
$tmpuser -> fetch ( $object -> userdoneid );
print $tmpuser -> getNomUrl ( 1 );
}
2013-04-06 17:39:31 +02:00
print '</td></tr>' ;
}
2010-11-08 02:25:36 +01:00
2014-09-29 13:21:03 +02:00
print '</table>' ;
print '<br><br>' ;
print '<table class="border" width="100%">' ;
2010-11-08 02:25:36 +01:00
2010-11-20 19:41:09 +01:00
// Third party - Contact
2013-01-10 08:27:12 +01:00
if ( $conf -> societe -> enabled )
{
2014-09-24 01:35:29 +02:00
print '<tr><td width="30%">' . $langs -> trans ( " ActionOnCompany " ) . '</td><td>' . ( $object -> thirdparty -> id ? $object -> thirdparty -> getNomUrl ( 1 ) : $langs -> trans ( " None " ));
if ( is_object ( $object -> thirdparty ) && $object -> thirdparty -> id > 0 && $object -> type_code == 'AC_TEL' )
2008-12-02 19:41:17 +01:00
{
2014-09-24 01:35:29 +02:00
if ( $object -> thirdparty -> fetch ( $object -> thirdparty -> id ))
2012-12-21 17:56:40 +01:00
{
2014-09-24 01:35:29 +02:00
print " <br> " . dol_print_phone ( $object -> thirdparty -> phone );
2012-12-21 17:56:40 +01:00
}
2008-12-02 19:41:17 +01:00
}
2012-12-21 17:56:40 +01:00
print '</td>' ;
print '<td>' . $langs -> trans ( " Contact " ) . '</td>' ;
print '<td>' ;
2014-09-29 13:21:03 +02:00
if ( $object -> contactid > 0 )
2008-12-02 19:41:17 +01:00
{
2014-01-30 00:40:00 +01:00
print $object -> contact -> getNomUrl ( 1 );
2014-09-29 13:21:03 +02:00
if ( $object -> contactid && $object -> type_code == 'AC_TEL' )
2008-12-02 19:41:17 +01:00
{
2014-09-29 13:21:03 +02:00
if ( $object -> contact -> fetch ( $object -> contactid ))
2012-12-21 17:56:40 +01:00
{
2014-01-30 00:40:00 +01:00
print " <br> " . dol_print_phone ( $object -> contact -> phone_pro );
2012-12-21 17:56:40 +01:00
}
2008-12-02 19:41:17 +01:00
}
2009-02-04 21:43:18 +01:00
}
2012-12-21 17:56:40 +01:00
else
{
print $langs -> trans ( " None " );
}
print '</td></tr>' ;
2009-03-03 01:20:21 +01:00
}
2005-10-01 16:25:34 +02:00
2010-01-05 00:33:23 +01:00
// Project
2012-09-15 10:01:35 +02:00
if ( ! empty ( $conf -> projet -> enabled ))
2010-01-05 00:33:23 +01:00
{
2012-12-21 17:56:40 +01:00
print '<tr><td width="30%" valign="top">' . $langs -> trans ( " Project " ) . '</td><td colspan="3">' ;
2014-01-30 00:40:00 +01:00
if ( $object -> fk_project )
2010-01-05 00:33:23 +01:00
{
$project = new Project ( $db );
2014-01-30 00:40:00 +01:00
$project -> fetch ( $object -> fk_project );
2013-09-22 21:02:42 +02:00
print $project -> getNomUrl ( 1 , '' , 1 );
2010-01-05 00:33:23 +01:00
}
print '</td></tr>' ;
}
2008-10-06 23:31:05 +02:00
// Priority
2012-12-21 17:56:40 +01:00
print '<tr><td nowrap width="30%">' . $langs -> trans ( " Priority " ) . '</td><td colspan="3">' ;
2014-01-30 00:40:00 +01:00
print ( $object -> priority ? $object -> priority : '' );
2008-10-06 23:31:05 +02:00
print '</td></tr>' ;
2011-06-04 15:12:44 +02:00
// Object linked
2014-01-30 00:40:00 +01:00
if ( ! empty ( $object -> fk_element ) && ! empty ( $object -> elementtype ))
2009-03-03 01:20:21 +01:00
{
2013-06-16 23:15:20 +02:00
include_once DOL_DOCUMENT_ROOT . '/core/lib/functions2.lib.php' ;
2009-03-03 01:20:21 +01:00
print '<tr><td>' . $langs -> trans ( " LinkedObject " ) . '</td>' ;
2014-01-30 00:40:00 +01:00
print '<td colspan="3">' . dolGetElementUrl ( $object -> fk_element , $object -> elementtype , 1 ) . '</td></tr>' ;
2009-03-03 01:20:21 +01:00
}
2005-10-01 16:25:34 +02:00
2010-11-20 19:41:09 +01:00
// Description
print '<tr><td valign="top">' . $langs -> trans ( " Description " ) . '</td><td colspan="3">' ;
2014-01-30 00:40:00 +01:00
print dol_htmlentitiesbr ( $object -> note );
2009-03-03 01:20:21 +01:00
print '</td></tr>' ;
2005-10-01 16:25:34 +02:00
2012-12-08 12:49:20 +01:00
// Other attributes
2014-01-30 00:40:00 +01:00
$parameters = array ( 'colspan' => ' colspan="3"' , 'colspanvalue' => '3' , 'id' => $object -> id );
$reshook = $hookmanager -> executeHooks ( 'formObjectOptions' , $parameters , $object , $action ); // Note that $action and $object may have been modified by hook
Add: hooks and triggers for a lot of core modules (action/calendrier, deplacement, dons, tva, contact/tiers, contrat, product lines, expedition, fournisseur commandes et factures, fiche intervention, projet et taches)
Signed-off-by: Stephen L. <lrq3000@gmail.com>
2012-08-14 15:50:45 +02:00
2009-03-03 01:20:21 +01:00
print '</table>' ;
2012-12-21 17:56:40 +01:00
2012-12-08 12:49:20 +01:00
//Extra field
if ( empty ( $reshook ) && ! empty ( $extrafields -> attribute_label ))
2012-12-21 17:56:40 +01:00
{
2012-12-08 12:49:20 +01:00
print '<br><br><table class="border" width="100%">' ;
foreach ( $extrafields -> attribute_label as $key => $label )
{
2014-01-30 00:40:00 +01:00
$value = ( isset ( $_POST [ " options_ " . $key ]) ? $_POST [ " options_ " . $key ] : ( isset ( $object -> array_options [ 'options_' . $key ]) ? $object -> array_options [ 'options_' . $key ] : '' ));
2012-12-08 12:49:20 +01:00
print '<tr><td width="30%">' . $label . '</td><td>' ;
print $extrafields -> showOutputField ( $key , $value );
print " </td></tr> \n " ;
}
2014-06-28 21:17:27 +02:00
print '</table>' ;
2012-12-08 12:49:20 +01:00
}
2005-10-01 16:25:34 +02:00
2013-04-21 17:56:29 +02:00
dol_fiche_end ();
}
2004-03-02 11:57:44 +01:00
2004-10-02 16:24:43 +02:00
2009-11-10 13:36:30 +01:00
/*
2009-03-03 01:20:21 +01:00
* Barre d ' actions
*/
2004-10-02 16:24:43 +02:00
2009-03-03 01:20:21 +01:00
print '<div class="tabsAction">' ;
2005-10-01 16:25:34 +02:00
2014-01-24 11:15:25 +01:00
$parameters = array ();
$reshook = $hookmanager -> executeHooks ( 'addMoreActionsButtons' , $parameters , $object , $action ); // Note that $action and $object may have been modified by hook
if ( empty ( $reshook ))
2009-03-03 01:20:21 +01:00
{
2014-01-24 11:15:25 +01:00
if ( $action != 'edit' )
2009-03-03 01:20:21 +01:00
{
2014-01-24 11:15:25 +01:00
if ( $user -> rights -> agenda -> allactions -> create ||
2014-09-29 13:21:03 +02:00
(( $object -> authorid == $user -> id || $object -> userownerid == $user -> id ) && $user -> rights -> agenda -> myactions -> create ))
2014-01-24 11:15:25 +01:00
{
2014-09-18 21:18:25 +02:00
print '<div class="inline-block divButAction"><a class="butAction" href="card.php?action=edit&id=' . $object -> id . '">' . $langs -> trans ( " Modify " ) . '</a></div>' ;
2014-01-24 11:15:25 +01:00
}
else
{
print '<div class="inline-block divButAction"><a class="butActionRefused" href="#" title="' . $langs -> trans ( " NotAllowed " ) . '">' . $langs -> trans ( " Modify " ) . '</a></div>' ;
}
2014-01-30 00:40:00 +01:00
2014-01-24 11:15:25 +01:00
if ( $user -> rights -> agenda -> allactions -> delete ||
2014-09-29 13:21:03 +02:00
(( $object -> authorid == $user -> id || $object -> userownerid == $user -> id ) && $user -> rights -> agenda -> myactions -> delete ))
2014-01-24 11:15:25 +01:00
{
2014-09-18 21:18:25 +02:00
print '<div class="inline-block divButAction"><a class="butActionDelete" href="card.php?action=delete&id=' . $object -> id . '">' . $langs -> trans ( " Delete " ) . '</a></div>' ;
2014-01-24 11:15:25 +01:00
}
else
{
print '<div class="inline-block divButAction"><a class="butActionRefused" href="#" title="' . $langs -> trans ( " NotAllowed " ) . '">' . $langs -> trans ( " Delete " ) . '</a></div>' ;
}
2009-03-03 01:20:21 +01:00
}
}
2014-01-30 00:40:00 +01:00
2009-03-03 01:20:21 +01:00
print '</div>' ;
2014-09-29 13:21:03 +02:00
2014-10-09 17:05:57 +02:00
if ( $action != 'edit' )
{
// Link to agenda views
print '<div id="agendaviewbutton">' ;
print '<form name="listactionsfiltermonth" action="' . DOL_URL_ROOT . '/comm/action/index.php" method="POST" style="float: left; padding-right: 10px;">' ;
print '<input type="hidden" name="token" value="' . $_SESSION [ 'newtoken' ] . '">' ;
print '<input type="hidden" name="action" value="show_month">' ;
print '<input type="hidden" name="year" value="' . dol_print_date ( $object -> datep , '%Y' ) . '">' ;
print '<input type="hidden" name="month" value="' . dol_print_date ( $object -> datep , '%m' ) . '">' ;
print '<input type="hidden" name="day" value="' . dol_print_date ( $object -> datep , '%d' ) . '">' ;
//print '<input type="hidden" name="day" value="'.dol_print_date($object->datep,'%d').'">';
print img_picto ( $langs -> trans ( " ViewCal " ), 'object_calendar' , 'class="hideonsmartphone"' ) . ' <input type="submit" style="min-width: 120px" class="button" name="viewcal" value="' . $langs -> trans ( " ViewCal " ) . '">' ;
print '</form>' . " \n " ;
print '<form name="listactionsfilterweek" action="' . DOL_URL_ROOT . '/comm/action/index.php" method="POST" style="float: left; padding-right: 10px;">' ;
print '<input type="hidden" name="token" value="' . $_SESSION [ 'newtoken' ] . '">' ;
print '<input type="hidden" name="action" value="show_week">' ;
print '<input type="hidden" name="year" value="' . dol_print_date ( $object -> datep , '%Y' ) . '">' ;
print '<input type="hidden" name="month" value="' . dol_print_date ( $object -> datep , '%m' ) . '">' ;
print '<input type="hidden" name="day" value="' . dol_print_date ( $object -> datep , '%d' ) . '">' ;
//print '<input type="hidden" name="day" value="'.dol_print_date($object->datep,'%d').'">';
print img_picto ( $langs -> trans ( " ViewCal " ), 'object_calendarweek' , 'class="hideonsmartphone"' ) . ' <input type="submit" style="min-width: 120px" class="button" name="viewweek" value="' . $langs -> trans ( " ViewWeek " ) . '">' ;
print '</form>' . " \n " ;
print '<form name="listactionsfilterday" action="' . DOL_URL_ROOT . '/comm/action/index.php" method="POST" style="float: left; padding-right: 10px;">' ;
print '<input type="hidden" name="token" value="' . $_SESSION [ 'newtoken' ] . '">' ;
print '<input type="hidden" name="action" value="show_day">' ;
print '<input type="hidden" name="year" value="' . dol_print_date ( $object -> datep , '%Y' ) . '">' ;
print '<input type="hidden" name="month" value="' . dol_print_date ( $object -> datep , '%m' ) . '">' ;
print '<input type="hidden" name="day" value="' . dol_print_date ( $object -> datep , '%d' ) . '">' ;
//print '<input type="hidden" name="day" value="'.dol_print_date($object->datep,'%d').'">';
print img_picto ( $langs -> trans ( " ViewCal " ), 'object_calendarday' , 'class="hideonsmartphone"' ) . ' <input type="submit" style="min-width: 120px" class="button" name="viewday" value="' . $langs -> trans ( " ViewDay " ) . '">' ;
print '</form>' . " \n " ;
print '<form name="listactionsfilterperuser" action="' . DOL_URL_ROOT . '/comm/action/peruser.php" method="POST" style="float: left; padding-right: 10px;">' ;
print '<input type="hidden" name="token" value="' . $_SESSION [ 'newtoken' ] . '">' ;
print '<input type="hidden" name="action" value="show_peruser">' ;
print '<input type="hidden" name="year" value="' . dol_print_date ( $object -> datep , '%Y' ) . '">' ;
print '<input type="hidden" name="month" value="' . dol_print_date ( $object -> datep , '%m' ) . '">' ;
print '<input type="hidden" name="day" value="' . dol_print_date ( $object -> datep , '%d' ) . '">' ;
//print '<input type="hidden" name="day" value="'.dol_print_date($object->datep,'%d').'">';
print img_picto ( $langs -> trans ( " ViewCal " ), 'object_calendarperuser' , 'class="hideonsmartphone"' ) . ' <input type="submit" style="min-width: 120px" class="button" name="viewperuser" value="' . $langs -> trans ( " ViewPerUser " ) . '">' ;
print '</form>' . " \n " ;
print '</div>' ;
2014-12-01 00:52:38 +01:00
if ( empty ( $conf -> global -> AGENDA_DISABLE_BUILDDOC ))
{
2015-02-03 08:59:57 +01:00
print '<div style="clear:both;"> <br><br></div><div class="fichecenter"><div class="fichehalfleft">' ;
2014-12-01 00:53:15 +01:00
print '<a name="builddoc"></a>' ; // ancre
2014-12-01 00:52:38 +01:00
2014-12-01 00:53:15 +01:00
/*
* Documents generes
*/
2014-12-01 00:52:38 +01:00
2014-12-01 00:53:15 +01:00
$filedir = $conf -> agenda -> multidir_output [ $conf -> entity ] . '/' . $object -> id ;
$urlsource = $_SERVER [ " PHP_SELF " ] . " ?socid= " . $object -> id ;
2014-12-01 00:52:38 +01:00
2014-12-01 00:53:15 +01:00
$genallowed = $user -> rights -> agenda -> myactions -> create ;
2014-12-01 00:52:38 +01:00
$delallowed = $user -> rights -> agenda -> myactions -> delete ;
2014-12-01 00:53:15 +01:00
$var = true ;
2014-12-01 00:52:38 +01:00
2014-12-01 00:53:15 +01:00
$somethingshown = $formfile -> show_documents ( 'agenda' , $object -> id , $filedir , $urlsource , $genallowed , $delallowed , '' , 0 , 0 , 0 , 0 , 0 , '' , '' , '' , $object -> default_lang );
2014-12-01 00:52:38 +01:00
print '</div><div class="fichehalfright"><div class="ficheaddleft">' ;
print '</div></div></div>' ;
2014-12-01 00:53:15 +01:00
print '<div style="clear:both;"> </div>' ;
2014-12-01 00:52:38 +01:00
}
2014-10-09 17:05:57 +02:00
}
2002-04-29 20:01:16 +02:00
}
2013-04-11 09:15:41 +02:00
2011-08-27 16:24:16 +02:00
llxFooter ();
2004-12-25 20:54:16 +01:00
2013-04-03 18:37:54 +02:00
$db -> close ();