add deposit type in CMB module
This commit is contained in:
parent
5ffa7d19c0
commit
51cc9ab21b
1 changed files with 5 additions and 0 deletions
|
|
@ -80,6 +80,11 @@ class CmbModule(Module, CapBank):
|
||||||
compile('^F (?P<text>.*)'),
|
compile('^F (?P<text>.*)'),
|
||||||
Transaction.TYPE_BANK,
|
Transaction.TYPE_BANK,
|
||||||
'%(text)s'
|
'%(text)s'
|
||||||
|
),
|
||||||
|
( # deposit
|
||||||
|
compile('^VRST (?P<text>.*)'),
|
||||||
|
Transaction.TYPE_DEPOSIT,
|
||||||
|
'%(text)s'
|
||||||
)
|
)
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue