commit
a451d82a64
@ -9,7 +9,7 @@
|
|||||||
* Copyright (C) 2014-2020 Ferran Marcet <fmarcet@2byte.es>
|
* Copyright (C) 2014-2020 Ferran Marcet <fmarcet@2byte.es>
|
||||||
* Copyright (C) 2014-2016 Marcos García <marcosgdf@gmail.com>
|
* Copyright (C) 2014-2016 Marcos García <marcosgdf@gmail.com>
|
||||||
* Copyright (C) 2015 Jean-François Ferry <jfefe@aternatik.fr>
|
* Copyright (C) 2015 Jean-François Ferry <jfefe@aternatik.fr>
|
||||||
* Copyright (C) 2018-2020 Frédéric France <frederic.france@netlogic.fr>
|
* Copyright (C) 2018-2021 Frédéric France <frederic.france@netlogic.fr>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
@ -768,8 +768,7 @@ if (empty($reshook))
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Close all lines
|
// Close all lines
|
||||||
elseif ($action == 'confirm_close' && $confirm == 'yes' && $user->rights->contrat->creer)
|
elseif ($action == 'confirm_close' && $confirm == 'yes' && $user->rights->contrat->creer) {
|
||||||
{
|
|
||||||
$result = $object->closeAll($user);
|
$result = $object->closeAll($user);
|
||||||
if ($result < 0)
|
if ($result < 0)
|
||||||
{
|
{
|
||||||
@ -778,15 +777,13 @@ if (empty($reshook))
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Close all lines
|
// Close all lines
|
||||||
elseif ($action == 'confirm_activate' && $confirm == 'yes' && $user->rights->contrat->creer)
|
elseif ($action == 'confirm_activate' && $confirm == 'yes' && $user->rights->contrat->creer) {
|
||||||
{
|
|
||||||
$result = $object->activateAll($user);
|
$result = $object->activateAll($user);
|
||||||
if ($result < 0)
|
if ($result < 0)
|
||||||
{
|
{
|
||||||
setEventMessages($object->error, $object->errors, 'errors');
|
setEventMessages($object->error, $object->errors, 'errors');
|
||||||
}
|
}
|
||||||
} elseif ($action == 'confirm_delete' && $confirm == 'yes' && $user->rights->contrat->supprimer)
|
} elseif ($action == 'confirm_delete' && $confirm == 'yes' && $user->rights->contrat->supprimer) {
|
||||||
{
|
|
||||||
$result = $object->delete($user);
|
$result = $object->delete($user);
|
||||||
if ($result >= 0)
|
if ($result >= 0)
|
||||||
{
|
{
|
||||||
@ -795,13 +792,12 @@ if (empty($reshook))
|
|||||||
} else {
|
} else {
|
||||||
setEventMessages($object->error, $object->errors, 'errors');
|
setEventMessages($object->error, $object->errors, 'errors');
|
||||||
}
|
}
|
||||||
} elseif ($action == 'confirm_move' && $confirm == 'yes' && $user->rights->contrat->creer)
|
} elseif ($action == 'confirm_move' && $confirm == 'yes' && $user->rights->contrat->creer) {
|
||||||
{
|
|
||||||
if (GETPOST('newcid') > 0)
|
if (GETPOST('newcid') > 0)
|
||||||
{
|
{
|
||||||
$contractline = new ContratLigne($db);
|
$contractline = new ContratLigne($db);
|
||||||
$result = $contractline->fetch(GETPOST('lineid'));
|
$result = $contractline->fetch(GETPOSTINT('lineid'));
|
||||||
$contractline->fk_contrat = GETPOST('newcid');
|
$contractline->fk_contrat = GETPOSTINT('newcid');
|
||||||
$result = $contractline->update($user, 1);
|
$result = $contractline->update($user, 1);
|
||||||
if ($result >= 0)
|
if ($result >= 0)
|
||||||
{
|
{
|
||||||
@ -871,8 +867,7 @@ if (empty($reshook))
|
|||||||
header("Location: ".$_SERVER['PHP_SELF']."?id=".$id);
|
header("Location: ".$_SERVER['PHP_SELF']."?id=".$id);
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
} elseif ($action == 'setref')
|
} elseif ($action == 'setref') {
|
||||||
{
|
|
||||||
$cancelbutton = GETPOST('cancel', 'alpha');
|
$cancelbutton = GETPOST('cancel', 'alpha');
|
||||||
|
|
||||||
if (!$cancelbutton) {
|
if (!$cancelbutton) {
|
||||||
@ -909,8 +904,7 @@ if (empty($reshook))
|
|||||||
header("Location: ".$_SERVER['PHP_SELF']."?id=".$id);
|
header("Location: ".$_SERVER['PHP_SELF']."?id=".$id);
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
} elseif ($action == 'setdate_contrat')
|
} elseif ($action == 'setdate_contrat') {
|
||||||
{
|
|
||||||
$cancelbutton = GETPOST('cancel', 'alpha');
|
$cancelbutton = GETPOST('cancel', 'alpha');
|
||||||
|
|
||||||
if (!$cancelbutton) {
|
if (!$cancelbutton) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user