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
        booksellerfax   => undef,
86
        bookselleremail => undef,
85
        bookselleremail => undef,
87
        booksellerurl   => undef,
86
        booksellerurl   => undef,
88
        currency        => undef,
87
        currency        => undef,
(-)a/acqui/uncertainprice.pl (-1 lines)
Lines 108-114 $template->param( uncertainpriceorders => \@orders, Link Here
108
                                   bookselleraddress3 => $bookseller->address3,
108
                                   bookselleraddress3 => $bookseller->address3,
109
                                   bookselleraddress4 => $bookseller->address4,
109
                                   bookselleraddress4 => $bookseller->address4,
110
                                   booksellerphone =>$bookseller->phone,
110
                                   booksellerphone =>$bookseller->phone,
111
                                   booksellerfax => $bookseller->fax,
112
                                   booksellerurl => $bookseller->url,
111
                                   booksellerurl => $bookseller->url,
113
                                   booksellernotes => $bookseller->notes,
112
                                   booksellernotes => $bookseller->notes,
114
                                   basketcount   => $bookseller->baskets->count,
113
                                   basketcount   => $bookseller->baskets->count,
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/uncertainprice.tt (-1 lines)
Lines 37-43 Link Here
37
            </p>
37
            </p>
38
            <p><strong>Phone: </strong>
38
            <p><strong>Phone: </strong>
39
                [% booksellerphone | html %] / Fax:
39
                [% booksellerphone | html %] / Fax:
40
                [% booksellerfax | html %]</p>
41
            <dl>
40
            <dl>
42
                [% FOREACH contact IN contacts %]
41
                [% FOREACH contact IN contacts %]
43
                    <dt><strong>Contact: </strong></dt>
42
                    <dt><strong>Contact: </strong></dt>
(-)a/t/db_dependent/Bookseller.t (-2 / +1 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', 'booksellerfax',
769
        'bookselleremail',
770
        'booksellerurl',
770
        'booksellerurl',
771
        'currency',        'invoiceprice',
771
        'currency',        'invoiceprice',
772
        'listprice',       'contacts'
772
        'listprice',       'contacts'
773
- 

Return to bug 18177