It is customary in non-English-speaking European countries to write the currency symbol after the amount and separated from it by a space (e.g. 123 €, 54 zł, 38 Kč). This custom should be taken into account in Koha::Number::Price::_format_params (by adding the p_cs_precedes parameter). This parameter could either be directly associated with the use of spaces (p_sep_by_space), or given as a separate data when configuring the currency.
Created attachment 172264 [details] [review] Bug 37511: DB changes
Created attachment 172265 [details] [review] Bug 37511: DBIC schema changes for bug 37511
Created attachment 172266 [details] [review] Bug 37511: Location of the currency symbol (before or *after*) the amount It is customary in non-English-speaking European countries to write the currency symbol after the amount and separated from it by a space (e.g. 123 €, 54 zł, 38 Kč). This custom should be taken into account in Koha::Number::Price::_format_params (by proper use the p_cs_precedes parameter). The correct display of the currency is particularly important when using OPACShowSavings system preference. Test plan: ========== 1. Enable OPACShowSavings, have some items with defined 'v - Cost, replacement price'. Check out the items to a patron. 2. Log in to OPAC as the patron. See the amount of 'total savings' on the main page. Note that the currency symbol precedes the amount. There is no way to configure the position of the currency symbol. 3. Apply the patch ; updatedatabase.pl ; restart_all. 4. Go to Administration > Currencies and exchange rates. Modify the active currency unchecking the 'Currency symbol precedes value' checkbox. 5. Refresh the OPAC page. See that the position of the currency symbol has been changed. Sponsored-by: Ignatianum University in Cracow
Created attachment 172267 [details] [review] Bug 37511: Unit tests
Created attachment 172286 [details] [review] Bug 37511: DB changes Signed-off-by: Roman Dolny <roman.dolny@jezuici.pl>
Created attachment 172287 [details] [review] Bug 37511: DBIC schema changes for bug 37511 Signed-off-by: Roman Dolny <roman.dolny@jezuici.pl>
Created attachment 172288 [details] [review] Bug 37511: Location of the currency symbol (before or *after*) the amount It is customary in non-English-speaking European countries to write the currency symbol after the amount and separated from it by a space (e.g. 123 €, 54 zł, 38 Kč). This custom should be taken into account in Koha::Number::Price::_format_params (by proper use the p_cs_precedes parameter). The correct display of the currency is particularly important when using OPACShowSavings system preference. Test plan: ========== 1. Enable OPACShowSavings, have some items with defined 'v - Cost, replacement price'. Check out the items to a patron. 2. Log in to OPAC as the patron. See the amount of 'total savings' on the main page. Note that the currency symbol precedes the amount. There is no way to configure the position of the currency symbol. 3. Apply the patch ; updatedatabase.pl ; restart_all. 4. Go to Administration > Currencies and exchange rates. Modify the active currency unchecking the 'Currency symbol precedes value' checkbox. 5. Refresh the OPAC page. See that the position of the currency symbol has been changed. Sponsored-by: Ignatianum University in Cracow Signed-off-by: Roman Dolny <roman.dolny@jezuici.pl>
Created attachment 172289 [details] [review] Bug 37511: Unit tests Signed-off-by: Roman Dolny <roman.dolny@jezuici.pl>
Created attachment 173551 [details] [review] Bug 37511: DB changes Signed-off-by: Roman Dolny <roman.dolny@jezuici.pl> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Created attachment 173552 [details] [review] Bug 37511: DBIC schema changes for bug 37511 Signed-off-by: Roman Dolny <roman.dolny@jezuici.pl> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Created attachment 173553 [details] [review] Bug 37511: Location of the currency symbol (before or *after*) the amount It is customary in non-English-speaking European countries to write the currency symbol after the amount and separated from it by a space (e.g. 123 €, 54 zł, 38 Kč). This custom should be taken into account in Koha::Number::Price::_format_params (by proper use the p_cs_precedes parameter). The correct display of the currency is particularly important when using OPACShowSavings system preference. Test plan: ========== 1. Enable OPACShowSavings, have some items with defined 'v - Cost, replacement price'. Check out the items to a patron. 2. Log in to OPAC as the patron. See the amount of 'total savings' on the main page. Note that the currency symbol precedes the amount. There is no way to configure the position of the currency symbol. 3. Apply the patch ; updatedatabase.pl ; restart_all. 4. Go to Administration > Currencies and exchange rates. Modify the active currency unchecking the 'Currency symbol precedes value' checkbox. 5. Refresh the OPAC page. See that the position of the currency symbol has been changed. Sponsored-by: Ignatianum University in Cracow Signed-off-by: Roman Dolny <roman.dolny@jezuici.pl> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Created attachment 173554 [details] [review] Bug 37511: Unit tests Signed-off-by: Roman Dolny <roman.dolny@jezuici.pl> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Created attachment 173555 [details] [review] Bug 37511: (QA follow-up) Add boolean hint Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
1) Database update Please use FIRST/AFTER to make sure the column ends in the same spot as defined by kohastructure.sql. Fixed on push.
*** Bug 20352 has been marked as a duplicate of this bug. ***
Pushed for 24.11! Well done everyone, thank you!
Something here is not quite right, please check: I was trying to clean up the DBIC schema update I missed and I get this: data_type: 'tinyint' default_value: 1 - is_nullable: 0 + is_nullable: 1 =cut @@ -103,7 +103,7 @@ __PACKAGE__->add_columns( "p_sep_by_space", { data_type => "tinyint", default_value => 0, is_nullable => 1 }, "p_cs_precedes", - { data_type => "tinyint", default_value => 1, is_nullable => 0 }, + { data_type => "tinyint", default_value => 1, is_nullable => 1 }, The second patch here set is_nullable: 0, now the dbic run after running the database update sets is_nullable: 1. Something is not in sync.
We should not try catch without rethrow. Please adjust the db rev: Simply remove the try-catch block. See bug 37895 for more details.
(In reply to Jonathan Druart from comment #18) > We should not try catch without rethrow. Please adjust the db rev: Simply > remove the try-catch block. > > See bug 37895 for more details. See bug 38394.
(In reply to Katrin Fischer from comment #17) > Something here is not quite right, please check: > > I was trying to clean up the DBIC schema update I missed and I get this: > > data_type: 'tinyint' > default_value: 1 > - is_nullable: 0 > + is_nullable: 1 > > =cut > > @@ -103,7 +103,7 @@ __PACKAGE__->add_columns( > "p_sep_by_space", > { data_type => "tinyint", default_value => 0, is_nullable => 1 }, > "p_cs_precedes", > - { data_type => "tinyint", default_value => 1, is_nullable => 0 }, > + { data_type => "tinyint", default_value => 1, is_nullable => 1 }, > > > The second patch here set is_nullable: 0, now the dbic run after running the > database update sets is_nullable: 1. Something is not in sync. ping?
Janusz or Martin please?
(In reply to Jonathan Druart from comment #19) > (In reply to Jonathan Druart from comment #18) > > We should not try catch without rethrow. Please adjust the db rev: Simply > > remove the try-catch block. > > > > See bug 37895 for more details. > > See bug 38394. I'm sorry but I got a little bit lost. The whole patch (with its db rev. = 240600053.pl) is already in main since 30th October. If I trace it correctly you have corrected the aforesaid db rev. (by removing try/catch) with Bug 38394. Is there anything that I could/should do?
Hi Janusz, to explain a bit more: In your DBIC schema changes file, that I dropped when pushing (as we usually do), you have is_nullable = 0 (second patch) But when I regenerated the DBIC file running dbic after the database update, it came out with is_nullable = 1 So: which one is correct? If we want is_nullable = 0, we will probably need another database update and kohastructure.sql change.
(In reply to Janusz Kaczmarek from comment #22) > (In reply to Jonathan Druart from comment #19) > > (In reply to Jonathan Druart from comment #18) > > > We should not try catch without rethrow. Please adjust the db rev: Simply > > > remove the try-catch block. > > > > > > See bug 37895 for more details. > > > > See bug 38394. > > I'm sorry but I got a little bit lost. The whole patch (with its db rev. = > 240600053.pl) is already in main since 30th October. If I trace it > correctly you have corrected the aforesaid db rev. (by removing try/catch) > with Bug 38394. Is there anything that I could/should do? You don't need to fix the dbrev for the try/catch yourself - we took care of it yesterday already.
(In reply to Katrin Fischer from comment #23) > Hi Janusz, > > to explain a bit more: > > In your DBIC schema changes file, that I dropped when pushing (as we usually > do), you have is_nullable = 0 (second patch) > > But when I regenerated the DBIC file running dbic after the database update, > it came out with is_nullable = 1 > > So: which one is correct? > If we want is_nullable = 0, we will probably need another database update > and kohastructure.sql change. Thank you for your explanation, Katrin. I have tried to retrace the process of preparing of my original schema changes and this time I got is_nullable = 1. No idea why in the original patch it was = 0... And I am pretty sure I did not correct the schema file by hand. As it is now (is_nullable = 1) seems totally correct and coherent with the table description in mysql. I am sorry for the confusion. And thank you for your patience.
Questions resolved, removing keyword :)
Enhancement, no 24.05.x backport.