From: Philip Reetz Date: Thu, 7 May 2009 14:32:31 +0000 (+0000) Subject: In den Berichten SuSa und Kontenblatt Standardmaessig das Erstelldatum und die Firma... X-Git-Tag: release-2.6.0beta2~4 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=46a67f95406aea6838636e7aa90d0f8833a96132;p=kivitendo-erp.git In den Berichten SuSa und Kontenblatt Standardmaessig das Erstelldatum und die Firma mit in die Ausgabe aufgenommen --- diff --git a/bin/mozilla/ca.pl b/bin/mozilla/ca.pl index c6070fbd1..eae613179 100644 --- a/bin/mozilla/ca.pl +++ b/bin/mozilla/ca.pl @@ -526,6 +526,12 @@ sub list_transactions { push @options, $period; + $form->{print_date} = $locale->text('Create Date') . " " . $locale->date(\%myconfig, $form->current_date(\%myconfig), 0); + push (@options, $form->{print_date}); + + $form->{company} = $locale->text('Company') . " " . $myconfig{company}; + push (@options, $form->{company}); + my @columns = qw(transdate reference description gegenkonto debit credit ustkonto ustrate balance); my %column_defs = ( 'transdate' => { 'text' => $locale->text('Date'), }, diff --git a/bin/mozilla/rp.pl b/bin/mozilla/rp.pl index f6abae908..21991ea35 100644 --- a/bin/mozilla/rp.pl +++ b/bin/mozilla/rp.pl @@ -1308,9 +1308,18 @@ sub generate_trial_balance { $form->{template_fromto} = $locale->date(\%myconfig, $form->{fromdate}, 0) . "  -  " . $locale->date(\%myconfig, $form->{todate}, 0); + + $form->{print_date} = $locale->text('Create Date') . " " . $locale->date(\%myconfig, $form->current_date(\%myconfig), 0); + push (@options, $form->{print_date}); + + $form->{company} = $locale->text('Company') . " " . $myconfig{company}; + push (@options, $form->{company}); + + $form->{template_to} = $locale->date(\%myconfig, $form->{todate}, 0); $report->set_options('output_format' => 'HTML', + 'top_info_text' => join("\n", @options), 'title' => $form->{title}, 'attachment_basename' => $attachment_basename . strftime('_%Y%m%d', localtime time), 'html_template' => 'rp/html_report_susa', diff --git a/locale/de/all b/locale/de/all index 66f4cd3d5..fc24ccf36 100644 --- a/locale/de/all +++ b/locale/de/all @@ -374,6 +374,7 @@ $self->{texts} = { 'Create Buchungsgruppen' => 'Buchungsgruppe erfassen', 'Create Chart of Accounts' => 'Kontenplan anlegen', 'Create Dataset' => 'Datenbank anlegen', + 'Create Date' => 'Erstelldatum', 'Create a standard group' => 'Eine Standard-Benutzergruppe anlegen', 'Create and edit RFQs' => 'Lieferantenanfragen erfassen und bearbeiten', 'Create and edit customers and vendors' => 'Kunden und Lieferanten erfassen und bearbeiten', diff --git a/locale/de/ca b/locale/de/ca index 9bc74c196..77bc89487 100644 --- a/locale/de/ca +++ b/locale/de/ca @@ -38,8 +38,10 @@ $self->{texts} = { 'Cc' => 'Cc', 'Change Lx-Office installation settings (all menu entries beneath \'System\')' => 'Verändern der Lx-Office-Installationseinstellungen (Menüpunkte unterhalb von \'System\')', 'Chart of Accounts' => 'Kontenübersicht', + 'Company' => 'Firma', 'Confirmation' => 'Auftragsbestätigung', 'Could not spawn the printer command.' => 'Die Druckanwendung konnte nicht gestartet werden.', + 'Create Date' => 'Erstelldatum', 'Create and edit RFQs' => 'Lieferantenanfragen erfassen und bearbeiten', 'Create and edit customers and vendors' => 'Kunden und Lieferanten erfassen und bearbeiten', 'Create and edit dunnings' => 'Mahnungen erfassen und bearbeiten', diff --git a/locale/de/rp b/locale/de/rp index 37944fcf1..db014ab12 100644 --- a/locale/de/rp +++ b/locale/de/rp @@ -48,12 +48,14 @@ $self->{texts} = { 'CSV export -- options' => 'CSV-Export -- Optionen', 'Cc' => 'Cc', 'Change Lx-Office installation settings (all menu entries beneath \'System\')' => 'Verändern der Lx-Office-Installationseinstellungen (Menüpunkte unterhalb von \'System\')', + 'Company' => 'Firma', 'Compare to' => 'Gegenüberstellen zu', 'Confirmation' => 'Auftragsbestätigung', 'Contact' => 'Kontakt', 'Continue' => 'Weiter', 'Copies' => 'Kopien', 'Could not spawn the printer command.' => 'Die Druckanwendung konnte nicht gestartet werden.', + 'Create Date' => 'Erstelldatum', 'Create and edit RFQs' => 'Lieferantenanfragen erfassen und bearbeiten', 'Create and edit customers and vendors' => 'Kunden und Lieferanten erfassen und bearbeiten', 'Create and edit dunnings' => 'Mahnungen erfassen und bearbeiten',