Revision b5c4682f
Von Jan Büren vor mehr als 3 Jahren hinzugefügt
templates/webpages/do/stock_in_form.html | ||
---|---|---|
140 | 140 |
[% L.date_tag('bestbefore_'_ loop.count, row.bestbefore) %] |
141 | 141 |
</td> |
142 | 142 |
[% END %] |
143 |
<td><input name="qty_[% loop.count %]" size="12" value="[% HTML.escape(LxERP.format_amount(row.qty)) %]"></td> |
|
144 |
|
|
143 |
<td><input name="qty_[% loop.count %]" size="12" |
|
144 |
[%- IF (!row.qty) && (loop.count == 1) %] |
|
145 |
value="[% HTML.escape(do_qty) %]" |
|
146 |
[%- ELSE %] |
|
147 |
value="[% HTML.escape(LxERP.format_amount(row.qty)) %]" |
|
148 |
[% END %] |
|
149 |
></td> |
|
145 | 150 |
<td> |
146 | 151 |
<select name="unit_[% loop.count %]"> |
147 | 152 |
[%- FOREACH unit = UNITS %] |
Auch abrufbar als: Unified diff
Einkaufslieferschein: Falls erste Position beim Einlagern mit LS-Menge vorbelegen
Der Verkaufslieferschein belegt die Menge beim Auslagern auch direkt
vor. Dasselbe sollte auch beim Eingang passieren, da eine Position
gleich eine Standardlagerplatz normalerweise die richtige Vorbelegung ist.