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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/supplier.tt (-3 / +2 lines)
Lines 176-182 if (f.company.value == "") { Link Here
176
            [% END %]
176
            [% END %]
177
            <ol>
177
            <ol>
178
            <li><label for="discount">Discount</label>
178
            <li><label for="discount">Discount</label>
179
                <input type="text" size="6" id="discount" name="discount" value="[% discount %]" />%</li>
179
                <input type="text" size="6" id="discount" name="discount" value="[% discount | format ("%.1f") %]" />%</li>
180
            <li>
180
            <li>
181
                <label for="deliverytime">Delivery time</label>
181
                <label for="deliverytime">Delivery time</label>
182
                <input type="text" size="2" id="deliverytime" name="deliverytime" value="[% deliverytime %]" /> days
182
                <input type="text" size="2" id="deliverytime" name="deliverytime" value="[% deliverytime %]" /> days
Lines 238-244 if (f.company.value == "") { Link Here
238
            <p><strong>Invoice item price includes tax: </strong>
238
            <p><strong>Invoice item price includes tax: </strong>
239
                    [% IF ( invoiceincgst ) %]Yes[% ELSE %]No[% END %]</p>[% END %]
239
                    [% IF ( invoiceincgst ) %]Yes[% ELSE %]No[% END %]</p>[% END %]
240
            <p><strong>Discount: </strong>
240
            <p><strong>Discount: </strong>
241
                [% discount %] %</p>
241
                [% discount | format("%.1f") %] %</p>
242
            <p><strong>Tax rate: </strong>
242
            <p><strong>Tax rate: </strong>
243
                [% 0 + gstrate * 100 | format("%.1f") %]%</p>
243
                [% 0 + gstrate * 100 | format("%.1f") %]%</p>
244
            [% IF deliverytime.defined %]
244
            [% IF deliverytime.defined %]
245
- 

Return to bug 9062