Compare commits

..

2 Commits

Author SHA1 Message Date
nib4k f657ca77a4 Kz company details 2026-06-03 15:29:37 +03:00
nib4k 6982393d03 Check save file result 2026-06-03 15:29:30 +03:00
2 changed files with 7 additions and 1 deletions
+4
View File
@@ -149,3 +149,7 @@ class Focus(Request):
foreign_agents_list = next(lst for lst in self.government_lists() if lst['id'] == 'fcfc856d-89f8-408b-afef-56750cb90fed')
return foreign_agents_list['isInList']
def kz_company_details(self):
response = self.get('/kz/companyDetails', bin=self.inn)
return response[0] if response else None
+2
View File
@@ -229,6 +229,8 @@ class FocusCompliance(Request):
file_type='docx',
path=path
)
if not result['success']:
return {'success': False, 'result': result['message']}
return {'success': True, 'file': result}
except AttributeError: