View | Details | Raw Unified | Return to bug 18177
Collapse All | Expand All

(-)a/Koha/Acquisition/Bookseller.pm (-1 lines)
Lines 82-88 on the API. Link Here
82
82
83
sub to_api_mapping {
83
sub to_api_mapping {
84
    return {
84
    return {
85
        currency        => undef,
86
        listprice       => 'list_currency',
85
        listprice       => 'list_currency',
87
        invoiceprice    => 'invoice_currency',
86
        invoiceprice    => 'invoice_currency',
88
        gstreg          => 'gst',
87
        gstreg          => 'gst',
(-)a/t/db_dependent/Bookseller.t (-5 / +1 lines)
Lines 765-774 $schema->storage->txn_rollback(); Link Here
765
sub field_filter {
765
sub field_filter {
766
    my ($struct) = @_;
766
    my ($struct) = @_;
767
767
768
    for my $field (
768
    for my $field ( qw(invoiceprice listprice contacts) )
769
        'currency',        'invoiceprice',
770
        'listprice',       'contacts'
771
      )
772
    {
769
    {
773
770
774
        if ( grep { /^$field$/ } keys %$struct ) {
771
        if ( grep { /^$field$/ } keys %$struct ) {
775
- 

Return to bug 18177