From e63444f15e61280c613b99bfc973500727545dfe Mon Sep 17 00:00:00 2001 From: Dany De Bontridder Date: Thu, 10 Nov 2011 02:29:58 +0000 Subject: [PATCH] 306 Efface le iconcerned --- include/class_iconcerned.php | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/include/class_iconcerned.php b/include/class_iconcerned.php index 93f00ad4a..b2c8a5c30 100644 --- a/include/class_iconcerned.php +++ b/include/class_iconcerned.php @@ -24,7 +24,7 @@ * \brief Html Input * - name is the name and id of the input * - extra amount of the operation to reconcile - * - extra2 ledger (all, ods,...) + * - extra2 ledger paid */ require_once('class_html_input.php'); class IConcerned extends HtmlInput @@ -35,7 +35,7 @@ class IConcerned extends HtmlInput $this->name=$p_name; $this->value=$p_value; $this->amount_id=null; - $this->ledger='ALL'; + $this->paid=''; } /*!\brief show the html input of the widget*/ public function input($p_name=null,$p_value=null) @@ -47,15 +47,18 @@ class IConcerned extends HtmlInput $r=sprintf(" - + + + ", $this->name, $this->amount_id, - $this->ledger, + $this->paid, $this->name, $this->name, - $this->value + $this->value, + $this->name ); return $r; }