Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 21d8fd43

Von Hans Peter Schlaepfer vor fast 5 Jahren hinzugefügt

  • ID 21d8fd4317f954ccbc3cd43ebe111d9e40fff2cb
  • Vorgänger 96f21f5c
  • Nachfolger 275285ac

Neues kivitendo Design Aenderungen in templates/webpages/wh/..

Unterschiede anzeigen:

templates/webpages/wh/removal_parts_selection.html
1
[%- USE T8 %]
2
[%- USE HTML %][%- USE JavaScript %]
1
[% USE T8 %]
2
[% USE HTML %]
3
[% USE JavaScript %]
4

  
3 5
<h1>[% title %]</h1>
4 6

  
5 7
 <form method="post" action="wh.pl" id="form">
......
8 10

  
9 11
  <p>[% 'Removal from warehouse' | $T8 %]: [% warehouse_description %]</p>
10 12

  
11
  <p>
12 13
   <table>
13 14
    <tr>
14 15
     <td>[% 'Select type of removal' | $T8 %]:</td>
15 16
     <td>
16 17
      <select name="transfer_type_id">
17
       [%- FOREACH type = TRANSFER_TYPES %]<option value="[% HTML.escape(type.id) %]">[% HTML.escape(type.description) %]</option>[% END %]
18
       [% FOREACH type = TRANSFER_TYPES %]<option value="[% HTML.escape(type.id) %]">[% HTML.escape(type.description) %]</option>[% END %]
18 19
      </select>
19 20
     </td>
20 21
    </tr>
21

  
22 22
    <tr>
23 23
     <td>[% 'Optional comment' | $T8 %]:</td>
24
     <td><input name="comment" size="60"></td>
24
     <td><input type="text" name="comment" size="60"></td>
25 25
    </tr>
26 26
   </table>
27
  </p>
28 27

  
29
  <p>
30 28
   <table>
31 29
    <tr>
32
     <th class="listheading">[% 'Bin' | $T8 %]</th>
33
     <th class="listheading">[% 'Part Number' | $T8 %]</th>
34
     <th class="listheading">[% 'Part Description' | $T8 %]</th>
35
     <th class="listheading">[% 'Charge Number' | $T8 %]</th>
30
     <th>[% 'Bin' | $T8 %]</th>
31
     <th>[% 'Part Number' | $T8 %]</th>
32
     <th>[% 'Part Description' | $T8 %]</th>
33
     <th>[% 'Charge Number' | $T8 %]</th>
36 34
     [% IF INSTANCE_CONF.get_show_bestbefore %]
37
     <th class="listheading">[% 'Best Before' | $T8 %]</th>
35
     <th>[% 'Best Before' | $T8 %]</th>
38 36
     [% END %]
39
     <th class="listheading">[% 'EAN' | $T8 %]</th>
40
     <th class="listheading">[% 'Available qty' | $T8 %]</th>
41
     <th class="listheading">[% 'Removal qty' | $T8 %]</th>
37
     <th>[% 'EAN' | $T8 %]</th>
38
     <th>[% 'Available qty' | $T8 %]</th>
39
     <th>[% 'Removal qty' | $T8 %]</th>
42 40
    </tr>
43

  
44 41
    [% FOREACH row = CONTENTS %]
45 42
    <tr class="listrow[% loop.count % 2 %]">
46 43
     <input type="hidden" name="src_bin_id_[% loop.count %]" value="[% HTML.escape(row.binid) %]">
......
62 59
     <td>[% HTML.escape(row.ean) %]</td>
63 60
     <td>[% HTML.escape(row.qty) %]</td>
64 61
     <td>
65
      <input name="qty_[% loop.count %]">
62
      <input type="text" name="qty_[% loop.count %]">
66 63
      <select name="unit_[% loop.count %]">
67 64
       [% FOREACH unit = row.UNITS %]<option[% IF unit.selected %] selected[% END %]>[% HTML.escape(unit.name) %]</option>[% END %]
68 65
      </select>
69 66
     </td>
70 67
    </tr>
71

  
72 68
    [% END %]
73

  
74 69
    <input type="hidden" name="rowcount" value="[% CONTENTS.size %]">
75

  
76 70
    <tr><td colspan="7"><hr size="3" noshade></td></tr>
77

  
78 71
   </table>
79
  </p>
80 72
 </form>

Auch abrufbar als: Unified diff