* Copyright (C) 2004-2010 Laurent Destailleur * Copyright (C) 2005-2010 Regis Houssin * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /** * \file htdocs/projet/fiche.php * \ingroup projet * \brief Project card * \version $Id$ */ require("../main.inc.php"); require_once(DOL_DOCUMENT_ROOT."/projet/class/project.class.php"); require_once(DOL_DOCUMENT_ROOT."/lib/project.lib.php"); require_once(DOL_DOCUMENT_ROOT."/core/class/html.formfile.class.php"); require_once(DOL_DOCUMENT_ROOT."/includes/modules/project/modules_project.php"); $langs->load("projects"); $langs->load('companies'); $projectid = (isset($_GET["id"])?$_GET["id"]:(isset($_POST["id"])?$_POST["id"]:'')); $projectref = (isset($_GET["ref"])?$_GET["ref"]:''); if ($projectid == '' && $projectref == '' && ($_GET['action'] != "create" && $_POST['action'] != "add" && $_POST["action"] != "update" && !$_POST["cancel"])) accessforbidden(); $mine = $_REQUEST['mode']=='mine' ? 1 : 0; //if (! $user->rights->projet->all->lire) $mine=1; // Special for projects // Security check $socid=0; if ($user->societe_id > 0) $socid=$user->societe_id; $result = restrictedArea($user, 'projet', $projectid); /* * Actions */ if ($_POST["action"] == 'add' && $user->rights->projet->creer) { $error=0; if (empty($_POST["ref"])) { $mesg='
'.$langs->trans("ErrorFieldRequired",$langs->transnoentities("Ref")).'
'; $error++; } if (empty($_POST["title"])) { $mesg='
'.$langs->trans("ErrorFieldRequired",$langs->transnoentities("Label")).'
'; $error++; } if (! $error) { $project = new Project($db); $project->ref = $_POST["ref"]; $project->title = $_POST["title"]; $project->socid = $_POST["socid"]; $project->description = $_POST["description"]; $project->public = $_POST["public"]; $project->datec=dol_now('tzserver'); $project->dateo=dol_mktime(12,0,0,$_POST['projectmonth'],$_POST['projectday'],$_POST['projectyear']); $project->datee=dol_mktime(12,0,0,$_POST['projectendmonth'],$_POST['projectendday'],$_POST['projectendyear']); $result = $project->create($user); if ($result > 0) { // Add myself as project leader $result = $project->add_contact($user->id, 'PROJECTLEADER', 'internal'); Header("Location:fiche.php?id=".$project->id); exit; } else { $langs->load("errors"); $mesg='
'.$langs->trans($project->error).'
'; $_GET["action"] = 'create'; } } else { $_GET["action"] = 'create'; } } if ($_POST["action"] == 'update' && ! $_POST["cancel"] && $user->rights->projet->creer) { $error=0; if (empty($_POST["ref"])) { $error++; //$_GET["id"]=$_POST["id"]; // On retourne sur la fiche projet $mesg='
'.$langs->trans("ErrorFieldRequired",$langs->transnoentities("Ref")).'
'; } if (empty($_POST["title"])) { $error++; //$_GET["id"]=$_POST["id"]; // On retourne sur la fiche projet $mesg='
'.$langs->trans("ErrorFieldRequired",$langs->transnoentities("Label")).'
'; } if (! $error) { $project = new Project($db); $project->fetch($_POST["id"]); $project->ref = $_POST["ref"]; $project->title = $_POST["title"]; $project->socid = $_POST["socid"]; $project->description = $_POST["description"]; $project->public = $_POST["public"]; $project->date_start = empty($_POST["project"])?'':dol_mktime(12,0,0,$_POST['projectmonth'],$_POST['projectday'],$_POST['projectyear']); $project->date_end = empty($_POST["projectend"])?'':dol_mktime(12,0,0,$_POST['projectendmonth'],$_POST['projectendday'],$_POST['projectendyear']); $result=$project->update($user); $_GET["id"]=$project->id; // On retourne sur la fiche projet } else { $_GET["id"]=$_POST["id"]; $_GET['action']='edit'; } } // Build doc if ($_REQUEST['action'] == 'builddoc' && $user->rights->projet->creer) { $project = new Project($db); $project->fetch($_GET['id']); if ($_REQUEST['model']) { $project->setDocModel($user, $_REQUEST['model']); } $outputlangs = $langs; if (! empty($_REQUEST['lang_id'])) { $outputlangs = new Translate("",$conf); $outputlangs->setDefaultLang($_REQUEST['lang_id']); } $result=project_pdf_create($db, $project, $project->modelpdf, $outputlangs); if ($result <= 0) { dol_print_error($db,$result); exit; } else { Header ('Location: '.$_SERVER["PHP_SELF"].'?id='.$project->id.(empty($conf->global->MAIN_JUMP_TAG)?'':'#builddoc')); exit; } } if ($_REQUEST['action'] == 'confirm_validate' && $_REQUEST['confirm'] == 'yes') { $project = new Project($db); $project->fetch($_GET["id"]); $result = $project->setValid($user, $conf->projet->outputdir); if ($result <= 0) { $mesg='
'.$project->error.'
'; } } if ($_REQUEST['action'] == 'confirm_close' && $_REQUEST['confirm'] == 'yes') { $project = new Project($db); $project->fetch($_GET["id"]); $result = $project->setClose($user, $conf->projet->outputdir); if ($result <= 0) { $mesg='
'.$project->error.'
'; } } if ($_REQUEST['action'] == 'confirm_reopen' && $_REQUEST['confirm'] == 'yes') { $project = new Project($db); $project->fetch($_GET["id"]); $result = $project->setValid($user, $conf->projet->outputdir); if ($result <= 0) { $mesg='
'.$project->error.'
'; } } if ($_REQUEST["action"] == 'confirm_delete' && $_REQUEST["confirm"] == "yes" && $user->rights->projet->supprimer) { $project = new Project($db); $project->fetch($_GET["id"]); $result=$project->delete($user); if ($result > 0) { Header("Location: index.php"); exit; } else { $mesg='
'.$langs->trans("CantRemoveProject").'
'; } } /* * View */ $html = new Form($db); $formfile = new FormFile($db); $userstatic = new User($db); $help_url="EN:Module_Projects|FR:Module_Projets|ES:Módulo_Proyectos"; llxHeader("",$langs->trans("Projects"),$help_url); if ($_GET["action"] == 'create' && $user->rights->projet->creer) { /* * Create */ print_fiche_titre($langs->trans("NewProject")); if ($mesg) print $mesg.'
'; print '
'; print ''; print ''; print ''; $project = new Project($db); $defaultref=''; $obj = empty($conf->global->PROJECT_ADDON)?'mod_project_simple':$conf->global->PROJECT_ADDON; if (! empty($conf->global->PROJECT_ADDON) && is_readable(DOL_DOCUMENT_ROOT ."/includes/modules/project/".$conf->global->PROJECT_ADDON.".php")) { require_once(DOL_DOCUMENT_ROOT ."/includes/modules/project/".$conf->global->PROJECT_ADDON.".php"); $modProject = new $obj; $defaultref = $modProject->getNextValue($soc,$project); } if (is_numeric($defaultref) && $defaultref <= 0) $defaultref=''; // Ref print ''; // Label print ''; // Customer print ''; // Public print ''; // Date start print ''; // Date end print ''; // Description print ''; print ''; print '
'.$langs->trans("Ref").'
'.$langs->trans("Label").'
'.$langs->trans("Company").''; print $html->select_societes($_REQUEST["socid"],'socid','',1,1); print '
'.$langs->trans("Visibility").''; $array=array(0 => $langs->trans("PrivateProject"),1 => $langs->trans("SharedProject")); print $html->selectarray('public',$array,$project->public); print '
'.$langs->trans("DateStart").''; print $html->select_date('','project'); print '
'.$langs->trans("DateEnd").''; print $html->select_date(-1,'projectend'); print '
'.$langs->trans("Description").''; print ''; print '
'; print '
'; print '
'; } else { /* * Show or edit */ if ($mesg) print $mesg; $project = new Project($db); $project->fetch($projectid,$projectref); if ($project->societe->id > 0) $result=$project->societe->fetch($project->societe->id); // To verify role of users $userAccess = $project->restrictedProjectArea($user); $head=project_prepare_head($project); dol_fiche_head($head, 'project', $langs->trans("Project"),0,($project->public?'projectpub':'project')); // Confirmation validation if ($_GET['action'] == 'validate') { $ret=$html->form_confirm($_SERVER["PHP_SELF"].'?id='.$project->id, $langs->trans('ValidateProject'), $langs->trans('ConfirmValidateProject'), 'confirm_validate','',0,1); if ($ret == 'html') print '
'; } // Confirmation close if ($_GET["action"] == 'close') { $ret=$html->form_confirm($_SERVER["PHP_SELF"]."?id=".$project->id,$langs->trans("CloseAProject"),$langs->trans("ConfirmCloseAProject"),"confirm_close",'','',1); if ($ret == 'html') print '
'; } // Confirmation reopen if ($_GET["action"] == 'reopen') { $ret=$html->form_confirm($_SERVER["PHP_SELF"]."?id=".$project->id,$langs->trans("ReOpenAProject"),$langs->trans("ConfirmReOpenAProject"),"confirm_reopen",'','',1); if ($ret == 'html') print '
'; } // Confirmation delete if ($_GET["action"] == 'delete') { $ret=$html->form_confirm($_SERVER["PHP_SELF"]."?id=".$project->id,$langs->trans("DeleteAProject"),$langs->trans("ConfirmDeleteAProject"),"confirm_delete",'','',1); if ($ret == 'html') print '
'; } if ($_GET["action"] == 'edit' && $userAccess) { print '
'; print ''; print ''; print ''; print ''; // Ref print ''; print ''; // Label print ''; print ''; // Customer print ''; // Visibility print ''; // Statut print ''; // Date start print ''; // Date end print ''; // Description print ''; print ''; print ''; print '
'.$langs->trans("Ref").'
'.$langs->trans("Label").'
'.$langs->trans("Company").''; print $html->select_societes($project->societe->id,'socid','',1,1); print '
'.$langs->trans("Visibility").''; $array=array(0 => $langs->trans("PrivateProject"),1 => $langs->trans("SharedProject")); print $html->selectarray('public',$array,$project->public); print '
'.$langs->trans("Status").''.$project->getLibStatut(4).'
'.$langs->trans("DateStart").''; print $html->select_date($project->date_start,'project'); print '
'.$langs->trans("DateEnd").''; print $html->select_date($project->date_end?$project->date_end:-1,'projectend'); print '
'.$langs->trans("Description").''; print ''; print '
'; print '   '; print '
'; print '
'; } else { print ''; // Ref print ''; // Label print ''; // Third party print ''; // Visibility print ''; // Statut print ''; // Date start print ''; // Date end print ''; // Description print ''; print '
'.$langs->trans("Ref").''; // Define a complementary filter for search of next/prev ref. $projectsListId = $project->getProjectsAuthorizedForUser($user,$mine,1); $project->next_prev_filter=" rowid in (".$projectsListId.")"; print $html->showrefnav($project,'ref','',1,'ref','ref'); print '
'.$langs->trans("Label").''.$project->title.'
'.$langs->trans("Company").''; if ($project->societe->id > 0) print $project->societe->getNomUrl(1); else print' '; print '
'.$langs->trans("Visibility").''; if ($project->public) print $langs->trans('SharedProject'); else print $langs->trans('PrivateProject'); print '
'.$langs->trans("Status").''.$project->getLibStatut(4).'
'.$langs->trans("DateStart").''; print dol_print_date($project->date_start,'day'); print '
'.$langs->trans("DateEnd").''; print dol_print_date($project->date_end,'day'); print '
'.$langs->trans("Description").''; print nl2br($project->description); print '
'; } print ''; /* * Boutons actions */ print '
'; if ($_GET["action"] != "edit" ) { // Validate if ($project->statut == 0 && $user->rights->projet->creer) { if ($userAccess) { print ''.$langs->trans("Valid").''; } else { print ''.$langs->trans('Valid').''; } } // Modify if ($project->statut != 2 && $user->rights->projet->creer) { if ($userAccess) { print ''.$langs->trans("Modify").''; } else { print ''.$langs->trans('Modify').''; } } // Close if ($project->statut == 1 && $user->rights->projet->creer) { if ($userAccess) { print ''.$langs->trans("Close").''; } else { print ''.$langs->trans('Close').''; } } // Reopen if ($project->statut == 2 && $user->rights->projet->creer) { if ($userAccess) { print ''.$langs->trans("ReOpen").''; } else { print ''.$langs->trans('ReOpen').''; } } // Delete if ($user->rights->projet->supprimer) { if ($userAccess) { print ''.$langs->trans("Delete").''; } else { print ''.$langs->trans('Delete').''; } } } print "
"; print "
\n"; if ($_GET['action'] != 'presend') { print '
'; print ''; // ancre /* * Documents generes */ $filename=dol_sanitizeFileName($project->ref); $filedir=$conf->projet->dir_output . "/" . dol_sanitizeFileName($project->ref); $urlsource=$_SERVER["PHP_SELF"]."?id=".$project->id; $genallowed=($user->rights->projet->creer && $userAccess); $delallowed=($user->rights->projet->supprimer && $userAccess); $var=true; $somethingshown=$formfile->show_documents('project',$filename,$filedir,$urlsource,$genallowed,$delallowed,$project->modelpdf); print ''; // List of actions on element include_once(DOL_DOCUMENT_ROOT.'/core/class/html.formactions.class.php'); $formactions=new FormActions($db); $somethingshown=$formactions->showactions($project,'project',$socid); print '
'; } } $db->close(); llxFooter('$Date$ - $Revision$'); ?>