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

(-)a/acqui/orderreceive.pl (-1 lines)
Lines 229-235 $template->param( Link Here
229
    name                  => $bookseller->name,
229
    name                  => $bookseller->name,
230
    cur_active_sym        => $active_currency->symbol,
230
    cur_active_sym        => $active_currency->symbol,
231
    cur_active            => $active_currency->currency,
231
    cur_active            => $active_currency->currency,
232
    listincgst            => $bookseller->listincgst,
233
    invoiceincgst         => $bookseller->invoiceincgst,
232
    invoiceincgst         => $bookseller->invoiceincgst,
234
    title                 => $order->{'title'},
233
    title                 => $order->{'title'},
235
    author                => $order->{'author'},
234
    author                => $order->{'author'},
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/orderreceive.tt (-3 / +2 lines)
Lines 288-299 Link Here
288
            <input type="hidden" name="tax_rate" value="0" />
288
            <input type="hidden" name="tax_rate" value="0" />
289
        [% END %]
289
        [% END %]
290
290
291
        <li><label for="rrp">Retail price: </label>[% rrp | $Price %] <span class="hint">(adjusted for [% cur_active | html %], [% IF (listincgst == 1) %]tax inclusive[% ELSE %]tax exclusive[% END %])</span></li>
291
        <li><label for="rrp">Retail price: </label>[% rrp | $Price %] <span class="hint">(adjusted for [% cur_active | html %], [% IF (invoiceincgst == 1) %]tax inclusive[% ELSE %]tax exclusive[% END %])</span></li>
292
        <li>
292
        <li>
293
            <label for="replacementprice">Replacement price:</label>
293
            <label for="replacementprice">Replacement price:</label>
294
            <input type="text" size="20" name="replacementprice" id="replacementprice" value="[% replacementprice | $Price %]" />
294
            <input type="text" size="20" name="replacementprice" id="replacementprice" value="[% replacementprice | $Price %]" />
295
        </li>
295
        </li>
296
        <li><label for="ecost">Budgeted cost: </label>[% ecost | $Price %] <span class="hint">[% IF (listincgst == 1) %](tax inclusive)[% ELSE %](tax exclusive)[% END %]</span></li>
296
        <li><label for="ecost">Budgeted cost: </label>[% ecost | $Price %] <span class="hint">[% IF (invoiceincgst == 1) %](tax inclusive)[% ELSE %](tax exclusive)[% END %]</span></li>
297
        <li>
297
        <li>
298
            <label for="unitprice">Actual cost:</label>
298
            <label for="unitprice">Actual cost:</label>
299
            <input type="text" size="20" name="unitprice" id="unitprice" value="[% unitprice | $Price on_editing => 1 %]" /> <span class="hint">[% IF (invoiceincgst == 1) %](tax inclusive)[% ELSE %](tax exclusive)[% END %]</span>
299
            <input type="text" size="20" name="unitprice" id="unitprice" value="[% unitprice | $Price on_editing => 1 %]" /> <span class="hint">[% IF (invoiceincgst == 1) %](tax inclusive)[% ELSE %](tax exclusive)[% END %]</span>
300
- 

Return to bug 22225