From af2b6ee36af8d482e2dcac067ac743a93bab9317 Mon Sep 17 00:00:00 2001 From: Sebastian Diaz Date: Wed, 29 Jan 2025 11:31:26 +0100 Subject: [PATCH] add scout delivery types to tomte (#4167)(patch) ## Description Solves a bug in the order flow in which customers can't order scout in tomte ### Added - add scout delivery types to tomte --- cg/services/orders/validation/workflows/tomte/constants.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cg/services/orders/validation/workflows/tomte/constants.py b/cg/services/orders/validation/workflows/tomte/constants.py index 597536e16e..74aa92b35b 100644 --- a/cg/services/orders/validation/workflows/tomte/constants.py +++ b/cg/services/orders/validation/workflows/tomte/constants.py @@ -5,6 +5,10 @@ class TomteDeliveryType(StrEnum): ANALYSIS_FILES = DataDelivery.ANALYSIS_FILES + ANALYSIS_SCOUT = DataDelivery.ANALYSIS_SCOUT FASTQ = DataDelivery.FASTQ FASTQ_ANALYSIS = DataDelivery.FASTQ_ANALYSIS + FASTQ_ANALYSIS_SCOUT = DataDelivery.FASTQ_ANALYSIS_SCOUT + FASTQ_SCOUT = DataDelivery.FASTQ_SCOUT NO_DELIVERY = DataDelivery.NO_DELIVERY + SCOUT = DataDelivery.SCOUT