Revision fee5532a
Von Moritz Bunkus vor fast 10 Jahren hinzugefügt
SL/Controller/FinancialControllingReport.pm | ||
---|---|---|
50 | 50 |
my $report = SL::ReportGenerator->new(\%::myconfig, $::form); |
51 | 51 |
$self->{report} = $report; |
52 | 52 |
|
53 |
my @columns = qw(customer globalprojectnumber globalproject_type ordnumber net_amount delivered_amount delivered_amount_p billed_amount billed_amount_p paid_amount paid_amount_p |
|
53 |
my @columns = qw(customer globalprojectnumber globalproject_type transaction_description ordnumber net_amount delivered_amount delivered_amount_p billed_amount billed_amount_p paid_amount paid_amount_p
|
|
54 | 54 |
billable_amount billable_amount_p other_amount); |
55 |
my @sortable = qw(ordnumber transdate customer globalprojectnumber globalproject_type); |
|
55 |
my @sortable = qw(ordnumber transdate customer globalprojectnumber globalproject_type transaction_description );
|
|
56 | 56 |
$self->{number_columns} = [ qw(net_amount billed_amount billed_amount_p delivered_amount delivered_amount_p paid_amount paid_amount_p other_amount billable_amount billable_amount_p) ]; |
57 | 57 |
|
58 | 58 |
my %column_defs = ( |
... | ... | |
66 | 66 |
billable_amount => { text => $::locale->text('Billable amount') }, |
67 | 67 |
billable_amount_p => { text => $::locale->text('%') }, |
68 | 68 |
other_amount => { text => $::locale->text('Billed extra expenses') }, |
69 |
transaction_description => { text => $::locale->text('Transaction description') }, |
|
69 | 70 |
ordnumber => { obj_link => sub { $self->link_to($_[0]) } }, |
70 | 71 |
customer => { sub => sub { $_[0]->customer->name }, |
71 | 72 |
obj_link => sub { $self->link_to($_[0]->customer) } }, |
Auch abrufbar als: Unified diff
Finanzcontrollingbericht: Spalte »Vorgangsbezeichnung« anzeigen