Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 495888c2

Von Safwan Shakhy vor mehr als 1 Jahr hinzugefügt

  • ID 495888c2356a97d1803a3d0df4931fd9bb42bd5c
  • Vorgänger 7d6502d6
  • Nachfolger 45b303c7

Tab Titel bei fehlenden gesetzt

Unterschiede anzeigen:

SL/Controller/BankTransaction.pm
$self->setup_search_action_bar;
$self->render('bank_transactions/search',
BANK_ACCOUNTS => $bank_accounts);
BANK_ACCOUNTS => $bank_accounts,
title => t8('Search bank transactions'),
);
}
sub action_list_all {
......
}
sub prepare_report {
my ($self) = @_;
my ($self) = @_;
my $callback = $self->models->get_callback;
my $callback = $self->models->get_callback;
my $report = SL::ReportGenerator->new(\%::myconfig, $::form);
$self->{report} = $report;
my $report = SL::ReportGenerator->new(\%::myconfig, $::form);
$report->{title} = t8('Bank transactions');
$self->{report} = $report;
my @columns = qw(ids local_bank_name transdate valudate remote_name remote_account_number remote_bank_code amount invoice_amount invoices currency purpose local_account_number local_bank_code id);
my @sortable = qw(local_bank_name transdate valudate remote_name remote_account_number remote_bank_code amount purpose local_account_number local_bank_code);
my @columns = qw(ids local_bank_name transdate valudate remote_name remote_account_number remote_bank_code amount invoice_amount invoices currency purpose local_account_number local_bank_code id);
my @sortable = qw(local_bank_name transdate valudate remote_name remote_account_number remote_bank_code amount purpose local_account_number local_bank_code);
my %column_defs = (
my %column_defs = (
ids => { raw_header_data => checkbox_tag("", id => "check_all", checkall => "[data-checkall=1]"),
'align' => 'center',
raw_data => sub { if (@{ $_[0]->linked_invoices }) {
SL/Controller/Buchungsgruppen.pm
}
$self->setup_list_action_bar;
$::form->{title} = t8('Booking groups');
$::form->header;
$self->render('buchungsgruppen/list',
title => t8('Booking groups'),
......
$self->setup_show_form_action_bar;
$self->render('buchungsgruppen/form', %params,
title => t8('Booking groups'),
TAXZONES => SL::DB::Manager::TaxZone->get_all_sorted());
}
SL/Controller/Chart.pm
sub action_show_report_configuration_overview {
my ($self) = @_;
my @all_charts = sort { $a->accno cmp $b->accno } @{ SL::DB::Manager::Chart->get_all(inject_results => 1) };
my @types = qw(bilanz bwa er eur);
my %headings = (
......
};
}
$self->render('chart/report_configuration_overview', DATA => \@data);
$self->render('chart/report_configuration_overview', DATA => \@data, title => t8('Chart configuration overview regarding reports'));
}
sub init_charts {
SL/Controller/ChartOfAccounts.pm
$self->report(SL::ReportGenerator->new(\%::myconfig, $::form));
$self->report->{title} = t8 ('Chart of Accounts');
my @columns = qw(accno description debit credit);
my %column_defs = (
accno => { text => t8('Account') },
SL/Controller/CustomVariableConfig.pm
my $configs = SL::DB::Manager::CustomVariableConfig->get_all_sorted(where => [ module => $self->module ]);
$self->setup_list_action_bar;
$::form->{title} = t8('List of custom variables');
$::form->header;
$self->render('custom_variable_config/list',
title => t8('List of custom variables'),
SL/Controller/DeliveryPlan.pm
my $vc = $self->vc;
my $report = SL::ReportGenerator->new(\%::myconfig, $::form);
$report->{title} = t8('Delivery Plan');
$self->{report} = $report;
my @columns = qw(reqdate customer vendor ordnumber partnumber description qty shipped_qty not_shipped_qty);
SL/Controller/DeliveryValueReport.pm
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;
my @columns = qw(reqdate customer vendor ordnumber partnumber description unit qty netto_qty
SL/Controller/FinancialControllingReport.pm
my ($self) = @_;
my $report = SL::ReportGenerator->new(\%::myconfig, $::form);
$report->{title} = t8('Financial Controlling 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
SL/Controller/FinancialOverview.pm
my ($self) = @_;
$self->report(SL::ReportGenerator->new(\%::myconfig, $::form));
$self->report->{title} =t8('Financial Overview');
my @columns = (qw(year quarter month), @{ $self->types });
$self->number_columns([ grep { !m/^(?:month|year|quarter)$/ } @columns ]);
SL/Controller/Inventory.pm
my $callback = $self->stocktaking_models->get_callback;
my $report = SL::ReportGenerator->new(\%::myconfig, $::form);
$report->{title} = t8('Stocktaking Journal');
$self->{report} = $report;
my @columns = qw(itime employee ean partnumber part qty unit bin chargenumber comment cutoff_date);
SL/Controller/Letter.pm
my ($self) = @_;
my $report = SL::ReportGenerator->new(\%::myconfig, $::form);
$report->{title} = t8('Letters');
$self->{report} = $report;
my @columns = qw(date subject letternumber customer_id vendor_id contact date);
SL/Controller/PriceRule.pm
if ( $report->{options}{output_format} =~ /^(pdf|csv)$/i ) {
$self->models->disable_plugin('paginated');
}
my $title = t8('Price Rules');
$report->{title} = $title; #for browser titlebar (title-tag)
$report->set_options(
std_column_visibility => 1,
controller_class => 'PriceRule',
SL/Controller/Project.pm
my $callback = $self->models->get_callback;
my $report = SL::ReportGenerator->new(\%::myconfig, $::form);
$report->{title} = t8('Projects');
$self->{report} = $report;
my @columns = qw(project_status customer projectnumber description active valid project_type);
SL/Controller/Reclamation.pm
}
sub prepare_report {
my ($self) = @_;
my ($self) = @_;
my $report = SL::ReportGenerator->new(\%::myconfig, $::form);
my $report = SL::ReportGenerator->new(\%::myconfig, $::form);
$report->{title} = t8('Sales Reclamations');
if ($self->type eq purchase_reclamation_type()){
$report->{title} = t8('Purchase Reclamations');
}
$self->models->disable_plugin('paginated') if $report->{options}{output_format} =~ /^(pdf|csv)$/i;
$self->models->add_additional_url_params(type => $self->type);
SL/Controller/Reconciliation.pm
my ($self) = @_;
$self->setup_search_action_bar;
$self->render('reconciliation/search');
$self->render('reconciliation/search',
title => t8('Reconciliation with bank'),
);
}
sub action_reconciliation {
......
$self->setup_reconciliation_action_bar;
$self->render('reconciliation/form',
ui_tab => scalar(@{$self->{PROPOSALS}}) > 0?1:0,
title => t8('Reconciliation'));
title => t8('Reconciliation'),
);
}
sub action_load_overview {
SL/Controller/RequirementSpec.pm
}
sub prepare_report {
my ($self) = @_;
my $is_template = $::form->{is_template};
my $report = SL::ReportGenerator->new(\%::myconfig, $::form);
my ($self) = @_;
my $is_template = $::form->{is_template};
my $report = SL::ReportGenerator->new(\%::myconfig, $::form);
$report->{title} = t8('Requirement Spec Templates');
$self->models->disable_plugin('paginated') if $report->{options}{output_format} =~ /^(pdf|csv)$/i;
$self->models->finalize; # for filter laundering
bin/mozilla/cp.pl
setup_cp_form_action_bar(can_post => !!$form->{rowcount});
$::form->{title} = t8('Receipt');
$form->header;
$arap = lc $form->{ARAP};
bin/mozilla/datev.pl
my $stamm = SL::DATEV->new->get_datev_stamm;
setup_datev_export_action_bar();
$::form->{title} = t8('DATEV - Export Assistent');
$::form->header;
print $::form->parse_html_template('datev/export', $stamm);
bin/mozilla/gl.pl
setup_gl_search_action_bar();
$::form->{title} = t8('Journal');
$::form->header;
print $::form->parse_html_template('gl/search', {
employee_label => sub { "$_[0]{id}--$_[0]{name}" },
bin/mozilla/rc.pl
setup_rc_reconciliation_action_bar();
$::form->{title} = t8('Reconciliation');
$::form->header;
print $::form->parse_html_template('rc/step1', {
selection_sub => sub { ("$_[0]{accno}--$_[0]{description}")x2 },

Auch abrufbar als: Unified diff