Revision 9c0ec262
Von Bernd Bleßmann vor mehr als 11 Jahren hinzugefügt
SL/AR.pm | ||
---|---|---|
516 | 516 |
|
517 | 517 |
my $where = "1 = 1"; |
518 | 518 |
|
519 |
unless ( $::auth->assert('show_ar_transactions', 1) ) {
|
|
519 |
unless ( $::auth->assert('show_ar_transactions', 1) ) { |
|
520 | 520 |
$where .= " AND NOT invoice = 'f' "; # remove ar transactions from Sales -> Reports -> Invoices |
521 | 521 |
}; |
522 | 522 |
|
templates/webpages/dbupgrade/cp_greeting_update_form.html | ||
---|---|---|
30 | 30 |
<br> |
31 | 31 |
[% title_table %] |
32 | 32 |
|
33 |
<input type=hidden name="do_migrate" value="1">
|
|
33 |
<input type=hidden name="do_migrate" value="1"> |
|
34 | 34 |
<input type=submit VALUE="submit"> |
35 | 35 |
|
36 | 36 |
</form> |
templates/webpages/dbupgrade/tax_constraints.html | ||
---|---|---|
16 | 16 |
<th class="listheading">[% 'tax_taxdescription' | $T8 %]</th> |
17 | 17 |
<th class="listheading">[% 'tax_rate' | $T8 %]</th> |
18 | 18 |
</tr> |
19 |
|
|
19 |
|
|
20 | 20 |
[% SET row_odd = '1' %][% FOREACH row = TAX %] |
21 | 21 |
<tr class="listrow[% IF row_odd %]1[% SET row_odd = '0' %][% ELSE %]0[% SET row_odd = '1' %][% END %]"> |
22 | 22 |
<td align="right">[% HTML.escape(row.taxkey) %]</td> |
... | ... | |
25 | 25 |
</tr> |
26 | 26 |
[% END %] |
27 | 27 |
</table> |
28 |
|
|
28 |
|
|
29 | 29 |
[% END %] |
30 |
|
|
30 |
|
|
31 | 31 |
[% IF taxkey_is_null %] |
32 | 32 |
<p>[% 'There are entries in tax where taxkey is NULL.' | $T8 %]</p> |
33 | 33 |
<p>[% 'Please define a taxkey for the following taxes and run the update again:' | $T8 %]</p> |
... | ... | |
38 | 38 |
<th class="listheading">[% 'taxnumber' | $T8 %]</th> |
39 | 39 |
<th class="listheading">[% 'account_description' | $T8 %]</th> |
40 | 40 |
</tr> |
41 |
|
|
41 |
|
|
42 | 42 |
[% SET row_odd = '1' %][% FOREACH row = TAX %] |
43 | 43 |
<tr class="listrow[% IF row_odd %]1[% SET row_odd = '0' %][% ELSE %]0[% SET row_odd = '1' %][% END %]"> |
44 | 44 |
<td align="left"> [% HTML.escape(row.taxdescription) %]</a></td> |
... | ... | |
48 | 48 |
</tr> |
49 | 49 |
[% END %] |
50 | 50 |
</table> |
51 |
|
|
51 |
|
|
52 | 52 |
[% END %] |
53 | 53 |
</form> |
templates/webpages/generic/error.html | ||
---|---|---|
4 | 4 |
<div class="message_error">[% IF title_error %][% title_error %][% ELSE %][% 'Error!' | $T8 %][% END %] |
5 | 5 |
<p class="message_error_label">[% label_error %]</p> |
6 | 6 |
</div> |
7 |
|
|
7 |
|
|
8 | 8 |
<p style="text-align: left;"><input type="button" class="submit" onclick="history.back()" value="[% 'Back' | $T8 %]"></p> |
9 |
|
|
9 |
|
|
10 | 10 |
[%- IF SHOW_BACK_BUTTON %] |
11 | 11 |
<form> |
12 | 12 |
<p> |
templates/webpages/ic/choice.html | ||
---|---|---|
5 | 5 |
<form method="post" action="ic.pl"> |
6 | 6 |
|
7 | 7 |
[%- FOREACH row = HIDDENS %] |
8 |
<input type="hidden" name="[% HTML.escape(row.name) %]" value="[% HTML.escape(row.value) %]" >
|
|
8 |
<input type="hidden" name="[% HTML.escape(row.name) %]" value="[% HTML.escape(row.value) %]" > |
|
9 | 9 |
[%- END %] |
10 | 10 |
|
11 | 11 |
<p> |
Auch abrufbar als: Unified diff
Kosmetik: Leerzeichen am Zeilenende entfernt.