[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Noalyss-commit] [noalyss] 01/14: Correction effacement opération prédé
From: |
Dany De Bontridder |
Subject: |
[Noalyss-commit] [noalyss] 01/14: Correction effacement opération prédéfinie |
Date: |
Sat, 19 Dec 2015 21:17:09 +0000 |
sparkyx pushed a commit to branch master
in repository noalyss.
commit 123186c2465c76df6a117f608b784ae3cb15a843
Author: Dany De Bontridder <address@hidden>
Date: Thu Dec 17 15:28:00 2015 +0100
Correction effacement opération prédéfinie
---
include/preod.inc.php | 23 +++++++++++++----------
1 files changed, 13 insertions(+), 10 deletions(-)
diff --git a/include/preod.inc.php b/include/preod.inc.php
index 4cc88b6..bb11861 100644
--- a/include/preod.inc.php
+++ b/include/preod.inc.php
@@ -60,8 +60,11 @@ echo '</form>';
if ( $request_sa == 'del')
{
$op=new Pre_operation($cn);
- $op->od_id=$_REQUEST['od_id'];
- $op->delete();
+ $op->od_id=HtmlInput::default_value_request('od_id',-1);
+ if (isNumber($op->od_id)==1 && $op->od_id != -1 )
+ {
+ $op->delete();
+ }
$request_sa='jrn';
}
@@ -82,7 +85,7 @@ if ( $request_sa== 'jrn' )
echo _("Aucun enregistrement");
return;
}
-
+
echo '<table>';
$count=0;
foreach ($array as $row )
@@ -97,16 +100,16 @@ if ( $request_sa== 'jrn' )
echo '<td>'.h($row['od_name']).'</td>';
echo '<td>'.h($row['od_description']).'</td>';
echo '<td>';
- echo '<form method="POST" id="preod_frm" class="print"
style="margin:0px;padding:0px;">';
+ echo '<form method="POST" id="preod_frm'.$row['od_id'].'" class="print"
style="margin:0px;padding:0px;">';
echo dossier::hidden();
- echo $hid->input("sa","del");
- echo $hid->input("ac",$request_ac);
- echo $hid->input("del","");
- echo $hid->input("od_id",$row['od_id']);
- echo $hid->input("jrn",$get_jrn);
+ echo HtmlInput::hidden("sa","del");
+ echo HtmlInput::hidden("ac",$request_ac);
+ echo HtmlInput::hidden("del","");
+ echo HtmlInput::hidden("od_id",$row['od_id']);
+ echo HtmlInput::hidden("jrn",$get_jrn);
$b='<input type="submit" class="smallbutton" value="'._("Effacer").'"'.
- ' onClick="return confirm_box(\'preod_frm\',\''._("Voulez-vous
vraiment effacer cette operation ?").'\');" >';
+ ' onClick="return
confirm_box(\'preod_frm'.$row['od_id'].'\',\''._("Voulez-vous vraiment effacer
cette operation ?").'\');" >';
echo $b;
echo '</form>';
- [Noalyss-commit] [noalyss] branch master updated (e679566 -> ac316b7), Dany De Bontridder, 2015/12/19
- [Noalyss-commit] [noalyss] 01/14: Correction effacement opération prédéfinie,
Dany De Bontridder <=
- [Noalyss-commit] [noalyss] 02/14: Ajout filtre dynamique pour PREOD, Dany De Bontridder, 2015/12/19
- [Noalyss-commit] [noalyss] 06/14: Bug : export PDF card history incorrect balance, Dany De Bontridder, 2015/12/19
- [Noalyss-commit] [noalyss] 05/14: FIX Confirm box when removing a tag from a document, Dany De Bontridder, 2015/12/19
- [Noalyss-commit] [noalyss] 03/14: FIX CFGLED toutes les fiches DEB sont toujours sélectionnées, Dany De Bontridder, 2015/12/19
- [Noalyss-commit] [noalyss] 04/14: FIX CFGLED toutes les fiches DEB sont toujours sélectionnées, Dany De Bontridder, 2015/12/19
- [Noalyss-commit] [noalyss] 10/14: Dialog box, Dany De Bontridder, 2015/12/19
- [Noalyss-commit] [noalyss] 12/14: Export CSV missing col, Dany De Bontridder, 2015/12/19
- [Noalyss-commit] [noalyss] 14/14: drop function, Dany De Bontridder, 2015/12/19
- [Noalyss-commit] [noalyss] 13/14: indent, Dany De Bontridder, 2015/12/19
- [Noalyss-commit] [noalyss] 08/14: Translation, Dany De Bontridder, 2015/12/19