Skip to content

Commit

Permalink
FIX: EK-Auftrag → EK-Lieferschein: Wähle die korrekten Artikel
Browse files Browse the repository at this point in the history
    Indexierung war im Template um 1 verschoben.
  • Loading branch information
z4m1n0 committed Oct 25, 2023
1 parent 3cb3fcd commit f7a2e72
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<tbody id="item_position_selection" class="row_entry listrow">
[% FOREACH item = ITEMS %]
<tr class="listrow">
<td>[% L.checkbox_tag("selected_item_positions[+]", class="item_position_selection_checkall", value=loop.count, checked="checked") %]</td>
<td>[% L.checkbox_tag("selected_item_positions[+]", class="item_position_selection_checkall", value=loop.count-1, checked="checked") %]</td>
<td class="numeric">[% loop.count %]</td>
<td>[% HTML.escape(item.partnumber) %]</td>
<td>[% HTML.escape(item.vendor_partnumber) %]</td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<tbody id="item_position_selection" class="row_entry listrow">
[% FOREACH item = ITEMS %]
<tr class="listrow">
<td>[% L.checkbox_tag("selected_item_positions[+]", class="item_position_selection_checkall", value=loop.count, checked="checked") %]</td>
<td>[% L.checkbox_tag("selected_item_positions[+]", class="item_position_selection_checkall", value=loop.count-1, checked="checked") %]</td>
<td align="right">[% loop.count %]</td>
<td>[% HTML.escape(item.partnumber) %]</td>
<td>[% HTML.escape(item.vendor_partnumber) %]</td>
Expand Down

0 comments on commit f7a2e72

Please sign in to comment.