View | Details | Raw Unified | Return to bug 22511
Collapse All | Expand All

(-)a/Koha/Account/Line.pm (-3 / +6 lines)
Lines 71-77 sub checkout { Link Here
71
71
72
=head3 void
72
=head3 void
73
73
74
$payment_accountline->void();
74
  $payment_accountline->void();
75
76
Used to 'void' (or reverse) a payment/credit. It will role back any offsets
77
created by the application of this credit upon any debits and mark the credit
78
as 'void' by updating it's status to "VOID".
75
79
76
=cut
80
=cut
77
81
Lines 133-139 sub void { Link Here
133
137
134
            $self->set(
138
            $self->set(
135
                {
139
                {
136
                    accounttype       => 'VOID',
140
                    status            => 'VOID',
137
                    amountoutstanding => 0,
141
                    amountoutstanding => 0,
138
                    amount            => 0,
142
                    amount            => 0,
139
                }
143
                }
140
- 

Return to bug 22511