amended transactionlist code
This commit is contained in:
parent
551a40a9a0
commit
60438ea51c
1 changed files with 3 additions and 3 deletions
|
@ -49,9 +49,9 @@ sub post_transaction_list_purchases {
|
|||
seller => $_->seller->name,
|
||||
value => $_->value / 100000,
|
||||
start_time => $c->format_iso_datetime($_->start_time),
|
||||
last_updated => $c->format_iso_datetime($_->last_updated),
|
||||
last_updated => $c->format_iso_datetime($_->last_updated) || undef,
|
||||
essential => $_->essential,
|
||||
category => ( defined $_->category ? $_->category->name : 'Uncategorised' ),
|
||||
category => $_->category_id,
|
||||
recurring_period => $_->recurring_period,
|
||||
}} $recurring_transactions->all
|
||||
);
|
||||
|
|
Reference in a new issue