Revision 45b303c7
Von Safwan Shakhy vor mehr als 1 Jahr hinzugefügt
SL/Controller/DeliveryPlan.pm | ||
---|---|---|
sub prepare_report {
|
||
my ($self) = @_;
|
||
|
||
my $vc = $self->vc;
|
||
my $report = SL::ReportGenerator->new(\%::myconfig, $::form);
|
||
my $vc = $self->vc;
|
||
my $report = SL::ReportGenerator->new(\%::myconfig, $::form);
|
||
$report->{title} = t8('Delivery Plan');
|
||
$self->{report} = $report;
|
||
$self->{report} = $report;
|
||
|
||
my @columns = qw(reqdate customer vendor ordnumber partnumber description qty shipped_qty not_shipped_qty);
|
||
|
SL/Controller/DeliveryValueReport.pm | ||
---|---|---|
sub prepare_report {
|
||
my ($self) = @_;
|
||
|
||
my $vc = $self->vc;
|
||
my $report = SL::ReportGenerator->new(\%::myconfig, $::form);
|
||
my $csv_option = $::form->{report_generator_output_format};
|
||
my $vc = $self->vc;
|
||
my $report = SL::ReportGenerator->new(\%::myconfig, $::form);
|
||
my $csv_option = $::form->{report_generator_output_format};
|
||
$report->{title} = t8('Delivery Value Report');
|
||
$self->{report} = $report;
|
||
$self->{report} = $report;
|
||
|
||
my @columns = qw(reqdate customer vendor ordnumber partnumber description unit qty netto_qty
|
||
not_shipped_qty netto_not_shipped_qty shipped_qty netto_shipped_qty delivered_qty
|
SL/Controller/FinancialControllingReport.pm | ||
---|---|---|
sub prepare_report {
|
||
my ($self) = @_;
|
||
|
||
my $report = SL::ReportGenerator->new(\%::myconfig, $::form);
|
||
my $report = SL::ReportGenerator->new(\%::myconfig, $::form);
|
||
$report->{title} = t8('Financial Controlling Report');
|
||
$self->{report} = $report;
|
||
$self->{report} = $report;
|
||
|
||
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
|
||
billable_amount billable_amount_p other_amount);
|
SL/Controller/Inventory.pm | ||
---|---|---|
|
||
my $callback = $self->stocktaking_models->get_callback;
|
||
|
||
my $report = SL::ReportGenerator->new(\%::myconfig, $::form);
|
||
my $report = SL::ReportGenerator->new(\%::myconfig, $::form);
|
||
$report->{title} = t8('Stocktaking Journal');
|
||
$self->{report} = $report;
|
||
$self->{report} = $report;
|
||
|
||
my @columns = qw(itime employee ean partnumber part qty unit bin chargenumber comment cutoff_date);
|
||
my @sortable = qw(itime employee ean partnumber part qty bin chargenumber comment cutoff_date);
|
SL/Controller/Letter.pm | ||
---|---|---|
sub prepare_report {
|
||
my ($self) = @_;
|
||
|
||
my $report = SL::ReportGenerator->new(\%::myconfig, $::form);
|
||
my $report = SL::ReportGenerator->new(\%::myconfig, $::form);
|
||
$report->{title} = t8('Letters');
|
||
$self->{report} = $report;
|
||
$self->{report} = $report;
|
||
|
||
my @columns = qw(date subject letternumber customer_id vendor_id contact date);
|
||
my @sortable = qw(date subject letternumber customer_id vendor_id contact date);
|
SL/Controller/Project.pm | ||
---|---|---|
|
||
my $callback = $self->models->get_callback;
|
||
|
||
my $report = SL::ReportGenerator->new(\%::myconfig, $::form);
|
||
my $report = SL::ReportGenerator->new(\%::myconfig, $::form);
|
||
$report->{title} = t8('Projects');
|
||
$self->{report} = $report;
|
||
$self->{report} = $report;
|
||
|
||
my @columns = qw(project_status customer projectnumber description active valid project_type);
|
||
my @sortable = qw(projectnumber description customer project_type project_status);
|
Auch abrufbar als: Unified diff
Kosmetik