Also show foreign amount.

This commit is contained in:
James Cole 2018-04-22 08:07:57 +02:00
parent c682e69ee7
commit e005fe7ce1
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E

View File

@ -247,8 +247,9 @@ class SplitController extends Controller
} }
if (count($res) > 0) { if (count($res) > 0) {
$res['amount'] = app('steam')->positive((string)$res['amount']); $res['amount'] = app('steam')->positive((string)$res['amount']);
$transactions[] = $res; $res['foreign_amount'] = app('steam')->positive((string)$res['foreign_amount']);
$transactions[] = $res;
} }
} }