Revision 606e7e25
Von Moritz Bunkus vor mehr als 13 Jahren hinzugefügt
bin/mozilla/am.pl | ||
---|---|---|
1111 | 1111 |
$form->{title} = $locale->text('Type of Business'); |
1112 | 1112 |
|
1113 | 1113 |
my @column_index = qw(description discount customernumberinit); |
1114 |
push @column_index, 'salesman' if $::lx_office_conf{system}->{vertreter};
|
|
1114 |
push @column_index, 'salesman' if $::lx_office_conf{features}->{vertreter};
|
|
1115 | 1115 |
my %column_header; |
1116 | 1116 |
$column_header{description} = |
1117 | 1117 |
qq|<th class=listheading width=60%>| |
... | ... | |
1224 | 1224 |
$form->format_amount(\%myconfig, $form->{discount} * 100); |
1225 | 1225 |
|
1226 | 1226 |
my $salesman_code; |
1227 |
if ($::lx_office_conf{system}->{vertreter}) {
|
|
1227 |
if ($::lx_office_conf{features}->{vertreter}) {
|
|
1228 | 1228 |
$salesman_code = qq| |
1229 | 1229 |
<tr> |
1230 | 1230 |
<th align="right">| . $locale->text('Representative') . qq|</th> |
Auch abrufbar als: Unified diff
Konfigurationsort für viele Flags ist Abschnitt 'features', nicht 'system'
Hoffentlich Fix für Bug 1624.