Bugzilla – Attachment 154736 Details for
Bug 34331
Point of sale transaction history is showing the wrong register information
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 34331: Use register from userenv if parameter not passed
Bug-34331-Use-register-from-userenv-if-parameter-n.patch (text/plain), 968 bytes, created by
Owen Leonard
on 2023-08-24 13:12:22 UTC
(
hide
)
Description:
Bug 34331: Use register from userenv if parameter not passed
Filename:
MIME Type:
Creator:
Owen Leonard
Created:
2023-08-24 13:12:22 UTC
Size:
968 bytes
patch
obsolete
>From a1f4054705c383b1dedddca69ae15a8c3adfe7df Mon Sep 17 00:00:00 2001 >From: Nick Clemens <nick@bywatersolutions.com> >Date: Thu, 24 Aug 2023 12:22:23 +0000 >Subject: [PATCH] Bug 34331: Use register from userenv if parameter not passed > >Signed-off-by: Owen Leonard <oleonard@myacpl.org> >--- > pos/register.pl | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/pos/register.pl b/pos/register.pl >index 8250b663a9..aa9f8fd029 100755 >--- a/pos/register.pl >+++ b/pos/register.pl >@@ -43,7 +43,7 @@ my $logged_in_user = Koha::Patrons->find($loggedinuser) or die "Not logged in"; > my $schema = Koha::Database->new->schema; > > my $library_id = C4::Context->userenv->{'branch'}; >-my $registerid = $input->param('registerid'); >+my $registerid = $input->param('registerid') // C4::Context->userenv->{'register_id'}; > my $registers = Koha::Cash::Registers->search( > { branch => $library_id, archived => 0 }, > { order_by => { '-asc' => 'name' } } >-- >2.30.2
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 34331
:
154730
|
154736
|
154749