Revision 23b40897
Von Jan Büren vor fast 3 Jahren hinzugefügt
t/db_helper/payment.t | ||
---|---|---|
995 | 995 |
chart_id => $bank_account->chart_id, |
996 | 996 |
transdate => $transdate1, |
997 | 997 |
); |
998 |
$invoice->pay_invoice( payment_type => 'difference_as_skonto',
|
|
998 |
$invoice->pay_invoice( payment_type => 'free_skonto',
|
|
999 | 999 |
chart_id => $bank_account->chart_id, |
1000 | 1000 |
transdate => $transdate1, |
1001 |
bt_id => $bt->id, |
|
1001 |
bt_id => $bt->id, |
|
1002 |
skonto_amount => $invoice->open_amount, |
|
1003 |
amount => 0, |
|
1002 | 1004 |
); |
1003 | 1005 |
|
1004 | 1006 |
my ($number_of_payments, $paid_amount) = number_of_payments($invoice); |
Auch abrufbar als: Unified diff
Payment-Helper pay_invoice case 'difference_as_skonto' entfernt
'difference_as_skonto' lässt sich über 'free_skonto' abbilden.
Ein Fall weniger der die Methode etwas wartungsfreundlicher macht.
POD und Testfall angepasst.