noalyss-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Noalyss-commit] [noalyss] 18/27: Allow to display table without button


From: Dany De Bontridder
Subject: [Noalyss-commit] [noalyss] 18/27: Allow to display table without button
Date: Thu, 02 Oct 2014 14:23:15 +0000

sparkyx pushed a commit to branch master
in repository noalyss.

commit a10f9de01d8cfad3249d4a8ce55c19373b73714e
Author: Dany De Bontridder <address@hidden>
Date:   Wed Sep 17 22:06:22 2014 +0200

    Allow to display table without button
---
 include/class_anc_operation.php |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/include/class_anc_operation.php b/include/class_anc_operation.php
index 1d0cadf..17458c8 100644
--- a/include/class_anc_operation.php
+++ b/include/class_anc_operation.php
@@ -487,6 +487,7 @@ class Anc_Operation
      * \param $p_amount amount
      * \param $p_id operation is detailled in a HTML popup, if several
      *  are opened, the tableid MUST be different. So we need to use a new 
parameter
+     * \param $p_add_button true, show the button, false don't display them
      * \see save_form_plan
     @note
     - op is an array containing the line number
@@ -516,7 +517,7 @@ class Anc_Operation
 
     @endcode
      */
-    function 
display_form_plan($p_array,$p_null,$p_mode,$p_seq,$p_amount,$p_id='')
+    function 
display_form_plan($p_array,$p_null,$p_mode,$p_seq,$p_amount,$p_id='',$p_add_button=true)
     {
         if ( $p_array != null)
             extract ($p_array);
@@ -596,13 +597,13 @@ class Anc_Operation
         }
 
         $result.="</table>";
-        if ( $p_mode == 1 )
+
+        if ($p_add_button && $p_mode == 1)
         {
             $style_remain=($remain==0)?'style="color:green"':' 
style="color:red"';
             $result.=" Reste à imputer =  ".
                             '<span class="remain" '.$style_remain.' 
id="'.$ctrl_remain.'">'.
                             $remain.'</span>';
-
             // add a button to add a row
             $button=new IButton();
             $button->javascript="add_row('".$p_id."$table_id',$p_seq);";



reply via email to

[Prev in Thread] Current Thread [Next in Thread]