2025-08-04 11:12:22 +00:00
< ? php
/* Copyright ( C ) 2005 - 2016 Laurent Destailleur < eldy @ users . sourceforge . net >
* Copyright ( C ) 2005 - 2009 Regis Houssin < regis . houssin @ inodbox . com >
2025-08-07 10:28:09 +00:00
* Copyright ( C ) 2024 MDW < mdeweerd @ users . noreply . github . com >
2025-08-04 11:12:22 +00:00
* Copyright ( C ) 2024 Frédéric France < frederic . france @ free . fr >
2025-08-09 13:30:43 +00:00
* Copyright ( C ) 2025 Valentin Grimal < valentin . grimal @ pichinov . com >
2025-08-04 11:12:22 +00: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
* 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
* along with this program . If not , see < https :// www . gnu . org / licenses />.
*/
/**
* \file htdocs / commande / messaging . php
* \ingroup order
* \brief Page with events on order
*/
// Load Dolibarr environment
require '../main.inc.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/lib/functions2.lib.php' ;
2025-08-09 13:30:43 +00:00
require_once DOL_DOCUMENT_ROOT . '/commande/class/commande.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/lib/order.lib.php' ;
2025-08-04 11:12:22 +00:00
require_once DOL_DOCUMENT_ROOT . '/core/lib/company.lib.php' ;
/**
* @ var Conf $conf
* @ var DoliDB $db
* @ var HookManager $hookmanager
* @ var Translate $langs
* @ var User $user
*/
// Load translation files required by the page
2025-08-09 13:30:43 +00:00
$langs -> load ( " orders " );
2025-08-04 11:12:22 +00:00
$id = GETPOSTINT ( 'id' );
$ref = GETPOST ( 'ref' , 'alpha' );
$socid = GETPOSTINT ( 'socid' );
$action = GETPOST ( 'action' , 'aZ09' );
$contextpage = GETPOST ( 'contextpage' , 'aZ09' );
$limit = GETPOSTINT ( 'limit' ) ? GETPOSTINT ( 'limit' ) : $conf -> liste_limit ;
$sortfield = GETPOST ( " sortfield " , " aZ09comma " );
$sortorder = GETPOST ( " sortorder " , 'aZ09comma' );
$page = GETPOSTISSET ( 'pageplusone' ) ? ( GETPOSTINT ( 'pageplusone' ) - 1 ) : GETPOSTINT ( " page " );
$page = is_numeric ( $page ) ? $page : 0 ;
$page = $page == - 1 ? 0 : $page ;
if ( ! $sortfield ) {
$sortfield = " a.datep,a.id " ;
}
if ( ! $sortorder ) {
$sortorder = " DESC " ;
}
$offset = $limit * $page ;
$pageprev = $page - 1 ;
$pagenext = $page + 1 ;
2026-02-08 18:30:17 +00:00
if ( GETPOSTISARRAY ( 'actioncode' )) {
$actioncode = GETPOST ( 'actioncode' , 'array:alpha' , 3 );
2025-08-04 11:12:22 +00:00
if ( ! count ( $actioncode )) {
$actioncode = '0' ;
2026-02-08 18:30:17 +00:00
} else {
$actioncode = implode ( ',' , $actioncode );
2025-08-04 11:12:22 +00:00
}
} else {
$actioncode = GETPOST ( " actioncode " , " alpha " , 3 ) ? GETPOST ( " actioncode " , " alpha " , 3 ) : ( GETPOST ( " actioncode " ) == '0' ? '0' : getDolGlobalString ( 'AGENDA_DEFAULT_FILTER_TYPE_FOR_OBJECT' ));
}
2026-02-08 18:30:17 +00:00
2025-08-04 11:12:22 +00:00
$search_rowid = GETPOST ( 'search_rowid' );
$search_agenda_label = GETPOST ( 'search_agenda_label' );
2025-08-07 11:42:11 +00:00
$hookmanager -> initHooks ( array ( 'orderagenda' , 'globalcard' ));
2025-08-04 11:12:22 +00:00
2025-08-07 12:38:30 +00:00
// Initialize a technical objects
$object = new Commande ( $db );
$hookmanager -> initHooks ( array ( 'orderagenda' , 'globalcard' ));
// Load object
include DOL_DOCUMENT_ROOT . '/core/actions_fetchobject.inc.php' ; // Must be 'include', not 'include_once'. Include fetch and fetch_thirdparty but not fetch_optionals
if ( $id > 0 || ! empty ( $ref )) {
$upload_dir = $conf -> order -> multidir_output [ ! empty ( $object -> entity ) ? $object -> entity : $conf -> entity ] . " / " . $object -> id ;
}
2025-08-04 11:12:22 +00:00
// Security check
2025-08-07 12:38:30 +00:00
if ( $user -> socid > 0 ) {
$socid = $user -> socid ; // For external user, no check is done on company because readability is managed by public status of order and assignment.
}
$isdraft = (( $object -> status == $object :: STATUS_DRAFT ) ? 1 : 0 );
restrictedArea ( $user , 'commande' , $id , '' , '' , 'fk_soc' , 'rowid' , $isdraft );
2025-08-04 11:12:22 +00:00
2025-08-09 13:30:43 +00:00
if ( ! $user -> hasRight ( 'commande' , 'lire' )) {
2025-08-04 11:12:22 +00:00
accessforbidden ();
}
/*
* Actions
*/
2025-08-09 13:30:43 +00:00
$object = new Commande ( $db );
2025-08-04 11:12:22 +00:00
if ( $id > 0 || ! empty ( $ref )) {
$object -> fetch ( $id , $ref );
$object -> fetch_thirdparty ();
// Note: Commande class might not have fetchComments. You may need to implement this
// if (getDolGlobalString('PROJECT_ALLOW_COMMENT_ON_PROJECT') && method_exists($object, 'fetchComments') && empty($object->comments)) {
// $object->fetchComments();
// }
$object -> info ( $object -> id );
}
$parameters = array ( 'id' => $socid );
$reshook = $hookmanager -> executeHooks ( 'doActions' , $parameters , $object , $action ); // Note that $action and $object may have been modified by some hooks
if ( $reshook < 0 ) {
setEventMessages ( $hookmanager -> error , $hookmanager -> errors , 'errors' );
}
// Purge search criteria
if ( GETPOST ( 'button_removefilter_x' , 'alpha' ) || GETPOST ( 'button_removefilter.x' , 'alpha' ) || GETPOST ( 'button_removefilter' , 'alpha' )) { // All test are required to be compatible with all browsers
$actioncode = '' ;
$search_agenda_label = '' ;
}
/*
* View
*/
$form = new Form ( $db );
2025-08-07 11:42:11 +00:00
2025-08-04 11:12:22 +00:00
$agenda = ( isModEnabled ( 'agenda' ) && ( $user -> hasRight ( 'agenda' , 'myactions' , 'read' ) || $user -> hasRight ( 'agenda' , 'allactions' , 'read' ))) ? '/' . $langs -> trans ( " Agenda " ) : '' ;
$title = $langs -> trans ( 'Events' ) . $agenda . ' - ' . $object -> ref ; // Removed $object->name as orders typically don't have it
2025-08-09 13:30:43 +00:00
if ( getDolGlobalString ( 'MAIN_HTML_TITLE' ) && preg_match ( '/ordernamonly/' , getDolGlobalString ( 'MAIN_HTML_TITLE' ))) {
2025-08-04 11:12:22 +00:00
$title = $object -> ref . ' - ' . $langs -> trans ( " Info " ); // Simplified title
}
2025-08-09 13:30:43 +00:00
$help_url = " EN:Module_Orders|FR:Module_Commandes|ES:Módulo_Pedidos " ;
llxHeader ( " " , $title , $help_url , '' , 0 , 0 , '' , '' , '' , 'mod-order page-card_messaging' );
2025-08-04 11:12:22 +00:00
2025-08-09 13:30:43 +00:00
$head = commande_prepare_head ( $object );
2025-08-04 11:12:22 +00:00
2025-08-07 11:42:11 +00:00
print dol_get_fiche_head ( $head , 'agenda' , $langs -> trans ( " Order " ), - 1 , $object -> picto );
2025-08-04 11:12:22 +00:00
// Order card
2025-08-09 13:30:43 +00:00
if ( ! empty ( $_SESSION [ 'pageforbacktolist' ]) && ! empty ( $_SESSION [ 'pageforbacktolist' ][ 'order' ])) {
$tmpurl = $_SESSION [ 'pageforbacktolist' ][ 'order' ];
2025-08-04 11:12:22 +00:00
$tmpurl = preg_replace ( '/__SOCID__/' , ( string ) $object -> socid , $tmpurl );
$linkback = '<a href="' . $tmpurl . ( preg_match ( '/\?/' , $tmpurl ) ? '&' : '?' ) . 'restore_lastsearch_values=1">' . $langs -> trans ( " BackToList " ) . '</a>' ;
} else {
2025-08-09 13:30:43 +00:00
$linkback = '<a href="' . DOL_URL_ROOT . '/commande/list.php?restore_lastsearch_values=1">' . $langs -> trans ( " BackToList " ) . '</a>' ;
2025-08-04 11:12:22 +00:00
}
$morehtmlref = '<div class="refidno">' ;
// Title
2025-08-09 13:30:43 +00:00
$morehtmlref .= $object -> ref ;
2025-08-04 11:12:22 +00:00
// Thirdparty
if ( ! empty ( $object -> thirdparty -> id ) && $object -> thirdparty -> id > 0 ) {
2025-08-07 10:28:09 +00:00
$morehtmlref .= '<br>' . $object -> thirdparty -> getNomUrl ( 1 , 'order' );
2025-08-04 11:12:22 +00:00
}
$morehtmlref .= '</div>' ;
// Define a complementary filter for search of next/prev ref.
2025-08-09 13:30:43 +00:00
if ( ! $user -> hasRight ( 'commande' , 'all' , 'lire' )) {
2025-08-04 11:12:22 +00:00
// This part needs a function specific to orders, e.g., getOrdersAuthorizedForUser
// For now, it's left as a placeholder or requires a custom implementation in Commande class
// $objectsListId = $object->getOrdersAuthorizedForUser($user, 0, 0); // Assuming such a method exists or will be created
// $object->next_prev_filter = "rowid:IN:".$db->sanitize(count($objectsListId) ? implode(',', array_keys($objectsListId)) : '0');
$object -> next_prev_filter = '' ; // Placeholder if getOrdersAuthorizedForUser is not available
}
dol_banner_tab ( $object , 'ref' , $linkback , 1 , 'ref' , 'ref' , $morehtmlref );
print '<div class="fichecenter">' ;
print '<div class="underbanner clearboth"></div>' ;
dol_print_object_info ( $object , 1 );
print '</div>' ;
print '<div class="clearboth"></div>' ;
print dol_get_fiche_end ();
// Actions buttons
$out = '' ;
$permok = $user -> hasRight ( 'agenda' , 'myactions' , 'create' );
if ( $permok ) {
2025-08-09 13:30:43 +00:00
$out .= '&orderid=' . $object -> id ;
2025-08-04 11:12:22 +00:00
}
//print '</div>';
if ( ! empty ( $object -> id )) {
print '<br>' ;
//print '<div class="tabsAction">';
$morehtmlright = '' ;
// Show link to change view in message
2025-08-09 13:30:43 +00:00
$messagingUrl = DOL_URL_ROOT . '/commande/messaging.php?id=' . $object -> id ;
2025-08-04 11:12:22 +00:00
$morehtmlright .= dolGetButtonTitle ( $langs -> trans ( 'ShowAsConversation' ), '' , 'fa fa-comments imgforviewmode' , $messagingUrl , '' , 2 );
// Show link to change view in agenda
2025-08-09 13:30:43 +00:00
$messagingUrl = DOL_URL_ROOT . '/commande/agenda.php?id=' . $object -> id ;
2025-08-04 11:12:22 +00:00
$morehtmlright .= dolGetButtonTitle ( $langs -> trans ( 'MessageListViewType' ), '' , 'fa fa-bars imgforviewmode' , $messagingUrl , '' , 1 );
// // Show link to send an email (if read and not closed)
// $btnstatus = $object->status < Ticket::STATUS_CLOSED && $action != "presend" && $action != "presend_addmessage";
// $url = 'card.php?track_id='.$object->track_id.'&action=presend_addmessage&mode=init&private_message=0&send_email=1&backtopage='.urlencode($_SERVER["PHP_SELF"].'?track_id='.$object->track_id).'#formmailbeforetitle';
// $morehtmlright .= dolGetButtonTitle($langs->trans('SendMail'), '', 'fa fa-paper-plane', $url, 'email-title-button', $btnstatus);
// // Show link to add a private message (if read and not closed)
// $btnstatus = $object->status < Ticket::STATUS_CLOSED && $action != "presend" && $action != "presend_addmessage";
// $url = 'card.php?track_id='.$object->track_id.'&action=presend_addmessage&mode=init&backtopage='.urlencode($_SERVER["PHP_SELF"].'?track_id='.$object->track_id).'#formmailbeforetitle';
// $morehtmlright .= dolGetButtonTitle($langs->trans('TicketAddMessage'), '', 'fa fa-comment-dots', $url, 'add-new-ticket-title-button', $btnstatus);
// Show link to add event
if ( isModEnabled ( 'agenda' )) {
$addActionBtnRight = $user -> hasRight ( 'agenda' , 'myactions' , 'create' ) || $user -> hasRight ( 'agenda' , 'allactions' , 'create' );
$morehtmlright .= dolGetButtonTitle ( $langs -> trans ( 'AddAction' ), '' , 'fa fa-plus-circle' , DOL_URL_ROOT . '/comm/action/card.php?action=create' . $out . '&socid=' . $object -> socid . '&backtopage=' . urlencode ( $_SERVER [ " PHP_SELF " ] . '?id=' . $object -> id ), '' , ( int ) $addActionBtnRight );
}
$param = '&id=' . $object -> id ;
if ( ! empty ( $contextpage ) && $contextpage != $_SERVER [ " PHP_SELF " ]) {
$param .= '&contextpage=' . urlencode ( $contextpage );
}
if ( $limit > 0 && $limit != $conf -> liste_limit ) {
$param .= '&limit=' . (( int ) $limit );
}
require_once DOL_DOCUMENT_ROOT . '/core/lib/memory.lib.php' ;
2025-08-09 13:30:43 +00:00
$cachekey = 'count_events_order_' . $object -> id ;
2025-08-04 11:12:22 +00:00
$nbEvent = dol_getcache ( $cachekey );
2025-08-09 13:30:43 +00:00
$titlelist = $langs -> trans ( " ActionsOnOrder " ) . ( is_numeric ( $nbEvent ) ? '<span class="opacitymedium colorblack paddingleft">(' . $nbEvent . ')</span>' : '' );
2025-08-04 11:12:22 +00:00
if ( ! empty ( $conf -> dol_optimize_smallscreen )) {
$titlelist = $langs -> trans ( " Actions " ) . ( is_numeric ( $nbEvent ) ? '<span class="opacitymedium colorblack paddingleft">(' . $nbEvent . ')</span>' : '' );
}
print_barre_liste ( $titlelist , 0 , $_SERVER [ " PHP_SELF " ], '' , $sortfield , $sortorder , '' , 0 , - 1 , '' , 0 , $morehtmlright , '' , 0 , 1 , 0 );
// List of all actions
$filters = array ();
$filters [ 'search_agenda_label' ] = $search_agenda_label ;
$filters [ 'search_rowid' ] = $search_rowid ;
// This function needs to be able to handle an 'order' object. You might need to adapt it or create a new one.
show_actions_messaging ( $conf , $langs , $db , $object , null , 0 , $actioncode , '' , $filters , $sortfield , $sortorder );
}
// End of page
llxFooter ();
$db -> close ();