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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderbiblio.tt (-13 / +12 lines)
Lines 45-73 Link Here
45
       <th>Copyright</th>
45
       <th>Copyright</th>
46
       <th colspan="2">&nbsp;</th>
46
       <th colspan="2">&nbsp;</th>
47
    </tr>
47
    </tr>
48
    [% FOREACH resultsloo IN resultsloop %]
48
    [% FOREACH biblio IN resultsloop %]
49
        <tr>
49
        <tr>
50
            <td>
50
            <td>
51
                <p><span class="title">[% resultsloo.title |html %]</span>
51
                <p><span class="title">[% biblio.title |html %]</span>
52
                [% IF ( resultsloo.author ) %]  by <span class="author">[% resultsloo.author %]</span>,[% END %]</p>
52
                [% IF ( biblio.author ) %]  by <span class="author">[% biblio.author %]</span>,[% END %]</p>
53
                <p>[% IF ( resultsloo.isbn ) %] [% resultsloo.isbn %][% END %]
53
                <p>[% IF ( biblio.isbn ) %] [% biblio.isbn %][% END %]
54
                [% IF ( resultsloo.pages ) %] - [% resultsloo.pages %][% END %]
54
                [% IF ( biblio.pages ) %] - [% biblio.pages %][% END %]
55
                [% IF ( resultsloo.notes ) %] : [% resultsloo.notes %][% END %]
55
                [% IF ( biblio.notes ) %] : [% biblio.notes %][% END %]
56
                [% IF ( resultsloo.size ) %] ; [% resultsloo.size %][% END %]
56
                [% IF ( biblio.size ) %] ; [% biblio.size %][% END %]
57
                </p>
57
                </p>
58
            </td>
58
            </td>
59
            <td>
59
            <td>
60
                [% resultsloo.publishercode %]
60
                [% biblio.publishercode %]
61
                [% IF ( resultsloo.place ) %] ; [% resultsloo.place %][% END %]
61
                [% IF ( biblio.place ) %] ; [% biblio.place %][% END %]
62
            </td>
62
            </td>
63
            <td>
63
            <td>
64
                [% resultsloo.copyrightdate %]
64
                [% biblio.copyrightdate %]
65
            </td>
65
            </td>
66
        <td>
66
        <td>
67
        <a href="/cgi-bin/koha/catalogue/showmarc.pl?id=[% resultsloo.biblionumber %]" title="MARC" rel="gb_page_center[600,500]">View MARC</a>
67
        <a href="/cgi-bin/koha/catalogue/showmarc.pl?id=[% biblio.biblionumber %]" title="MARC" rel="gb_page_center[600,500]">View MARC</a>
68
        </td>
68
        </td>
69
            <td>
69
            <td>
70
            <a href="/cgi-bin/koha/acqui/neworderempty.pl?booksellerid=[% resultsloo.booksellerid %]&amp;basketno=[% resultsloo.basketno %]&amp;biblionumber=[% resultsloo.biblionumber %]" title="Order this one">
70
            <a href="/cgi-bin/koha/acqui/neworderempty.pl?booksellerid=[% biblio.booksellerid %]&amp;basketno=[% basketno %]&amp;biblionumber=[% biblio.biblionumber %]" title="Order this one">
71
                Order
71
                Order
72
            </a>
72
            </a>
73
            </td>
73
            </td>
74
- 

Return to bug 6174