Revision c23473bf
Von Cem Aydin vor fast 2 Jahren hinzugefügt
templates/design40_webpages/do/stock_in_form.html | ||
---|---|---|
137 | 137 |
[% IF INSTANCE_CONF.get_show_bestbefore %] |
138 | 138 |
<td>[% L.date_tag('bestbefore_'_ loop.count, row.bestbefore) %]</td> |
139 | 139 |
[% END %] |
140 |
<td><input type="text" name="qty_[% loop.count %]" size="12" value="[% HTML.escape(LxERP.format_amount(row.qty)) %]"></td> |
|
140 |
<td> |
|
141 |
<input type="text" name="qty_[% loop.count %]" size="12" |
|
142 |
[%- IF (!row.qty) && (loop.count == 1) -%] |
|
143 |
value="[% HTML.escape(do_qty) %]" |
|
144 |
[%- ELSE -%] |
|
145 |
value="[% HTML.escape(LxERP.format_amount(row.qty)) %]" |
|
146 |
[%- END -%]> |
|
147 |
</td> |
|
141 | 148 |
<td> |
142 | 149 |
<select name="unit_[% loop.count %]"> |
143 | 150 |
[% FOREACH unit = UNITS %] |
Auch abrufbar als: Unified diff
design40: do/stock_in_form.html aktualisiert
- b5c4682 Einkaufslieferschein: Falls erste Position beim Einlagern mit LS-Menge vorbelegenfrom