28require
"../../main.inc.php";
29require_once DOL_DOCUMENT_ROOT.
'/projet/class/project.class.php';
30require_once DOL_DOCUMENT_ROOT.
'/projet/class/task.class.php';
31require_once DOL_DOCUMENT_ROOT.
'/core/lib/project.lib.php';
32require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formother.class.php';
33require_once DOL_DOCUMENT_ROOT.
'/core/class/extrafields.class.php';
34require_once DOL_DOCUMENT_ROOT.
'/core/lib/date.lib.php';
35require_once DOL_DOCUMENT_ROOT.
'/core/lib/functions2.lib.php';
36require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formfile.class.php';
37require_once DOL_DOCUMENT_ROOT.
'/core/modules/project/task/modules_task.php';
40$langs->loadLangs(array(
'projects',
'companies'));
44$ref =
GETPOST(
"ref",
'alpha', 1);
45$objectref =
GETPOST(
"taskref",
'alpha');
46$action =
GETPOST(
'action',
'aZ09');
47$confirm =
GETPOST(
'confirm',
'alpha');
49$project_ref =
GETPOST(
'project_ref',
'alpha');
53$hookmanager->initHooks(array(
'projecttaskcommentcard',
'globalcard'));
57$projectstatic =
new Project($db);
60$extrafields->fetch_name_optionals_label(
$object->table_element);
63include DOL_DOCUMENT_ROOT.
'/core/actions_comments.inc.php';
66if (!empty($project_ref) && !empty($withproject)) {
67 if ($projectstatic->fetch(0, $project_ref) > 0) {
68 $objectsarray =
$object->getTasksArray(0, 0, $projectstatic->id, $socid, 0);
69 if (count($objectsarray) > 0) {
70 $id = $objectsarray[0]->id;
72 header(
"Location: ".DOL_URL_ROOT.
'/projet/tasks.php?id='.$projectstatic->id.(empty($mode) ?
'' :
'&mode='.$mode));
99llxHeader(
'', $langs->trans(
"CommentPage"),
'',
'', 0, 0,
'',
'',
'',
'mod-project project-tasks page-task_comment');
101$form =
new Form($db);
105if ($id > 0 || !empty($ref)) {
106 if (
$object->fetch($id, $ref) > 0) {
107 $result =
$object->fetch_optionals();
109 $result =
$object->fetchComments();
114 $result = $projectstatic->fetch(
$object->fk_project);
115 if (!empty($projectstatic->socid)) {
116 $projectstatic->fetch_thirdparty();
118 if (
getDolGlobalString(
'PROJECT_ALLOW_COMMENT_ON_PROJECT') && method_exists($projectstatic,
'fetchComments') && empty($projectstatic->comments)) {
119 $projectstatic->fetchComments();
122 $object->project = clone $projectstatic;
124 $userWrite = $projectstatic->restrictedProjectArea($user,
'write');
126 if (!empty($withproject)) {
130 print
dol_get_fiche_head($head, $tab, $langs->trans(
"Project"), -1, ($projectstatic->public ?
'projectpub' :
'project'));
132 $param = ($mode ==
'mine' ?
'&mode=mine' :
'');
136 $linkback =
'<a href="'.DOL_URL_ROOT.
'/projet/list.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToList").
'</a>';
138 $morehtmlref =
'<div class="refidno">';
140 $morehtmlref .= $projectstatic->title;
142 if ($projectstatic->thirdparty->id > 0) {
143 $morehtmlref .=
'<br>'.$projectstatic->thirdparty->getNomUrl(1,
'project');
145 $morehtmlref .=
'</div>';
148 if (!$user->hasRight(
'projet',
'all',
'lire')) {
149 $objectsListId = $projectstatic->getProjectsAuthorizedForUser($user, 0, 0);
150 $projectstatic->next_prev_filter =
"rowid IN (".$db->sanitize(count($objectsListId) ? implode(
',', array_keys($objectsListId)) :
'0').
")";
153 dol_banner_tab($projectstatic,
'project_ref', $linkback, 1,
'ref',
'ref', $morehtmlref);
155 print
'<div class="fichecenter">';
156 print
'<div class="fichehalfleft">';
157 print
'<div class="underbanner clearboth"></div>';
159 print
'<table class="border centpercent">';
163 print
'<tr><td class="tdtop">';
164 print $langs->trans(
"Usage");
168 print
'<input type="checkbox" disabled name="usage_opportunity"'.(GETPOSTISSET(
'usage_opportunity') ? (
GETPOST(
'usage_opportunity',
'alpha') !=
'' ?
' checked="checked"' :
'') : ($projectstatic->usage_opportunity ?
' checked="checked"' :
'')).
'"> ';
169 $htmltext = $langs->trans(
"ProjectFollowOpportunity");
170 print $form->textwithpicto($langs->trans(
"ProjectFollowOpportunity"), $htmltext);
174 print
'<input type="checkbox" disabled name="usage_task"'.(GETPOSTISSET(
'usage_task') ? (
GETPOST(
'usage_task',
'alpha') !=
'' ?
' checked="checked"' :
'') : ($projectstatic->usage_task ?
' checked="checked"' :
'')).
'"> ';
175 $htmltext = $langs->trans(
"ProjectFollowTasks");
176 print $form->textwithpicto($langs->trans(
"ProjectFollowTasks"), $htmltext);
180 print
'<input type="checkbox" disabled name="usage_bill_time"'.(GETPOSTISSET(
'usage_bill_time') ? (
GETPOST(
'usage_bill_time',
'alpha') !=
'' ?
' checked="checked"' :
'') : ($projectstatic->usage_bill_time ?
' checked="checked"' :
'')).
'"> ';
181 $htmltext = $langs->trans(
"ProjectBillTimeDescription");
182 print $form->textwithpicto($langs->trans(
"BillTime"), $htmltext);
185 if (isModEnabled(
'eventorganization')) {
186 print
'<input type="checkbox" disabled name="usage_organize_event"'.(GETPOSTISSET(
'usage_organize_event') ? (
GETPOST(
'usage_organize_event',
'alpha') !=
'' ?
' checked="checked"' :
'') : ($projectstatic->usage_organize_event ?
' checked="checked"' :
'')).
'"> ';
187 $htmltext = $langs->trans(
"EventOrganizationDescriptionLong");
188 print $form->textwithpicto($langs->trans(
"ManageOrganizeEvent"), $htmltext);
194 print
'<tr><td class="titlefield">'.$langs->trans(
"Visibility").
'</td><td>';
195 if ($projectstatic->public) {
196 print
img_picto($langs->trans(
'SharedProject'),
'world',
'class="paddingrightonly"');
197 print $langs->trans(
'SharedProject');
199 print
img_picto($langs->trans(
'PrivateProject'),
'private',
'class="paddingrightonly"');
200 print $langs->trans(
'PrivateProject');
207 print
'<tr><td>'.$langs->trans(
"OpportunityStatus").
'</td><td>';
208 $code =
dol_getIdFromCode($db, $projectstatic->opp_status,
'c_lead_status',
'rowid',
'code');
210 print $langs->trans(
"OppStatus".$code);
215 print
'<tr><td>'.$langs->trans(
"OpportunityProbability").
'</td><td>';
216 if (strcmp($projectstatic->opp_percent,
'')) {
217 print
price($projectstatic->opp_percent, 0, $langs, 1, 0).
' %';
222 print
'<tr><td>'.$langs->trans(
"OpportunityAmount").
'</td><td>';
223 if (strcmp($projectstatic->opp_amount,
'')) {
224 print
price($projectstatic->opp_amount, 0, $langs, 1, 0, -1, $conf->currency);
225 if (strcmp($projectstatic->opp_percent,
'')) {
226 print
' <span title="'.dol_escape_htmltag($langs->trans(
'OpportunityWeightedAmount')).
'"><span class="opacitymedium">'.$langs->trans(
"OpportunityWeightedAmountShort").
'</span>: <span class="amount">'.
price($projectstatic->opp_amount * $projectstatic->opp_percent / 100, 0, $langs, 1, 0, -1, $conf->currency).
'</span></span>';
233 print
'<tr><td>'.$langs->trans(
"Budget").
'</td><td>';
234 if (strcmp($projectstatic->budget_amount,
'')) {
235 print
price($projectstatic->budget_amount, 0, $langs, 1, 0, 0, $conf->currency);
240 print
'<tr><td>'.$langs->trans(
"Dates").
'</td><td>';
242 print($start ? $start :
'?');
245 print($end ? $end :
'?');
246 if ($projectstatic->hasDelay()) {
258 print
'<div class="fichehalfright">';
259 print
'<div class="underbanner clearboth"></div>';
261 print
'<table class="border centpercent">';
264 print
'<td class="titlefield tdtop">'.$langs->trans(
"Description").
'</td><td>';
265 print nl2br($projectstatic->description);
269 if (isModEnabled(
'category')) {
270 print
'<tr><td class="valignmiddle">'.$langs->trans(
"Categories").
'</td><td>';
271 print $form->showCategories($projectstatic->id,
'project', 1);
280 print
'<div class="clearboth"></div>';
292 $param = ($withproject ?
'&withproject=1' :
'');
293 $linkback = $withproject ?
'<a href="'.DOL_URL_ROOT.
'/projet/tasks.php?id='.$projectstatic->id.
'&restore_lastsearch_values=1">'.$langs->trans(
"BackToList").
'</a>' :
'';
295 print
dol_get_fiche_head($head,
'task_comment', $langs->trans(
"Task"), -1,
'projecttask');
297 if ($action ==
'delete') {
298 print $form->formconfirm($_SERVER[
"PHP_SELF"].
"?id=".
GETPOSTINT(
"id").
'&withproject='.$withproject, $langs->trans(
"DeleteATask"), $langs->trans(
"ConfirmDeleteATask"),
"confirm_delete");
301 if (!
GETPOST(
'withproject') || empty($projectstatic->id)) {
302 $projectsListId = $projectstatic->getProjectsAuthorizedForUser($user, 0, 1);
303 $object->next_prev_filter =
"fk_projet IN (".$db->sanitize($projectsListId).
")";
305 $object->next_prev_filter =
"fk_projet = ".((int) $projectstatic->id);
311 if (empty($withproject)) {
312 $morehtmlref .=
'<div class="refidno">';
313 $morehtmlref .= $langs->trans(
"Project").
': ';
314 $morehtmlref .= $projectstatic->getNomUrl(1);
315 $morehtmlref .=
'<br>';
318 $morehtmlref .= $langs->trans(
"ThirdParty").
': ';
319 if (!empty($projectstatic->thirdparty)) {
320 $morehtmlref .= $projectstatic->thirdparty->getNomUrl(1);
322 $morehtmlref .=
'</div>';
325 dol_banner_tab($object,
'ref', $linkback, 1,
'ref',
'ref', $morehtmlref, $param);
327 print
'<div class="fichecenter">';
329 print
'<div class="underbanner clearboth"></div>';
330 print
'<table class="border centpercent">';
333 print
'<td class="titlefield">'.$langs->trans(
"NbComments").
'</td><td>';
334 print
$object->getNbComments();
339 $parameters = array(
'socid' => $socid);
340 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_view.tpl.php';
350 include DOL_DOCUMENT_ROOT.
'/core/tpl/bloc_comment.tpl.php';
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Class to manage projects.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
img_warning($titlealt='default', $moreatt='', $morecss='pictowarning')
Show warning logo.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
price($amount, $form=0, $outlangs='', $trunc=1, $rounding=-1, $forcerounding=-1, $currency_code='')
Function to format a value into an amount for visual output Function used into PDF and HTML pages.
dol_getIdFromCode($db, $key, $tablename, $fieldkey='code', $fieldid='id', $entityfilter=0, $filters='')
Return an id or code from a code or id.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
task_prepare_head($object)
Prepare array with list of tabs.
project_prepare_head(Project $project, $moreparam='')
Prepare array with list of tabs.
restrictedArea(User $user, $features, $object=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.