Include additional services category

This commit is contained in:
Björn Fromme
2018-07-11 16:14:59 +02:00
parent 6bb487f0f0
commit 42e3e00c7e
2 changed files with 5 additions and 3 deletions
@@ -575,9 +575,9 @@ class ImportService implements SingletonInterface
continue;
}
// Skip services of subcategory 'SON' and 'EIN'
// Skip services of subcategory 'EIN'
$type = (string) $service->attributes()['unterart'];
if ($type === 'SON' || $type === 'EIN') {
if ($type === 'EIN') {
continue;
}
@@ -27,7 +27,8 @@
VPF: [],
SPA: [],
KUR: [],
VER: []
VER: [],
SON: [],
}
}
}
@@ -40,6 +41,7 @@
SPA: 'Skipass',
KUR: 'Kurse',
VER: 'Verleih',
SON: 'Sonstiges',
}
}
}