---- Reported by nengard@gmail.com 2009-12-28 22:42:30 ---- Created an attachment street missing on search results On the search results if the road type was entered using the authorized value, then it does not appear on the search results as it does on the patron record. ---- Additional Comments From nengard@gmail.com 2009-12-28 22:42:51 ---- Created an attachment street showing on patron record --- Bug imported by chris@bigballofwax.co.nz 2010-05-21 01:22 UTC --- This bug was previously known as _bug_ 4013 at http://bugs.koha.org/cgi-bin/bugzilla3/show_bug.cgi?id=4013 Imported an attachment (id=1774) Imported an attachment (id=1775) Actual time not defined. Setting to 0.0 Setting qa contact to the default for this product. This bug either had no qa contact or an invalid one. The original submitter of attachment 1774 [details] is unknown. Reassigning to the person who moved it here: chris@bigballofwax.co.nz. The original submitter of attachment 1775 [details] is unknown. Reassigning to the person who moved it here: chris@bigballofwax.co.nz.
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!