Projekt

Allgemein

Profil

Herunterladen (2,11 KB) Statistiken
| Zweig: | Markierung: | Revision:
607a8079 Niclas Zimmermann
[%- USE T8 %]
[% USE HTML %]<div class="listtop">[% 'Double partnumbers' | $T8 %]</div>

<form name="Form" method="post" action="login.pl">
<input type="hidden" name="action" value="login">
f41e5b6e Niclas Zimmermann
<input type="hidden" name="continued" value="1">
607a8079 Niclas Zimmermann
<p>[% 'There are double partnumbers in your database.' | $T8 %]</p>
f41e5b6e Niclas Zimmermann
<p>[% 'From this version on the partnumber of services, articles and assemblies have to be unique.' | $T8 %]</p>
<p>[% 'So far you could use one partnumber for severel parts, for example a service and an article.' | $T8 %]</p>
<p>[% 'Because the useability gets worth if one partnumber is used for several parts (for example if you are searching a position for an invoice), partnumbers should be unique.' | $T8 %]</p>
607a8079 Niclas Zimmermann
<p>[% 'Please change the partnumber of the following parts and run the update again:' | $T8 %]</p>
<table>
<tr>
<th class="listheading">[% 'Partnumber' | $T8 %]</th>
<th class="listheading">[% 'Description' | $T8 %]</th>
<th class="listheading">[% 'Unit' | $T8 %]</th>
<th class="listheading">[% 'Notes' | $T8 %]</th>
<th class="listheading">[% 'EAN' | $T8 %]</th>
<th class="listheading">[% 'Service, assembly or part' | $T8 %]</th>
</tr>

[% SET row_odd = '1' %][% FOREACH row = PARTS %]
<tr class="listrow[% IF row_odd %]1[% SET row_odd = '0' %][% ELSE %]0[% SET row_odd = '1' %][% END %]">
f41e5b6e Niclas Zimmermann
<td align="right"><input name='partnumber_[% loop.count %]' value='[% HTML.escape(row.partnumber) %]'></td>
<input type="hidden" name='partid_[% loop.count %]' value='[% HTML.escape(row.id) %]'>
607a8079 Niclas Zimmermann
<td align="left"> [% HTML.escape(row.description) %]</a></td>
<td align="right">[% HTML.escape(row.unit) %]</td>
<td align="right">[% HTML.escape(row.notes) %]</td>
<td align="right">[% HTML.escape(row.ean) %]</td>
f41e5b6e Niclas Zimmermann
<td align="right">[% IF row.assembly %] [% 'assembly' | $T8 %] [% ELSE %] [% IF row.inventory_accno_id %] [% 'part' | $T8 %] [% ELSE %] [% 'service' | $T8 %] [% END %] [% END %]</td>
607a8079 Niclas Zimmermann
</tr>
f41e5b6e Niclas Zimmermann
[% SET rowcount = loop.count %]
607a8079 Niclas Zimmermann
[% END %]
f41e5b6e Niclas Zimmermann
<input type="hidden" name="rowcount" value="[% rowcount %]">
607a8079 Niclas Zimmermann
</table>

f41e5b6e Niclas Zimmermann
<input type="submit" value="[% 'Continue' | $T8 %]">

607a8079 Niclas Zimmermann
</form>