Revision d25334c6
Von Hans Peter Schlaepfer vor mehr als 6 Jahren hinzugefügt
templates/webpages/gl/search.html | ||
---|---|---|
8 | 8 |
|
9 | 9 |
<input type="hidden" name="sort" value="datesort"> |
10 | 10 |
|
11 |
<div class="cols">
|
|
11 |
<div class="wrapper">
|
|
12 | 12 |
|
13 |
<table class="tbl-horizontal col">
|
|
13 |
<table class="tbl-horizontal"> |
|
14 | 14 |
<tbody> |
15 | 15 |
<tr> |
16 | 16 |
<th> [% 'Reference / Invoice Number' | $T8 %] </th> |
17 | 17 |
<td> |
18 |
<input name="reference" class="wi-normal" class="wi-normal initial_focus" type="text">
|
|
18 |
<input name="reference" class="wi-normal initial_focus" type="text"> |
|
19 | 19 |
</td> |
20 | 20 |
</tr> |
21 | 21 |
<tr> |
... | ... | |
59 | 59 |
<tr> |
60 | 60 |
<th> [% 'Filter date by' | $T8 %] </th> |
61 | 61 |
<td> |
62 |
<input name="datesort" class="radio" type="radio" value="transdate" checked>
|
|
62 |
<input name="datesort" type="radio" value="transdate" checked> |
|
63 | 63 |
[% 'Transdate' | $T8 %] <br> |
64 |
<input name="datesort" class="radio" type="radio" value="gldate">
|
|
64 |
<input name="datesort" type="radio" value="gldate"> |
|
65 | 65 |
[% 'Gldate' | $T8 %] </td> |
66 | 66 |
</tr> |
67 | 67 |
<tr> |
... | ... | |
82 | 82 |
</div><!-- /.cols --> |
83 | 83 |
|
84 | 84 |
|
85 |
<div class="cols form-addition">
|
|
85 |
<div class="wrapper form-addition">
|
|
86 | 86 |
|
87 | 87 |
<h3>[% 'Include in Report' | $T8 %]</h3> |
88 | 88 |
|
89 | 89 |
|
90 |
<div class="list col">
|
|
90 |
<div class="list"> |
|
91 | 91 |
<h4>[% 'Scope' | $T8 %]</h4> |
92 |
<p> <input name="category" class="radio" type="radio" value="X" checked> [% 'All' | $T8 %]</p>
|
|
93 |
<p> <input name="category" class="radio" type="radio" value="A"> [% 'Asset' | $T8 %]</p>
|
|
94 |
<p> <input name="category" class="radio" type="radio" value="L"> [% 'Liability' | $T8 %]</p>
|
|
95 |
<p> <input name="category" class="radio" type="radio" value="I"> [% 'Revenue' | $T8 %]</p>
|
|
96 |
<p> <input name="category" class="radio" type="radio" value="E"> [% 'Expense' | $T8 %]</p>
|
|
92 |
<p> <input name="category" type="radio" value="X" checked> [% 'All' | $T8 %]</p> |
|
93 |
<p> <input name="category" type="radio" value="A"> [% 'Asset' | $T8 %]</p> |
|
94 |
<p> <input name="category" type="radio" value="L"> [% 'Liability' | $T8 %]</p> |
|
95 |
<p> <input name="category" type="radio" value="I"> [% 'Revenue' | $T8 %]</p> |
|
96 |
<p> <input name="category" type="radio" value="E"> [% 'Expense' | $T8 %]</p> |
|
97 | 97 |
</div> |
98 | 98 |
|
99 | 99 |
|
100 | 100 |
|
101 |
<table class="tbl-plain col"> |
|
102 |
<caption>[% 'Transaction Details' | $T8 %]</caption> |
|
101 |
<table class="tbl-plain"> |
|
102 |
<caption> |
|
103 |
[% 'Transaction Details' | $T8 %] |
|
104 |
</caption> |
|
103 | 105 |
<tbody> |
104 | 106 |
<tr> |
105 |
<td>
|
|
106 |
<input name="l_transdate" class="checkbox" type="checkbox" value="Y" checked>
|
|
107 |
[% 'Transdate' | $T8 %]</td>
|
|
107 |
<td> |
|
108 |
<input name="l_transdate" type="checkbox" value="Y" checked> [% 'Transdate' | $T8 %]
|
|
109 |
</td> |
|
108 | 110 |
</tr> |
109 | 111 |
<tr> |
110 |
<td>
|
|
111 |
<input name="l_gldate" class="checkbox" type="checkbox" value="Y" checked>
|
|
112 |
[% 'Gldate' | $T8 %]</td>
|
|
112 |
<td> |
|
113 |
<input name="l_gldate" type="checkbox" value="Y" checked> [% 'Gldate' | $T8 %]
|
|
114 |
</td> |
|
113 | 115 |
</tr> |
114 | 116 |
<tr> |
115 |
<td>
|
|
116 |
<input name="l_id" class="checkbox" type="checkbox" value="Y">
|
|
117 |
[% 'ID' | $T8 %]</td>
|
|
117 |
<td> |
|
118 |
<input name="l_id" type="checkbox" value="Y"> [% 'ID' | $T8 %]
|
|
119 |
</td> |
|
118 | 120 |
</tr> |
119 | 121 |
<tr> |
120 |
<td>
|
|
121 |
<input name="l_reference" class="checkbox" type="checkbox" value="Y" checked>
|
|
122 |
[% 'Reference' | $T8 %]</td>
|
|
122 |
<td> |
|
123 |
<input name="l_reference" type="checkbox" value="Y" checked> [% 'Reference' | $T8 %]
|
|
124 |
</td> |
|
123 | 125 |
</tr> |
124 | 126 |
<tr> |
125 |
<td>
|
|
126 |
<input name="l_source" class="checkbox" type="checkbox" value="Y" checked>
|
|
127 |
[% 'Source' | $T8 %]</td>
|
|
127 |
<td> |
|
128 |
<input name="l_source" type="checkbox" value="Y" checked> [% 'Source' | $T8 %]
|
|
129 |
</td> |
|
128 | 130 |
</tr> |
129 | 131 |
<tr> |
130 |
<td>
|
|
131 |
<input name="l_description" class="checkbox" type="checkbox" value="Y" checked>
|
|
132 |
[% 'Description' | $T8 %]</td>
|
|
132 |
<td> |
|
133 |
<input name="l_description" type="checkbox" value="Y" checked> [% 'Description' | $T8 %]
|
|
134 |
</td> |
|
133 | 135 |
</tr> |
134 | 136 |
<tr> |
135 |
<td>
|
|
136 |
<input name="l_notes" class="checkbox" type="checkbox" value="Y">
|
|
137 |
[% 'Notes' | $T8 %]</td>
|
|
137 |
<td> |
|
138 |
<input name="l_notes" type="checkbox" value="Y"> [% 'Notes' | $T8 %]
|
|
139 |
</td> |
|
138 | 140 |
</tr> |
139 | 141 |
</tbody> |
140 | 142 |
</table> |
141 | 143 |
|
142 | 144 |
|
143 |
<table class="tbl-plain col"> |
|
145 |
|
|
146 |
|
|
147 |
<table class="tbl-plain"> |
|
144 | 148 |
<caption>[% 'Accounts' | $T8 %] & [% 'Sum' | $T8 %]</caption> |
145 | 149 |
<tbody> |
146 | 150 |
<tr> |
147 | 151 |
<td> |
148 |
<input name="l_debit" class="checkbox" type="checkbox" value="Y" checked> |
|
149 |
[% 'Debit' | $T8 %]</td> |
|
152 |
<input name="l_debit" type="checkbox" value="Y" checked> [% 'Debit' | $T8 %]</td> |
|
150 | 153 |
</tr> |
151 | 154 |
<tr> |
152 | 155 |
<td> |
153 |
<input name="l_credit" class="checkbox" type="checkbox" value="Y" checked> |
|
154 |
[% 'Credit' | $T8 %]</td> |
|
156 |
<input name="l_credit" type="checkbox" value="Y" checked> [% 'Credit' | $T8 %]</td> |
|
155 | 157 |
</tr> |
156 | 158 |
<tr> |
157 | 159 |
<td> |
158 |
<input name="l_accno" class="checkbox" type="checkbox" value="Y" checked> |
|
159 |
[% 'Account' | $T8 %]</td> |
|
160 |
<input name="l_accno" type="checkbox" value="Y" checked> [% 'Account' | $T8 %]</td> |
|
160 | 161 |
</tr> |
161 | 162 |
<tr> |
162 | 163 |
<td> |
163 |
<input name="l_subtotal" class="checkbox" type="checkbox" value="Y"> |
|
164 |
[% 'Subtotal' | $T8 %]</td> |
|
164 |
<input name="l_subtotal" type="checkbox" value="Y"> [% 'Subtotal' | $T8 %]</td> |
|
165 | 165 |
</tr> |
166 | 166 |
</tbody> |
167 | 167 |
</table> |
168 | 168 |
|
169 | 169 |
|
170 |
<table class="tbl-plain col">
|
|
170 |
<table class="tbl-plain"> |
|
171 | 171 |
<caption>[% 'Divers' | $T8 %]</caption> |
172 | 172 |
<tbody> |
173 | 173 |
<tr> |
174 | 174 |
<td> |
175 |
<input name="l_projectnumbers" class="checkbox" type="checkbox" value="Y"> |
|
176 |
[% 'Project Number' | $T8 %]</td> |
|
175 |
<input name="l_projectnumbers" type="checkbox" value="Y"> [% 'Project Number' | $T8 %]</td> |
|
177 | 176 |
</tr> |
178 | 177 |
<tr> |
179 | 178 |
<td> |
180 |
<input name="l_employee" class="checkbox" type="checkbox" value="Y"> |
|
181 |
[% 'Employee' | $T8 %]</td> |
|
179 |
<input name="l_employee" type="checkbox" value="Y"> [% 'Employee' | $T8 %]</td> |
|
182 | 180 |
</tr> |
183 | 181 |
</tbody> |
184 | 182 |
</table> |
Auch abrufbar als: Unified diff
Aenderungen hpschlaepfer