Fix indentation
This commit is contained in:
parent
8e35be1cec
commit
eef6e246f0
|
@ -44,7 +44,7 @@ class AuthHandler:
|
||||||
redirectUri = self.redirectUri
|
redirectUri = self.redirectUri
|
||||||
if not state:
|
if not state:
|
||||||
if not self.state: print('state is not found. init the auth flow first or give the state as a parameter.')
|
if not self.state: print('state is not found. init the auth flow first or give the state as a parameter.')
|
||||||
state = self.state
|
state = self.state
|
||||||
oauth = OAuth2Session(self.clientId, state=state, redirect_uri=redirectUri)
|
oauth = OAuth2Session(self.clientId, state=state, redirect_uri=redirectUri)
|
||||||
oauthToken = oauth.fetch_token(self.tokenUrl, client_secret=self.clientSecret,authorization_response=response)
|
oauthToken = oauth.fetch_token(self.tokenUrl, client_secret=self.clientSecret,authorization_response=response)
|
||||||
self.token = oauth._client.access_token
|
self.token = oauth._client.access_token
|
||||||
|
|
|
@ -10,7 +10,7 @@ from api import OpenbravoToBanqupAPI
|
||||||
from datetime import timedelta, date
|
from datetime import timedelta, date
|
||||||
|
|
||||||
def extract_invoice(document):
|
def extract_invoice(document):
|
||||||
|
|
||||||
url = ob_api_url+"Invoice?_where=documentNo='"+document+"'&_noActiveFilter=false"
|
url = ob_api_url+"Invoice?_where=documentNo='"+document+"'&_noActiveFilter=false"
|
||||||
|
|
||||||
payload = {}
|
payload = {}
|
||||||
|
|
Loading…
Reference in a new issue