Ignore card and negative transactions
This commit is contained in:
parent
fd6fbec312
commit
0d85d19ab9
|
@ -46,6 +46,9 @@ class Transactions(object):
|
||||||
self.log.error("Type not in inside: {inside}", inside=inside)
|
self.log.error("Type not in inside: {inside}", inside=inside)
|
||||||
return
|
return
|
||||||
txtype = inside["type"]
|
txtype = inside["type"]
|
||||||
|
if txtype == "card_payment":
|
||||||
|
self.log.info("Ignoring card payment: {id}", id=txid)
|
||||||
|
return
|
||||||
state = inside["state"]
|
state = inside["state"]
|
||||||
if "reference" in inside:
|
if "reference" in inside:
|
||||||
reference = inside["reference"]
|
reference = inside["reference"]
|
||||||
|
@ -60,6 +63,9 @@ class Transactions(object):
|
||||||
account_type = "not_given"
|
account_type = "not_given"
|
||||||
|
|
||||||
amount = leg["amount"]
|
amount = leg["amount"]
|
||||||
|
if amount <= 0:
|
||||||
|
self.log.info("Ignoring transaction with negative/zero amount: {id}", id=txid)
|
||||||
|
return
|
||||||
currency = leg["currency"]
|
currency = leg["currency"]
|
||||||
description = leg["description"]
|
description = leg["description"]
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue