X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/01b298ec34411c2eb6272cad65d5065cf6e812f5..04caff2d7309da75f53424675795addff173f32c:/SL/DB/Helper/Payment.pm diff --git a/SL/DB/Helper/Payment.pm b/SL/DB/Helper/Payment.pm index c5add7bd2..654eb41fa 100644 --- a/SL/DB/Helper/Payment.pm +++ b/SL/DB/Helper/Payment.pm @@ -154,13 +154,17 @@ sub pay_invoice { source => $params{source}, taxkey => 0, tax_id => SL::DB::Manager::Tax->find_by(taxkey => 0)->id); + + # the acc_trans entries are saved individually, not added to $self and then saved all at once $new_acc_trans->save; $reference_amount -= abs($amount); $paid_amount += -1 * $amount; $skonto_amount_check -= $skonto_booking->{'skonto_amount'}; }; - die "difference_as_skonto calculated incorrectly, sum of calculated payments doesn't add up to open amount $total_open_amount, reference_amount = $reference_amount\n" unless _round($reference_amount) == 0; + if ( $params{payment_type} eq 'difference_as_skonto' ) { + die "difference_as_skonto calculated incorrectly, sum of calculated payments doesn't add up to open amount $total_open_amount, reference_amount = $reference_amount\n" unless _round($reference_amount) == 0; + } }; @@ -193,6 +197,11 @@ sub pay_invoice { $self->datepaid($transdate_obj); $self->save; + # make sure transactions will be reloaded the next time $self->transactions + # is called, as pay_invoice saves the acc_trans objects individually rather + # than adding them to the transaction relation array. + $self->forget_related('transactions'); + my $datev_check = 0; if ( $is_sales ) { if ( ( $self->invoice && $::instance_conf->get_datev_check_on_sales_invoice ) || @@ -361,7 +370,7 @@ sub amount_less_skonto { my $is_sales = ref($self) eq 'SL::DB::Invoice'; - my $percent_skonto = $self->percent_skonto; + my $percent_skonto = $self->percent_skonto || 0; return _round($self->amount - ( $self->amount * $percent_skonto) ); @@ -374,8 +383,8 @@ sub check_skonto_configuration { my $skonto_configured = 1; # default is assume skonto works - my $transactions = $self->transactions; - foreach my $transaction (@{ $transactions }) { + # my $transactions = $self->transactions; + foreach my $transaction (@{ $self->transactions }) { # find all transactions with an AR_amount or AP_amount link my $tax = SL::DB::Manager::Tax->get_first( where => [taxkey => $transaction->{taxkey}]); croak "no tax for taxkey " . $transaction->{taxkey} unless ref $tax; @@ -448,8 +457,8 @@ sub skonto_charts { my $reference_ARAP_amount = 0; - my $transactions = $self->transactions; - foreach my $transaction (@{ $transactions }) { + # my $transactions = $self->transactions; + foreach my $transaction (@{ $self->transactions }) { # find all transactions with an AR_amount or AP_amount link $transaction->{chartlinks} = { map { $_ => 1 } split(m/:/, $transaction->{chart_link}) }; # second condition is that we can determine an automatic Skonto account for each AR_amount entry @@ -659,8 +668,8 @@ Example: $ap->pay_invoice(chart_id => $bank->chart_id, amount => $ap->open_amount, transdate => DateTime->now->to_kivitendo, - memo => 'foobar; - source => 'barfoo; + memo => 'foobar', + source => 'barfoo', payment_type => 'without_skonto', # default if not specified ); @@ -668,8 +677,8 @@ or with skonto: $ap->pay_invoice(chart_id => $bank->chart_id, amount => $ap->amount, # doesn't need to be specified transdate => DateTime->now->to_kivitendo, - memo => 'foobar; - source => 'barfoo; + memo => 'foobar', + source => 'barfoo', payment_type => 'with_skonto', ); @@ -933,23 +942,6 @@ defaults. E.g. when creating a SEPA bank transfer for vendor invoices a company might always want to pay quickly making use of skonto, while another company might always want to pay as late as possible. -=item C - -Returns all acc_trans Objects of an ar/ap object. - -Example in console to print account numbers and booked amounts of an invoice: - my $invoice = invoice(invnumber => '144'); - foreach my $acc_trans ( @{ $invoice->transactions } ) { - print $acc_trans->chart->accno . " : " . $acc_trans->amount_as_number . "\n" - }; - # 1200 : 226,00000 - # 1800 : -226,00000 - # 4300 : 100,00000 - # 3801 : 7,00000 - # 3806 : 19,00000 - # 4400 : 100,00000 - # 1200 : -226,00000 - =item C Make suggestion for a skonto payment type by returning an HTML blob of the options