Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision b2978890

Von Hans Peter Schlaepfer vor etwa 5 Jahren hinzugefügt

  • ID b297889030215911d3f9adb500099bb1b1aa213f
  • Vorgänger 1213b27a
  • Nachfolger 2527bf70

Design-4.0: HTML-Anpassung an neues Design templates/webpages/wh/..

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

Unterschiede anzeigen:

templates/webpages/wh/journal_filter.html
71 71
<form method="post" name="Form" action="wh.pl" id="form">
72 72
<div class="wrapper">
73 73

  
74
<table class="tbl-horizontal">
75
  <tbody>
74 76
    <tr>
75
     <td>
76
      <table>
77
       <tr>
78
        <th align="right" nowrap>[% 'Warehouse' | $T8 %]:</th>
79
        <td>
80
         <select name="warehouse_id" id="warehouse_id" onchange="warehouse_selected(warehouses[this.selectedIndex]['id'], 0)">
81
          <option value="">---</option>
82
          [%- FOREACH warehouse = WAREHOUSES %]
77
      <th>[% 'Warehouse' | $T8 %]:</th>
78
      <td>
79
      <select name="warehouse_id" id="warehouse_id" onchange="warehouse_selected(warehouses[this.selectedIndex]['id'], 0)" class="wi-normal">
80
        <option value="">---</option>
81
        [% FOREACH warehouse = WAREHOUSES %]
83 82
          <option value="[% HTML.escape(warehouse.id) %]">[% warehouse.description %]</option>
84
          [%- END %]
85
         </select>
86
        </td>
87
       </tr>
88
       <tr>
89
        <th align="right" nowrap>[% 'Bin' | $T8 %]:</th>
90
        <td><select name="bin_id" id="bin_id"></select></td>
91
       </tr>
92
       <tr>
93
        <th align="right" nowrap>[% 'Part Number' | $T8 %]:</th>
94
        <td><input name="partnumber" id="partnumber" size=20></td>
95
       </tr>
96
       <tr>
97
        <th align="right" nowrap>[% 'Parts Classification' | $T8 %]:</th>
98
        <td>[% P.part.select_classification('classification_id') %]</td>
99
       </tr>
100
       <tr>
101
        <th align="right" nowrap>[% 'Part Description' | $T8 %]:</th>
102
        <td><input name="description" size=40></td>
103
       </tr>
104
       <tr>
105
        <th align="right" nowrap>[% 'Charge Number' | $T8 %]:</th>
106
        <td><input name="chargenumber" size=40></td>
107
       </tr>
108
       [% IF INSTANCE_CONF.get_show_bestbefore %]
109
       <tr>
110
        <th align="right" nowrap>[% 'Best Before' | $T8 %]:</th>
111
        <td>
112
          [% L.date_tag('bestbefore') %]
113
        </td>
114
       </tr>
115
       [% END %]
116
       <tr>
117
        <th align="right" nowrap>[% 'Transfer Quantity' | $T8 %]:</th>
118
        <td>
119
         <select name="qty_op">
83
        [% END %]
84
      </select>
85
      </td>
86
    </tr>
87
    <tr>
88
      <th>[% 'Bin' | $T8 %]:</th>
89
      <td>
90
        <select name="bin_id" id="bin_id" class="wi-normal">
91
      </select>
92
      </td>
93
    </tr>
94
    <tr>
95
      <th>[% 'Part Number' | $T8 %]:</th>
96
      <td><input type="text" name="partnumber" id="partnumber" class="wi-normal">
97
      </td>
98
    </tr>
99
    <tr>
100
      <th>[% 'Parts Classification' | $T8 %]:</th>
101
      <td>[% P.part.select_classification('classification_id', class='wi-normal') %]</td>
102
    </tr>
103
    <tr>
104
      <th>[% 'Part Description' | $T8 %]:</th>
105
      <td><input type="text" name="description" class="wi-normal">
106
      </td>
107
    </tr>
108
    <tr>
109
      <th>[% 'Charge Number' | $T8 %]:</th>
110
      <td><input type="text" name="chargenumber" class="wi-normal">
111
      </td>
112
    </tr>
113
    [% IF INSTANCE_CONF.get_show_bestbefore %]
114
      <tr>
115
        <th>[% 'Best Before' | $T8 %]:</th>
116
        <td> [% L.date_tag('bestbefore') %] </td>
117
      </tr>
118
    [% END %]
119
    <tr>
120
      <th>[% 'Transfer Quantity' | $T8 %]:</th>
121
      <td>
122
        <select name="qty_op" class="wi-normal">
120 123
          <option value="dontcare">---</option>
121 124
          <option value="atleast">[% 'At least' | $T8 %]</option>
122 125
          <option value="atmost">[% 'At most' | $T8 %]</option>
123 126
          <option value="exact">[% 'Exact' | $T8 %]</option>
124
         </select>
125
         <input name="qty">
126
         <select name="qty_unit">
