Revision 6b4a061d
Von Tamino Steinert vor etwa 1 Jahr hinzugefügt
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
FIX: Objekttype für altes Webdav von Debitorenbuchung angepasst