From 83b8cfb1ad9c6adb265559c71ef5b04ff4773209 Mon Sep 17 00:00:00 2001 From: Danny Bouman Date: Thu, 28 Aug 2008 15:22:39 -0400 Subject: [PATCH] bug 2569: added the zipcode to display along with the patron address Added the zipcode to display along with the patron address when you are viewing a Patron from the intranet. Signed-off-by: Galen Charlton --- circ/circulation.pl | 1 + koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc | 1 + tools/viewlog.pl | 1 + 3 files changed, 3 insertions(+) diff --git a/circ/circulation.pl b/circ/circulation.pl index f2af9be0f0..36f0cdc074 100755 --- a/circ/circulation.pl +++ b/circ/circulation.pl @@ -683,6 +683,7 @@ $template->param( emailpro => $borrower->{'emailpro'}, borrowernotes => $borrower->{'borrowernotes'}, city => $borrower->{'city'}, + zipcode => $borrower->{'zipcode'}, phone => $borrower->{'phone'} || $borrower->{'mobile'}, cardnumber => $borrower->{'cardnumber'}, amountold => $amountold, diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc index defe58ef2e..20e9ab4f61 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc @@ -22,6 +22,7 @@
  • + No city stored.
  • diff --git a/tools/viewlog.pl b/tools/viewlog.pl index f9c5952a85..c4c5d99d5a 100755 --- a/tools/viewlog.pl +++ b/tools/viewlog.pl @@ -88,6 +88,7 @@ if ($src eq 'circ') { # if we were called from circulation, use the circulatio address => $data->{'address'}, address2 => $data->{'address2'}, city => $data->{'city'}, + zipcode => $data->{'zipcode'}, phone => $data->{'phone'}, phonepro => $data->{'phonepro'}, email => $data->{'email'}, -- 2.39.5