From d03d6928a335e270fc7126aa4dba4fa82a37d0bb Mon Sep 17 00:00:00 2001 From: rha104 <rha104@uib.no> Date: Wed, 13 Oct 2021 13:12:56 +0200 Subject: [PATCH] Setra-114: Sotra detail model changes: Make product_specification field optional --- setra_client/models.py | 2 +- tests/fixtures/detail_list_fixture.json | 2 +- tests/fixtures/order_with_detail_fixture.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setra_client/models.py b/setra_client/models.py index f1d62c1..fc384e4 100644 --- a/setra_client/models.py +++ b/setra_client/models.py @@ -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] diff --git a/tests/fixtures/detail_list_fixture.json b/tests/fixtures/detail_list_fixture.json index 5116b0d..61ec9bd 100644 --- a/tests/fixtures/detail_list_fixture.json +++ b/tests/fixtures/detail_list_fixture.json @@ -33,7 +33,7 @@ "anlegg": "anlegg", "aktivitet": "aktivitet", "line_no": 1, - "product_specification": 213, + "product_specification": null, "price": "1234.00", "quantity": 2.0 } diff --git a/tests/fixtures/order_with_detail_fixture.json b/tests/fixtures/order_with_detail_fixture.json index 474ee11..3a420b5 100644 --- a/tests/fixtures/order_with_detail_fixture.json +++ b/tests/fixtures/order_with_detail_fixture.json @@ -32,7 +32,7 @@ "anlegg": "anlegg", "aktivitet": "aktivitet", "line_no": 1, - "product_specification": 213, + "product_specification": null, "price": 1234.0, "quantity": 2.0 }, -- GitLab