Thomas Ingles
Thomas Ingles
I see that 👍 My First idea to solve this is: Change ```php value=""> ``` To ```php value=""> ``` In [application/modules/quotes/views/partial_itemlist_table.php](https://github.com/InvoicePlane/InvoicePlane/blob/development/application/modules/quotes/views/partial_itemlist_table.php#L136) These solution remove the currency in this field (like...
@kenemedia check with other number format (like space as thousands_separator) and/or apply the fix of #1227
@nielsdrost7 You have probably right 👍 `format_amount(standardize_amount($this->mdl_payments->form_value('payment_amount')));` Become `format_amount($this->mdl_payments->form_value('payment_amount'));` Little remarks: `standardize_amount()` it for save on database (for controllers & models) `format_amount()` it for display (for views & templates) [EDIT]...
Little feedback in image with `european number` format when use dot as comma (see #1227) #### IP
For memo: [CodeIgniter 3 Form validation references](https://codeigniter.com/userguide3/libraries/form_validation.html#rule-reference) (Doc with little examples)
Hi, in France (and other countries?) some small businesses are not subject to VAT (Value Added Tax) and they use the VAT Rate: None (`value = 0`) option. This seems...
Hi, @OliverEvans96 ### How to assign client(s) to guest user: + 1: Go to `index.php/users` (Open _Parameters_ menu and click on _User accounts_) + 2: In Row of user (guest)...
@idressos & @nielsdrost7 The [european format number issues](https://github.com/search?q=repo%3AInvoicePlane%2FInvoicePlane+number+european+format&type=issues) fixed in [future v1.6.3](https://github.com/InvoicePlane/InvoicePlane/tree/development-v163). _Maybe work on v1.6x_: Rename or backup your `application/helpers/number_helper.php` and replace by this [application/helpers/number_helper.php](https://raw.githubusercontent.com/InvoicePlane/InvoicePlane/refs/heads/development-v163/application/helpers/number_helper.php) file. Good luck.
Hi @kenemedia I check in development (next v1.6.3) and is not reproductible in my case (smtp pw field always empty). The smtp password change (in db) only when this field...
#### For memo I checked other solutions -1 with `get_setting` `$escape` param `true` see [settings_helper](https://github.com/InvoicePlane/InvoicePlane/blob/441e76bb3ed173f4a5f4512d4fc3977c6bc8b857/application/helpers/settings_helper.php#L24) ```php value=""> ``` Result : **same bug** -2 with `htmlsc` ```php value=""> ``` Result :...