2010-01-12 19:02:23 +01:00
< ? php
2014-10-08 15:09:07 +02:00
/* Copyright ( C ) 2010 Regis Houssin < regis . houssin @ capnetworks . com >
2015-06-30 01:34:17 +02:00
* Copyright ( C ) 2012 - 2015 Laurent Destailleur < eldy @ users . sourceforge . net >
2010-01-12 19:02:23 +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
2013-01-16 15:36:08 +01:00
* the Free Software Foundation ; either version 3 of the License , or
2010-01-12 19:02:23 +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:19:04 +02:00
* along with this program . If not , see < http :// www . gnu . org / licenses />.
2010-01-12 19:02:23 +01:00
*/
/**
* \file htdocs / projet / contact . php
* \ingroup project
* \brief Onglet de gestion des contacts du projet
*/
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 . '/projet/class/project.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/contact/class/contact.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/lib/project.lib.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/class/html.formcompany.class.php' ;
2010-01-12 19:02:23 +01:00
2018-05-26 21:11:25 +02:00
// Load translation files required by the page
$langs -> loadLangs ( array ( 'projects' , 'companies' ));
2010-01-12 19:02:23 +01:00
2013-07-30 19:08:58 +02:00
$id = GETPOST ( 'id' , 'int' );
$ref = GETPOST ( 'ref' , 'alpha' );
$lineid = GETPOST ( 'lineid' , 'int' );
$socid = GETPOST ( 'socid' , 'int' );
$action = GETPOST ( 'action' , 'alpha' );
2010-01-12 19:02:23 +01:00
2013-07-30 19:08:58 +02:00
$mine = GETPOST ( 'mode' ) == 'mine' ? 1 : 0 ;
2010-05-29 01:26:08 +02:00
//if (! $user->rights->projet->all->lire) $mine=1; // Special for projects
2010-05-30 14:21:32 +02:00
2013-07-30 19:08:58 +02:00
$object = new Project ( $db );
2015-03-02 17:54:35 +01:00
2015-10-01 16:50:18 +02:00
include DOL_DOCUMENT_ROOT . '/core/actions_fetchobject.inc.php' ; // Must be include, not include_once
2018-05-22 16:07:32 +02:00
if ( ! empty ( $conf -> global -> PROJECT_ALLOW_COMMENT_ON_PROJECT ) && method_exists ( $object , 'fetchComments' ) && empty ( $object -> comments )) $object -> fetchComments ();
2012-05-23 14:34:44 +02:00
2010-05-30 14:21:32 +02:00
// Security check
$socid = 0 ;
2017-01-12 15:23:30 +01:00
//if ($user->societe_id > 0) $socid = $user->societe_id; // For external user, no check is done on company because readability is managed by public status of project and assignement.
2016-03-31 14:37:06 +02:00
$result = restrictedArea ( $user , 'projet' , $id , 'projet&project' );
2010-01-12 19:02:23 +01:00
2018-05-15 17:02:54 +02:00
$hookmanager -> initHooks ( array ( 'projectcontactcard' , 'globalcard' ));
2010-01-12 19:02:23 +01:00
/*
2010-01-13 14:32:09 +01:00
* Actions
2010-01-12 19:02:23 +01:00
*/
2010-01-13 14:32:09 +01:00
// Add new contact
2013-07-30 19:08:58 +02:00
if ( $action == 'addcontact' && $user -> rights -> projet -> creer )
2010-01-12 19:02:23 +01:00
{
$result = 0 ;
2013-07-30 19:08:58 +02:00
$result = $object -> fetch ( $id );
2010-01-12 19:02:23 +01:00
2012-02-04 18:34:52 +01:00
if ( $result > 0 && $id > 0 )
2010-01-12 19:02:23 +01:00
{
2013-07-30 19:08:58 +02:00
$contactid = ( GETPOST ( 'userid' ) ? GETPOST ( 'userid' , 'int' ) : GETPOST ( 'contactid' , 'int' ));
$result = $object -> add_contact ( $contactid , $_POST [ " type " ], $_POST [ " source " ]);
2010-01-12 19:02:23 +01:00
}
if ( $result >= 0 )
{
2013-07-30 19:08:58 +02:00
header ( " Location: " . $_SERVER [ 'PHP_SELF' ] . " ?id= " . $object -> id );
2010-01-12 19:02:23 +01:00
exit ;
}
else
{
2013-07-30 19:08:58 +02:00
if ( $object -> error == 'DB_ERROR_RECORD_ALREADY_EXISTS' )
2010-01-12 19:02:23 +01:00
{
$langs -> load ( " errors " );
2015-12-17 14:14:44 +01:00
setEventMessages ( $langs -> trans ( " ErrorThisContactIsAlreadyDefinedAsThisType " ), null , 'errors' );
2010-01-12 19:02:23 +01:00
}
else
{
2015-12-17 14:14:44 +01:00
setEventMessages ( $object -> error , $object -> errors , 'errors' );
2010-01-12 19:02:23 +01:00
}
}
}
// bascule du statut d'un contact
2013-07-30 19:08:58 +02:00
if ( $action == 'swapstatut' && $user -> rights -> projet -> creer )
2010-01-12 19:02:23 +01:00
{
2013-07-30 19:08:58 +02:00
if ( $object -> fetch ( $id ))
2010-01-12 19:02:23 +01:00
{
2014-09-13 19:04:25 +02:00
$result = $object -> swapContactStatus ( GETPOST ( 'ligne' , 'int' ));
2010-01-12 19:02:23 +01:00
}
else
{
dol_print_error ( $db );
}
}
// Efface un contact
2013-07-30 19:08:58 +02:00
if (( $action == 'deleteline' || $action == 'deletecontact' ) && $user -> rights -> projet -> creer )
2010-01-12 19:02:23 +01:00
{
2013-07-30 19:08:58 +02:00
$object -> fetch ( $id );
2014-09-13 19:04:25 +02:00
$result = $object -> delete_contact ( GETPOST ( " lineid " ));
2010-01-12 19:02:23 +01:00
if ( $result >= 0 )
{
2013-07-30 19:08:58 +02:00
header ( " Location: contact.php?id= " . $object -> id );
2010-01-12 19:02:23 +01:00
exit ;
}
else
{
dol_print_error ( $db );
}
}
/*
* View
*/
2015-03-23 12:44:41 +01:00
$title = $langs -> trans ( " ProjectContact " ) . ' - ' . $object -> ref . ' ' . $object -> name ;
if ( ! empty ( $conf -> global -> MAIN_HTML_TITLE ) && preg_match ( '/projectnameonly/' , $conf -> global -> MAIN_HTML_TITLE ) && $object -> name ) $title = $object -> ref . ' ' . $object -> name . ' - ' . $langs -> trans ( " ProjectContact " );
2010-05-23 22:37:28 +02:00
$help_url = " EN:Module_Projects|FR:Module_Projets|ES:Módulo_Proyectos " ;
2015-03-23 12:44:41 +01:00
llxHeader ( '' , $title , $help_url );
2010-01-12 19:02:23 +01:00
2011-11-08 10:18:45 +01:00
$form = new Form ( $db );
2010-01-12 19:02:23 +01:00
$formcompany = new FormCompany ( $db );
$contactstatic = new Contact ( $db );
2010-02-03 22:48:16 +01:00
$userstatic = new User ( $db );
2010-01-12 19:02:23 +01:00
/* *************************************************************************** */
/* */
/* Mode vue et edition */
/* */
/* *************************************************************************** */
if ( $id > 0 || ! empty ( $ref ))
{
2018-05-22 16:07:32 +02:00
if ( ! empty ( $conf -> global -> PROJECT_ALLOW_COMMENT_ON_PROJECT ) && method_exists ( $object , 'fetchComments' ) && empty ( $object -> comments )) $object -> fetchComments ();
2014-09-18 09:59:29 +02:00
// To verify role of users
//$userAccess = $object->restrictedProjectArea($user,'read');
$userWrite = $object -> restrictedProjectArea ( $user , 'write' );
//$userDelete = $object->restrictedProjectArea($user,'delete');
//print "userAccess=".$userAccess." userWrite=".$userWrite." userDelete=".$userDelete;
$head = project_prepare_head ( $object );
2017-04-05 14:48:24 +02:00
dol_fiche_head ( $head , 'contact' , $langs -> trans ( " Project " ), - 1 , ( $object -> public ? 'projectpub' : 'project' ));
2014-09-18 09:59:29 +02:00
2016-10-17 18:18:06 +02:00
// Project card
2018-02-15 02:02:32 +01:00
2017-05-19 00:52:13 +02:00
$linkback = '<a href="' . DOL_URL_ROOT . '/projet/list.php?restore_lastsearch_values=1">' . $langs -> trans ( " BackToList " ) . '</a>' ;
2018-02-15 02:02:32 +01:00
2016-10-17 18:18:06 +02:00
$morehtmlref = '<div class="refidno">' ;
// Title
$morehtmlref .= $object -> title ;
// Thirdparty
2018-02-15 02:02:32 +01:00
if ( $object -> thirdparty -> id > 0 )
2016-10-17 18:18:06 +02:00
{
$morehtmlref .= '<br>' . $langs -> trans ( 'ThirdParty' ) . ' : ' . $object -> thirdparty -> getNomUrl ( 1 , 'project' );
}
$morehtmlref .= '</div>' ;
2018-02-15 02:02:32 +01:00
2016-10-17 18:18:06 +02:00
// Define a complementary filter for search of next/prev ref.
if ( ! $user -> rights -> projet -> all -> lire )
{
$objectsListId = $object -> getProjectsAuthorizedForUser ( $user , 0 , 0 );
$object -> next_prev_filter = " rowid in ( " . ( count ( $objectsListId ) ? join ( ',' , array_keys ( $objectsListId )) : '0' ) . " ) " ;
}
2018-02-15 02:02:32 +01:00
2016-10-17 18:18:06 +02:00
dol_banner_tab ( $object , 'ref' , $linkback , 1 , 'ref' , 'ref' , $morehtmlref );
2014-09-18 09:59:29 +02:00
2016-10-17 18:18:06 +02:00
print '<div class="fichecenter">' ;
print '<div class="fichehalfleft">' ;
print '<div class="underbanner clearboth"></div>' ;
2014-09-18 09:59:29 +02:00
2016-10-17 18:18:06 +02:00
print '<table class="border" width="100%">' ;
2018-02-15 02:02:32 +01:00
2014-09-18 09:59:29 +02:00
// Visibility
2016-10-17 18:18:06 +02:00
print '<tr><td class="titlefield">' . $langs -> trans ( " Visibility " ) . '</td><td>' ;
2014-09-18 09:59:29 +02:00
if ( $object -> public ) print $langs -> trans ( 'SharedProject' );
else print $langs -> trans ( 'PrivateProject' );
print '</td></tr>' ;
2016-06-20 10:54:02 +02:00
if ( ! empty ( $conf -> global -> PROJECT_USE_OPPORTUNITIES ))
{
// Opportunity status
print '<tr><td>' . $langs -> trans ( " OpportunityStatus " ) . '</td><td>' ;
$code = dol_getIdFromCode ( $db , $object -> opp_status , 'c_lead_status' , 'rowid' , 'code' );
if ( $code ) print $langs -> trans ( " OppStatus " . $code );
print '</td></tr>' ;
2018-02-15 02:02:32 +01:00
2016-10-17 18:18:06 +02:00
// Opportunity percent
print '<tr><td>' . $langs -> trans ( " OpportunityProbability " ) . '</td><td>' ;
if ( strcmp ( $object -> opp_percent , '' )) print price ( $object -> opp_percent , '' , $langs , 1 , 0 ) . ' %' ;
print '</td></tr>' ;
2016-06-20 10:54:02 +02:00
// Opportunity Amount
print '<tr><td>' . $langs -> trans ( " OpportunityAmount " ) . '</td><td>' ;
if ( strcmp ( $object -> opp_amount , '' )) print price ( $object -> opp_amount , '' , $langs , 0 , 0 , 0 , $conf -> currency );
print '</td></tr>' ;
}
2018-02-15 02:02:32 +01:00
2016-10-18 12:16:12 +02:00
// Date start - end
print '<tr><td>' . $langs -> trans ( " DateStart " ) . ' - ' . $langs -> trans ( " DateEnd " ) . '</td><td>' ;
2018-02-15 02:02:32 +01:00
$start = dol_print_date ( $object -> date_start , 'day' );
2017-04-05 14:48:24 +02:00
print ( $start ? $start : '?' );
2018-02-15 02:02:32 +01:00
$end = dol_print_date ( $object -> date_end , 'day' );
2017-04-05 14:48:24 +02:00
print ' - ' ;
print ( $end ? $end : '?' );
if ( $object -> hasDelay ()) print img_warning ( " Late " );
2016-10-18 12:16:12 +02:00
print '</td></tr>' ;
2016-10-17 18:18:06 +02:00
// Budget
2015-06-30 01:34:17 +02:00
print '<tr><td>' . $langs -> trans ( " Budget " ) . '</td><td>' ;
if ( strcmp ( $object -> budget_amount , '' )) print price ( $object -> budget_amount , '' , $langs , 0 , 0 , 0 , $conf -> currency );
print '</td></tr>' ;
2016-10-17 18:18:06 +02:00
// Other attributes
$cols = 2 ;
include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_view.tpl.php' ;
2018-02-15 02:02:32 +01:00
2014-09-18 09:59:29 +02:00
print " </table> " ;
2016-10-17 18:18:06 +02:00
print '</div>' ;
print '<div class="fichehalfright">' ;
print '<div class="ficheaddleft">' ;
print '<div class="underbanner clearboth"></div>' ;
2018-02-15 02:02:32 +01:00
2016-10-17 18:18:06 +02:00
print '<table class="border" width="100%">' ;
2018-02-15 02:02:32 +01:00
2016-10-17 18:18:06 +02:00
// Description
print '<td class="titlefield tdtop">' . $langs -> trans ( " Description " ) . '</td><td>' ;
print nl2br ( $object -> description );
print '</td></tr>' ;
2018-02-15 02:02:32 +01:00
2016-10-17 18:18:06 +02:00
// Categories
2017-04-05 14:48:24 +02:00
if ( $conf -> categorie -> enabled ) {
2016-10-17 18:18:06 +02:00
print '<tr><td valign="middle">' . $langs -> trans ( " Categories " ) . '</td><td>' ;
print $form -> showCategories ( $object -> id , 'project' , 1 );
print " </td></tr> " ;
}
2018-02-15 02:02:32 +01:00
2016-10-17 18:18:06 +02:00
print '</table>' ;
2018-02-15 02:02:32 +01:00
2016-10-17 18:18:06 +02:00
print '</div>' ;
print '</div>' ;
print '</div>' ;
2018-02-15 02:02:32 +01:00
2016-10-17 18:18:06 +02:00
print '<div class="clearboth"></div>' ;
2018-02-15 02:02:32 +01:00
2016-10-17 18:18:06 +02:00
dol_fiche_end ();
2018-02-15 02:02:32 +01:00
2016-10-17 18:18:06 +02:00
print '<br>' ;
2018-02-15 02:02:32 +01:00
2014-09-18 09:59:29 +02:00
// Contacts lines (modules that overwrite templates must declare this into descriptor)
$dirtpls = array_merge ( $conf -> modules_parts [ 'tpl' ], array ( '/core/tpl' ));
foreach ( $dirtpls as $reldir )
2010-01-12 19:02:23 +01:00
{
2014-09-18 09:59:29 +02:00
$res =@ include dol_buildpath ( $reldir . '/contacts.tpl.php' );
if ( $res ) break ;
2010-01-12 19:02:23 +01:00
}
}
2011-08-27 16:24:16 +02:00
llxFooter ();
2012-02-04 18:34:52 +01:00
$db -> close ();