card.php 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437
  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/card.php
  20. * \ingroup asset
  21. * \brief Page to create/edit/view asset
  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/asset.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') : 'assetcard'; // To manage different context of search
  37. $backtopage = GETPOST('backtopage', 'alpha');
  38. $backtopageforcancel = GETPOST('backtopageforcancel', 'alpha');
  39. // Initialize technical objects
  40. $object = new Asset($db);
  41. $extrafields = new ExtraFields($db);
  42. $diroutputmassaction = $conf->asset->dir_output.'/temp/massgeneration/'.$user->id;
  43. $hookmanager->initHooks(array('assetcard', '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 = $user->rights->asset->read;
  61. $permissiontoadd = $user->rights->asset->write; // Used by the include of actions_addupdatedelete.inc.php and actions_lineupdown.inc.php
  62. $permissiontodelete = $user->rights->asset->delete || ($permissiontoadd && isset($object->status) && $object->status == $object::STATUS_DRAFT);
  63. $permissionnote = $user->rights->asset->write; // Used by the include of actions_setnotes.inc.php
  64. $permissiondellink = $user->rights->asset->write; // 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, $object->element, $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/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/card.php?id='.((!empty($id) && $id > 0) ? $id : '__ID__');
  90. }
  91. }
  92. }
  93. $object->oldcopy = dol_clone($object);
  94. $triggermodname = 'ASSET_MODIFY'; // Name of trigger action code to execute when we modify record
  95. // Action dispose object
  96. if ($action == 'confirm_disposal' && $confirm == 'yes' && $permissiontoadd) {
  97. $object->disposal_date = dol_mktime(12, 0, 0, GETPOST('disposal_datemonth', 'int'), GETPOST('disposal_dateday', 'int'), GETPOST('disposal_dateyear', 'int')); // for date without hour, we use gmt
  98. $object->disposal_amount_ht = GETPOST('disposal_amount', 'int');
  99. $object->fk_disposal_type = GETPOST('fk_disposal_type', 'int');
  100. $disposal_invoice_id = GETPOST('disposal_invoice_id', 'int');
  101. $object->disposal_depreciated = ((GETPOST('disposal_depreciated') == '1' || GETPOST('disposal_depreciated') == 'on') ? 1 : 0);
  102. $object->disposal_subject_to_vat = ((GETPOST('disposal_subject_to_vat') == '1' || GETPOST('disposal_subject_to_vat') == 'on') ? 1 : 0);
  103. $result = $object->dispose($user, $disposal_invoice_id);
  104. if ($result < 0) {
  105. setEventMessages($object->error, $object->errors, 'errors');
  106. }
  107. $action = '';
  108. } elseif ($action == "add") {
  109. $object->supplier_invoice_id = GETPOST('supplier_invoice_id', 'int');
  110. }
  111. // Actions cancel, add, update, update_extras, confirm_validate, confirm_delete, confirm_deleteline, confirm_clone, confirm_close, confirm_setdraft, confirm_reopen
  112. include DOL_DOCUMENT_ROOT.'/core/actions_addupdatedelete.inc.php';
  113. // Actions when linking object each other
  114. include DOL_DOCUMENT_ROOT.'/core/actions_dellink.inc.php';
  115. // Actions when printing a doc from card
  116. include DOL_DOCUMENT_ROOT.'/core/actions_printing.inc.php';
  117. // Action to move up and down lines of object
  118. //include DOL_DOCUMENT_ROOT.'/core/actions_lineupdown.inc.php';
  119. // Action to build doc
  120. include DOL_DOCUMENT_ROOT.'/core/actions_builddoc.inc.php';
  121. // Actions to send emails
  122. $triggersendname = 'ASSET_SENTBYMAIL';
  123. $autocopy = 'MAIN_MAIL_AUTOCOPY_ASSET_TO';
  124. $trackid = 'asset'.$object->id;
  125. include DOL_DOCUMENT_ROOT.'/core/actions_sendmails.inc.php';
  126. }
  127. /*
  128. * View
  129. *
  130. */
  131. $form = new Form($db);
  132. $formfile = new FormFile($db);
  133. $title = $langs->trans("Asset").' - '.$langs->trans("Card");
  134. $help_url = '';
  135. llxHeader('', $title, $help_url);
  136. // Part to create
  137. if ($action == 'create') {
  138. print load_fiche_titre($langs->trans("NewObject", $langs->transnoentitiesnoconv("Asset")), '', 'object_'.$object->picto);
  139. print '<form method="POST" action="'.$_SERVER["PHP_SELF"].'">';
  140. print '<input type="hidden" name="token" value="'.newToken().'">';
  141. print '<input type="hidden" name="action" value="add">';
  142. if ($backtopage) {
  143. print '<input type="hidden" name="backtopage" value="'.$backtopage.'">';
  144. }
  145. if ($backtopageforcancel) {
  146. print '<input type="hidden" name="backtopageforcancel" value="'.$backtopageforcancel.'">';
  147. }
  148. if (GETPOSTISSET('supplier_invoice_id')) {
  149. $object->fields['supplier_invoice_id'] = array('type' => 'integer:FactureFournisseur:fourn/class/fournisseur.facture.class.php:1:entity IN (__SHARED_ENTITIES__)', 'label' => 'SupplierInvoice', 'enabled' => '1', 'noteditable' => '1', 'position' => 280, 'notnull' => 0, 'visible' => 1, 'index' => 1, 'validate' => '1',);
  150. print '<input type="hidden" name="supplier_invoice_id" value="' . GETPOST('supplier_invoice_id', 'int') . '">';
  151. }
  152. print dol_get_fiche_head(array(), '');
  153. // Set some default values
  154. //if (! GETPOSTISSET('fieldname')) $_POST['fieldname'] = 'myvalue';
  155. print '<table class="border centpercent tableforfieldcreate">'."\n";
  156. // Common attributes
  157. include DOL_DOCUMENT_ROOT.'/core/tpl/commonfields_add.tpl.php';
  158. // Other attributes
  159. include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_add.tpl.php';
  160. print '</table>'."\n";
  161. print dol_get_fiche_end();
  162. print $form->buttonsSaveCancel("Create");
  163. print '</form>';
  164. //dol_set_focus('input[name="ref"]');
  165. }
  166. // Part to edit record
  167. if (($id || $ref) && $action == 'edit') {
  168. print load_fiche_titre($langs->trans("Asset"), '', 'object_'.$object->picto);
  169. print '<form method="POST" action="'.$_SERVER["PHP_SELF"].'">';
  170. print '<input type="hidden" name="token" value="'.newToken().'">';
  171. print '<input type="hidden" name="action" value="update">';
  172. print '<input type="hidden" name="id" value="'.$object->id.'">';
  173. if ($backtopage) {
  174. print '<input type="hidden" name="backtopage" value="'.$backtopage.'">';
  175. }
  176. if ($backtopageforcancel) {
  177. print '<input type="hidden" name="backtopageforcancel" value="'.$backtopageforcancel.'">';
  178. }
  179. print dol_get_fiche_head();
  180. print '<table class="border centpercent tableforfieldedit">'."\n";
  181. // Common attributes
  182. include DOL_DOCUMENT_ROOT.'/core/tpl/commonfields_edit.tpl.php';
  183. // Other attributes
  184. include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_edit.tpl.php';
  185. print '</table>';
  186. print dol_get_fiche_end();
  187. print $form->buttonsSaveCancel();
  188. print '</form>';
  189. }
  190. // Part to show record
  191. if ($object->id > 0 && (empty($action) || ($action != 'edit' && $action != 'create'))) {
  192. $res = $object->fetch_optionals();
  193. $head = assetPrepareHead($object);
  194. print dol_get_fiche_head($head, 'card', $langs->trans("Asset"), -1, $object->picto);
  195. $formconfirm = '';
  196. // Confirmation to delete
  197. if ($action == 'delete') {
  198. $formconfirm = $form->formconfirm($_SERVER["PHP_SELF"].'?id='.$object->id, $langs->trans('DeleteAsset'), $langs->trans('ConfirmDeleteObject'), 'confirm_delete', '', 0, 1);
  199. } elseif ($action == 'disposal') {
  200. // Disposal
  201. $langs->load('bills');
  202. $disposal_date = dol_mktime(12, 0, 0, GETPOST('disposal_datemonth', 'int'), GETPOST('disposal_dateday', 'int'), GETPOST('disposal_dateyear', 'int')); // for date without hour, we use gmt
  203. $disposal_amount = GETPOST('disposal_amount', 'int');
  204. $fk_disposal_type = GETPOST('fk_disposal_type', 'int');
  205. $disposal_invoice_id = GETPOST('disposal_invoice_id', 'int');
  206. $disposal_depreciated = GETPOSTISSET('disposal_depreciated') ? GETPOST('disposal_depreciated') : 1;
  207. $disposal_depreciated = !empty($disposal_depreciated) ? 1 : 0;
  208. $disposal_subject_to_vat = GETPOSTISSET('disposal_subject_to_vat') ? GETPOST('disposal_subject_to_vat') : 1;
  209. $disposal_subject_to_vat = !empty($disposal_subject_to_vat) ? 1 : 0;
  210. $object->fields['fk_disposal_type']['visible'] = 1;
  211. $disposal_type_form = $object->showInputField(null, 'fk_disposal_type', $fk_disposal_type, '', '', '', 0);
  212. $object->fields['fk_disposal_type']['visible'] = -2;
  213. $object->fields['disposal_invoice_id'] = array('type' => 'integer:Facture:compta/facture/class/facture.class.php::entity IN (__SHARED_ENTITIES__)', 'enabled' => '1', 'notnull' => 1, 'visible' => 1, 'index' => 1, 'validate' => '1',);
  214. $disposal_invoice_form = $object->showInputField(null, 'disposal_invoice_id', $disposal_invoice_id, '', '', '', 0);
  215. unset($object->fields['disposal_invoice_id']);
  216. // Create an array for form
  217. $formquestion = array(
  218. array('type' => 'date', 'name' => 'disposal_date', 'tdclass' => 'fieldrequired', 'label' => $langs->trans("AssetDisposalDate"), 'value' => $disposal_date),
  219. array('type' => 'text', 'name' => 'disposal_amount', 'tdclass' => 'fieldrequired', 'label' => $langs->trans("AssetDisposalAmount"), 'value' => $disposal_amount),
  220. array('type' => 'other', 'name' => 'fk_disposal_type', 'tdclass' => 'fieldrequired', 'label' => $langs->trans("AssetDisposalType"), 'value' => $disposal_type_form),
  221. array('type' => 'other', 'name' => 'disposal_invoice_id', 'label' => $langs->trans("InvoiceCustomer"), 'value' => $disposal_invoice_form),
  222. array('type' => 'checkbox', 'name' => 'disposal_depreciated', 'label' => $langs->trans("AssetDisposalDepreciated"), 'value' => $disposal_depreciated),
  223. array('type' => 'checkbox', 'name' => 'disposal_subject_to_vat', 'label' => $langs->trans("AssetDisposalSubjectToVat"), 'value' => $disposal_subject_to_vat),
  224. );
  225. $formconfirm = $form->formconfirm($_SERVER["PHP_SELF"] . '?id=' . $object->id, $langs->trans('AssetDisposal'), $langs->trans('AssetConfirmDisposalAsk', $object->ref . ' - ' . $object->label), 'confirm_disposal', $formquestion, 'yes', 1);
  226. } elseif ($action == 'reopen') {
  227. // Re-open
  228. // Create an array for form
  229. $formquestion = array();
  230. $formconfirm = $form->formconfirm($_SERVER["PHP_SELF"].'?id='.$object->id, $langs->trans('ReOpen'), $langs->trans('AssetConfirmReOpenAsk', $object->ref), 'confirm_reopen', $formquestion, 'yes', 1);
  231. }
  232. // Clone confirmation
  233. /* elseif ($action == 'clone') {
  234. // Create an array for form
  235. $formquestion = array();
  236. $formconfirm = $form->formconfirm($_SERVER["PHP_SELF"].'?id='.$object->id, $langs->trans('ToClone'), $langs->trans('ConfirmCloneAsk', $object->ref), 'confirm_clone', $formquestion, 'yes', 1);
  237. }*/
  238. // Call Hook formConfirm
  239. $parameters = array('formConfirm' => $formconfirm);
  240. $reshook = $hookmanager->executeHooks('formConfirm', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
  241. if (empty($reshook)) {
  242. $formconfirm .= $hookmanager->resPrint;
  243. } elseif ($reshook > 0) {
  244. $formconfirm = $hookmanager->resPrint;
  245. }
  246. // Print form confirm
  247. print $formconfirm;
  248. // Object card
  249. // ------------------------------------------------------------
  250. $linkback = '<a href="'.DOL_URL_ROOT.'/asset/list.php?restore_lastsearch_values=1'.(!empty($socid) ? '&socid='.$socid : '').'">'.$langs->trans("BackToList").'</a>';
  251. $morehtmlref = '<div class="refidno">';
  252. $morehtmlref .= '</div>';
  253. dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref);
  254. print '<div class="fichecenter">';
  255. print '<div class="fichehalfleft">';
  256. print '<div class="underbanner clearboth"></div>';
  257. print '<table class="border centpercent tableforfield">'."\n";
  258. // Common attributes
  259. $keyforbreak='date_acquisition'; // We change column just before this field
  260. //unset($object->fields['fk_project']); // Hide field already shown in banner
  261. //unset($object->fields['fk_soc']); // Hide field already shown in banner
  262. include DOL_DOCUMENT_ROOT.'/core/tpl/commonfields_view.tpl.php';
  263. // Other attributes. Fields from hook formObjectOptions and Extrafields.
  264. include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_view.tpl.php';
  265. print '</table>';
  266. print '</div>';
  267. print '</div>';
  268. print '<div class="clearboth"></div>';
  269. print dol_get_fiche_end();
  270. // Buttons for actions
  271. if ($action != 'presend' && $action != 'editline') {
  272. print '<div class="tabsAction">' . "\n";
  273. $parameters = array();
  274. $reshook = $hookmanager->executeHooks('addMoreActionsButtons', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
  275. if ($reshook < 0) {
  276. setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
  277. }
  278. if (empty($reshook)) {
  279. // Send
  280. if (empty($user->socid)) {
  281. print dolGetButtonAction($langs->trans('SendMail'), '', 'default', $_SERVER["PHP_SELF"] . '?id=' . $object->id . '&action=presend&mode=init&token=' . newToken() . '#formmailbeforetitle');
  282. }
  283. if ($object->status == $object::STATUS_DRAFT) {
  284. print dolGetButtonAction($langs->trans('Modify'), '', 'default', $_SERVER["PHP_SELF"] . '?id=' . $object->id . '&action=edit&token=' . newToken(), '', $permissiontoadd);
  285. }
  286. // Clone
  287. //print dolGetButtonAction($langs->trans('ToClone'), '', 'default', $_SERVER['PHP_SELF'] . '?id=' . $object->id . '&action=clone&token=' . newToken(), '', false && $permissiontoadd);
  288. if ($object->status == $object::STATUS_DRAFT) {
  289. print dolGetButtonAction($langs->trans('AssetDisposal'), '', 'default', $_SERVER['PHP_SELF'] . '?id=' . $object->id . '&action=disposal&token=' . newToken(), '', $permissiontoadd);
  290. } else {
  291. print dolGetButtonAction($langs->trans('ReOpen'), '', 'default', $_SERVER['PHP_SELF'] . '?id=' . $object->id . '&action=reopen&token=' . newToken(), '', $permissiontoadd);
  292. }
  293. // Delete (need delete permission, or if draft, just need create/modify permission)
  294. print dolGetButtonAction($langs->trans('Delete'), '', 'delete', $_SERVER['PHP_SELF'] . '?id=' . $object->id . '&action=delete&token=' . newToken(), '', $permissiontodelete || ($object->status == $object::STATUS_DRAFT && $permissiontoadd));
  295. }
  296. print '</div>' . "\n";
  297. }
  298. // Select mail models is same action as presend
  299. if (GETPOST('modelselected')) {
  300. $action = 'presend';
  301. }
  302. if ($action != 'presend') {
  303. print '<div class="fichecenter"><div class="fichehalfleft">';
  304. print '<a name="builddoc"></a>'; // ancre
  305. $includedocgeneration = 0;
  306. // Documents
  307. if ($includedocgeneration) {
  308. $objref = dol_sanitizeFileName($object->ref);
  309. $relativepath = $objref.'/'.$objref.'.pdf';
  310. $filedir = $conf->asset->dir_output.'/'.$objref;
  311. $urlsource = $_SERVER["PHP_SELF"]."?id=".$object->id;
  312. $genallowed = $user->rights->asset->read; // If you can read, you can build the PDF to read content
  313. $delallowed = $user->rights->asset->write; // If you can create/edit, you can remove a file on card
  314. print $formfile->showdocuments('asset:Asset', $objref, $filedir, $urlsource, $genallowed, $delallowed, $object->model_pdf, 1, 0, 0, 28, 0, '', '', '', $langs->defaultlang);
  315. }
  316. // Show links to link elements
  317. $linktoelem = $form->showLinkToObjectBlock($object, null, array('asset'));
  318. $somethingshown = $form->showLinkedObjectBlock($object, $linktoelem);
  319. print '</div><div class="fichehalfright">';
  320. $MAXEVENT = 10;
  321. $morehtmlcenter = dolGetButtonTitle($langs->trans('SeeAll'), '', 'fa fa-bars imgforviewmode', DOL_URL_ROOT.'/asset/agenda.php?id='.$object->id);
  322. // List of actions on element
  323. include_once DOL_DOCUMENT_ROOT.'/core/class/html.formactions.class.php';
  324. $formactions = new FormActions($db);
  325. $somethingshown = $formactions->showactions($object, $object->element, 0, 1, '', $MAXEVENT, '', $morehtmlright);
  326. print '</div></div>';
  327. }
  328. //Select mail models is same action as presend
  329. if (GETPOST('modelselected')) {
  330. $action = 'presend';
  331. }
  332. // Presend form
  333. $modelmail = 'asset';
  334. $defaulttopic = 'InformationMessage';
  335. $diroutput = $conf->asset->dir_output;
  336. $trackid = 'asset'.$object->id;
  337. include DOL_DOCUMENT_ROOT.'/core/tpl/card_presend.tpl.php';
  338. }
  339. // End of page
  340. llxFooter();
  341. $db->close();