diff client/src/components/importschedule/Importscheduledetail.vue @ 1749:0a6b2ace7b7e

Gauge measurement, Fairway availability implemented
author Thomas Junk <thomas.junk@intevation.de>
date Thu, 10 Jan 2019 14:56:17 +0100
parents 90178f4ce255
children b28faf6fbf98
line wrap: on
line diff
--- a/client/src/components/importschedule/Importscheduledetail.vue	Thu Jan 10 14:52:26 2019 +0100
+++ b/client/src/components/importschedule/Importscheduledetail.vue	Thu Jan 10 14:56:17 2019 +0100
@@ -28,6 +28,12 @@
                 <option :value="$options.IMPORTTYPES.WATERWAYAXIS"
                   ><translate>Waterway axis</translate></option
                 >
+                <option :value="$options.IMPORTTYPES.GAUGEMEASUREMENT"
+                  ><translate>Gauge measurement</translate></option
+                >
+                <option :value="$options.IMPORTTYPES.FAIRWAYAVAILABILITY"
+                  ><translate>Fairway availability</translate></option
+                >
               </select>
             </div>
             <div class="flex-column ml-4">
@@ -484,6 +490,8 @@
       switch (this.import_) {
         case this.$options.IMPORTTYPES.BOTTLENECK:
         case this.$options.IMPORTTYPES.WATERWAYAXIS:
+        case this.$options.IMPORTTYPES.GAUGEMEASUREMENT:
+        case this.$options.IMPORTTYPES.FAIRWAYAVAILABILITY:
           return true;
         default:
           return false;