From 02e4a6fda09baae3961f2d451a6547b5b09216bf Mon Sep 17 00:00:00 2001 From: Maxime Pommier Date: Mon, 25 Mar 2019 16:46:55 +0100 Subject: [PATCH] [capabilities.bank] Add bdate. Represent the date that the transaction appear in the website. It will be mostly find in the column "date" and filled for TYPE_DEFERRED_CARD. --- weboob/capabilities/bank.py | 1 + 1 file changed, 1 insertion(+) diff --git a/weboob/capabilities/bank.py b/weboob/capabilities/bank.py index 03123e198c..44f075c982 100644 --- a/weboob/capabilities/bank.py +++ b/weboob/capabilities/bank.py @@ -391,6 +391,7 @@ class Transaction(BaseObject): date = DateField('Debit date on the bank statement') rdate = DateField('Real date, when the payment has been made; usually extracted from the label or from credit card info') vdate = DateField('Value date, or accounting date; usually for professional accounts') + bdate = DateField('Bank date, when the transaction appear on website (usually extracted from column date)') type = EnumField('Type of transaction, use TYPE_* constants', TransactionType, default=TYPE_UNKNOWN) raw = StringField('Raw label of the transaction') category = StringField('Category of the transaction') -- GitLab