fix: uniformize
This commit is contained in:
parent
668937d7c9
commit
0f0db5a3fb
@ -51,8 +51,8 @@ if (($user->rights->banque->modifier || $user->rights->banque->consolidate) && $
|
|||||||
{
|
{
|
||||||
// Increase date
|
// Increase date
|
||||||
$al = new AccountLine($db);
|
$al = new AccountLine($db);
|
||||||
$al->datev_next($_GET["rowid"]);
|
$al->datev_next(GETPOST('rowid','int'));
|
||||||
$al->fetch($_GET["rowid"]);
|
$al->fetch(GETPOST('rowid','int'));
|
||||||
|
|
||||||
print '<span>'.dol_print_date($db->jdate($al->datev),"day").'</span>';
|
print '<span>'.dol_print_date($db->jdate($al->datev),"day").'</span>';
|
||||||
|
|
||||||
@ -63,8 +63,8 @@ if (($user->rights->banque->modifier || $user->rights->banque->consolidate) && $
|
|||||||
{
|
{
|
||||||
// Decrease date
|
// Decrease date
|
||||||
$al =new AccountLine($db);
|
$al =new AccountLine($db);
|
||||||
$al->datev_previous($_GET["rowid"]);
|
$al->datev_previous(GETPOST('rowid','int'));
|
||||||
$al->fetch($_GET["rowid"]);
|
$al->fetch(GETPOST('rowid','int'));
|
||||||
|
|
||||||
print '<span>'.dol_print_date($db->jdate($al->datev),"day").'</span>';
|
print '<span>'.dol_print_date($db->jdate($al->datev),"day").'</span>';
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user