From 8d1e3805e3e33f3365c1ab06870759f91d18ce51 Mon Sep 17 00:00:00 2001 From: t0is Date: Wed, 2 Apr 2025 07:44:48 +0200 Subject: [PATCH] edits --- gpc.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gpc.py b/gpc.py index 86efb37..bcfb09e 100644 --- a/gpc.py +++ b/gpc.py @@ -70,6 +70,11 @@ class Data(BaseRecord): self.date = date.strftime("%d%m%y") def to_string(self): + print(f"{self.record_type.value:03}{str(self.account)[:16].zfill(16)}{str(self.payer_account).rjust(16, '0')[:16]}") + print(f"{str(self.no)[:13].zfill(13)}{int(self.balance):012}{self.code.value:1}{self.variable:010}") + print(f"{self.constant_symbol:010}{self.specific_symbol:010}") + print(f"{'0'*6}{str(self.client_name)[:20].ljust(20)}{'0'}{self.currency}{self.date}\r\n") + return (f"{self.record_type.value:03}{str(self.account)[:16].zfill(16)}{str(self.payer_account).rjust(16, '0')[:16]}" f"{str(self.no)[:13].zfill(13)}{int(self.balance):012}{self.code.value:1}{self.variable:010}" f"{self.constant_symbol:010}{self.specific_symbol:010}"