Revision 0a792f85
Von Andreas Rudin vor etwa 6 Jahren hinzugefügt
- ID 0a792f850a6b9b7ed133991eda7f5521be007243
- Vorgänger a462dc9c
templates/webpages/piece/search.html | ||
---|---|---|
2 | 2 |
[% USE HTML %] |
3 | 3 |
[% USE LxERP %] |
4 | 4 |
[% USE L %] |
5 |
[% USE P %] |
|
5 | 6 |
|
6 | 7 |
[% SET style='width: 300px' %] |
7 | 8 |
|
... | ... | |
13 | 14 |
<tr valign="top"> |
14 | 15 |
<td align="right"><input id="filter_columns.producer" name="filter_columns.producer" class="checkbox" type="checkbox" value="1" checked></td> |
15 | 16 |
<th align="left">[% 'Producer' | $T8 %]</th> |
16 |
<td align="left">[% L.customer_vendor_picker('filter_rows.producer_id', SELF.filter_rows.producer_id, type='vendor', fat_set_item=1, style=style, class='initiacheck.focus') %]</td>
|
|
17 |
<td align="left">[% P.customer_vendor.picker('filter_rows.producer_id', SELF.filter_rows.producer_id, type='vendor', fat_set_item=1, style=style, class='initiacheck.focus') %]</td>
|
|
17 | 18 |
</tr> |
18 | 19 |
<tr> |
19 | 20 |
<td align="right"><input id="filter_columns.part" name="filter_columns.part" class="checkbox" type="checkbox" value="1" checked></td> |
20 | 21 |
<th align="left">[% 'Part' | $T8 %]</th> |
21 |
<td>[% L.part_picker('filter_rows.part_id', SELF.filter_rows.part_id, part_type='part,assembly', fat_set_item=1, style=style) %]</td>
|
|
22 |
<td>[% P.part.picker('filter_rows.part_id', SELF.filter_rows.part_id, part_type='part,assembly', fat_set_item=1, style=style) %]</td>
|
|
22 | 23 |
</tr> |
23 | 24 |
<tr> |
24 | 25 |
<td align="right"><input id="filter_columns.batch" name="filter_columns.batch" class="checkbox" type="checkbox" value="1" checked></td> |
Auch abrufbar als: Unified diff
production batch management: Korrektur Fehler durch rebase bei picker-Aufruf
L.part_picker ersetzt durch P.part.picker
L.customer_vendor_picker ersetzt durch P.customer_vendor.picker
Eingefügt: [% USE P %]