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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/histsearch.tt (-5 / +5 lines)
Lines 96-106 Link Here
96
        <table id="histsearcht">
96
        <table id="histsearcht">
97
            <thead>
97
            <thead>
98
			<tr>
98
			<tr>
99
                <th>Order line</th>
99
                <th>Order line (parent)</th>
100
				<th>Basket</th>
100
				<th>Basket</th>
101
				<th>Basket group</th>
101
				<th>Basket group</th>
102
                <th>Invoice number</th>
102
                <th>Invoice number</th>
103
                <th>Order number</th>
104
				<th>Summary</th>
103
				<th>Summary</th>
105
				<th>Vendor</th>
104
				<th>Vendor</th>
106
				<th>Placed on</th>
105
				<th>Placed on</th>
Lines 115-121 Link Here
115
            <tbody>
114
            <tbody>
116
            [% FOREACH order IN order_loop %]
115
            [% FOREACH order IN order_loop %]
117
                <tr>
116
                <tr>
118
                    <td>[% order.parent_ordernumber %]</td>
117
                    <td>
118
                        [% order.ordernumber %]
119
                        [% IF order.ordernumber != order.parent_ordernumber %]([% order.parent_ordernumber %])[% END %]
120
                    </td>
119
                    <td>[% order.basketname %] (<a href="basket.pl?basketno=[% order.basketno %]">[% order.basketno %]</a>)</td>
121
                    <td>[% order.basketname %] (<a href="basket.pl?basketno=[% order.basketno %]">[% order.basketno %]</a>)</td>
120
                    <td>
122
                    <td>
121
                        [% IF ( order.basketgroupid ) %]
123
                        [% IF ( order.basketgroupid ) %]
Lines 130-136 Link Here
130
                            &nbsp;
132
                            &nbsp;
131
                        [% END %]
133
                        [% END %]
132
                    </td>
134
                    </td>
133
                    <td>[% order.ordernumber %]</td>
134
                    <td>
135
                    <td>
135
                        <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% order.biblionumber %]">[% order.title |html %]</a>
136
                        <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% order.biblionumber %]">[% order.title |html %]</a>
136
                        <br />[% order.author %] <br /> [% IF ( order.internalnotes ) %][% order.internalnotes %]<br />[% END %][% order.isbn %]</td>
137
                        <br />[% order.author %] <br /> [% IF ( order.internalnotes ) %][% order.internalnotes %]<br />[% END %][% order.isbn %]</td>
137
- 

Return to bug 5336