From 6e01dcf97b4aa0894c2c107a3b6b4e87c4b11689 Mon Sep 17 00:00:00 2001
From: Christophe Croullebois <christophe.croullebois@biblibre.com>
Date: Thu, 20 Sep 2012 09:16:19 +0200
Subject: [PATCH] Bug 8795: Adding the login branch as default in
 orderreceive.tt
Content-Type: text/plain; charset="utf-8"

The homebranch and holdingbranch ddl in item block are not default selected.
I just put the default choice as the login branch.

Signed-off-by: Owen Leonard <oleonard@myacpl.org>

Before the patch, orderreceive.pl showed the branches alphabetically.
After the patch, it automatically selects the branch I'm logged in to.
---
 C4/Items.pm |    1 +
 1 file changed, 1 insertion(+)

diff --git a/C4/Items.pm b/C4/Items.pm
index c114e63..0cdf93f 100644
--- a/C4/Items.pm
+++ b/C4/Items.pm
@@ -2703,6 +2703,7 @@ sub PrepareItemrecordDisplay {
                                 $authorised_lib{$branchcode} = $branchname;
                             }
                         }
+                        $defaultvalue = C4::Context->userenv->{branch};
 
                         #----- itemtypes
                     } elsif ( $tagslib->{$tag}->{$subfield}->{authorised_value} eq "itemtypes" ) {
-- 
1.7.9.5