Revision ce213a0a
Von Sven Schöling vor fast 11 Jahren hinzugefügt
SL/Controller/FinancialControllingReport.pm | ||
---|---|---|
15 | 15 |
use SL::Locale::String; |
16 | 16 |
|
17 | 17 |
use Rose::Object::MakeMethods::Generic ( |
18 |
scalar => [ qw(db_args flat_filter) ], |
|
18 |
scalar => [ qw(db_args flat_filter project_types) ],
|
|
19 | 19 |
); |
20 | 20 |
|
21 | 21 |
__PACKAGE__->run_before(sub { $::auth->assert('sales_order_edit'); }); |
... | ... | |
45 | 45 |
sub action_list { |
46 | 46 |
my ($self) = @_; |
47 | 47 |
|
48 |
$self->project_types(SL::DB::Manager::ProjectType->get_all_sorted); |
|
49 |
|
|
48 | 50 |
$self->db_args($self->setup_db_args_for_list(filter => $::form->{filter})); |
49 | 51 |
$self->flat_filter({ map { $_->{key} => $_->{value} } $::form->flatten_variables('filter') }); |
50 | 52 |
$self->make_filter_summary; |
Auch abrufbar als: Unified diff
Finanzcontrollingbericht: Filtern nach Projekttyp