Description
Tomás Cohen Arazi (tcohen)
2023-11-06 14:38:52 UTC
Created attachment 158535 [details] [review] Bug 35269: Rename `update_item_location` to `trigger_location_update` This patch renames all occurences of the method. Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> Created attachment 158536 [details] [review] Bug 35269: Improve POD Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> Created attachment 158540 [details] [review] Bug 35269: Rename `update_item_location` to `location_update_trigger` This patch renames all occurences of the method. Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> Created attachment 158541 [details] [review] Bug 35269: Improve POD Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> Created attachment 158548 [details] [review] Bug 35269: Rename `update_item_location` to `location_update_trigger` This patch renames all occurences of the method. Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> Signed-off-by: David Nind <david@davidnind.com> Created attachment 158549 [details] [review] Bug 35269: Improve POD Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> Signed-off-by: David Nind <david@davidnind.com> This is how I tested - hope this is sufficient! 1. Before applying the patch run git grep update_item_location - this was the result for me: kohadev-koha@kohadevbox:koha(bz35269)$ git grep update_item_location C4/Circulation.pm: $item_object->update_item_location( 'checkout' ); C4/Circulation.pm: my $loc_messages = $item->update_item_location( 'checkin' ); Koha/Item.pm:=head3 update_item_location Koha/Item.pm: $item->update_item_location( $action ); Koha/Item.pm:sub update_item_location { t/db_dependent/Koha/Item.t:subtest 'update_item_location() tests' => sub { t/db_dependent/Koha/Item.t: $item->update_item_location($action); t/db_dependent/Koha/Item.t: $item->update_item_location($action); t/db_dependent/Koha/Item.t: $item->update_item_location($action); t/db_dependent/Koha/Item.t: $item->update_item_location($action); t/db_dependent/Koha/Item.t: $item->update_item_location($action); 2. After applying the patch, run again - there should be no results. 3. Test updating the shelving location on check in: 3.1 Update the UpdateItemLocationOnCheckin system preference and add: _ALL_: FIC 3.2 Check in an item (doesn't need to be checked out) - message should be similar to: 39999000011418: Programming Perl / Not checked out. Item shelving location updated. Old value: General stacks New value: Fiction 3.3 Confirm that the shelving location was updated to Fiction. 4. Test updating the shelving location on check out: 4.1 Update the UpdateItemLocationOnCheckout system preference and add: _ALL_: FIC 4.2 Check out an item to a patron. 4.3 Confirm that the shelving location was changed to Fiction. Created attachment 158551 [details] [review] Bug 35269: Rename `update_item_location` to `location_update_trigger` This patch renames all occurences of the method. Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> Signed-off-by: David Nind <david@davidnind.com> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Created attachment 158552 [details] [review] Bug 35269: Improve POD Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> Signed-off-by: David Nind <david@davidnind.com> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Pushed to master for 23.11. Nice work everyone, thanks! Depends on Bug 21159 not in 23.05.x *** Bug 35315 has been marked as a duplicate of this bug. *** |