From 092ec4bd8a08fdf9ebcb4be9bb22b74b8e7cad57 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Fri, 20 Mar 2020 16:05:46 -0300 Subject: [PATCH] Bug 24918: Fix attribute mappings in Koha::Acquisition::Basket When bug 18731 was written, the official vote on the RFC hadn't been held yet. Once it got voted, the mappings were adapted and all the dependent work fixed as well. But three attribute names were overlooked and they become evident on developing 20212 which required them. This patch fixes this really tiny mistake. To test: 1. Just verify the voted attribute names. Signed-off-by: David Nind Signed-off-by: Tomas Cohen Arazi Signed-off-by: Jonathan Druart --- Koha/Acquisition/Basket.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Koha/Acquisition/Basket.pm b/Koha/Acquisition/Basket.pm index 65d9e16d5e..39b28996e8 100644 --- a/Koha/Acquisition/Basket.pm +++ b/Koha/Acquisition/Basket.pm @@ -125,11 +125,11 @@ sub to_api_mapping { creationdate => 'creation_date', closedate => 'close_date', booksellerid => 'vendor_id', - authorisedby => 'authorised_by', + authorisedby => 'creator_id', booksellerinvoicenumber => undef, basketgroupid => 'basket_group_id', - deliveryplace => 'delivery_place', - billingplace => 'billing_place', + deliveryplace => 'delivery_library_id', + billingplace => 'billing_library_id', branch => 'library_id', is_standing => 'standing' }; -- 2.20.1