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

(-)a/members/boraccount.pl (-3 / +1 lines)
Lines 233-242 if ( $op eq 'cud-edit_note' ) { Link Here
233
    my $payment    = Koha::Account::Lines->find($payment_id);
233
    my $payment    = Koha::Account::Lines->find($payment_id);
234
    $schema->txn_do(
234
    $schema->txn_do(
235
        sub {
235
        sub {
236
            # Update the note and date in the account line
236
            # Update the note in the account line
237
            $payment->set(
237
            $payment->set(
238
                {
238
                {
239
                    date => \'NOW()',
240
                    note => $note
239
                    note => $note
241
                }
240
                }
242
            )->store();
241
            )->store();
243
- 

Return to bug 37211