Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Setra Client
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
it-bott-integrasjoner
Setra Client
Commits
79a35982
Commit
79a35982
authored
4 years ago
by
Petr Kalashnikov
Browse files
Options
Downloads
Patches
Plain Diff
Fix signature for batch extraction method
parent
75810414
No related branches found
No related tags found
2 merge requests
!13
Fsho12, del 1: mulighet å returnere en liste av batcher uten vouchere
,
!11
FSHO10: support filtering of batches in list from setra
Pipeline
#67482
passed
4 years ago
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
setra_client/client.py
+11
-7
11 additions, 7 deletions
setra_client/client.py
setra_client/models.py
+18
-1
18 additions, 1 deletion
setra_client/models.py
with
29 additions
and
8 deletions
setra_client/client.py
+
11
−
7
View file @
79a35982
"""
Client for connecting to SETRA API
"""
import
logging
import
urllib.parse
from
typing
import
Union
from
typing
import
Union
,
Optional
import
requests
from
setra_client.models
import
Batch
,
CompleteBatch
,
BatchErrors
from
setra_client.models
import
(
Batch
,
CompleteBatch
,
BatchErrors
,
BatchProgressEnum
)
logger
=
logging
.
getLogger
(
__name__
)
...
...
@@ -182,11 +185,12 @@ class SetraClient(object):
return
cls
.
from_dict
(
data
)
def
get_batch
(
self
,
batch_id
:
int
=
None
,
min_created_date
:
str
=
None
,
max_created_date
:
str
=
None
,
batch_progress
:
str
=
None
,
interface
:
str
=
None
):
batch_id
:
Optional
[
int
]
=
None
,
min_created_date
:
Optional
[
str
]
=
None
,
max_created_date
:
Optional
[
str
]
=
None
,
batch_progress
:
Optional
[
BatchProgressEnum
]
=
None
,
interface
:
Optional
[
str
]
=
None
):
"""
GETs one or all batches from SETRA.
Dates (maximal and minimal creation dates) should
...
...
This diff is collapsed.
Click to expand it.
setra_client/models.py
+
18
−
1
View file @
79a35982
...
...
@@ -3,7 +3,7 @@ import datetime
import
json
import
typing
from
typing
import
Optional
,
TypeVar
from
enum
import
Enum
import
pydantic
NameType
=
TypeVar
(
'
NameType
'
)
...
...
@@ -30,6 +30,23 @@ class BaseModel(pydantic.BaseModel):
return
cls
.
from_dict
(
data
)
class
BatchProgressEnum
(
Enum
):
CREATED
=
'
created
'
VALIDATION_COMPLETED
=
'
validation_completed
'
VALIDATION_FAILED
=
'
validation_failed
'
SENT_TO_UBW
=
'
sent_to_ubw
'
SEND_TO_UBW_FAILED
=
'
send_to_ubw_failed
'
POLLING_COMPLETED
=
'
polling_completed
'
POLLING_FAILED
=
'
polling_failed
'
UBW_IMPORT_OK
=
'
ubw_import_ok
'
UBW_IMPORT_FAILED
=
'
ubw_import_failed
'
FETCH_FINAL_VOUCHERNO_COMPLETED
=
'
fetch_final_voucherno_completed
'
FETCH_FINAL_VOUCHERNO_FAILED
=
'
fetch_final_voucherno_failed
'
def
__str__
(
self
):
return
str
(
self
.
value
)
class
Transaction
(
BaseModel
):
account
:
str
amount
:
float
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment