mirror of
https://github.com/YunoHost-Apps/dolibarr_ynh.git
synced 2024-09-03 18:35:53 +02:00
343 lines
10 KiB
PHP
343 lines
10 KiB
PHP
<?php
|
|
/* Copyright (C) 2014-2015 Alexandre Spangaro <aspangaro.dolibarr@gmail.com>
|
|
*
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/**
|
|
* \file htdocs/accountancy/admin/fiscalyear_card.php
|
|
* \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';
|
|
|
|
|
|
$langs->load("admin");
|
|
$langs->load("compta");
|
|
|
|
// Security check
|
|
if (! $user->admin) accessforbidden();
|
|
|
|
$error=0;
|
|
|
|
$action = GETPOST('action','alpha');
|
|
$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
|
|
{
|
|
setEventMessage($object->error, 'errors');
|
|
}
|
|
}
|
|
|
|
else if ($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))
|
|
{
|
|
setEventMessage($langs->trans("ErrorFieldRequired",$langs->transnoentitiesnoconv("Date")), 'errors');
|
|
$error++;
|
|
}
|
|
if (empty($object->label))
|
|
{
|
|
setEventMessage($langs->trans("ErrorFieldRequired",$langs->transnoentitiesnoconv("Label")), '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();
|
|
|
|
setEventMessage($object->error, 'errors');
|
|
$action='create';
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$action='create';
|
|
}
|
|
}
|
|
else
|
|
{
|
|
header("Location: ./fiscalyear.php");
|
|
exit;
|
|
}
|
|
}
|
|
|
|
// Update record
|
|
else if ($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
|
|
{
|
|
setEventMessage($object->error, 'errors');
|
|
}
|
|
}
|
|
else
|
|
{
|
|
header("Location: " . $_SERVER["PHP_SELF"] . "?id=" . $id);
|
|
exit;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* View
|
|
*/
|
|
|
|
llxHeader();
|
|
|
|
$form = new Form($db);
|
|
|
|
/*
|
|
* Action create
|
|
*/
|
|
if ($action == 'create')
|
|
{
|
|
print_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="fieldrequired">'.$langs->trans("Label").'</td><td><input name="label" size="32" value="' . GETPOST("label") . '"></td></tr>';
|
|
|
|
// Date start
|
|
print '<tr><td class="fieldrequired">'.$langs->trans("DateStart").'</td><td>';
|
|
print $form->select_date(($date_start?$date_start:''),'fiscalyear');
|
|
print '</td></tr>';
|
|
|
|
// Date end
|
|
print '<tr><td class="fieldrequired">'.$langs->trans("DateEnd").'</td><td>';
|
|
print $form->select_date(($date_end?$date_end:-1),'fiscalyearend');
|
|
print '</td></tr>';
|
|
|
|
// Statut
|
|
print '<tr>';
|
|
print '<td class="fieldrequired">'.$langs->trans("Statut").'</td>';
|
|
print '<td class="valeur">';
|
|
print $form->selectarray('statut',$statut2label,GETPOST('statut'));
|
|
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>';
|
|
}
|
|
else if ($id)
|
|
{
|
|
$result = $object->fetch($id);
|
|
if ($result > 0)
|
|
{
|
|
$head = fiscalyear_prepare_head($object);
|
|
|
|
if ($action == 'edit')
|
|
{
|
|
dol_fiche_head($head, 'card', $langs->trans("FiscalYearCard"), 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 width="20%">'.$langs->trans("Ref").'</td><td>';
|
|
print $object->rowid;
|
|
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->select_date($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->select_date($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 '</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("FiscalYearCard"), 0, 'cron');
|
|
|
|
print '<table class="border" width="100%">';
|
|
|
|
$linkback = '<a href="'.DOL_URL_ROOT.'/admin/fiscalyear.php">'.$langs->trans("BackToList").'</a>';
|
|
|
|
// Ref
|
|
print '<tr><td width="25%">'.$langs->trans("Ref").'</td><td width="50%">';
|
|
print $object->rowid;
|
|
print '</td><td width="25%">';
|
|
print $linkback;
|
|
print '</td></tr>';
|
|
|
|
// Label
|
|
print '<tr><td valign="top">';
|
|
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("Date",'date_start',$object->date_start,$object,$conf->global->MAIN_EDIT_ALSO_INLINE,'datepicker');
|
|
print '</td><td colspan="2">';
|
|
print $form->editfieldval("Date",'date_start',$object->date_start,$object,$conf->global->MAIN_EDIT_ALSO_INLINE,'datepicker');
|
|
print '</td></tr>';
|
|
|
|
// Date end
|
|
print '<tr><td>';
|
|
print $form->editfieldkey("Date",'date_end',$object->date_end,$object,$conf->global->MAIN_EDIT_ALSO_INLINE,'datepicker');
|
|
print '</td><td colspan="2">';
|
|
print $form->editfieldval("Date",'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();
|
|
|
|
/*
|
|
* 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);
|
|
}
|
|
}
|
|
|
|
llxFooter();
|
|
$db->close();
|