Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 1aa007af

Von Hans Peter Schlaepfer vor fast 5 Jahren hinzugefügt

  • ID 1aa007afcc1c3838f4c512786123460f8fff9b0a
  • Vorgänger 6b53e063
  • Nachfolger 68c8d420

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

Unterschiede anzeigen:

templates/webpages/dbupgrade/acc_trans_constraints.html
1
[%- USE T8 %]
2
[%- USE L %]
1
[% USE T8 %]
2
[% USE L %]
3 3
[% USE HTML %]
4 4
<h1>[% 'Invalid transactions' | $T8 %]</h1>
5 5

  
......
13 13
  <p>[% 'Transactions without account:' | $T8 %]</p>
14 14
  <table>
15 15
    <tr>
16
      <th class="listheading">[% 'Database ID' | $T8 %]</th>
17
      <th class="listheading">[% 'Gldate' | $T8 %]</th>
18
      <th class="listheading">[% 'Transdate' | $T8 %]</th>
19
      <th class="listheading">[% 'Amount' | $T8 %]</th>
20
      <th class="listheading">[% 'ID' | $T8 %]</th>
21
      <th class="listheading">[% 'Source' | $T8 %]</th>
22
      <th class="listheading">[% 'Reference / Invoice Number' | $T8 %]</th>
23
      <th class="listheading">[% 'Description' | $T8 %]</th>
24
      <th class="listheading">[% 'Notes' | $T8 %]</th>
25
      <th class="listheading">[% 'Employee' | $T8 %]</th>
26
      <th class="listheading">[% 'User' | $T8 %]</th>
27
      <th class="listheading">[% 'Project Number' | $T8 %]</th>
28
      <th class="listheading">[% 'Project Description' | $T8 %]</th>
16
      <th>[% 'Database ID' | $T8 %]</th>
17
      <th>[% 'Gldate' | $T8 %]</th>
18
      <th>[% 'Transdate' | $T8 %]</th>
19
      <th>[% 'Amount' | $T8 %]</th>
20
      <th>[% 'ID' | $T8 %]</th>
21
      <th>[% 'Source' | $T8 %]</th>
22
      <th>[% 'Reference / Invoice Number' | $T8 %]</th>
23
      <th>[% 'Description' | $T8 %]</th>
24
      <th>[% 'Notes' | $T8 %]</th>
25
      <th>[% 'Employee' | $T8 %]</th>
26
      <th>[% 'User' | $T8 %]</th>
27
      <th>[% 'Project Number' | $T8 %]</th>
28
      <th>[% 'Project Description' | $T8 %]</th>
29 29
    </tr>
30 30

  
31 31
    [% SET row_odd = '1' %][% FOREACH row = NO_CHART_ID %]
32 32
    <tr class="listrow[% IF row_odd %]1[% SET row_odd = '0' %][% ELSE %]0[% SET row_odd = '1' %][% END %]">
33
      <td align="left">[% HTML.escape(row.acc_trans_id) %]</td>
34
      <td align="left">[% HTML.escape(row.gldate) %]</td>
35
      <td align="left">[% HTML.escape(row.transdate) %]</td>
36
      <td align="left">[% HTML.escape(row.amount) %]</td>
37
      <td align="left">[% HTML.escape(row.trans_id) %]</td>
38
      <td align="left">[% HTML.escape(row.source) %]</td>
39
      <td align="left">[% HTML.escape(row.reference) %]</td>
40
      <td align="left">[% HTML.escape(row.description) %]</td>
41
      <td align="left">[% HTML.escape(row.notes) %]</td>
42
      <td align="left">[% HTML.escape(row.name) %]</td>
43
      <td align="left">[% HTML.escape(row.user) %]</td>
44
      <td align="left">[% HTML.escape(row.projectnumber) %]</td>
45
      <td align="left">[% HTML.escape(row.projectdescription) %]</td>
33
      <td>[% HTML.escape(row.acc_trans_id) %]</td>
34
      <td>[% HTML.escape(row.gldate) %]</td>
35
      <td>[% HTML.escape(row.transdate) %]</td>