127
          [%- FOREACH unit = UNITS %]<option>[% unit.name %]</option>[% END %]
128
         </select>
129
        </td>
130
       </tr>
131
       <tr>
132
        <th align="right" nowrap>[% 'From Date' | $T8 %]</th>
133
        <td>
134
          [% L.date_tag('fromdate') %]
135
        </td>
136
       </tr>
137
       <tr>
138
        <th align="right">[% 'To Date' | $T8 %]</th>
139
        <td>
140
          [% L.date_tag('todate') %]
141
        </td>
142
       </tr>
143
      </table>
144
     </td>
127
        </select>
128
        <input name="qty" type="text" class="wi-verysmall">
129
        <select name="qty_unit" class="wi-small">
130
          [% FOREACH unit = UNITS %]
131
            <option>[% unit.name %]</option>
132
          [% END %]
133
        </select>
134
      </td>
145 135
    </tr>
146

  
147
    <tr height="5"><td>&nbsp;</td></tr>
148

  
149 136
    <tr>
150
     <th class="listheading" align="left" valign="top" colspan="6" nowrap>[% 'Include in Report' | $T8 %]</th>
137
      <th>[% 'From Date' | $T8 %]</th>
138
      <td> <span class="wi-date">[% L.date_tag('fromdate') %]</span> </td>
151 139
    </tr>
152 140
    <tr>
153
     <td>
154
      <table>
155
       <tr>
156
        <td><input name="l_partdescription" id="l_partdescription" class="checkbox" type="hidden" value="Y" checked></td>
157
        <td nowrap><label for="l_partdescription">[% 'Part Description' | $T8 %]</label></td>
158
        <td><input name="l_qty" id="l_qty" class="checkbox" type="hidden" value="Y" checked></td>
159
        <td nowrap><label for="l_qty">[% 'Quantity' | $T8 %]</label></td>
160
       </tr>
161
       <tr>
162
        <td align="right"><input name="l_date" id="l_date" class="checkbox" type="checkbox" value="Y" checked></td>
163
        <td nowrap><label for="l_date">[% 'Date' | $T8 %]</label></td>
164
        <td align="right"><input name="l_partnumber" id="l_partnumber" class="checkbox" type="checkbox" value="Y" checked></td>
165
        <td nowrap><label for="l_partnumber">[% 'Part Number' | $T8 %]</label></td>
166
        <td align="right"><input name="l_chargenumber" id="l_chargenumber" class="checkbox" type="checkbox" value="Y" checked></td>
167
        <td nowrap><label for="l_chargenumber">[% 'Charge Number' | $T8 %]</label></td>
168
        [% IF INSTANCE_CONF.get_show_bestbefore %]
169
        <td align="right"><input name="l_bestbefore" id="l_bestbefore" class="checkbox" type="checkbox" value="Y" checked></td>
170
        <td nowrap><label for="l_bestbefore">[% 'Best Before' | $T8 %]</label></td>
171
        [% END %]
172
       </tr>
173
       <tr>
174
        <td align="right"><input name="l_trans_id" id="l_trans_id" class="checkbox" type="checkbox" value="Y"></td>
175
        <td nowrap><label for="l_trans_id">[% 'Trans Id' | $T8 %]</label></td>
176
        <td align="right"><input name="l_trans_type" id="l_trans_type" class="checkbox" type="checkbox" value="Y" checked></td>
177
        <td nowrap><label for="l_trans_type">[% 'Trans Type' | $T8 %]</label></td>
178
        <td align="right"><input name="l_comment" id="l_comment" class="checkbox" type="checkbox" value="Y"></td>
179
        <td nowrap><label for="l_comment">[% 'Comment' | $T8 %]</label></td>
180
       </tr>
181
       <tr>
182
        <td align="right"><input name="l_warehouse_from" id="l_warehouse_from" class="checkbox" type="checkbox" value="Y" checked></td>
183
        <td nowrap><label for="l_warehouse_from">[% 'Warehouse From' | $T8 %]</label></td>
184
        <td align="right"><input name="l_bin_from" id="l_bin_from" class="checkbox" type="checkbox" value="Y" checked></td>
185
        <td nowrap><label for="l_bin_from">[% 'Bin From' | $T8 %]</label></td>
186
        <td align="right"><input name="l_warehouse_to" id="l_warehouse_to" class="checkbox" type="checkbox" value="Y" checked></td>
187
        <td nowrap><label for="l_warehouse_to">[% 'Warehouse To' | $T8 %]</label></td>
188
        <td align="right"><input name="l_bin_to" id="l_bin_to" class="checkbox" type="checkbox" value="Y" checked></td>
189
        <td nowrap><label for="l_bin_to">[% 'Bin To' | $T8 %]</label></td>
190
       </tr>
191
       <tr>
192
        <td align="right"><input name="l_employee" id="l_employee" class="checkbox" type="checkbox" value="Y"></td>
193
        <td nowrap><label for="l_employee">[% 'Employee' | $T8 %]</label></td>
