availabilities_document.php 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. <?php
  2. /* Copyright (C) 2007-2017 Laurent Destailleur <eldy@users.sourceforge.net>
  3. * Copyright (C) 2022 Alice Adminson <aadminson@example.com>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  17. */
  18. /**
  19. * \file htdocs/bookcal/availabilities_document.php
  20. * \ingroup bookcal
  21. * \brief Tab for documents linked to Availabilities
  22. */
  23. // Load Dolibarr environment
  24. require '../main.inc.php';
  25. require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
  26. require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
  27. require_once DOL_DOCUMENT_ROOT.'/core/lib/images.lib.php';
  28. require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php';
  29. require_once DOL_DOCUMENT_ROOT.'/bookcal/class/availabilities.class.php';
  30. require_once DOL_DOCUMENT_ROOT.'/bookcal/lib/bookcal_availabilities.lib.php';
  31. // Load translation files required by the page
  32. $langs->loadLangs(array("agenda", "companies", "other", "mails"));
  33. $action = GETPOST('action', 'aZ09');
  34. $confirm = GETPOST('confirm');
  35. $id = (GETPOST('socid', 'int') ? GETPOST('socid', 'int') : GETPOST('id', 'int'));
  36. $ref = GETPOST('ref', 'alpha');
  37. // Get parameters
  38. $limit = GETPOST('limit', 'int') ? GETPOST('limit', 'int') : $conf->liste_limit;
  39. $sortfield = GETPOST('sortfield', 'aZ09comma');
  40. $sortorder = GETPOST('sortorder', 'aZ09comma');
  41. $page = GETPOSTISSET('pageplusone') ? (GETPOST('pageplusone') - 1) : GETPOST("page", 'int');
  42. if (empty($page) || $page == -1) {
  43. $page = 0;
  44. } // If $page is not defined, or '' or -1
  45. $offset = $limit * $page;
  46. $pageprev = $page - 1;
  47. $pagenext = $page + 1;
  48. if (!$sortorder) {
  49. $sortorder = "ASC";
  50. }
  51. if (!$sortfield) {
  52. $sortfield = "name";
  53. }
  54. //if (! $sortfield) $sortfield="position_name";
  55. // Initialize technical objects
  56. $object = new Availabilities($db);
  57. $extrafields = new ExtraFields($db);
  58. $diroutputmassaction = $conf->bookcal->dir_output.'/temp/massgeneration/'.$user->id;
  59. $hookmanager->initHooks(array('availabilitiesdocument', 'globalcard')); // Note that conf->hooks_modules contains array
  60. // Fetch optionals attributes and labels
  61. $extrafields->fetch_name_optionals_label($object->table_element);
  62. // Load object
  63. include DOL_DOCUMENT_ROOT.'/core/actions_fetchobject.inc.php'; // Must be include, not include_once // Must be include, not include_once. Include fetch and fetch_thirdparty but not fetch_optionals
  64. if ($id > 0 || !empty($ref)) {
  65. $upload_dir = $conf->bookcal->multidir_output[$object->entity ? $object->entity : $conf->entity]."/availabilities/".get_exdir(0, 0, 0, 1, $object);
  66. }
  67. // There is several ways to check permission.
  68. // Set $enablepermissioncheck to 1 to enable a minimum low level of checks
  69. $enablepermissioncheck = 0;
  70. if ($enablepermissioncheck) {
  71. $permissiontoread = $user->hasRight('bookcal', 'availabilities', 'read');
  72. $permissiontoadd = $user->hasRight('bookcal', 'availabilities', 'write'); // Used by the include of actions_addupdatedelete.inc.php and actions_linkedfiles.inc.php
  73. } else {
  74. $permissiontoread = 1;
  75. $permissiontoadd = 1;
  76. }
  77. // Security check (enable the most restrictive one)
  78. //if ($user->socid > 0) accessforbidden();
  79. //if ($user->socid > 0) $socid = $user->socid;
  80. //$isdraft = (($object->status == $object::STATUS_DRAFT) ? 1 : 0);
  81. //restrictedArea($user, $object->element, $object->id, $object->table_element, '', 'fk_soc', 'rowid', $isdraft);
  82. if (!isModEnabled('bookcal')) {
  83. accessforbidden();
  84. }
  85. if (!$permissiontoread) {
  86. accessforbidden();
  87. }
  88. /*
  89. * Actions
  90. */
  91. include DOL_DOCUMENT_ROOT.'/core/actions_linkedfiles.inc.php';
  92. /*
  93. * View
  94. */
  95. $form = new Form($db);
  96. $title = $langs->trans("Availabilities").' - '.$langs->trans("Files");
  97. $help_url = '';
  98. //$help_url='EN:Module_Third_Parties|FR:Module_Tiers|ES:Empresas';
  99. llxHeader('', $title, $help_url);
  100. if ($object->id) {
  101. /*
  102. * Show tabs
  103. */
  104. $head = availabilitiesPrepareHead($object);
  105. print dol_get_fiche_head($head, 'document', $langs->trans("Availabilities"), -1, $object->picto);
  106. // Build file list
  107. $filearray = dol_dir_list($upload_dir, "files", 0, '', '(\.meta|_preview.*\.png)$', $sortfield, (strtolower($sortorder) == 'desc' ? SORT_DESC : SORT_ASC), 1);
  108. $totalsize = 0;
  109. foreach ($filearray as $key => $file) {
  110. $totalsize += $file['size'];
  111. }
  112. // Object card
  113. // ------------------------------------------------------------
  114. $linkback = '<a href="'.dol_buildpath('/bookcal/availabilities_list.php', 1).'?restore_lastsearch_values=1'.(!empty($socid) ? '&socid='.$socid : '').'">'.$langs->trans("BackToList").'</a>';
  115. $morehtmlref = '<div class="refidno">';
  116. /*
  117. // Ref customer
  118. $morehtmlref.=$form->editfieldkey("RefCustomer", 'ref_client', $object->ref_client, $object, 0, 'string', '', 0, 1);
  119. $morehtmlref.=$form->editfieldval("RefCustomer", 'ref_client', $object->ref_client, $object, 0, 'string', '', null, null, '', 1);
  120. // Thirdparty
  121. $morehtmlref.='<br>'.$langs->trans('ThirdParty') . ' : ' . (is_object($object->thirdparty) ? $object->thirdparty->getNomUrl(1) : '');
  122. // Project
  123. if (isModEnabled('project'))
  124. {
  125. $langs->load("projects");
  126. $morehtmlref.='<br>'.$langs->trans('Project') . ' ';
  127. if ($permissiontoadd)
  128. {
  129. if ($action != 'classify')
  130. //$morehtmlref.='<a class="editfielda" href="' . $_SERVER['PHP_SELF'] . '?action=classify&token='.newToken().'&id=' . $object->id . '">' . img_edit($langs->transnoentitiesnoconv('SetProject')) . '</a> : ';
  131. $morehtmlref.=' : ';
  132. if ($action == 'classify') {
  133. //$morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'projectid', 0, 0, 1, 1);
  134. $morehtmlref.='<form method="post" action="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'">';
  135. $morehtmlref.='<input type="hidden" name="action" value="classin">';
  136. $morehtmlref.='<input type="hidden" name="token" value="'.newToken().'">';
  137. $morehtmlref.=$formproject->select_projects($object->socid, $object->fk_project, 'projectid', $maxlength, 0, 1, 0, 1, 0, 0, '', 1);
  138. $morehtmlref.='<input type="submit" class="button valignmiddle" value="'.$langs->trans("Modify").'">';
  139. $morehtmlref.='</form>';
  140. } else {
  141. $morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'none', 0, 0, 0, 1);
  142. }
  143. } else {
  144. if (! empty($object->fk_project)) {
  145. $proj = new Project($db);
  146. $proj->fetch($object->fk_project);
  147. $morehtmlref .= ': '.$proj->getNomUrl();
  148. } else {
  149. $morehtmlref .= '';
  150. }
  151. }
  152. }*/
  153. $morehtmlref .= '</div>';
  154. dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref);
  155. print '<div class="fichecenter">';
  156. print '<div class="underbanner clearboth"></div>';
  157. print '<table class="border centpercent tableforfield">';
  158. // Number of files
  159. print '<tr><td class="titlefield">'.$langs->trans("NbOfAttachedFiles").'</td><td colspan="3">'.count($filearray).'</td></tr>';
  160. // Total size
  161. print '<tr><td>'.$langs->trans("TotalSizeOfAttachedFiles").'</td><td colspan="3">'.$totalsize.' '.$langs->trans("bytes").'</td></tr>';
  162. print '</table>';
  163. print '</div>';
  164. print dol_get_fiche_end();
  165. $modulepart = 'bookcal';
  166. //$permissiontoadd = $user->hasRight('bookcal', 'availabilities', 'write');
  167. $permissiontoadd = 1;
  168. //$permtoedit = $user->hasRight('bookcal', 'availabilities', 'write');
  169. $permtoedit = 1;
  170. $param = '&id='.$object->id;
  171. //$relativepathwithnofile='availabilities/' . dol_sanitizeFileName($object->id).'/';
  172. $relativepathwithnofile = 'availabilities/'.dol_sanitizeFileName($object->ref).'/';
  173. include DOL_DOCUMENT_ROOT.'/core/tpl/document_actions_post_headers.tpl.php';
  174. } else {
  175. accessforbidden('', 0, 1);
  176. }
  177. // End of page
  178. llxFooter();
  179. $db->close();