availabilities_contact.php 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  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_contact.php
  20. * \ingroup bookcal
  21. * \brief Tab for contacts linked to Availabilities
  22. */
  23. // Load Dolibarr environment
  24. require '../main.inc.php';
  25. require_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php';
  26. require_once DOL_DOCUMENT_ROOT.'/core/class/html.formcompany.class.php';
  27. require_once DOL_DOCUMENT_ROOT.'/bookcal/class/availabilities.class.php';
  28. require_once DOL_DOCUMENT_ROOT.'/bookcal/lib/bookcal_availabilities.lib.php';
  29. // Load translation files required by the page
  30. $langs->loadLangs(array("agenda", "companies", "other", "mails"));
  31. $id = (GETPOST('id') ? GETPOST('id', 'int') : GETPOST('facid', 'int')); // For backward compatibility
  32. $ref = GETPOST('ref', 'alpha');
  33. $lineid = GETPOST('lineid', 'int');
  34. $socid = GETPOST('socid', 'int');
  35. $action = GETPOST('action', 'aZ09');
  36. // Initialize technical objects
  37. $object = new Availabilities($db);
  38. $extrafields = new ExtraFields($db);
  39. $diroutputmassaction = $conf->bookcal->dir_output.'/temp/massgeneration/'.$user->id;
  40. $hookmanager->initHooks(array('availabilitiescontact', 'globalcard')); // Note that conf->hooks_modules contains array
  41. // Fetch optionals attributes and labels
  42. $extrafields->fetch_name_optionals_label($object->table_element);
  43. // Load object
  44. 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
  45. // There is several ways to check permission.
  46. // Set $enablepermissioncheck to 1 to enable a minimum low level of checks
  47. $enablepermissioncheck = 0;
  48. if ($enablepermissioncheck) {
  49. $permissiontoread = $user->hasRight('bookcal', 'availabilities', 'read');
  50. $permission = $user->hasRight('bookcal', 'availabilities', 'write');
  51. } else {
  52. $permissiontoread = 1;
  53. $permission = 1;
  54. }
  55. // Security check (enable the most restrictive one)
  56. //if ($user->socid > 0) accessforbidden();
  57. //if ($user->socid > 0) $socid = $user->socid;
  58. //$isdraft = (($object->status == $object::STATUS_DRAFT) ? 1 : 0);
  59. //restrictedArea($user, $object->element, $object->id, $object->table_element, '', 'fk_soc', 'rowid', $isdraft);
  60. if (!isModEnabled('bookcal')) {
  61. accessforbidden();
  62. }
  63. if (!$permissiontoread) {
  64. accessforbidden();
  65. }
  66. /*
  67. * Add a new contact
  68. */
  69. if ($action == 'addcontact' && $permission) {
  70. $contactid = (GETPOST('userid') ? GETPOST('userid', 'int') : GETPOST('contactid', 'int'));
  71. $typeid = (GETPOST('typecontact') ? GETPOST('typecontact') : GETPOST('type'));
  72. $result = $object->add_contact($contactid, $typeid, GETPOST("source", 'aZ09'));
  73. if ($result >= 0) {
  74. header("Location: ".$_SERVER['PHP_SELF']."?id=".$object->id);
  75. exit;
  76. } else {
  77. if ($object->error == 'DB_ERROR_RECORD_ALREADY_EXISTS') {
  78. $langs->load("errors");
  79. setEventMessages($langs->trans("ErrorThisContactIsAlreadyDefinedAsThisType"), null, 'errors');
  80. } else {
  81. setEventMessages($object->error, $object->errors, 'errors');
  82. }
  83. }
  84. } elseif ($action == 'swapstatut' && $permission) {
  85. // Toggle the status of a contact
  86. $result = $object->swapContactStatus(GETPOST('ligne', 'int'));
  87. } elseif ($action == 'deletecontact' && $permission) {
  88. // Deletes a contact
  89. $result = $object->delete_contact($lineid);
  90. if ($result >= 0) {
  91. header("Location: ".$_SERVER['PHP_SELF']."?id=".$object->id);
  92. exit;
  93. } else {
  94. dol_print_error($db);
  95. }
  96. }
  97. /*
  98. * View
  99. */
  100. $title = $langs->trans('Availabilities')." - ".$langs->trans('ContactsAddresses');
  101. $help_url = '';
  102. //$help_url='EN:Module_Third_Parties|FR:Module_Tiers|ES:Empresas';
  103. llxHeader('', $title, $help_url);
  104. $form = new Form($db);
  105. $formcompany = new FormCompany($db);
  106. $contactstatic = new Contact($db);
  107. $userstatic = new User($db);
  108. /* *************************************************************************** */
  109. /* */
  110. /* View and edit mode */
  111. /* */
  112. /* *************************************************************************** */
  113. if ($object->id) {
  114. /*
  115. * Show tabs
  116. */
  117. $head = availabilitiesPrepareHead($object);
  118. print dol_get_fiche_head($head, 'contact', $langs->trans("Availabilities"), -1, $object->picto);
  119. $linkback = '<a href="'.dol_buildpath('/bookcal/availabilities_list.php', 1).'?restore_lastsearch_values=1'.(!empty($socid) ? '&socid='.$socid : '').'">'.$langs->trans("BackToList").'</a>';
  120. $morehtmlref = '<div class="refidno">';
  121. /*
  122. // Ref customer
  123. $morehtmlref.=$form->editfieldkey("RefCustomer", 'ref_client', $object->ref_client, $object, 0, 'string', '', 0, 1);
  124. $morehtmlref.=$form->editfieldval("RefCustomer", 'ref_client', $object->ref_client, $object, 0, 'string', '', null, null, '', 1);
  125. // Thirdparty
  126. $morehtmlref.='<br>'.$langs->trans('ThirdParty') . ' : ' . (is_object($object->thirdparty) ? $object->thirdparty->getNomUrl(1) : '');
  127. // Project
  128. if (isModEnabled('project'))
  129. {
  130. $langs->load("projects");
  131. $morehtmlref.='<br>'.$langs->trans('Project') . ' ';
  132. if ($permissiontoadd)
  133. {
  134. if ($action != 'classify')
  135. //$morehtmlref.='<a class="editfielda" href="' . $_SERVER['PHP_SELF'] . '?action=classify&token='.newToken().'&id=' . $object->id . '">' . img_edit($langs->transnoentitiesnoconv('SetProject')) . '</a> : ';
  136. $morehtmlref.=' : ';
  137. if ($action == 'classify') {
  138. //$morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'projectid', 0, 0, 1, 1);
  139. $morehtmlref.='<form method="post" action="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'">';
  140. $morehtmlref.='<input type="hidden" name="action" value="classin">';
  141. $morehtmlref.='<input type="hidden" name="token" value="'.newToken().'">';
  142. $morehtmlref.=$formproject->select_projects($object->socid, $object->fk_project, 'projectid', $maxlength, 0, 1, 0, 1, 0, 0, '', 1);
  143. $morehtmlref.='<input type="submit" class="button valignmiddle" value="'.$langs->trans("Modify").'">';
  144. $morehtmlref.='</form>';
  145. } else {
  146. $morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'none', 0, 0, 0, 1);
  147. }
  148. } else {
  149. if (! empty($object->fk_project)) {
  150. $proj = new Project($db);
  151. $proj->fetch($object->fk_project);
  152. $morehtmlref .= ': '.$proj->getNomUrl();
  153. } else {
  154. $morehtmlref .= '';
  155. }
  156. }
  157. }*/
  158. $morehtmlref .= '</div>';
  159. dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref, '', 0, '', '', 1);
  160. print dol_get_fiche_end();
  161. print '<br>';
  162. // Contacts lines (modules that overwrite templates must declare this into descriptor)
  163. $dirtpls = array_merge($conf->modules_parts['tpl'], array('/core/tpl'));
  164. foreach ($dirtpls as $reldir) {
  165. $res = @include dol_buildpath($reldir.'/contacts.tpl.php');
  166. if ($res) {
  167. break;
  168. }
  169. }
  170. }
  171. // End of page
  172. llxFooter();
  173. $db->close();