[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Noalyss-commit] [noalyss] 28/31: Task #448 : currency , EUR cannot be c
From: |
Dany De Bontridder |
Subject: |
[Noalyss-commit] [noalyss] 28/31: Task #448 : currency , EUR cannot be changed and not display |
Date: |
Sat, 21 Jul 2018 07:47:11 -0400 (EDT) |
sparkyx pushed a commit to annotated tag r700-currency-001
in repository noalyss.
commit ca620cb2b8128e55c1b26d2a31fc9642b93e8009
Author: Dany De Bontridder <address@hidden>
Date: Fri May 11 20:23:26 2018 +0200
Task #448 : currency , EUR cannot be changed and not display
---
include/ajax/ajax_currency.php | 1 +
include/class/currency_mtable.class.php | 21 +++++++++++++++++++--
2 files changed, 20 insertions(+), 2 deletions(-)
diff --git a/include/ajax/ajax_currency.php b/include/ajax/ajax_currency.php
index f3974db..6d11419 100644
--- a/include/ajax/ajax_currency.php
+++ b/include/ajax/ajax_currency.php
@@ -101,6 +101,7 @@ switch ($act)
$currency_table->set_callback("ajax_misc.php");
$currency_table->add_json_param("op", "CurrencyManage");
+
/*
* we're in ajax part
*/
diff --git a/include/class/currency_mtable.class.php
b/include/class/currency_mtable.class.php
index 4010596..de3afad 100644
--- a/include/class/currency_mtable.class.php
+++ b/include/class/currency_mtable.class.php
@@ -146,8 +146,13 @@ class Currency_MTable extends Manage_Table_SQL
}
else
{
+ if (trim($table->str_from) =="" && trim($table->ch_value)=="")
+ {
+ // we don't add any new date
+
+ }
// -- for update, the date and value must be valid
- if (trim($table->str_from)!=""&&trim($table->ch_value)!="")
+ elseif (trim($table->str_from)!=""&&trim($table->ch_value)!="")
{
if (isDate($table->str_from)==0)
{
@@ -198,7 +203,7 @@ class Currency_MTable extends Manage_Table_SQL
$is_error++;
$this->set_error("cr_name", _("Nom trop long max=80"));
}
- if ( $table->ch_value < 0 || $table->ch_value == 0) {
+ if ( $table->ch_value != "" && ($table->ch_value < 0 ||
$table->ch_value == 0)) {
$is_error++;
$this->set_error("ch_value", _("Valeur incorrecte"));
}
@@ -282,5 +287,17 @@ class Currency_MTable extends Manage_Table_SQL
$this->table->ch_value=$http->request("new_rate_value");
$this->table->str_from=$http->request("new_rate_date");
}
+ /**
+ * We don't display the default currency (id := -1)
+ */
+ function display_row($p_row)
+ {
+ if ($p_row['currency_id']==-1)
+ {
+ return;
+ }
+
+ parent::display_row($p_row);
+ }
}
- [Noalyss-commit] [noalyss] 23/31: Display the balance difference, (continued)
- [Noalyss-commit] [noalyss] 23/31: Display the balance difference, Dany De Bontridder, 2018/07/21
- [Noalyss-commit] [noalyss] 06/31: Currency : add ajax call to delete one rate , add documentation , remove debug info, Dany De Bontridder, 2018/07/21
- [Noalyss-commit] [noalyss] 24/31: Task #448 : rounded value for VEN, Dany De Bontridder, 2018/07/21
- [Noalyss-commit] [noalyss] 21/31: Task #448 : issue with reconciliation amount, Dany De Bontridder, 2018/07/21
- [Noalyss-commit] [noalyss] 27/31: Task #448 : delete unused currency, Dany De Bontridder, 2018/07/21
- [Noalyss-commit] [noalyss] 14/31: INum : add function onchange with inplace edit, Dany De Bontridder, 2018/07/21
- [Noalyss-commit] [noalyss] 15/31: insert_jrnx : add debug, Dany De Bontridder, 2018/07/21
- [Noalyss-commit] [noalyss] 07/31: Currency : add menu for currency, Dany De Bontridder, 2018/07/21
- [Noalyss-commit] [noalyss] 19/31: Task #448 : currency : cosmetic operation detail, Dany De Bontridder, 2018/07/21
- [Noalyss-commit] [noalyss] 30/31: remove debug info, Dany De Bontridder, 2018/07/21
- [Noalyss-commit] [noalyss] 28/31: Task #448 : currency , EUR cannot be changed and not display,
Dany De Bontridder <=
- [Noalyss-commit] [noalyss] 04/31: Currency : add test file + database file + mtable, Dany De Bontridder, 2018/07/21
- [Noalyss-commit] [noalyss] 29/31: Task #448 : currency_id = 0 for the default currency + display currency rate in confirm operation, Dany De Bontridder, 2018/07/21
- [Noalyss-commit] [noalyss] 26/31: Task #448 : rounded problem add debug info, Dany De Bontridder, 2018/07/21
- [Noalyss-commit] [noalyss] 31/31: task #448 : currency always used and remove parameter 'use_currency' from parameters, add SQL script, Dany De Bontridder, 2018/07/21
- [Noalyss-commit] [noalyss] 20/31: Task #448 : check currency rate > 0 and payment in eur, Dany De Bontridder, 2018/07/21
- [Noalyss-commit] [noalyss] 16/31: Currency : insert operation with currency in VEN and ACH, Dany De Bontridder, 2018/07/21
- [Noalyss-commit] [noalyss] 22/31: Task #448 : identical operation with currency, Dany De Bontridder, 2018/07/21
- [Noalyss-commit] [noalyss] 18/31: task #448 : Currency : display currency info into operation detail, Dany De Bontridder, 2018/07/21
- [Noalyss-commit] [noalyss] 25/31: Task #448 : payment method VEN, Dany De Bontridder, 2018/07/21