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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-detail.tt (-35 / +39 lines)
Lines 131-170 $(document).ready(function() { Link Here
131
     </div>
131
     </div>
132
</div>
132
</div>
133
</div>
133
</div>
134
    [% IF ( show_acquisition_details ) %]
134
135
        <div id="acquisition_details">
136
            <h2>Acquisition details</h2>
137
            <table>
138
                <thead>
139
                    <tr><th></th><th>Price exc. taxes</th><th>Price inc. taxes</th><th>Fund</th><th></th></tr>
140
                </thead>
141
                <tbody>
142
                    <tr>
143
                        <td>Ordered amount</td>
144
                        <td>[% valuegste_ordered %]</td>
145
                        <td>[% valuegsti_ordered %]</td>
146
                        <td>[% budget_name_ordered %]</td>
147
                        <td>
148
                            [% IF ( ordered_exists ) %]
149
                                <a href="/cgi-bin/koha/acqui/basket.pl?basketno=[% basketno %]">See basket information</a>
150
                            [% END %]
151
                        </td>
152
                    </tr>
153
                    <tr>
154
                        <td>Spent amount</td>
155
                        <td>[% valuegste_spent %]</td>
156
                        <td>[% valuegsti_spent %]</td>
157
                        <td>[% budget_name_spent %]</td>
158
                        <td>
159
                            [% IF ( spent_exists ) %]
160
                                <a href="/cgi-bin/koha/acqui/invoice.pl?invoiceid=[% invoiceid %]">See invoice information</a>
161
                            [% END %]
162
                        </td>
163
                    </tr>
164
                </tbody>
165
            </table>
166
        </div>
167
    [% END %]
168
    <div id="subscription_planning">
135
    <div id="subscription_planning">
169
    <div class="yui-g">
136
    <div class="yui-g">
170
    <div class="rows">
137
    <div class="rows">
Lines 416-421 $(document).ready(function() { Link Here
416
    </div>
383
    </div>
417
    </div>
384
    </div>
418
    </div>
385
    </div>
386
387
    [% IF ( show_acquisition_details ) %]
388
        <div id="acquisition_details">
389
            <h2>Acquisition details</h2>
390
            <table>
391
                <thead>
392
                    <tr><th></th><th>Price exc. taxes</th><th>Price inc. taxes</th><th>Fund</th><th></th></tr>
393
                </thead>
394
                <tbody>
395
                    <tr>
396
                        <td>Ordered amount</td>
397
                        <td>[% valuegste_ordered %]</td>
398
                        <td>[% valuegsti_ordered %]</td>
399
                        <td>[% budget_name_ordered %]</td>
400
                        <td>
401
                            [% IF ( ordered_exists ) %]
402
                                <a href="/cgi-bin/koha/acqui/basket.pl?basketno=[% basketno %]">See basket information</a>
403
                            [% END %]
404
                        </td>
405
                    </tr>
406
                    <tr>
407
                        <td>Spent amount</td>
408
                        <td>[% valuegste_spent %]</td>
409
                        <td>[% valuegsti_spent %]</td>
410
                        <td>[% budget_name_spent %]</td>
411
                        <td>
412
                            [% IF ( spent_exists ) %]
413
                                <a href="/cgi-bin/koha/acqui/invoice.pl?invoiceid=[% invoiceid %]">See invoice information</a>
414
                            [% END %]
415
                        </td>
416
                    </tr>
417
                </tbody>
418
            </table>
419
        </div>
420
    [% END %]
421
422
423
419
</div>
424
</div>
420
</div>
425
</div>
421
426
422
- 

Return to bug 10145