We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 213c9a9 commit 80840e8Copy full SHA for 80840e8
1 file changed
js/ariva.js
@@ -207,6 +207,11 @@ function extractEvents(page, handelsplatz) {
207
continue;
208
}
209
210
+ // filter events with neither ratio nor amount
211
+ if ((hashmap.get("Verhältnis") == null || hashmap.get("Verhältnis").trim() == "") && (hashmap.get("Betrag") == null || hashmap.get("Betrag") == "")) {
212
+ continue;
213
+ }
214
+
215
var dc = new Packages.jsq.datastructes.Datacontainer();
216
// Teilweise unterscheiden sich die Termine nach Handelsplätzen
217
if (hashmap.get("Handelsplätze") != null && hashmap.get("Handelsplätze") != "") {
0 commit comments