Skip to content

Commit

Permalink
Merge pull request #501 from ZeusWPI/menu/coupure
Browse files Browse the repository at this point in the history
Add message for coupure
  • Loading branch information
niknetniko authored Oct 14, 2024
2 parents 4fd573e + 7956cdb commit fb72d3d
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions server/scraper/resto/menu_manual.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import re
from collections import defaultdict
from datetime import date, timedelta, datetime
from textwrap import dedent

OVERVIEW_COUNT = 10

Expand Down Expand Up @@ -651,6 +652,20 @@ def newyear_dsv_2024_en(_path, original):
return original


def coupure_2024_nl(_path, original):
message = dedent("""\
In Resto Coupure starten we met een proefproject: we gaan terug vers koken!
In het vernieuwde restaurant kan je kiezen uit een ruim aanbod van deelgerechten waarbij vooral groenten een prominente plaats krijgen.
In de resto wordt ook dagelijks verse soep worden gemaakt. Voor het aanbod wordt gekeken naar het seizoen en de afstand die de ingrediënten moeten afleggen.
Ga ter plaatse om het aanbod te bekijken.
""")
return {
"message": message,
"date": original["date"],
"open": True
}


def create_changes(root_path):
return [
# Restjesmaand 2018
Expand Down Expand Up @@ -1335,6 +1350,13 @@ def create_changes(root_path):
end=date(2024, 1, 12),
all_days=True
),
ManualChange(
replacer=coupure_2024_nl,
resto=["nl-coupure"],
start=date(2024, 9, 23),
end=date(2025, 7, 1),
all_days=True
),
]


Expand Down

0 comments on commit fb72d3d

Please sign in to comment.