Revision 45b303c7
Von Safwan Shakhy vor etwa 1 Jahr hinzugefügt
SL/Controller/DeliveryPlan.pm | ||
---|---|---|
49 | 49 |
sub prepare_report { |
50 | 50 |
my ($self) = @_; |
51 | 51 |
|
52 |
my $vc = $self->vc; |
|
53 |
my $report = SL::ReportGenerator->new(\%::myconfig, $::form); |
|
52 |
my $vc = $self->vc;
|
|
53 |
my $report = SL::ReportGenerator->new(\%::myconfig, $::form);
|
|
54 | 54 |
$report->{title} = t8('Delivery Plan'); |
55 |
$self->{report} = $report; |
|
55 |
$self->{report} = $report;
|
|
56 | 56 |
|
57 | 57 |
my @columns = qw(reqdate customer vendor ordnumber partnumber description qty shipped_qty not_shipped_qty); |
58 | 58 |
|
SL/Controller/DeliveryValueReport.pm | ||
---|---|---|
63 | 63 |
sub prepare_report { |
64 | 64 |
my ($self) = @_; |
65 | 65 |
|
66 |
my $vc = $self->vc; |
|
67 |
my $report = SL::ReportGenerator->new(\%::myconfig, $::form); |
|
68 |
my $csv_option = $::form->{report_generator_output_format}; |
|
66 |
my $vc = $self->vc;
|
|
67 |
my $report = SL::ReportGenerator->new(\%::myconfig, $::form);
|
|
68 |
my $csv_option = $::form->{report_generator_output_format};
|
|
69 | 69 |
$report->{title} = t8('Delivery Value Report'); |
70 |
$self->{report} = $report; |
|
70 |
$self->{report} = $report;
|
|
71 | 71 |
|
72 | 72 |
my @columns = qw(reqdate customer vendor ordnumber partnumber description unit qty netto_qty |
73 | 73 |
not_shipped_qty netto_not_shipped_qty shipped_qty netto_shipped_qty delivered_qty |
SL/Controller/FinancialControllingReport.pm | ||
---|---|---|
46 | 46 |
sub prepare_report { |
47 | 47 |
my ($self) = @_; |
48 | 48 |
|
49 |
my $report = SL::ReportGenerator->new(\%::myconfig, $::form); |
|
49 |
my $report = SL::ReportGenerator->new(\%::myconfig, $::form);
|
|
50 | 50 |
$report->{title} = t8('Financial Controlling Report'); |
51 |
$self->{report} = $report; |
|
51 |
$self->{report} = $report;
|
|
52 | 52 |
|
53 | 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); |
SL/Controller/Inventory.pm | ||
---|---|---|
867 | 867 |
|
868 | 868 |
my $callback = $self->stocktaking_models->get_callback; |
869 | 869 |
|
870 |
my $report = SL::ReportGenerator->new(\%::myconfig, $::form); |
|
870 |
my $report = SL::ReportGenerator->new(\%::myconfig, $::form);
|
|
871 | 871 |
$report->{title} = t8('Stocktaking Journal'); |
872 |
$self->{report} = $report; |
|
872 |
$self->{report} = $report;
|
|
873 | 873 |
|
874 | 874 |
my @columns = qw(itime employee ean partnumber part qty unit bin chargenumber comment cutoff_date); |
875 | 875 |
my @sortable = qw(itime employee ean partnumber part qty bin chargenumber comment cutoff_date); |
SL/Controller/Letter.pm | ||
---|---|---|
361 | 361 |
sub prepare_report { |
362 | 362 |
my ($self) = @_; |
363 | 363 |
|
364 |
my $report = SL::ReportGenerator->new(\%::myconfig, $::form); |
|
364 |
my $report = SL::ReportGenerator->new(\%::myconfig, $::form);
|
|
365 | 365 |
$report->{title} = t8('Letters'); |
366 |
$self->{report} = $report; |
|
366 |
$self->{report} = $report;
|
|
367 | 367 |
|
368 | 368 |
my @columns = qw(date subject letternumber customer_id vendor_id contact date); |
369 | 369 |
my @sortable = qw(date subject letternumber customer_id vendor_id contact date); |
SL/Controller/Project.pm | ||
---|---|---|
304 | 304 |
|
305 | 305 |
my $callback = $self->models->get_callback; |
306 | 306 |
|
307 |
my $report = SL::ReportGenerator->new(\%::myconfig, $::form); |
|
307 |
my $report = SL::ReportGenerator->new(\%::myconfig, $::form);
|
|
308 | 308 |
$report->{title} = t8('Projects'); |
309 |
$self->{report} = $report; |
|
309 |
$self->{report} = $report;
|
|
310 | 310 |
|
311 | 311 |
my @columns = qw(project_status customer projectnumber description active valid project_type); |
312 | 312 |
my @sortable = qw(projectnumber description customer project_type project_status); |
Auch abrufbar als: Unified diff
Kosmetik