forked from starkbank/febraban-python
-
Notifications
You must be signed in to change notification settings - Fork 3
/
sample-iss-barcode-payment.py
57 lines (45 loc) · 1.17 KB
/
sample-iss-barcode-payment.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# coding: utf-8
from febraban.cnab240.itau.sispag import DasPayment, File
from febraban.cnab240.itau.sispag.file.lot import Lot
from febraban.cnab240.libs.barCode import LineNumberO
from febraban.cnab240.user import User, UserAddress, UserBank
sender = User(
name="YOUR COMPANY NAME HERE",
identifier="12345678901234",
bank=UserBank(
bankId="341",
branchCode="4321",
accountNumber="12345678",
accountVerifier="9"
),
address=UserAddress(
streetLine1="AV PAULISTA 1000",
city="SAO PAULO",
stateCode="SP",
zipCode="01310000"
)
)
lineNumbers = [
"818300000000351237012007512320036434688123299220"
]
file = File()
file.setSender(sender)
lot = Lot()
lot.setSender(sender)
lot.setHeaderLotType(
kind="22",
method="19"
)
for lineNumber in lineNumbers:
print lineNumber
lineNumber = LineNumberO(lineNumber)
payment = DasPayment()
payment.setPayment(
sender=sender,
scheduleDate="27052020",
identifier="ID1234567890",
lineNumber=lineNumber
)
lot.add(register=payment)
file.addLot(lot)
file.output(fileName="output.REM", path="/../../")