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

(-)a/C4/Letters.pm (-1 lines)
Lines 449-455 sub SendAlerts { Link Here
449
449
450
        my @email;
450
        my @email;
451
        my @cc;
451
        my @cc;
452
        push @email, $databookseller->{bookselleremail} if $databookseller->{bookselleremail};
453
        push @email, $datacontact->{email}           if ( $datacontact && $datacontact->{email} );
452
        push @email, $datacontact->{email}           if ( $datacontact && $datacontact->{email} );
454
        unless (@email) {
453
        unless (@email) {
455
            warn "Bookseller $dataorders->[0]->{booksellerid} without emails";
454
            warn "Bookseller $dataorders->[0]->{booksellerid} without emails";
(-)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
        bookselleremail => undef,
86
        currency        => undef,
85
        currency        => undef,
87
        listprice       => 'list_currency',
86
        listprice       => 'list_currency',
88
        invoiceprice    => 'invoice_currency',
87
        invoiceprice    => 'invoice_currency',
(-)a/t/db_dependent/Bookseller.t (-2 lines)
Lines 766-772 sub field_filter { Link Here
766
    my ($struct) = @_;
766
    my ($struct) = @_;
767
767
768
    for my $field (
768
    for my $field (
769
        'bookselleremail',
770
        'currency',        'invoiceprice',
769
        'currency',        'invoiceprice',
771
        'listprice',       'contacts'
770
        'listprice',       'contacts'
772
      )
771
      )
773
- 

Return to bug 18177