Skip to content
Snippets Groups Projects
Commit d03d6928 authored by rha104's avatar rha104
Browse files

Setra-114: Sotra detail model changes: Make product_specification field optional

parent 9df79cfd
No related branches found
No related tags found
1 merge request!25Setra-114: Sotra detail model changes: Make product_specification field optional
......@@ -234,7 +234,7 @@ class Detail(BaseModel):
anlegg: Optional[str]
aktivitet: Optional[str]
line_no: int
product_specification: int
product_specification: Optional[int]
price: Optional[float]
quantity: Optional[float]
......
......@@ -33,7 +33,7 @@
"anlegg": "anlegg",
"aktivitet": "aktivitet",
"line_no": 1,
"product_specification": 213,
"product_specification": null,
"price": "1234.00",
"quantity": 2.0
}
......
......@@ -32,7 +32,7 @@
"anlegg": "anlegg",
"aktivitet": "aktivitet",
"line_no": 1,
"product_specification": 213,
"product_specification": null,
"price": 1234.0,
"quantity": 2.0
},
......
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