123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324 |
- <?php
- /* Copyright (C) 2014-2016 Alexandre Spangaro <aspangaro@open-dsi.fr>
- * Copyright (C) 2018 Frédéric France <frederic.france@netlogic.fr>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- /**
- * \file htdocs/accountancy/admin/fiscalyear_card.php
- * \ingroup Accountancy (Double entries)
- * \brief Page to show a fiscal year
- */
- require '../../main.inc.php';
- require_once DOL_DOCUMENT_ROOT . '/core/lib/fiscalyear.lib.php';
- require_once DOL_DOCUMENT_ROOT . '/core/class/fiscalyear.class.php';
- // Load translation files required by the page
- $langs->loadLangs(array("admin","compta"));
- // Security check
- if ($user->societe_id > 0)
- accessforbidden();
- if (empty($user->rights->accounting->fiscalyear))
- accessforbidden();
- $error = 0;
- $action = GETPOST('action', 'aZ09');
- $confirm = GETPOST('confirm', 'alpha');
- $id = GETPOST('id', 'int');
- // List of statut
- static $tmpstatut2label = array (
- '0' => 'OpenFiscalYear',
- '1' => 'CloseFiscalYear'
- );
- $statut2label = array (
- ''
- );
- foreach ($tmpstatut2label as $key => $val)
- $statut2label[$key] = $langs->trans($val);
- $object = new Fiscalyear($db);
- $date_start = dol_mktime(0, 0, 0, GETPOST('fiscalyearmonth', 'int'), GETPOST('fiscalyearday', 'int'), GETPOST('fiscalyearyear', 'int'));
- $date_end = dol_mktime(0, 0, 0, GETPOST('fiscalyearendmonth', 'int'), GETPOST('fiscalyearendday', 'int'), GETPOST('fiscalyearendyear', 'int'));
- /*
- * Actions
- */
- if ($action == 'confirm_delete' && $confirm == "yes") {
- $result = $object->delete($id);
- if ($result >= 0) {
- header("Location: fiscalyear.php");
- exit();
- } else {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- }
- elseif ($action == 'add') {
- if (! GETPOST('cancel', 'alpha')) {
- $error = 0;
- $object->date_start = $date_start;
- $object->date_end = $date_end;
- $object->label = GETPOST('label', 'alpha');
- $object->statut = GETPOST('statut', 'int');
- $object->datec = dol_now();
- if (empty($object->date_start) && empty($object->date_end)) {
- setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Date")), null, 'errors');
- $error ++;
- }
- if (empty($object->label)) {
- setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Label")), null, 'errors');
- $error ++;
- }
- if (! $error) {
- $db->begin();
- $id = $object->create($user);
- if ($id > 0) {
- $db->commit();
- header("Location: " . $_SERVER["PHP_SELF"] . "?id=" . $id);
- exit();
- } else {
- $db->rollback();
- setEventMessages($object->error, $object->errors, 'errors');
- $action = 'create';
- }
- } else {
- $action = 'create';
- }
- } else {
- header("Location: ./fiscalyear.php");
- exit();
- }
- }
- // Update record
- elseif ($action == 'update') {
- if (! GETPOST('cancel', 'alpha')) {
- $result = $object->fetch($id);
- $object->date_start = empty($_POST["fiscalyear"]) ? '' : $date_start;
- $object->date_end = empty($_POST["fiscalyearend"]) ? '' : $date_end;
- $object->label = GETPOST('label', 'alpha');
- $object->statut = GETPOST('statut', 'int');
- $result = $object->update($user);
- if ($result > 0) {
- header("Location: " . $_SERVER["PHP_SELF"] . "?id=" . $id);
- exit();
- } else {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- } else {
- header("Location: " . $_SERVER["PHP_SELF"] . "?id=" . $id);
- exit();
- }
- }
- /*
- * View
- */
- $form = new Form($db);
- $title = $langs->trans("Fiscalyear") . " - " . $langs->trans("Card");
- $helpurl = "";
- llxHeader("", $title, $helpurl);
- if ($action == 'create')
- {
- print load_fiche_titre($langs->trans("NewFiscalYear"));
- print '<form action="' . $_SERVER["PHP_SELF"] . '" method="POST">';
- print '<input type="hidden" name="token" value="' . $_SESSION['newtoken'] . '">';
- print '<input type="hidden" name="action" value="add">';
- dol_fiche_head();
- print '<table class="border" width="100%">';
- // Label
- print '<tr><td class="titlefieldcreate fieldrequired">' . $langs->trans("Label") . '</td><td><input name="label" size="32" value="' . GETPOST('label', 'alpha') . '"></td></tr>';
- // Date start
- print '<tr><td class="fieldrequired">' . $langs->trans("DateStart") . '</td><td>';
- print $form->selectDate(($date_start ? $date_start : ''), 'fiscalyear');
- print '</td></tr>';
- // Date end
- print '<tr><td class="fieldrequired">' . $langs->trans("DateEnd") . '</td><td>';
- print $form->selectDate(($date_end ? $date_end : - 1), 'fiscalyearend');
- print '</td></tr>';
- /*
- // Statut
- print '<tr>';
- print '<td class="fieldrequired">' . $langs->trans("Status") . '</td>';
- print '<td class="valeur">';
- print $form->selectarray('statut', $statut2label, GETPOST('statut', 'int'));
- print '</td></tr>';
- */
- print '</table>';
- dol_fiche_end();
- print '<div class="center">';
- print '<input class="button" type="submit" value="' . $langs->trans("Save") . '">';
- print ' ';
- print '<input class="button" type="submit" name="cancel" value="' . $langs->trans("Cancel") . '">';
- print '</div>';
- print '</form>';
- } elseif ($id) {
- $result = $object->fetch($id);
- if ($result > 0) {
- $head = fiscalyear_prepare_head($object);
- if ($action == 'edit') {
- dol_fiche_head($head, 'card', $langs->trans("Fiscalyear"), 0, 'cron');
- print '<form name="update" action="' . $_SERVER["PHP_SELF"] . '" method="POST">' . "\n";
- print '<input type="hidden" name="token" value="' . $_SESSION['newtoken'] . '">';
- print '<input type="hidden" name="action" value="update">';
- print '<input type="hidden" name="id" value="' . $id . '">';
- print '<table class="border" width="100%">';
- // Ref
- print "<tr>";
- print '<td class="titlefieldcreate titlefield">' . $langs->trans("Ref") . '</td><td>';
- print $object->ref;
- print '</td></tr>';
- // Label
- print '<tr><td class="fieldrequired">' . $langs->trans("Label") . '</td><td>';
- print '<input name="label" class="flat" size="32" value="' . $object->label . '">';
- print '</td></tr>';
- // Date start
- print '<tr><td class="fieldrequired">' . $langs->trans("DateStart") . '</td><td>';
- print $form->selectDate($object->date_start ? $object->date_start : - 1, 'fiscalyear');
- print '</td></tr>';
- // Date end
- print '<tr><td class="fieldrequired">' . $langs->trans("DateEnd") . '</td><td>';
- print $form->selectDate($object->date_end ? $object->date_end : - 1, 'fiscalyearend');
- print '</td></tr>';
- // Statut
- print '<tr><td>' . $langs->trans("Statut") . '</td><td>';
- // print $form->selectarray('statut', $statut2label, $object->statut);
- print $object->getLibStatut(4);
- print '</td></tr>';
- print '</table>';
- print '<br><div class="center">';
- print '<input type="submit" class="button" value="' . $langs->trans("Save") . '">';
- print ' ';
- print '<input type="submit" name="cancel" class="button" value="' . $langs->trans("Cancel") . '">';
- print '</div>';
- print '</form>';
- dol_fiche_end();
- } else {
- /*
- * Confirm delete
- */
- if ($action == 'delete') {
- print $form->formconfirm($_SERVER["PHP_SELF"] . "?id=" . $id, $langs->trans("DeleteFiscalYear"), $langs->trans("ConfirmDeleteFiscalYear"), "confirm_delete");
- }
- dol_fiche_head($head, 'card', $langs->trans("Fiscalyear"), 0, 'cron');
- print '<table class="border" width="100%">';
- $linkback = '<a href="' . DOL_URL_ROOT . '/accountancy/admin/fiscalyear.php">' . $langs->trans("BackToList") . '</a>';
- // Ref
- print '<tr><td class="titlefield">' . $langs->trans("Ref") . '</td><td width="50%">';
- print $object->ref;
- print '</td><td>';
- print $linkback;
- print '</td></tr>';
- // Label
- print '<tr><td class="tdtop">';
- print $form->editfieldkey("Label", 'label', $object->label, $object, $conf->global->MAIN_EDIT_ALSO_INLINE, 'alpha:32');
- print '</td><td colspan="2">';
- print $form->editfieldval("Label", 'label', $object->label, $object, $conf->global->MAIN_EDIT_ALSO_INLINE, 'alpha:32');
- print "</td></tr>";
- // Date start
- print '<tr><td>';
- print $form->editfieldkey("DateStart", 'date_start', $object->date_start, $object, $conf->global->MAIN_EDIT_ALSO_INLINE, 'datepicker');
- print '</td><td colspan="2">';
- print $form->editfieldval("DateStart", 'date_start', $object->date_start, $object, $conf->global->MAIN_EDIT_ALSO_INLINE, 'datepicker');
- print '</td></tr>';
- // Date end
- print '<tr><td>';
- print $form->editfieldkey("DateEnd", 'date_end', $object->date_end, $object, $conf->global->MAIN_EDIT_ALSO_INLINE, 'datepicker');
- print '</td><td colspan="2">';
- print $form->editfieldval("DateEnd", 'date_end', $object->date_end, $object, $conf->global->MAIN_EDIT_ALSO_INLINE, 'datepicker');
- print '</td></tr>';
- // Statut
- print '<tr><td>' . $langs->trans("Status") . '</td><td colspan="2">' . $object->getLibStatut(4) . '</td></tr>';
- print "</table>";
- dol_fiche_end();
- if (! empty($user->rights->accounting->fiscalyear))
- {
- /*
- * Barre d'actions
- */
- print '<div class="tabsAction">';
- print '<a class="butAction" href="' . $_SERVER["PHP_SELF"] . '?action=edit&id=' . $id . '">' . $langs->trans('Modify') . '</a>';
- // print '<a class="butActionDelete" href="' . $_SERVER["PHP_SELF"] . '?action=delete&id=' . $id . '">' . $langs->trans('Delete') . '</a>';
- print '</div>';
- }
- }
- } else {
- dol_print_error($db);
- }
- }
- // End of page
- llxFooter();
- $db->close();
|