card.php 13 KB

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