Bugzilla – Attachment 49046 Details for
Bug 16053
Edit the active currency removes its 'active' flag
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[SIGNED-OFF] Bug 16053: Do not remove the active flag when editing the active currency
SIGNED-OFF-Bug-16053-Do-not-remove-the-active-flag.patch (text/plain), 1.77 KB, created by
Owen Leonard
on 2016-03-11 16:28:18 UTC
(
hide
)
Description:
[SIGNED-OFF] Bug 16053: Do not remove the active flag when editing the active currency
Filename:
MIME Type:
Creator:
Owen Leonard
Created:
2016-03-11 16:28:18 UTC
Size:
1.77 KB
patch
obsolete
>From 80036456d3defd3731ef5f13016f99fcf02bd644 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Fri, 11 Mar 2016 11:42:09 +0000 >Subject: [PATCH] [SIGNED-OFF] Bug 16053: Do not remove the active flag when > editing the active currency >Content-Type: text/plain; charset="utf-8" > >From commit b574b615919a6463708d4c1d7b1153a061c1ea0a > Bug 15084: Make sure the previous active currency is marked as inactive > >When a currency is stored, all the active flags of all currencies are unset. >Only the active ones and different than the one we are editing should be updated. > >Test plan: >Edit the active currency >=> Without this patch the active flag was removed >=> With this patch, the active flag is kept > >Edit another currency and set it the active flag >=> The active flag must have been removed from the previously active >currency. > >Signed-off-by: Owen Leonard <oleonard@myacpl.org> >--- > Koha/Acquisition/Currency.pm | 8 +++++++- > 1 file changed, 7 insertions(+), 1 deletion(-) > >diff --git a/Koha/Acquisition/Currency.pm b/Koha/Acquisition/Currency.pm >index 63c8693..42d3f19 100644 >--- a/Koha/Acquisition/Currency.pm >+++ b/Koha/Acquisition/Currency.pm >@@ -42,7 +42,13 @@ sub store { > my $result; > $self->_result->result_source->schema->txn_do( sub { > if ( $self->active ) { >- my @currencies = Koha::Acquisition::Currencies->search; >+ # Remove the active flag from all other active currencies >+ my @currencies = Koha::Acquisition::Currencies->search( >+ { >+ currency => { '!=' => $self->currency }, >+ active => 1, >+ } >+ ); > for my $currency ( @currencies ) { > $currency->active(0); > $currency->store; >-- >2.1.4
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 16053
:
49004
|
49005
|
49045
|
49046
|
49340
|
49341