Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 2c514a52

Von Hans P. Schlaepfer vor mehr als 3 Jahren hinzugefügt

  • ID 2c514a529f8f560ffbe57acebb3b414e20e8e1d8
  • Vorgänger 3f545c3b
  • Nachfolger 5bb3b100

Neues Design 2019 Standard-Code templates/webpages/client_config/_stocktaking.html

Unterschiede anzeigen:

templates/webpages/client_config/_stocktaking.html
1
<div id="stocktaking">
2
 <table>
3
  <tr>
4
   <td align="right" nowrap="true">[% LxERP.t8('Preselected warehouse') %]</td>
5
   <td>
6
     [% L.select_tag('defaults.stocktaking_warehouse_id',
7
                     SELF.all_warehouses,
8
                     id='stocktaking_warehouse_id',
9
                     with_empty=1,
10
                     default=SELF.defaults.stocktaking_warehouse_id,
11
                     title_key='description',
12
                     onchange="warehouse_selected(this.selectedIndex == 0 ? -1 : warehouses[this.selectedIndex - 1].id, -1 ,'stocktaking_bin_id')") %]
13
   </td>
14
   <td>
15
    [% LxERP.t8('If configured this warehouse will be preselected for stocktaking.') %]<br>
16
   </td>
17
  </tr>
18

  
19
  <tr>
20
   <td align="right" nowrap="true">[% LxERP.t8('Preselected bin') %]</td>
21
   <td>[% L.select_tag('defaults.stocktaking_bin_id', [], id='stocktaking_bin_id', with_empty=1) %]</td>
22
   <td>
23
    [% LxERP.t8('If configured this bin will be preselected for stocktaking.') %]<br>
24
   </td>
25
  </tr>
26
  <tr>
27

  
28
  <tr>
29
   <td align="right" nowrap="true">[% LxERP.t8('Preselected cutoff date') %]</td>
30
   <td>[% L.date_tag('defaults.stocktaking_cutoff_date', SELF.defaults.stocktaking_cutoff_date) %]</td>
31
   <td>
32
    [% LxERP.t8('If configured this date will used as preselected cutoff date for stocktaking.') %]<br>
33
   </td>
34
  </tr>
35
  <tr>
36 1
[% USE HTML %]
37 2
[% USE LxERP %]
38 3
[% USE L %]
39 4
[% USE T8 %]
40 5

  
41
  <tr>
42
   <td align="right" nowrap="true">[% LxERP.t8('Threshold for warning on quantity difference') %]</td>
43
   <td>[% L.input_tag('defaults.stocktaking_qty_threshold_as_number', SELF.defaults.stocktaking_qty_threshold_as_number, size=15, class="numeric") %]</td>
44
   <td>
45
    [% LxERP.t8('If the counted quantity differs more than this threshold from the quantity in the database, a warning will be shown. Set to 0 to switch of this feature.') %]<br>
46
   </td>
47
  </tr>
48
  <tr>
49

  
50
 </table>
51
</div>
6
<div id="stocktaking">
7
<div class="wrapper">
8
  <table class="tbl-horizontal">
9
    <caption>[% 'Stocktaking' | $T8 %]</caption>
10
    <tbody>
11
    <tr>
12
      <th>[% LxERP.t8('Preselected warehouse') %]</th>
13
      <td>[% L.select_tag('defaults.stocktaking_warehouse_id', SELF.all_warehouses, id='stocktaking_warehouse_id', with_empty=1, default=SELF.defaults.stocktaking_warehouse_id, title_key='description', onchange="warehouse_selected(this.selectedIndex == 0 ? -1 : warehouses[this.selectedIndex - 1].id, -1 ,'stocktaking_bin_id')", class='wi-normal') %] </td>
14
      <td class="long-desc">[% LxERP.t8('If configured this warehouse will be preselected for stocktaking.') %]<br>
15
      </td>
16
    </tr>
17
    <tr>
18
      <th>[% LxERP.t8('Preselected bin') %]</th>
19
      <td>[% L.select_tag('defaults.stocktaking_bin_id', [], id='stocktaking_bin_id', with_empty=1, class='wi-normal') %]</td>
20
      <td class="long-desc">[% LxERP.t8('If configured this bin will be preselected for stocktaking.') %]<br>
21
      </td>
22
    </tr>
23
    <tr>
24
      <th>[% LxERP.t8('Preselected cutoff date') %]</th>
25
      <td>[% L.date_tag('defaults.stocktaking_cutoff_date', SELF.defaults.stocktaking_cutoff_date, class='wi-date') %]</td>
26
      <td class="long-desc">[% LxERP.t8('If configured this date will used as preselected cutoff date for stocktaking.') %]<br>
27
      </td>
28
    </tr>
29
    <tr>
30
      <th>[% LxERP.t8('Threshold for warning on quantity difference') %]</th>
31
      <td>[% L.input_tag('defaults.stocktaking_qty_threshold_as_number', SELF.defaults.stocktaking_qty_threshold_as_number, class='wi-small', size='15') %]</td>
32
      <td class="long-desc">[% LxERP.t8('If the counted quantity differs more than this threshold from the quantity in the database, a warning will be shown. Set to 0 to switch of this feature.') %]<br>
33
      </td>
34
    </tr>
35
    </tbody>
36
  </table>
37
</div><!-- /.wrapper -->
38
</div><!-- /#stocktaking -->

Auch abrufbar als: Unified diff