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

(-)a/catalogue/detail.pl (-1 / +2 lines)
Lines 299-305 if ( C4::Context->preference('AcquisitionDetails') ) { Link Here
299
    );    # GetHistory sorted by aqbooksellerid, but does it make sense?
299
    );    # GetHistory sorted by aqbooksellerid, but does it make sense?
300
300
301
    $template->param(
301
    $template->param(
302
        orders => $orders,
302
        orders     => $orders,
303
        acq_status => $biblio->acq_status,
303
    );
304
    );
304
}
305
}
305
306
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt (-1 / +13 lines)
Lines 49-54 Link Here
49
[% Asset.css("lib/Chocolat/css/chocolat.css") | $raw %]
49
[% Asset.css("lib/Chocolat/css/chocolat.css") | $raw %]
50
</head>
50
</head>
51
51
52
[% BLOCK acq_status %]
53
    <span title="The status 'Unlinked' means: no linked orders. Cancelled means that all orders are cancelled. Processing implies any active or new order lines. Status 'Acquired' implies any completely received lines (with remaining lines cancelled)."><b>
54
    [% SWITCH myvar %]
55
        [% CASE 'unlinked'   %]Unlinked
56
        [% CASE 'acquired'   %]Acquired
57
        [% CASE 'processing' %]Processing
58
        [% CASE 'cancelled'  %]Cancelled
59
    [% END %]
60
    </b></span>
61
[% END %]
62
52
<body id="catalog_detail" class="catalog">
63
<body id="catalog_detail" class="catalog">
53
64
54
[% WRAPPER 'header.inc' %]
65
[% WRAPPER 'header.inc' %]
Lines 826-831 Link Here
826
837
827
[% IF Koha.Preference('AcquisitionDetails') %]
838
[% IF Koha.Preference('AcquisitionDetails') %]
828
<div role="tabpanel" class="tab-pane" id="acq_details">
839
<div role="tabpanel" class="tab-pane" id="acq_details">
840
    <p>This bibliographic record has acquisition status: [% PROCESS acq_status myvar=acq_status %]
841
    </p>
829
  [% IF orders.count %]
842
  [% IF orders.count %]
830
    <table id="orders">
843
    <table id="orders">
831
      <thead>
844
      <thead>
832
- 

Return to bug 35994