194
        <td align="right"><input name="l_oe_id" id="l_oe_id" class="checkbox" type="checkbox" value="Y"></td>
195
        <td nowrap><label for="l_oe_id">[% 'Document' | $T8 %]</label></td>
196
        <td align="right"><input name="l_projectnumber" id="l_projectnumber" class="checkbox" type="checkbox" value="Y" checked></td>
197
        <td nowrap><label for="l_projectnumber">[% 'Project Number' | $T8 %]</label></td>
198
       </tr>
199
      </table>
200
     </td>
141
      <th>[% 'To Date' | $T8 %]</th>
142
      <td> <span class="wi-date">[% L.date_tag('todate') %]</span> </td>
201 143
    </tr>
202
   </table>
203
 </form>
144
  </tbody>
145
</table>
146

  
147
</div><!-- /.wrapper -->
148

  
149
<div class="form-addition control-panel">
150
<h3>[% 'Include in Report' | $T8 %]</h3>
151

  
152
<div class="col list">
153
<h4>[% 'Article data' | $T8 %]</h4>
154
  <div>
155
    <input name="l_partdescription" id="l_partdescription" type="checkbox" value="Y" checked>
156
    <label for="l_partdescription">[% 'Part Description' | $T8 %]</label>
157
  </div>
158
  <div>
159
    <input name="l_partnumber" id="l_partnumber" type="checkbox" value="Y" checked>
160
    <label for="l_partnumber">[% 'Part Number' | $T8 %]</label>
161
  </div>
162
  <div>
163
    <input name="l_chargenumber" id="l_chargenumber" type="checkbox" value="Y" checked>
164
    <label for="l_chargenumber">[% 'Charge Number' | $T8 %]</label>
165
  </div>
166
  <div>
167
    <input name="l_qty" id="l_qty" type="checkbox" value="Y" checked>
168
    <label for="l_qty">[% 'Quantity' | $T8 %]</label>
169
  </div>
170
</div>
171

  
172
<div class="col list">
173
<h4>[% 'Storage' | $T8 %]</h4>
174
  <div>
175
    <input name="l_warehouse_from" id="l_warehouse_from" type="checkbox" value="Y" checked>
176
    <label for="l_warehouse_from">[% 'Warehouse From' | $T8 %]</label>
177
  </div>
178
  <div>
179
    <input name="l_bin_from" id="l_bin_from" type="checkbox" value="Y" checked>
180
    <label for="l_bin_from">[% 'Bin From' | $T8 %]</label>
181
  </div>
182
  <div>
183
    <input name="l_warehouse_to" id="l_warehouse_to" type="checkbox" value="Y" checked>
184
    <label for="l_warehouse_to">[% 'Warehouse To' | $T8 %]</label>
185
  </div>
186
  <div>
187
    <input name="l_bin_to" id="l_bin_to" type="checkbox" value="Y" checked>
188
    <label for="l_bin_to">[% 'Bin To' | $T8 %]</label>
189
  </div>
190
</div>
191

  
192
<div class="col list">
193
<h4>[% 'Miscellaneous' | $T8 %]</h4>
194
  <div>
195
    <input name="l_date" id="l_date" type="checkbox" value="Y" checked>
196
    <label for="l_date">[% 'Date' | $T8 %]</label>
197
  </div>
198
  [% IF INSTANCE_CONF.get_show_bestbefore %]
199
    <div>
200
      <input name="l_bestbefore" id="l_bestbefore" type="checkbox" value="Y" checked>
201
      <label for="l_bestbefore">[% 'Best Before' | $T8 %]</label>
202
    </div>
203
  [% END %]
204
  <div>
205
    <input name="l_trans_id" id="l_trans_id" type="checkbox" value="Y">
206
    <label for="l_trans_id">[% 'Trans Id' | $T8 %]</label>
207
  </div>
208
  <div>
209
    <input name="l_trans_type" id="l_trans_type" type="checkbox" value="Y" checked>
210
    <label for="l_trans_type">[% 'Trans Type' | $T8 %]</label>
211
  </div>
212
  <div>
213
    <input name="l_comment" id="l_comment" type="checkbox" value="Y">
214
    <label for="l_comment">[% 'Comment' | $T8 %]</label>
215
  </div>
216
  <div>
217
    <input name="l_employee" id="l_employee" type="checkbox" value="Y">
218
    <label for="l_employee">[% 'Employee' | $T8 %]</label>
219
  </div>
220
  <div>
221
    <input name="l_oe_id" id="l_oe_id" type="checkbox" value="Y">
222
    <label for="l_oe_id">[% 'Document' | $T8 %]</label>
223
  </div>
224
  <div>
225
    <input name="l_projectnumber" id="l_projectnumber" type="checkbox" value="Y" checked>
226
    <label for="l_projectnumber">[% 'Project Number' | $T8 %]</label>
227
  </div>
228
</div>
229

  
230
</div><!-- /.form-addition -->
231

  
232

  
233
</form>

Auch abrufbar als: Unified diff