dolibarr/htdocs/projet/tasks/document.php

301 lines
9.8 KiB
PHP
Raw Normal View History

<?php
/* Copyright (C) 2010-2012 Regis Houssin <regis.houssin@capnetworks.com>
2012-04-20 09:43:44 +02:00
* Copyright (C) 2006-2012 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2012 Florian Henry <florian.henry@open-concept.pro>
* Copyright (C) 2013 Cédric Salvador <csalvador@gpcsolutions.fr>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (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/>.
*/
/**
* \file htdocs/projet/tasks/document.php
* \ingroup project
* \brief Page de gestion des documents attachees a une tache d'un projet
*/
require '../../main.inc.php';
require_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
require_once DOL_DOCUMENT_ROOT.'/projet/class/task.class.php';
require_once DOL_DOCUMENT_ROOT.'/core/lib/project.lib.php';
require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
require_once DOL_DOCUMENT_ROOT.'/core/lib/images.lib.php';
require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php';
2018-05-26 21:11:25 +02:00
// Load translation files required by the page
$langs->loadLangs(array('projects', 'other'));
2012-04-18 11:16:15 +02:00
$action=GETPOST('action','alpha');
$confirm=GETPOST('confirm','alpha');
$mine = $_REQUEST['mode']=='mine' ? 1 : 0;
//if (! $user->rights->projet->all->lire) $mine=1; // Special for projects
2012-02-27 22:26:22 +01:00
$id = GETPOST('id','int');
2012-04-18 11:16:15 +02:00
$ref= GETPOST('ref','alpha');
$withproject=GETPOST('withproject','int');
$project_ref = GETPOST('project_ref','alpha');
// Security check
$socid=0;
//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.
//$result=restrictedArea($user,'projet',$id,'');
if (!$user->rights->projet->lire) accessforbidden();
// Get parameters
2010-11-20 14:08:44 +01:00
$sortfield = GETPOST("sortfield",'alpha');
$sortorder = GETPOST("sortorder",'alpha');
$page = GETPOST("page",'int');
2017-06-06 10:53:53 +02:00
if (empty($page) || $page == -1) { $page = 0; } // If $page is not defined, or '' or -1
2010-11-20 14:08:44 +01:00
$offset = $conf->liste_limit * $page;
$pageprev = $page - 1;
$pagenext = $page + 1;
2010-11-20 14:08:44 +01:00
if (! $sortorder) $sortorder="ASC";
if (! $sortfield) $sortfield="name";
2012-04-18 11:16:15 +02:00
$object = new Task($db);
$projectstatic = new Project($db);
/*
* Actions
*/
2012-04-18 11:16:15 +02:00
// Retreive First Task ID of Project if withprojet is on to allow project prev next to work
if (! empty($project_ref) && ! empty($withproject))
{
2012-04-18 11:16:15 +02:00
if ($projectstatic->fetch(0,$project_ref) > 0)
{
$tasksarray=$object->getTasksArray(0, 0, $projectstatic->id, $socid, 0);
if (count($tasksarray) > 0)
{
2012-04-18 11:16:15 +02:00
$id=$tasksarray[0]->id;
$object->fetch($id);
}
2012-04-18 11:16:15 +02:00
else
{
2012-08-31 05:58:38 +02:00
header("Location: ".DOL_URL_ROOT.'/projet/tasks.php?id='.$projectstatic->id.($withproject?'&withproject=1':'').(empty($mode)?'':'&mode='.$mode));
exit;
}
2012-04-18 11:16:15 +02:00
}
}
2012-04-20 09:43:44 +02:00
if ($id > 0 || ! empty($ref))
{
if ($object->fetch($id,$ref) > 0)
{
if(! empty($conf->global->PROJECT_ALLOW_COMMENT_ON_TASK) && method_exists($object, 'fetchComments') && empty($object->comments)) $object->fetchComments();
2012-04-20 09:43:44 +02:00
$projectstatic->fetch($object->fk_project);
if(! empty($conf->global->PROJECT_ALLOW_COMMENT_ON_PROJECT) && method_exists($projectstatic, 'fetchComments') && empty($projectstatic->comments)) $projectstatic->fetchComments();
2012-04-20 09:43:44 +02:00
2013-04-22 12:35:31 +02:00
if (! empty($projectstatic->socid)) {
$projectstatic->fetch_thirdparty();
}
$object->project = clone $projectstatic;
2012-04-20 09:43:44 +02:00
$upload_dir = $conf->projet->dir_output.'/'.dol_sanitizeFileName($projectstatic->ref).'/'.dol_sanitizeFileName($object->ref);
}
else
{
dol_print_error($db);
}
}
include_once DOL_DOCUMENT_ROOT . '/core/actions_linkedfiles.inc.php';
2012-04-18 11:16:15 +02:00
/*
* View
*/
2012-04-18 11:16:15 +02:00
$form = new Form($db);
2012-07-28 17:34:21 +02:00
llxHeader('',$langs->trans('Task'));
2012-04-18 11:16:15 +02:00
if ($object->id > 0)
2012-04-20 09:43:44 +02:00
{
$projectstatic->fetch_thirdparty();
2012-04-20 09:43:44 +02:00
$userWrite = $projectstatic->restrictedProjectArea($user,'write');
if (! empty($withproject))
{
// Tabs for project
$tab='tasks';
$head=project_prepare_head($projectstatic);
2017-09-17 20:05:36 +02:00
dol_fiche_head($head, $tab, $langs->trans("Project"), -1, ($projectstatic->public?'projectpub':'project'));
2012-04-20 09:43:44 +02:00
$param=($mode=='mine'?'&mode=mine':'');
2016-10-18 12:16:12 +02:00
// Project card
2017-06-07 10:55:39 +02:00
$linkback = '<a href="'.DOL_URL_ROOT.'/projet/list.php?restore_lastsearch_values=1">'.$langs->trans("BackToList").'</a>';
2016-10-18 12:16:12 +02:00
$morehtmlref='<div class="refidno">';
// Title
$morehtmlref.=$projectstatic->title;
// Thirdparty
2017-06-07 10:55:39 +02:00
if ($projectstatic->thirdparty->id > 0)
2016-10-18 12:16:12 +02:00
{
$morehtmlref.='<br>'.$langs->trans('ThirdParty') . ' : ' . $projectstatic->thirdparty->getNomUrl(1, 'project');
}
$morehtmlref.='</div>';
2017-06-07 10:55:39 +02:00
2016-10-18 12:16:12 +02:00
// Define a complementary filter for search of next/prev ref.
if (! $user->rights->projet->all->lire)
{
$objectsListId = $projectstatic->getProjectsAuthorizedForUser($user,0,0);
2016-10-18 12:16:12 +02:00
$projectstatic->next_prev_filter=" rowid in (".(count($objectsListId)?join(',',array_keys($objectsListId)):'0').")";
}
2017-06-07 10:55:39 +02:00
2017-01-20 10:27:37 +01:00
dol_banner_tab($projectstatic, 'project_ref', $linkback, 1, 'ref', 'ref', $morehtmlref);
2017-06-07 10:55:39 +02:00
2016-10-18 12:16:12 +02:00
print '<div class="fichecenter">';
print '<div class="fichehalfleft">';
print '<div class="underbanner clearboth"></div>';
2017-06-07 10:55:39 +02:00
2016-10-18 12:16:12 +02:00
print '<table class="border" width="100%">';
2017-06-07 10:55:39 +02:00
2016-10-18 12:16:12 +02:00
// Visibility
print '<tr><td class="titlefield">'.$langs->trans("Visibility").'</td><td>';
if ($projectstatic->public) print $langs->trans('SharedProject');
else print $langs->trans('PrivateProject');
print '</td></tr>';
2017-06-07 10:55:39 +02:00
2016-10-18 12:16:12 +02:00
// Date start - end
print '<tr><td>'.$langs->trans("DateStart").' - '.$langs->trans("DateEnd").'</td><td>';
$start = dol_print_date($projectstatic->date_start,'day');
print ($start?$start:'?');
$end = dol_print_date($projectstatic->date_end,'day');
print ' - ';
print ($end?$end:'?');
if ($projectstatic->hasDelay()) print img_warning("Late");
2016-10-18 12:16:12 +02:00
print '</td></tr>';
2017-06-07 10:55:39 +02:00
2016-10-18 12:16:12 +02:00
// Budget
print '<tr><td>'.$langs->trans("Budget").'</td><td>';
if (strcmp($projectstatic->budget_amount, '')) print price($projectstatic->budget_amount,'',$langs,1,0,0,$conf->currency);
print '</td></tr>';
2017-06-07 10:55:39 +02:00
2016-10-18 12:16:12 +02:00
// Other attributes
$cols = 2;
//include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_view.tpl.php';
2017-06-07 10:55:39 +02:00
2016-10-18 12:16:12 +02:00
print '</table>';
2017-06-07 10:55:39 +02:00
2016-10-18 12:16:12 +02:00
print '</div>';
print '<div class="fichehalfright">';
print '<div class="ficheaddleft">';
print '<div class="underbanner clearboth"></div>';
2017-06-07 10:55:39 +02:00
2016-10-18 12:16:12 +02:00
print '<table class="border" width="100%">';
2017-06-07 10:55:39 +02:00
2016-10-18 12:16:12 +02:00
// Description
print '<td class="titlefield tdtop">'.$langs->trans("Description").'</td><td>';
print nl2br($projectstatic->description);
print '</td></tr>';
2017-06-07 10:55:39 +02:00
2016-10-18 12:16:12 +02:00
// Categories
if($conf->categorie->enabled) {
print '<tr><td valign="middle">'.$langs->trans("Categories").'</td><td>';
print $form->showCategories($projectstatic->id,'project',1);
print "</td></tr>";
}
2017-06-07 10:55:39 +02:00
2016-10-18 12:16:12 +02:00
print '</table>';
2017-06-07 10:55:39 +02:00
2016-10-18 12:16:12 +02:00
print '</div>';
print '</div>';
print '</div>';
2017-06-07 10:55:39 +02:00
2016-10-18 12:16:12 +02:00
print '<div class="clearboth"></div>';
2017-06-07 10:55:39 +02:00
2012-04-20 09:43:44 +02:00
dol_fiche_end();
2017-09-17 20:05:36 +02:00
print '<br>';
2012-04-20 09:43:44 +02:00
}
$head = task_prepare_head($object);
2018-03-06 21:51:43 +01:00
dol_fiche_head($head, 'task_document', $langs->trans("Task"), -1, 'projecttask', 0, '', 'reposition');
2012-04-20 09:43:44 +02:00
// Files list constructor
$filearray=dol_dir_list($upload_dir,"files",0,'','(\.meta|_preview.*\.png)$',$sortfield,(strtolower($sortorder)=='desc'?SORT_DESC:SORT_ASC),1);
2012-04-20 09:43:44 +02:00
$totalsize=0;
foreach($filearray as $key => $file)
{
$totalsize+=$file['size'];
}
2017-06-07 10:55:39 +02:00
2017-04-05 14:48:24 +02:00
$param=(GETPOST('withproject')?'&withproject=1':'');
$linkback=GETPOST('withproject')?'<a href="'.DOL_URL_ROOT.'/projet/tasks.php?id='.$projectstatic->id.'">'.$langs->trans("BackToList").'</a>':'';
2012-04-20 09:43:44 +02:00
2017-04-05 14:48:24 +02:00
if (! GETPOST('withproject') || empty($projectstatic->id))
{
$projectsListId = $projectstatic->getProjectsAuthorizedForUser($user,0,1);
$object->next_prev_filter=" fk_projet in (".$projectsListId.")";
}
else $object->next_prev_filter=" fk_projet = ".$projectstatic->id;
2017-06-07 10:55:39 +02:00
2017-04-05 14:48:24 +02:00
$morehtmlref='';
2017-06-07 10:55:39 +02:00
2017-05-18 12:12:36 +02:00
// Project
if (empty($withproject))
{
$morehtmlref.='<div class="refidno">';
$morehtmlref.=$langs->trans("Project").': ';
$morehtmlref.=$projectstatic->getNomUrl(1);
$morehtmlref.='<br>';
2017-06-07 10:55:39 +02:00
2017-05-18 12:12:36 +02:00
// Third party
$morehtmlref.=$langs->trans("ThirdParty").': ';
$morehtmlref.=$projectstatic->thirdparty->getNomUrl(1);
$morehtmlref.='</div>';
}
2017-06-07 10:55:39 +02:00
2017-04-05 14:48:24 +02:00
dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref, $param);
2017-06-07 10:55:39 +02:00
2017-04-05 14:48:24 +02:00
print '<div class="fichecenter">';
2017-06-07 10:55:39 +02:00
2017-04-05 14:48:24 +02:00
print '<div class="underbanner clearboth"></div>';
2012-04-20 09:43:44 +02:00
print '<table class="border" width="100%">';
// Files infos
2017-04-05 14:48:24 +02:00
print '<tr><td class="titlefield">'.$langs->trans("NbOfAttachedFiles").'</td><td colspan="3">'.count($filearray).'</td></tr>';
2012-04-20 09:43:44 +02:00
print '<tr><td>'.$langs->trans("TotalSizeOfAttachedFiles").'</td><td colspan="3">'.$totalsize.' '.$langs->trans("bytes").'</td></tr>';
print "</table>\n";
2017-04-05 14:48:24 +02:00
print '</div>';
2017-06-07 10:55:39 +02:00
2012-04-20 09:43:44 +02:00
dol_fiche_end();
print '<br>';
$param='';
if ($withproject) $param .= '&withproject=1';
$modulepart = 'project_task';
$permission = $user->rights->projet->creer;
$permtoedit = $user->rights->projet->creer;
$relativepathwithnofile=dol_sanitizeFileName($projectstatic->ref).'/'.dol_sanitizeFileName($object->ref).'/';
2013-09-18 16:11:36 +02:00
include_once DOL_DOCUMENT_ROOT . '/core/tpl/document_actions_post_headers.tpl.php';
}
else
{
2012-08-31 05:58:38 +02:00
header('Location: index.php');
exit;
}
llxFooter();
$db->close();