Revision 3fc38171
Von Andreas Rudin vor etwa 6 Jahren hinzugefügt
templates/webpages/ap/search.html | ||
---|---|---|
8 | 8 |
|
9 | 9 |
<div class="wrapper"> |
10 | 10 |
|
11 |
<table class="tbl-horizontal">
|
|
12 |
<caption>[% 'Vendor & Order' | $T8 %]</caption>
|
|
13 |
<colgroup> <col class="wi-small"><col class="wi-wide"> </colgroup>
|
|
14 |
<tbody>
|
|
15 |
<tr>
|
|
16 |
<th>[% 'Vendor' | $T8 %]</th>
|
|
17 |
<td>[% L.input_tag("vendor", vendor, style=style, class="initial_focus wi-normal") %]</td>
|
|
18 |
</tr>
|
|
19 |
<tr>
|
|
20 |
<th>[% 'Contact Person' | $T8 %]</th>
|
|
21 |
<td>[% L.input_tag("cp_name", '', class="wi-normal") %]</td>
|
|
22 |
</tr>
|
|
23 |
<tr>
|
|
24 |
<th>[% 'Department' | $T8 %]</th>
|
|
25 |
<td>[% L.select_tag('department_id', ALL_DEPARTMENTS, title_key = 'description', with_empty = 1, class="wi-normal") %]</td>
|
|
26 |
</tr>
|
|
27 |
<tr>
|
|
28 |
<th>[% 'Part Description' | $T8 %]</th>
|
|
29 |
<td>[% L.input_tag("parts_description", "", class="wi-normal") %]</td>
|
|
30 |
</tr>
|
|
31 |
<tr>
|
|
32 |
<th>[% 'Notes' | $T8 %]</th>
|
|
33 |
<td>[% L.input_tag("notes", "", class="wi-normal") %]</td>
|
|
34 |
</tr>
|
|
35 |
</tbody>
|
|
36 |
</table>
|
|
37 |
|
|
38 |
<table class="tbl-horizontal">
|
|
39 |
<caption>[% 'Dates & Numbers' | $T8 %]</caption>
|
|
40 |
<colgroup> <col class="wi-small"><col class="wi-wide"> </colgroup>
|
|
41 |
<tbody>
|
|
42 |
<tr>
|
|
43 |
<th>[% 'Invoice Date' | $T8 %]</th>
|
|
44 |
<td><span class="wi-date">[% L.date_tag('transdatefrom') %] [% 'Bis' | $T8 %] [% L.date_tag('transdateto') %] </span></td>
|
|
45 |
</tr>
|
|
46 |
<tr>
|
|
47 |
<th>[% 'Invoice Number' | $T8 %]</th>
|
|
48 |
<td>[% L.input_tag("invnumber", "", class="wi-small") %]</td>
|
|
49 |
</tr>
|
|
50 |
<tr>
|
|
51 |
<th>[% 'Order Number' | $T8 %]</th>
|
|
52 |
<td>[% L.input_tag("ordnumber", "", class="wi-small") %]</td>
|
|
53 |
</tr>
|
|
54 |
<tr>
|
|
55 |
<th>[% 'Part Number' | $T8 %]</th>
|
|
56 |
<td>[% L.input_tag("parts_partnumber", "", class="wi-small") %]</td>
|
|
57 |
</tr>
|
|
58 |
<tr>
|
|
59 |
<th>[% 'Project Number' | $T8 %]</th>
|
|
60 |
<td>[% P.project.picker("project_id", project_id, class="wi-small") %]</td>
|
|
61 |
</tr>
|
|
62 |
</tbody>
|
|
63 |
</table>
|
|
64 |
|
|
65 |
<input type="hidden" name="sort" value="transdate">
|
|
11 |
<table class="tbl-horizontal"> |
|
12 |
<caption>[% 'Vendor & Order' | $T8 %]</caption> |
|
13 |
<colgroup> <col class="wi-small"><col class="wi-wide"> </colgroup>
|
|
14 |
<tbody> |
|
15 |
<tr> |
|
16 |
<th>[% 'Vendor' | $T8 %]</th> |
|
17 |
<td>[% L.input_tag("vendor", vendor, style=style, class="initial_focus wi-normal") %]</td> |
|
18 |
</tr> |
|
19 |
<tr> |
|
20 |
<th>[% 'Contact Person' | $T8 %]</th> |
|
21 |
<td>[% L.input_tag("cp_name", '', class="wi-normal") %]</td> |
|
22 |
</tr> |
|
23 |
<tr> |
|
24 |
<th>[% 'Department' | $T8 %]</th> |
|
25 |
<td>[% L.select_tag('department_id', ALL_DEPARTMENTS, title_key = 'description', with_empty = 1, class="wi-normal") %]</td> |
|
26 |
</tr> |
|
27 |
<tr> |
|
28 |
<th>[% 'Part Description' | $T8 %]</th> |
|
29 |
<td>[% L.input_tag("parts_description", "", class="wi-normal") %]</td> |
|
30 |
</tr> |
|
31 |
<tr> |
|
32 |
<th>[% 'Notes' | $T8 %]</th> |
|
33 |
<td>[% L.input_tag("notes", "", class="wi-normal") %]</td> |
|
34 |
</tr> |
|
35 |
</tbody> |
|
36 |
</table> |
|
37 |
|
|
38 |
<table class="tbl-horizontal"> |
|
39 |
<caption>[% 'Dates & Numbers' | $T8 %]</caption> |
|
40 |
<colgroup> <col class="wi-small"><col class="wi-wide"> </colgroup>
|
|
41 |
<tbody> |
|
42 |
<tr> |
|
43 |
<th>[% 'Invoice Date' | $T8 %]</th> |
|
44 |
<td><span class="wi-date">[% L.date_tag('transdatefrom') %] [% 'Bis' | $T8 %] [% L.date_tag('transdateto') %] </span></td> |
|
45 |
</tr> |
|
46 |
<tr> |
|
47 |
<th>[% 'Invoice Number' | $T8 %]</th> |
|
48 |
<td>[% L.input_tag("invnumber", "", class="wi-small") %]</td> |
|
49 |
</tr> |
|
50 |
<tr> |
|
51 |
<th>[% 'Order Number' | $T8 %]</th> |
|
52 |
<td>[% L.input_tag("ordnumber", "", class="wi-small") %]</td> |
|
53 |
</tr> |
|
54 |
<tr> |
|
55 |
<th>[% 'Part Number' | $T8 %]</th> |
|
56 |
<td>[% L.input_tag("parts_partnumber", "", class="wi-small") %]</td> |
|
57 |
</tr> |
|
58 |
<tr> |
|
59 |
<th>[% 'Project Number' | $T8 %]</th> |
|
60 |
<td>[% P.project.picker("project_id", project_id, class="wi-small") %]</td> |
|
61 |
</tr> |
|
62 |
</tbody> |
|
63 |
</table> |
|
64 |
|
|
65 |
<input type="hidden" name="sort" value="transdate"> |
|
66 | 66 |
|
67 | 67 |
</div><!-- /.wrapper --> |
68 |
<div class="wrapper form-addition">
|
|
68 |
<div class="form-addition control-panel">
|
|
69 | 69 |
|
70 | 70 |
<h3>[% 'Include in Report' | $T8 %]</h3> |
71 | 71 |
|
72 | 72 |
<div class="list col"> |
73 | 73 |
<h4>[% 'Status' | $T8 %]</h4> |
74 | 74 |
<div> |
75 |
<input name="open" type="checkbox" value="Y" checked> |
|
76 |
[% 'Open' | $T8 %]
|
|
75 |
<input name="open" id="open" type="checkbox" value="Y" checked>
|
|
76 |
<label for="open">[% 'Open' | $T8 %]</label>
|
|
77 | 77 |
</div> |
78 | 78 |
<div> |
79 |
<input name="closed" type="checkbox" value="Y"> |
|
80 |
[% 'Closed' | $T8 %] |
|
79 |
<input name="closed" id="closed" type="checkbox" value="Y"><label for="closed">[% 'Closed' | $T8 %]</label> |
|
81 | 80 |
</div> |
82 | 81 |
<div> |
83 |
<input name="l_paid" type="checkbox" value="Y" checked> |
|
84 |
[% 'Paid' | $T8 %] |
|
82 |
<input name="l_paid" id="l_paid" type="checkbox" value="Y" checked><label for="l_paid">[% 'Paid' | $T8 %]</label> |
|
85 | 83 |
</div> |
86 | 84 |
<div> |
87 |
<input name="l_due" type="checkbox" value="Y"> |
|
88 |
[% 'Amount Due' | $T8 %] |
|
89 |
</div> |
|
85 |
<input name="l_due" id="l_due" type="checkbox" value="Y"><label for="l_due">[% 'Amount Due' | $T8 %]</label> |
|
86 |
</div> |
|
90 | 87 |
</div> |
91 | 88 |
|
92 | 89 |
<div class="list col"> |
93 | 90 |
<h4>[% 'Dates' | $T8 %]</h4> |
94 | 91 |
<div> |
95 |
<input name="l_transdate" type="checkbox" value="Y" checked> |
|
96 |
[% 'Invoice Date' | $T8 %] |
|
92 |
<input name="l_transdate" id="l_transdate" type="checkbox" value="Y" checked><label for="l_transdate">[% 'Invoice Date' | $T8 %]</label> |
|
97 | 93 |
</div> |
98 | 94 |
<div> |
99 |
<input name="l_datepaid" type="checkbox" value="Y"> |
|
100 |
[% 'Date Paid' | $T8 %] |
|
95 |
<input name="l_datepaid" id="l_datepaid" type="checkbox" value="Y"><label for="l_datepaid">[% 'Date Paid' | $T8 %]</label> |
|
101 | 96 |
</div> |
102 | 97 |
<div> |
103 |
<input name="l_duedate" type="checkbox" value="Y"> |
|
104 |
[% 'Due Date' | $T8 %] |
|
98 |
<input name="l_duedate" id="l_duedate" type="checkbox" value="Y"><label for="l_duedate">[% 'Due Date' | $T8 %]</label> |
|
105 | 99 |
</div> |
106 | 100 |
</div> |
107 | 101 |
|
108 | 102 |
<div class="list col"> |
109 | 103 |
<h4>[% 'ID\'s & Numbers' | $T8 %]</h4> |
110 | 104 |
<div> |
111 |
<input name="l_id" type="checkbox" value="Y"> |
|
112 |
[% 'ID' | $T8 %] |
|
105 |
<input name="l_id" id="l_id" type="checkbox" value="Y"><label for="l_id">[% 'ID' | $T8 %]</label> |
|
113 | 106 |
</div> |
114 | 107 |
<div> |
115 |
<input name="l_invnumber" type="checkbox" value="Y" checked> |
|
116 |
[% 'Invoice Number' | $T8 %] |
|
108 |
<input name="l_invnumber" id="l_invnumber" type="checkbox" value="Y" checked><label for="l_invnumber">[% 'Invoice Number' | $T8 %]</label> |
|
117 | 109 |
</div> |
118 | 110 |
<div> |
119 |
<input name="l_ordnumber" type="checkbox" value="Y"> |
|
120 |
[% 'Order Number' | $T8 %] |
|
111 |
<input name="l_ordnumber" id="l_ordnumber" type="checkbox" value="Y"><label for="l_ordnumber">[% 'Order Number' | $T8 %]</label> |
|
121 | 112 |
</div> |
122 | 113 |
<div> |
123 |
<input name="l_vendornumber" type="checkbox" value="Y"> |
|
124 |
[% 'Vendor Number' | $T8 %] |
|
114 |
<input name="l_vendornumber" id="l_vendornumber" type="checkbox" value="Y"><label for="l_vendornumber">[% 'Vendor Number' | $T8 %]</label> |
|
125 | 115 |
</div> |
126 | 116 |
<div> |
127 |
<input name="l_globalprojectnumber" type="checkbox" value="Y"> |
|
128 |
[% 'Document Project Number' | $T8 %] |
|
129 |
</div> |
|
117 |
<input name="l_globalprojectnumber" id="l_globalprojectnumber" type="checkbox" value="Y"><label for="l_globalprojectnumber">[% 'Document Project Number' | $T8 %]</label> |
|
118 |
</div> |
|
130 | 119 |
</div> |
131 |
|
|
120 |
|
|
132 | 121 |
<div class="list col"> |
133 | 122 |
<h4>[% 'Amounts' | $T8 %]</h4> |
134 | 123 |
<div> |
135 |
<input name="l_netamount" type="checkbox" value="Y"> |
|
136 |
[% 'Amount' | $T8 %] |
|
124 |
<input name="l_netamount" id="l_netamount" type="checkbox" value="Y"><label for="l_netamount">[% 'Amount' | $T8 %]</label> |
|
137 | 125 |
</div> |
138 | 126 |
<div> |
139 |
<input name="l_tax" type="checkbox" value="Y"> |
|
140 |
[% 'Tax' | $T8 %] |
|
127 |
<input name="l_tax" id="l_tax" type="checkbox" value="Y"><label for="l_tax">[% 'Tax' | $T8 %]</label> |
|
141 | 128 |
</div> |
142 | 129 |
<div> |
143 |
<input name="l_amount" type="checkbox" value="Y" checked> |
|
144 |
[% 'Total' | $T8 %] |
|
130 |
<input name="l_amount" id="l_amount" type="checkbox" value="Y" checked><label for="l_amount">[% 'Total' | $T8 %]</label> |
|
145 | 131 |
</div> |
146 | 132 |
<div> |
147 |
<input name="l_subtotal" type="checkbox" value="Y"> |
|
148 |
[% 'Subtotal' | $T8 %] |
|
133 |
<input name="l_subtotal" id="l_subtotal" type="checkbox" value="Y"><label for="l_subtotal">[% 'Subtotal' | $T8 %]</label> |
|
149 | 134 |
</div> |
150 |
</div>
|
|
151 |
|
|
135 |
</div> |
|
136 |
|
|
152 | 137 |
<div class="list col"> |
153 | 138 |
<h4>[% 'Handling' | $T8 %]</h4> |
154 | 139 |
<div> |
155 |
<input name="l_employee" type="checkbox" value="Y"> |
|
156 |
[% 'Employee' | $T8 %] |
|
140 |
<input name="l_employee" id="l_employee" type="checkbox" value="Y"><label for="l_employee">[% 'Employee' | $T8 %]</label> |
|
157 | 141 |
</div> |
158 | 142 |
<div> |
159 |
<input name="l_charts" type="checkbox" value="Y"> |
|
160 |
[% 'Chart' | $T8 %] |
|
143 |
<input name="l_charts" id="l_charts" type="checkbox" value="Y"><label for="l_charts">[% 'Chart' | $T8 %]</label> |
|
161 | 144 |
</div> |
162 | 145 |
</div> |
163 |
|
|
146 |
|
|
164 | 147 |
<div class="list col"> |
165 | 148 |
<h4>[% 'Order' | $T8 %]</h4> |
166 | 149 |
<div> |
167 |
<input name="l_notes" type="checkbox" value="Y"> |
|
168 |
[% 'Notes' | $T8 %] |
|
150 |
<input name="l_notes" id="l_notes" type="checkbox" value="Y"><label for="l_notes">[% 'Notes' | $T8 %]</label> |
|
169 | 151 |
</div> |
170 | 152 |
<div> |
171 |
<input name="l_taxzone" type="checkbox" value="Y"> |
|
172 |
[% 'Steuersatz' | $T8 %] |
|
153 |
<input name="l_taxzone" id="l_taxzone" type="checkbox" value="Y"><label for="l_taxzone">[% 'Steuersatz' | $T8 %]</label> |
|
173 | 154 |
</div> |
174 | 155 |
<div> |
175 |
<input name="l_payment_terms" type="checkbox" value="Y"> |
|
176 |
[% 'Payment Terms' | $T8 %] |
|
156 |
<input name="l_payment_terms" id="l_payment_terms" type="checkbox" value="Y"><label for="l_payment_terms">[% 'Payment Terms' | $T8 %]</label> |
|
177 | 157 |
</div> |
178 | 158 |
<div> |
179 |
<input name="l_direct_debit" id="l_direct_debit" type="checkbox" value="Y"> |
|
180 |
[% 'direct debit' | $T8 %] |
|
159 |
<input name="l_direct_debit" id="l_direct_debit" id="l_direct_debit" type="checkbox" value="Y"><label for="l_direct_debit">[% 'direct debit' | $T8 %]</label> |
|
181 | 160 |
</div> |
182 | 161 |
</div> |
183 |
|
|
162 |
|
|
184 | 163 |
<div class="list col"> |
185 | 164 |
<h4>[% 'Vendor' | $T8 %]</h4> |
186 |
<div> |
|
187 |
<input name="l_name" type="checkbox" value="Y" checked> |
|
188 |
[% 'Vendor' | $T8 %] |
|
189 |
</div> |
|
190 |
<div> |
|
191 |
<input name="l_country" type="checkbox" value="Y"> |
|
192 |
[% 'Country' | $T8 %] |
|
193 |
</div> |
|
194 |
<div> |
|
195 |
<input name="l_ustid" type="checkbox" value="Y"> |
|
196 |
[% 'USt-IdNr.' | $T8 %] |
|
197 |
</div> |
|
165 |
<div> |
|
166 |
<input name="l_name" id="l_name" type="checkbox" value="Y" checked><label for="l_name">[% 'Vendor' | $T8 %]</label> |
|
167 |
</div> |
|
168 |
<div> |
|
169 |
<input name="l_country" id="l_country" type="checkbox" value="Y"><label for="l_country">[% 'Country' | $T8 %]</label> |
|
170 |
</div> |
|
171 |
<div> |
|
172 |
<input name="l_ustid" id="l_ustid" type="checkbox" value="Y"><label for="l_ustid">[% 'USt-IdNr.' | $T8 %]</label> |
|
173 |
</div> |
|
198 | 174 |
</div> |
199 | 175 |
|
200 | 176 |
</div><!-- /.form-addition --> |
Auch abrufbar als: Unified diff
HP Aenderungen bis Oktober 2018