Skip to content
Snippets Groups Projects
Commit 73d01e16 authored by Jo Sama's avatar Jo Sama :scream:
Browse files

Remove support for unused date fields

parent 9bc798bb
No related branches found
No related tags found
1 merge request!2Remove unused fields
Pipeline #50198 passed
...@@ -41,10 +41,6 @@ transactions = [Transaction.from_dict({ ...@@ -41,10 +41,6 @@ transactions = [Transaction.from_dict({
"sequenceno": 1, "sequenceno": 1,
"taxcode": 1, "taxcode": 1,
"transtype": 1, "transtype": 1,
"arrivaldate": 1,
"compldelay": 1,
"discdate": 1,
"duedate": 1,
"extinvref": 1 "extinvref": 1
})] })]
......
...@@ -63,10 +63,6 @@ class Transaction(BaseModel): ...@@ -63,10 +63,6 @@ class Transaction(BaseModel):
sequenceno: Optional[int] sequenceno: Optional[int]
taxcode: Optional[str] taxcode: Optional[str]
transtype: str transtype: str
arrivaldate: Optional[datetime.date]
compldelay: Optional[datetime.date]
discdate: Optional[datetime.date]
duedate: Optional[datetime.date]
extinvref: Optional[str] extinvref: Optional[str]
......
...@@ -34,10 +34,6 @@ ...@@ -34,10 +34,6 @@
"sequenceno": 1, "sequenceno": 1,
"taxcode": 1, "taxcode": 1,
"transtype": 1, "transtype": 1,
"arrivaldate": 1,
"compldelay": 1,
"discdate": 1,
"duedate": 1,
"extinvref": 1 "extinvref": 1
}, },
{ {
...@@ -58,10 +54,6 @@ ...@@ -58,10 +54,6 @@
"sequenceno": 2, "sequenceno": 2,
"taxcode": 2, "taxcode": 2,
"transtype": 2, "transtype": 2,
"arrivaldate": 2,
"compldelay": 2,
"discdate": 2,
"duedate": 2,
"extinvref": 2 "extinvref": 2
} }
] ]
......
...@@ -33,10 +33,6 @@ ...@@ -33,10 +33,6 @@
"sequenceno": 1, "sequenceno": 1,
"taxcode": 1, "taxcode": 1,
"transtype": 1, "transtype": 1,
"arrivaldate": 1,
"compldelay": 1,
"discdate": 1,
"duedate": 1,
"extinvref": 1 "extinvref": 1
}, },
{ {
...@@ -58,10 +54,6 @@ ...@@ -58,10 +54,6 @@
"sequenceno": 2, "sequenceno": 2,
"taxcode": 2, "taxcode": 2,
"transtype": 2, "transtype": 2,
"arrivaldate": 2,
"compldelay": 2,
"discdate": 2,
"duedate": 2,
"extinvref": 2 "extinvref": 2
} }
] ]
......
...@@ -15,9 +15,5 @@ ...@@ -15,9 +15,5 @@
"dim7": 1, "dim7": 1,
"sequenceno": 1, "sequenceno": 1,
"taxcode": 1, "taxcode": 1,
"transtype": 1, "transtype": 1
"arrivaldate": 1,
"compldelay": 1,
"discdate": 1,
"duedate": 1
} }
...@@ -17,9 +17,5 @@ ...@@ -17,9 +17,5 @@
"sequenceno": 1, "sequenceno": 1,
"taxcode": 1, "taxcode": 1,
"transtype": 1, "transtype": 1,
"arrivaldate": 1,
"compldelay": 1,
"discdate": 1,
"duedate": 1,
"extinvref": 1 "extinvref": 1
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment