Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 6b4a061d

Von Tamino Steinert vor etwa 1 Jahr hinzugefügt

FIX: Objekttype für altes Webdav von Debitorenbuchung angepasst

nutze 'invoice' anstelle von 'general_ledger'

Unterschiede anzeigen:

SL/Controller/Invoice.pm
my @errors;
foreach my $invoice (@{$invoices}) {
my $record_type = $invoice->record_type;
$record_type = 'general_ledger' if $record_type eq 'ar_transaction';
$record_type = 'invoice' if $record_type eq 'invoice_storno';
$record_type = 'invoice' if $record_type eq 'ar_transaction';
$record_type = 'invoice' if $record_type eq 'invoice_storno';
my $webdav = SL::Webdav->new(
type => $record_type,
number => $invoice->record_number,

Auch abrufbar als: Unified diff