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

(-)a/Koha/Acquisition/Bookseller.pm (-1 lines)
Lines 83-89 on the API. Link Here
83
sub to_api_mapping {
83
sub to_api_mapping {
84
    return {
84
    return {
85
        bookselleremail => undef,
85
        bookselleremail => undef,
86
        booksellerurl   => undef,
87
        currency        => undef,
86
        currency        => undef,
88
        listprice       => 'list_currency',
87
        listprice       => 'list_currency',
89
        invoiceprice    => 'invoice_currency',
88
        invoiceprice    => 'invoice_currency',
(-)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
                                   booksellerurl => $bookseller->url,
112
                                   booksellernotes => $bookseller->notes,
111
                                   booksellernotes => $bookseller->notes,
113
                                   basketcount   => $bookseller->baskets->count,
112
                                   basketcount   => $bookseller->baskets->count,
114
                                   subscriptioncount   => $bookseller->subscriptions->count,
113
                                   subscriptioncount   => $bookseller->subscriptions->count,
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/uncertainprice.tt (-1 lines)
Lines 33-39 Link Here
33
                [% bookselleraddress2 | html %]
33
                [% bookselleraddress2 | html %]
34
                [% bookselleraddress3 | html %]
34
                [% bookselleraddress3 | html %]
35
                [% bookselleraddress4 | html %]
35
                [% bookselleraddress4 | html %]
36
                <a href="[% booksellerurl | url %]">[% booksellerurl | html %]</a>
37
            </p>
36
            </p>
38
            <p><strong>Phone: </strong>
37
            <p><strong>Phone: </strong>
39
                [% booksellerphone | html %] / Fax:
38
                [% booksellerphone | html %] / Fax:
(-)a/t/db_dependent/Bookseller.t (-2 lines)
Lines 767-773 sub field_filter { Link Here
767
767
768
    for my $field (
768
    for my $field (
769
        'bookselleremail',
769
        'bookselleremail',
770
        'booksellerurl',
771
        'currency',        'invoiceprice',
770
        'currency',        'invoiceprice',
772
        'listprice',       'contacts'
771
        'listprice',       'contacts'
773
      )
772
      )
774
- 

Return to bug 18177