Fix month report so transfers from a shared account to another shared account do not count as income.

This commit is contained in:
James Cole 2015-08-28 06:19:50 +02:00
parent a81dd8abe5
commit 425552988a

View File

@ -164,6 +164,7 @@ class ReportQuery implements ReportQueryInterface
function (Builder $q) {
$q->where('transaction_types.type', 'Transfer');
$q->where('acm_from.data', '=', '"sharedAsset"');
$q->where('acm_to.data','!=','"sharedAsset"');
}
);
}