X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/62bf9a5c87218a9c1205c594c500346b4a7ec670..c60cb1f08f:/bin/mozilla/oe.pl diff --git a/bin/mozilla/oe.pl b/bin/mozilla/oe.pl index 3b5bcd043..ce18a327a 100644 --- a/bin/mozilla/oe.pl +++ b/bin/mozilla/oe.pl @@ -2117,11 +2117,16 @@ sub edit_periodic_invoices_config { $config = YAML::Load($::form->{periodic_invoices_config}) if $::form->{periodic_invoices_config}; if ('HASH' ne ref $config) { + my $lang_id = $::form->{language_id}; $config = { periodicity => 'm', order_value_periodicity => 'p', # = same as periodicity start_date_as_date => $::form->{transdate} || $::form->current_date, extend_automatically_by => 12, active => 1, + email_subject => GenericTranslations->get(language_id => $lang_id, + translation_type =>"preset_text_periodic_invoices_email_subject"), + email_body => GenericTranslations->get(language_id => $lang_id, + translation_type =>"preset_text_periodic_invoices_email_body"), }; }