|
Description
Chris Cormack
2010-05-21 01:22:07 UTC
This is still the case. Created attachment 29771 [details] [review] Bug 4013 - road type missing on search results On the patron search results page there are several patron fields which do not show: street number, road type, and state. This patch adds them. To test, go to Patrons -> Search patrons and perform a search. In the table of patron search results each patron record should display the correct information including street number, road type, and state. Created attachment 30114 [details] [review] Bug 4013 - road type missing on search results On the patron search results page there are several patron fields which do not show: street number, road type, and state. This patch adds them. To test, go to Patrons -> Search patrons and perform a search. In the table of patron search results each patron record should display the correct information including street number, road type, and state. Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com> Hm I think this isn't quite right. My AV ROADTYPE entry looks like this: STR Straße Straße The form allows me to select "Straße". So far so good. But then in the patron result list, STR is displayed. From the old database update I think that displaying the code is wrong here, as it should be a migrated numeric(?) id for older installations. + my $av_added = $dbh->do(q| + INSERT INTO authorised_values(category, authorised_value, lib, lib_opac) + SELECT 'ROADTYPE', roadtypeid, road_type, road_type + FROM roadtype; + |); The patron detail page displays the description. Created attachment 30336 [details] [review] Bug 4013 [Revised] road type missing on search results On the patron search results page there are several patron fields which do not show: street number, road type, and state. This patch adds them. To test, go to Patrons -> Search patrons and perform a search. In the table of patron search results each patron record should display the correct information including street number, road type, and state. Created attachment 30488 [details] [review] Bug 4013 [Revised] road type missing on search results On the patron search results page there are several patron fields which do not show: street number, road type, and state. This patch adds them. To test, go to Patrons -> Search patrons and perform a search. In the table of patron search results each patron record should display the correct information including street number, road type, and state. Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz> Created attachment 30490 [details] [review] [PASSED QA] Bug 4013 [Revised] road type missing on search results On the patron search results page there are several patron fields which do not show: street number, road type, and state. This patch adds them. To test, go to Patrons -> Search patrons and perform a search. In the table of patron search results each patron record should display the correct information including street number, road type, and state. Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz> Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de> Works as described, passes tests and QA script. Patch pushed to master. Thanks Owen! |