Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 8f5246ba

Von Hans Peter Schlaepfer vor etwa 5 Jahren hinzugefügt

  • ID 8f5246ba7cc3b5cb38e5e939ed0642bea64d8367
  • Vorgänger 3fb30e00
  • Nachfolger 1d42407b

Neues kivitendo Design restliche Aenderungen in templates/webpages/d*

Dateien in datev/* delivery_plan/* delivery_term/* delivery_value_report/*
drafts/* dunning/*

Unterschiede anzeigen:

templates/webpages/dunning/add.html
1
[%- USE T8 %]
2
[% USE HTML %]<script type="text/javascript" src="js/common.js"></script>
1
[% USE T8 %]
2
[% USE HTML %]
3

  
4
<script type="text/javascript" src="js/common.js"></script>
5

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

  
5
 <form method="post" name="search" action="dn.pl" id="form">
6

  
7
  <table>
8
   <tr>
9
    <th align="right">[% 'Customer' | $T8 %]</th>
10
    <td colspan="3">
11
      <input name="customer" size="35" class="initial_focus">
12
    </td>
13
   </tr>
14

  
15
   [% IF SHOW_DUNNING_LEVEL_SELECTION %]
16
    <tr>
17
     <th align="right">[% 'Next Dunning Level' | $T8 %]</th>
18
     <td colspan="3">
19
      <select name="dunning_level">
20
       <option></option>
21
       [% FOREACH row = DUNNING %]<option value="[% HTML.escape(row.id) %]">[% HTML.escape(row.dunning_description) %]</option>[% END %]
22
      </select>
23
     </td>
24
    </tr>
25
   [% END %]
26

  
27
   <tr>
28
    <th align="right" nowrap>[% 'Invoice Number' | $T8 %]</th>
29
    <td colspan="3"><input name="invnumber" size="20"></td>
30
   </tr>
31

  
32
   <tr>
33
    <th align="right" nowrap>[% 'Order Number' | $T8 %]</th>
34
    <td colspan="3"><input name="ordnumber" size="20"></td>
35
   </tr>
36

  
37
   <tr>
38
    <th align="right" nowrap>[% 'Notes' | $T8 %]</th>
39
    <td colspan="3"><input name="notes" size="40"></td>
40
   </tr>
41
   <tr>
42
    <th align="right" nowrap>[% 'Country' | $T8 %]</th>
43
    <td colspan="3"><input name="country" size="40"></td>
44
   </tr>
45

  
46
   <tr><td colspan="2"><hr size="3" noshade></td></tr>
47

  
48
   <tr>
49
    <th align="right" nowrap>[% 'Minimum Amount' | $T8 %]</th>
50
    <td><input name="minamount" size="6"></td>
51
   </tr>
52

  
53
   <tr>
54
    <th align="right" nowrap><label for="groupinvoices">[% 'Group Invoices' | $T8 %]</label></th>
55
    <td><input type="checkbox" value="1" id="groupinvoices" name="groupinvoices" checked></td>
56
   </tr>
57

  
58
   <tr>
59
    <th align="right" nowrap><label for="l_include_direct_debit">[% 'Include invoices with direct debit' | $T8 %]</label></th>
60
    <td><input type="checkbox" value="1" id="l_include_direct_debit" name="l_include_direct_debit"></td>
61
   </tr>
62
  </table>
63
 </form>
8
<form method="post" name="search" action="dn.pl" id="form">
9

  
10
<div class="wrapper">
11

  
12
<table class="tbl-horizontal">
13
  <colgroup> <col class="wi-mediumsmall"><col class="wi-lightwide"> </colgroup>
14
  <tbody>
15
    <tr>
16
      <th>[% 'Customer' | $T8 %]</th>
17
      <td><input type="text" name="customer" class="initial_focus wi-lightwide"></td>
18
    </tr>
19
    [% IF SHOW_DUNNING_LEVEL_SELECTION %]
20
    <tr>
21
      <th>[% 'Next Dunning Level' | $T8 %]</th>
22
      <td>
23
        <select name="dunning_level" class="wi-lightwide">
24
          <option></option>
25
          [% FOREACH row = DUNNING %]
26
            <option value="[% HTML.escape(row.id) %]">[% HTML.escape(row.dunning_description) %]</option>
27
          [% END %]
28
        </select>
29
      </td>
30
    </tr>
31
    [% END %]
32
    <tr>
33
      <th>[% 'Invoice Number' | $T8 %]</th>
34
      <td><input type="text" name="invnumber" class="wi-lightwide"></td>
35
    </tr>
36
    <tr>
37
      <th>[% 'Order Number' | $T8 %]</th>
38
      <td><input type="text" name="ordnumber" class="wi-lightwide"></td>
39
    </tr>
40
    <tr>
41
      <th>[% 'Notes' | $T8 %]</th>
42
      <td><input type="text" name="notes" class="wi-lightwide"></td>
43
    </tr>
44
    <tr class="separator below">
45
      <th>[% 'Country' | $T8 %]</th>
46
      <td><input type="text" name="country"  class="wi-lightwide"></td>
47
    </tr>
48
    <tr>
49
      <th>[% 'Minimum Amount' | $T8 %]</th>
50
      <td><input type="text" name="minamount" class="wi-lightwide"></td>
51
    </tr>
52
    <tr>
53
      <th><label for="groupinvoices">[% 'Group Invoices' | $T8 %]</label></th>
54
      <td><input type="checkbox" value="1" id="groupinvoices" name="groupinvoices" checked></td>
55
    </tr>
56
    <tr>
57
      <th><label for="l_include_direct_debit">[% 'Include invoices with direct debit' | $T8 %]</label></th>
58
      <td><input type="checkbox" value="1" id="l_include_direct_debit" name="l_include_direct_debit"></td>
59
    </tr>
60
  </tbody>
61
</table>
62

  
63
</div><!-- /.wrapper -->
64

  
65

  
66
</form>

Auch abrufbar als: Unified diff