card.php 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  1. <?php
  2. /* Copyright (C) 2017 Laurent Destailleur <eldy@users.sourceforge.net>
  3. * Copyright (C) 2018 Alexandre Spangaro <aspangaro@open-dsi.fr>
  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/asset/model/card.php
  20. * \ingroup asset
  21. * \brief Page to create/edit/view asset Model
  22. */
  23. // Load Dolibarr environment
  24. require '../../main.inc.php';
  25. require_once DOL_DOCUMENT_ROOT . '/core/lib/asset.lib.php';
  26. require_once DOL_DOCUMENT_ROOT . '/asset/class/assetmodel.class.php';
  27. require_once DOL_DOCUMENT_ROOT . '/core/class/html.formcompany.class.php';
  28. require_once DOL_DOCUMENT_ROOT . '/core/class/html.formfile.class.php';
  29. // Load translation files required by the page
  30. $langs->loadLangs(array("assets", "other"));
  31. // Get parameters
  32. $id = GETPOST('id', 'int');
  33. $ref = GETPOST('ref', 'alpha');
  34. $action = GETPOST('action', 'aZ09');
  35. $confirm = GETPOST('confirm', 'alpha');
  36. $cancel = GETPOST('cancel', 'aZ09');
  37. $contextpage = GETPOST('contextpage', 'aZ') ? GETPOST('contextpage', 'aZ') : 'assetmodelcard'; // To manage different context of search
  38. $backtopage = GETPOST('backtopage', 'alpha');
  39. $backtopageforcancel = GETPOST('backtopageforcancel', 'alpha');
  40. // Initialize technical objects
  41. $object = new AssetModel($db);
  42. $extrafields = new ExtraFields($db);
  43. $diroutputmassaction = $conf->asset->dir_output . '/temp/massgeneration/' . $user->id;
  44. $hookmanager->initHooks(array('assetmodelcard', 'globalcard')); // Note that conf->hooks_modules contains array
  45. // Fetch optionals attributes and labels
  46. $extrafields->fetch_name_optionals_label($object->table_element);
  47. $search_array_options = $extrafields->getOptionalsFromPost($object->table_element, '', 'search_');
  48. // Initialize array of search criterias
  49. $search_all = GETPOST("search_all", 'alpha');
  50. $search = array();
  51. foreach ($object->fields as $key => $val) {
  52. if (GETPOST('search_' . $key, 'alpha')) {
  53. $search[$key] = GETPOST('search_' . $key, 'alpha');
  54. }
  55. }
  56. if (empty($action) && empty($id) && empty($ref)) {
  57. $action = 'view';
  58. }
  59. // Load object
  60. include DOL_DOCUMENT_ROOT . '/core/actions_fetchobject.inc.php'; // Must be include, not include_once.
  61. $permissiontoread = ((empty($conf->global->MAIN_USE_ADVANCED_PERMS) && $user->hasRight('asset', 'read')) || (!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && $user->hasRight('asset', 'model_advance', 'read')));
  62. $permissiontoadd = ((empty($conf->global->MAIN_USE_ADVANCED_PERMS) && $user->hasRight('asset', 'write')) || (!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && $user->hasRight('asset', 'model_advance', 'write'))); // Used by the include of actions_addupdatedelete.inc.php and actions_lineupdown.inc.php
  63. $permissiontodelete = ((empty($conf->global->MAIN_USE_ADVANCED_PERMS) && $user->hasRight('asset', 'delete')) || (!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && $user->hasRight('asset', 'model_advance', 'delete'))) || ($permissiontoadd && isset($object->status) && $object->status == $object::STATUS_DRAFT);
  64. $permissionnote = $permissiontoadd; // Used by the include of actions_setnotes.inc.php
  65. $permissiondellink = $permissiontoadd; // Used by the include of actions_dellink.inc.php
  66. $upload_dir = $conf->asset->multidir_output[isset($object->entity) ? $object->entity : 1];
  67. // Security check (enable the most restrictive one)
  68. if ($user->socid > 0) accessforbidden();
  69. if ($user->socid > 0) $socid = $user->socid;
  70. $isdraft = (($object->status == $object::STATUS_DRAFT) ? 1 : 0);
  71. restrictedArea($user, 'asset', $object->id, $object->table_element, '', 'fk_soc', 'rowid', $isdraft);
  72. if (!isModEnabled('asset')) accessforbidden();
  73. if (!$permissiontoread) accessforbidden();
  74. /*
  75. * Actions
  76. */
  77. $parameters = array();
  78. $reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
  79. if ($reshook < 0) {
  80. setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
  81. }
  82. if (empty($reshook)) {
  83. $error = 0;
  84. $backurlforlist = DOL_URL_ROOT . '/asset/model/list.php';
  85. if (empty($backtopage) || ($cancel && empty($id))) {
  86. if (empty($backtopage) || ($cancel && strpos($backtopage, '__ID__'))) {
  87. if (empty($id) && (($action != 'add' && $action != 'create') || $cancel)) {
  88. $backtopage = $backurlforlist;
  89. } else {
  90. $backtopage = DOL_URL_ROOT . '/asset/model/card.php?id=' . ((!empty($id) && $id > 0) ? $id : '__ID__');
  91. }
  92. }
  93. }
  94. $triggermodname = 'ASSETMODEL_MODIFY'; // Name of trigger action code to execute when we modify record
  95. if (($action == 'edit' && !($permissiontoadd && $object->status == $object::STATUS_DRAFT)) ||
  96. ($action == 'confirm_setdraft' && !($permissiontoadd && $object->status != $object::STATUS_DRAFT)) ||
  97. ($action == 'confirm_validate' && !($permissiontoadd && $object->status != $object::STATUS_VALIDATED)) ||
  98. ($action == 'confirm_close' && !($permissiontoadd && $object->status != $object::STATUS_CANCELED))
  99. ) {
  100. $action = "";
  101. }
  102. // Actions cancel, add, update, update_extras, confirm_validate, confirm_delete, confirm_deleteline, confirm_clone, confirm_close, confirm_setdraft, confirm_reopen
  103. include DOL_DOCUMENT_ROOT . '/core/actions_addupdatedelete.inc.php';
  104. }
  105. /*
  106. * View
  107. *
  108. * Put here all code to build page
  109. */
  110. $form = new Form($db);
  111. $formfile = new FormFile($db);
  112. $title = $langs->trans("AssetModel") . ' - ' . $langs->trans("Card");
  113. $help_url = '';
  114. llxHeader('', $title, $help_url);
  115. // Part to create
  116. if ($action == 'create') {
  117. print load_fiche_titre($langs->trans("NewObject", $langs->transnoentitiesnoconv("AssetModel")), '', 'object_' . $object->picto);
  118. print '<form method="POST" action="' . $_SERVER["PHP_SELF"] . '">';
  119. print '<input type="hidden" name="token" value="' . newToken() . '">';
  120. print '<input type="hidden" name="action" value="add">';
  121. if ($backtopage) {
  122. print '<input type="hidden" name="backtopage" value="' . $backtopage . '">';
  123. }
  124. if ($backtopageforcancel) {
  125. print '<input type="hidden" name="backtopageforcancel" value="' . $backtopageforcancel . '">';
  126. }
  127. print dol_get_fiche_head(array(), '');
  128. // Set some default values
  129. //if (! GETPOSTISSET('fieldname')) $_POST['fieldname'] = 'myvalue';
  130. print '<table class="border centpercent tableforfieldcreate">' . "\n";
  131. // Common attributes
  132. include DOL_DOCUMENT_ROOT . '/core/tpl/commonfields_add.tpl.php';
  133. // Other attributes
  134. include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_add.tpl.php';
  135. print '</table>' . "\n";
  136. print dol_get_fiche_end();
  137. print $form->buttonsSaveCancel("Create");
  138. print '</form>';
  139. //dol_set_focus('input[name="ref"]');
  140. }
  141. // Part to edit record
  142. if (($id || $ref) && $action == 'edit') {
  143. print load_fiche_titre($langs->trans("AssetModel"), '', 'object_' . $object->picto);
  144. print '<form method="POST" action="' . $_SERVER["PHP_SELF"] . '">';
  145. print '<input type="hidden" name="token" value="' . newToken() . '">';
  146. print '<input type="hidden" name="action" value="update">';
  147. print '<input type="hidden" name="id" value="' . $object->id . '">';
  148. if ($backtopage) {
  149. print '<input type="hidden" name="backtopage" value="' . $backtopage . '">';
  150. }
  151. if ($backtopageforcancel) {
  152. print '<input type="hidden" name="backtopageforcancel" value="' . $backtopageforcancel . '">';
  153. }
  154. print dol_get_fiche_head();
  155. print '<table class="border centpercent tableforfieldedit">' . "\n";
  156. // Common attributes
  157. include DOL_DOCUMENT_ROOT . '/core/tpl/commonfields_edit.tpl.php';
  158. // Other attributes
  159. include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_edit.tpl.php';
  160. print '</table>';
  161. print dol_get_fiche_end();
  162. print $form->buttonsSaveCancel();
  163. print '</form>';
  164. }
  165. // Part to show record
  166. if ($object->id > 0 && (empty($action) || ($action != 'edit' && $action != 'create'))) {
  167. $res = $object->fetch_optionals();
  168. $head = assetModelPrepareHead($object);
  169. print dol_get_fiche_head($head, 'card', $langs->trans("AssetModel"), -1, $object->picto);
  170. $formconfirm = '';
  171. // Confirmation to delete
  172. if ($action == 'delete') {
  173. $formconfirm = $form->formconfirm($_SERVER["PHP_SELF"] . '?id=' . $object->id, $langs->trans('DeleteAssetModel'), $langs->trans('ConfirmDeleteObject'), 'confirm_delete', '', 0, 1);
  174. } elseif ($action == 'clone') {
  175. // Clone confirmation
  176. // Create an array for form
  177. $formquestion = array();
  178. $formconfirm = $form->formconfirm($_SERVER["PHP_SELF"] . '?id=' . $object->id, $langs->trans('ToClone'), $langs->trans('ConfirmCloneAsk', $object->ref), 'confirm_clone', $formquestion, 'yes', 1);
  179. }
  180. // Call Hook formConfirm
  181. $parameters = array('formConfirm' => $formconfirm);
  182. $reshook = $hookmanager->executeHooks('formConfirm', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
  183. if (empty($reshook)) {
  184. $formconfirm .= $hookmanager->resPrint;
  185. } elseif ($reshook > 0) {
  186. $formconfirm = $hookmanager->resPrint;
  187. }
  188. // Print form confirm
  189. print $formconfirm;
  190. // Object card
  191. // ------------------------------------------------------------
  192. $linkback = '<a href="' . DOL_URL_ROOT . '/asset/model/list.php?restore_lastsearch_values=1' . (!empty($socid) ? '&socid=' . $socid : '') . '">' . $langs->trans("BackToList") . '</a>';
  193. $morehtmlref = '<div class="refidno">';
  194. $morehtmlref .= '</div>';
  195. dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref);
  196. print '<div class="fichecenter">';
  197. print '<div class="fichehalfleft">';
  198. print '<div class="underbanner clearboth"></div>';
  199. print '<table class="border centpercent tableforfield">' . "\n";
  200. // Common attributes
  201. include DOL_DOCUMENT_ROOT . '/core/tpl/commonfields_view.tpl.php';
  202. // Other attributes. Fields from hook formObjectOptions and Extrafields.
  203. include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_view.tpl.php';
  204. print '</table>';
  205. print '</div>';
  206. print '</div>';
  207. print '<div class="clearboth"></div>';
  208. print dol_get_fiche_end();
  209. // Buttons for actions
  210. if ($action != 'editline') {
  211. print '<div class="tabsAction">' . "\n";
  212. $parameters = array();
  213. $reshook = $hookmanager->executeHooks('addMoreActionsButtons', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
  214. if ($reshook < 0) {
  215. setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
  216. }
  217. if (empty($reshook)) {
  218. if ($object->status == $object::STATUS_DRAFT) {
  219. print dolGetButtonAction($langs->trans('Modify'), '', 'default', $_SERVER["PHP_SELF"] . '?id=' . $object->id . '&action=edit&token=' . newToken(), '', $permissiontoadd);
  220. }
  221. // Back to draft
  222. if ($object->status != $object::STATUS_DRAFT) {
  223. print dolGetButtonAction($langs->trans('SetToDraft'), '', 'default', $_SERVER["PHP_SELF"] . '?id=' . $object->id . '&action=confirm_setdraft&confirm=yes&token=' . newToken(), '', $permissiontoadd);
  224. }
  225. if ($object->status != $object::STATUS_VALIDATED) {
  226. print dolGetButtonAction($langs->trans('Enable'), '', 'default', $_SERVER['PHP_SELF'] . '?id=' . $object->id . '&action=confirm_validate&confirm=yes&token=' . newToken(), '', $permissiontoadd);
  227. }
  228. if ($object->status != $object::STATUS_CANCELED) {
  229. print dolGetButtonAction($langs->trans('Disable'), '', 'default', $_SERVER['PHP_SELF'].'?id='.$object->id.'&action=confirm_close&confirm=yes&token='.newToken(), '', $permissiontoadd);
  230. }
  231. // Clone
  232. print dolGetButtonAction($langs->trans('ToClone'), '', 'default', $_SERVER['PHP_SELF'] . '?id=' . $object->id . (!empty($socid) ? '&socid=' . $socid : '') . '&action=clone&token=' . newToken(), '', $permissiontoadd);
  233. // Delete (need delete permission, or if draft, just need create/modify permission)
  234. print dolGetButtonAction($langs->trans('Delete'), '', 'delete', $_SERVER['PHP_SELF'] . '?id=' . $object->id . '&action=delete&token=' . newToken(), '', $permissiontodelete || ($object->status == $object::STATUS_DRAFT && $permissiontoadd));
  235. }
  236. print '</div>' . "\n";
  237. }
  238. print '<div class="fichecenter"><div class="fichehalfleft">';
  239. print '<a name="builddoc"></a>'; // ancre
  240. print '</div><div class="fichehalfright">';
  241. // $MAXEVENT = 10;
  242. //
  243. // $morehtmlcenter = dolGetButtonTitle($langs->trans('SeeAll'), '', 'fa fa-bars imgforviewmode', DOL_URL_ROOT . '/asset/model/agenda.php?id=' . $object->id);
  244. //
  245. // // List of actions on element
  246. // include_once DOL_DOCUMENT_ROOT . '/core/class/html.formactions.class.php';
  247. // $formactions = new FormActions($db);
  248. // $somethingshown = $formactions->showactions($object, $object->element.'@'.$object->module, 0, 1, '', $MAXEVENT, '', $morehtmlright);
  249. print '</div></div>';
  250. }
  251. // End of page
  252. llxFooter();
  253. $db->close();