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

(-)a/catalogue/detail.pl (-1 / +2 lines)
Lines 293-299 if ( C4::Context->preference('AcquisitionDetails') ) { Link Here
293
    );    # GetHistory sorted by aqbooksellerid, but does it make sense?
293
    );    # GetHistory sorted by aqbooksellerid, but does it make sense?
294
294
295
    $template->param(
295
    $template->param(
296
        orders => $orders,
296
        orders     => $orders,
297
        acq_status => $biblio->acq_status,
297
    );
298
    );
298
}
299
}
299
300
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt (-1 / +13 lines)
Lines 38-43 Link Here
38
[% INCLUDE 'doc-head-close.inc' %]
38
[% INCLUDE 'doc-head-close.inc' %]
39
</head>
39
</head>
40
40
41
[% BLOCK acq_status %]
42
    <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>
43
    [% SWITCH myvar %]
44
        [% CASE 'unlinked'   %]Unlinked
45
        [% CASE 'acquired'   %]Acquired
46
        [% CASE 'processing' %]Processing
47
        [% CASE 'cancelled'  %]Cancelled
48
    [% END %]
49
    </b></span>
50
[% END %]
51
41
<body id="catalog_detail" class="catalog">
52
<body id="catalog_detail" class="catalog">
42
53
43
[% WRAPPER 'header.inc' %]
54
[% WRAPPER 'header.inc' %]
Lines 470-475 Link Here
470
481
471
[% IF Koha.Preference('AcquisitionDetails') %]
482
[% IF Koha.Preference('AcquisitionDetails') %]
472
<div role="tabpanel" class="tab-pane" id="acq_details">
483
<div role="tabpanel" class="tab-pane" id="acq_details">
484
    <p>This bibliographic record has acquisition status: [% PROCESS acq_status myvar=acq_status %]
485
    </p>
473
  [% IF orders.count %]
486
  [% IF orders.count %]
474
    <table id="orders">
487
    <table id="orders">
475
      <thead>
488
      <thead>
476
- 

Return to bug 35994