Bugzilla – Attachment 173552 Details for
Bug 37511
Add option to place the currency symbol before or after the amount
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 37511: DBIC schema changes for bug 37511
Bug-37511-DBIC-schema-changes-for-bug-37511.patch (text/plain), 1.50 KB, created by
Martin Renvoize (ashimema)
on 2024-10-28 15:10:32 UTC
(
hide
)
Description:
Bug 37511: DBIC schema changes for bug 37511
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2024-10-28 15:10:32 UTC
Size:
1.50 KB
patch
obsolete
>From 0242c4a11a0ceb0deffdc33457026e4ec9f0e416 Mon Sep 17 00:00:00 2001 >From: Janusz Kaczmarek <januszop@gmail.com> >Date: Tue, 1 Oct 2024 11:01:44 +0000 >Subject: [PATCH] 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> >--- > Koha/Schema/Result/Currency.pm | 12 ++++++++++-- > 1 file changed, 10 insertions(+), 2 deletions(-) > >diff --git a/Koha/Schema/Result/Currency.pm b/Koha/Schema/Result/Currency.pm >index 13a04ca3262..bfc5f21e9b8 100644 >--- a/Koha/Schema/Result/Currency.pm >+++ b/Koha/Schema/Result/Currency.pm >@@ -72,6 +72,12 @@ __PACKAGE__->table("currency"); > default_value: 0 > is_nullable: 1 > >+=head2 p_cs_precedes >+ >+ data_type: 'tinyint' >+ default_value: 1 >+ is_nullable: 0 >+ > =cut > > __PACKAGE__->add_columns( >@@ -96,6 +102,8 @@ __PACKAGE__->add_columns( > { data_type => "tinyint", default_value => 0, is_nullable => 1 }, > "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 }, > ); > > =head1 PRIMARY KEY >@@ -173,8 +181,8 @@ __PACKAGE__->has_many( > ); > > >-# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-03-06 16:45:06 >-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:FmTABTXRmT/kwlkKkO/0pw >+# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-10-01 10:59:15 >+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:C7BtR3ceUVovrYitKh55bA > > > sub koha_object_class { >-- >2.47.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 37511
:
172264
|
172265
|
172266
|
172267
|
172286
|
172287
|
172288
|
172289
|
173551
| 173552 |
173553
|
173554
|
173555