Ignore:
Timestamp:
01/11/25 01:23:10 (5 days ago)
Author:
Kristijan <kristijanzafirovski26@…>
Branches:
master
Children:
0a7426e
Parents:
1c51912
Message:

Added info scraping for escape travel

File:
1 edited

Legend:

Unmodified
Added
Removed
  • backend/GlobeGuru-backend/src/main/java/DatabaseUtil.java

    r1c51912 rcd64b06  
    151151                "FROM options o " +
    152152                "LEFT JOIN optionDetails od ON o.id = od.optionId " +
    153                 "WHERE (o.country LIKE ? OR o.hotelName LIKE ?)";
     153                "WHERE (o.country LIKE ? OR o.hotelName LIKE ?) " +
     154                "AND od.type IS NOT NULL " +
     155                "AND od.board IS NOT NULL " +
     156                "AND od.price > 0";
    154157
    155158        if (dateQuery != null && !dateQuery.isEmpty() && !dateFlag) {
     
    200203        return options;
    201204    }
     205
    202206
    203207
Note: See TracChangeset for help on using the changeset viewer.