Bug 28378: Elasticsearch - Add 264c to default copydate mappings (MARC21)
[koha-ffzg.git] / Koha / Acquisition / Invoice.pm
index 2d35d92..df46b65 100644 (file)
@@ -2,18 +2,18 @@ package Koha::Acquisition::Invoice;
 
 # This file is part of Koha.
 #
-# Koha is free software; you can redistribute it and/or modify it under the
-# terms of the GNU General Public License as published by the Free Software
-# Foundation; either version 3 of the License, or (at your option) any later
-# version.
+# Koha is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
 #
-# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
-# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
-# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+# Koha is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
 #
-# You should have received a copy of the GNU General Public License along
-# with Koha; if not, write to the Free Software Foundation, Inc.,
-# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+# You should have received a copy of the GNU General Public License
+# along with Koha; if not, see <http://www.gnu.org/licenses>.
 
 use Modern::Perl;
 
@@ -27,6 +27,7 @@ Koha::Acquisition::Invoice object class
 
 =head1 API
 
+=head2 Class methods
 
 =head3 to_api
 
@@ -38,9 +39,9 @@ suitable for API output.
 =cut
 
 sub to_api {
-    my ( $self ) = @_;
+    my ( $self, $params ) = @_;
 
-    my $json = $self->SUPER::to_api;
+    my $json = $self->SUPER::to_api( $params );
 
     $json->{closed} = ( $self->closedate )
                                     ? Mojo::JSON->true
@@ -63,9 +64,9 @@ sub to_api_mapping {
         booksellerid          => 'vendor_id',
         shipmentdate          => 'shipping_date',
         billingdate           => 'invoice_date',
-        closedate             => 'close_date',
+        closedate             => 'closed_date',
         shipmentcost          => 'shipping_cost',
-        shipmentcost_budgetid => 'shipping_cost_budget_id',
+        shipmentcost_budgetid => 'shipping_fund_id',
         message_id            => undef
     };
 }