Skip to content

Commit 1121890

Browse files
committed
add new parser for PDO
1 parent bc0014e commit 1121890

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

cfonb/parser/common.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -370,6 +370,12 @@ class ParserCBE(Parser):
370370
# are somewhere but I still not suceed to get it, I send an email to the CFONB
371371
# and I wait for the norme. For now I just process the line like that.
372372

373+
#Still no news of the administration
374+
#It seem that the norm allow bank to add what they want very usefull norm ;)
375+
#By chance the next norme will may be fix the format.
376+
#Indeed next norme is "format camt.05". I ask the Cfonb organisation to know when the bank will start to use
377+
#this new format but ... they don't know ;)
378+
373379
class ParserREF(Parser):
374380
_code = 'REF'
375381
_regex = [
@@ -388,6 +394,13 @@ class ParserLEM(Parser):
388394
('lem', G_ALL, 70),
389395
]
390396

397+
class ParserPDO(Parser):
398+
_code = 'PDO'
399+
_regex = [
400+
('pdo', G_ALL, 70),
401+
]
402+
403+
391404

392405
#specific to withdrawal
393406
# TODO FIXME it's look like there is something wrong in

0 commit comments

Comments
 (0)