36
      <td>[% HTML.escape(row.amount) %]</td>
37
      <td>[% HTML.escape(row.trans_id) %]</td>
38
      <td>[% HTML.escape(row.source) %]</td>
39
      <td>[% HTML.escape(row.reference) %]</td>
40
      <td>[% HTML.escape(row.description) %]</td>
41
      <td>[% HTML.escape(row.notes) %]</td>
42
      <td>[% HTML.escape(row.name) %]</td>
43
      <td>[% HTML.escape(row.user) %]</td>
44
      <td>[% HTML.escape(row.projectnumber) %]</td>
45
      <td>[% HTML.escape(row.projectdescription) %]</td>
46 46
    </tr>
47 47
    [% END %]
48 48
  </table>
......
53 53
  <p>[% 'Transactions without reference:' | $T8 %]</p>
54 54
  <table>
55 55
    <tr>
56
      <th class="listheading">[% 'Database ID' | $T8 %]</th>
57
      <th class="listheading">[% 'Gldate' | $T8 %]</th>
58
      <th class="listheading">[% 'Transdate' | $T8 %]</th>
59
      <th class="listheading">[% 'Amount' | $T8 %]</th>
60
      <th class="listheading">[% 'Source' | $T8 %]</th>
61
      <th class="listheading">[% 'Account Number' | $T8 %]</th>
62
      <th class="listheading">[% 'Description' | $T8 %]</th>
63
      <th class="listheading">[% 'Account Type' | $T8 %]</th>
64
      <th class="listheading">[% 'Project Number' | $T8 %]</th>
65
      <th class="listheading">[% 'Project Description' | $T8 %]</th>
56
      <th>[% 'Database ID' | $T8 %]</th>
57
      <th>[% 'Gldate' | $T8 %]</th>
58
      <th>[% 'Transdate' | $T8 %]</th>
59
      <th>[% 'Amount' | $T8 %]</th>
60
      <th>[% 'Source' | $T8 %]</th>
61
      <th>[% 'Account Number' | $T8 %]</th>
62
      <th>[% 'Description' | $T8 %]</th>
63
      <th>[% 'Account Type' | $T8 %]</th>
64
      <th>[% 'Project Number' | $T8 %]</th>
65
      <th>[% 'Project Description' | $T8 %]</th>
66 66
    </tr>
67 67

  
68 68
    [% SET row_odd = '1' %][% FOREACH row = NO_TRANS_ID %]
69 69
    <tr class="listrow[% IF row_odd %]1[% SET row_odd = '0' %][% ELSE %]0[% SET row_odd = '1' %][% END %]">
70
      <td align="left">[% HTML.escape(row.acc_trans_id) %]</td>
71
      <td align="left">[% HTML.escape(row.gldate) %]</td>
72
      <td align="left">[% HTML.escape(row.transdate) %]</td>
73
      <td align="left">[% HTML.escape(row.amount) %]</td>
74
      <td align="left">[% HTML.escape(row.source) %]</td>
75
      <td align="left">[% HTML.escape(row.accno) %]</td>
76
      <td align="left">[% HTML.escape(row.description) %]</td>
77
      <td align="left">[% HTML.escape(row.category) %]</td>
78
      <td align="left">[% HTML.escape(row.projectnumber) %]</td>
79
      <td align="left">[% HTML.escape(row.projectdescription) %]</td>
70
      <td>[% HTML.escape(row.acc_trans_id) %]</td>
71
      <td>[% HTML.escape(row.gldate) %]</td>
72
      <td>[% HTML.escape(row.transdate) %]</td>
73
      <td>[% HTML.escape(row.amount) %]</td>
74
      <td>[% HTML.escape(row.source) %]</td>
75
      <td>[% HTML.escape(row.accno) %]</td>
76
      <td>[% HTML.escape(row.description) %]</td>
77
      <td>[% HTML.escape(row.category) %]</td>
78
      <td>[% HTML.escape(row.projectnumber) %]</td>
79
      <td>[% HTML.escape(row.projectdescription) %]</td>
80 80
    </tr>
81 81
    [% END %]
82 82
  </table>

Auch abrufbar als: Unified diff