X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FBackgroundJob%2FCreatePeriodicInvoices.pm;h=ab28961965fa8e2ec5ba6ea1e34b0758e718583c;hb=e4b4e4d3dd4b1e85212b9e061ff4c659ed02d8b8;hp=f7b9100ad93a24b4e4004286e31c4e4c8c0ada83;hpb=6ceacc682f9c760e654f5aacde9b8480760d8b36;p=kivitendo-erp.git diff --git a/SL/BackgroundJob/CreatePeriodicInvoices.pm b/SL/BackgroundJob/CreatePeriodicInvoices.pm index f7b9100ad..ab2896196 100644 --- a/SL/BackgroundJob/CreatePeriodicInvoices.pm +++ b/SL/BackgroundJob/CreatePeriodicInvoices.pm @@ -16,6 +16,7 @@ use SL::DB::Order; use SL::DB::Invoice; use SL::DB::PeriodicInvoice; use SL::DB::PeriodicInvoicesConfig; +use SL::File; use SL::Helper::CreatePDF qw(create_pdf find_template); use SL::Mailer; use SL::Util qw(trim); @@ -142,8 +143,10 @@ sub _replace_vars { my $sub_fmt = lc($params{attribute_format} // 'text'); my ($start_tag, $end_tag) = $sub_fmt eq 'html' ? ('<%', '%>') : ('<%', '%>'); + my @invoice_keys = $params{invoice} ? (map { $_->name } $params{invoice}->meta->columns) : (); + my $key_name_re = join '|', map { quotemeta } (@invoice_keys, keys %{ $params{vars} }); - $str =~ s{ ${start_tag} ([a-z0-9_]+) ( \s+ format \s*=\s* (.*?) \s* )? ${end_tag} }{ + $str =~ s{ ${start_tag} ($key_name_re) ( \s+ format \s*=\s* (.*?) \s* )? ${end_tag} }{ my ($key, $format) = ($1, $3); $key = $::locale->unquote_special_chars('html', $key) if $sub_fmt eq 'html'; my $new_value; @@ -177,6 +180,8 @@ sub _replace_vars { sub _adjust_sellprices_for_period_lengths { my (%params) = @_; + return if $params{config}->periodicity eq 'o'; + my $billing_len = $params{config}->get_billing_period_length; my $order_value_len = $params{config}->get_order_value_period_length; @@ -358,6 +363,29 @@ sub _store_pdf_in_webdav { Common::copy_file_to_webdav_folder($form); } +sub _store_pdf_in_filemanagement { + my ($self, $pdf_file, $invoice) = @_; + + return unless $::instance_conf->get_doc_storage; + + # create a form for generate_attachment_filename + my $form = Form->new(''); + $form->{invnumber} = $invoice->invnumber; + $form->{type} = 'invoice'; + $form->{format} = 'pdf'; + $form->{formname} = 'invoice'; + $form->{language} = '_' . $invoice->language->template_code if $invoice->language; + my $doc_name = $form->generate_attachment_filename(); + + SL::File->save(object_id => $invoice->id, + object_type => 'invoice', + mime_type => 'application/pdf', + source => 'created', + file_type => 'document', + file_name => $doc_name, + file_path => $pdf_file); +} + sub _print_invoice { my ($self, $data) = @_; @@ -423,6 +451,7 @@ sub _email_invoice { longdescription => 'html', partnotes => 'html', notes => 'html', + $::form->get_variable_content_types_for_cvars, }, ); @@ -435,7 +464,8 @@ sub _email_invoice { eval { $pdf_file_name = $self->create_pdf(%create_params); - $self->_store_pdf_in_webdav($pdf_file_name, $data->{invoice}); + $self->_store_pdf_in_webdav ($pdf_file_name, $data->{invoice}); + $self->_store_pdf_in_filemanagement($pdf_file_name, $data->{invoice}); for (qw(email_subject email_body)) { _replace_vars( @@ -459,6 +489,8 @@ sub _email_invoice { $mail->{bcc} = $global_bcc; $mail->{subject} = $data->{config}->email_subject; $mail->{message} = $data->{config}->email_body; + $mail->{message} .= SL::DB::Default->get->signature; + $mail->{content_type} = 'text/html'; $mail->{attachments} = [{ path => $pdf_file_name, name => sprintf('%s %s.pdf', $label, $data->{invoice}->invnumber),