update
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
import sys
|
||||
import os
|
||||
import json
|
||||
from datetime import datetime, timedelta
|
||||
# Add parent directory to path to import from src
|
||||
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
||||
from sqlalchemy.orm import Session
|
||||
@@ -150,34 +151,96 @@ def seed_homepage_content(db: Session):
|
||||
trust_badges_section_subtitle = 'Awards and certifications that validate our commitment to excellence'
|
||||
trust_badges_enabled = True
|
||||
|
||||
# Promotions
|
||||
# Promotions - Mix of valid and expired for testing
|
||||
# Calculate dates relative to current date
|
||||
today = datetime.now()
|
||||
next_month = today + timedelta(days=30)
|
||||
next_3_months = today + timedelta(days=90)
|
||||
next_6_months = today + timedelta(days=180)
|
||||
expired_1_month_ago = today - timedelta(days=30)
|
||||
expired_3_months_ago = today - timedelta(days=90)
|
||||
|
||||
promotions = [
|
||||
{
|
||||
'title': 'Early Bird Special',
|
||||
'description': 'Book 30 days in advance and save 20% on your stay. Perfect for planning ahead!',
|
||||
'image': 'https://images.unsplash.com/photo-1564501049412-61c2a3083791?w=600',
|
||||
'discount': '20% OFF',
|
||||
'valid_until': next_3_months.strftime('%Y-%m-%d'),
|
||||
'link': '/rooms',
|
||||
'button_text': 'Book Now',
|
||||
'code': 'EARLYBIRD20'
|
||||
},
|
||||
{
|
||||
'title': 'Weekend Getaway',
|
||||
'description': 'Perfect weekend escape with complimentary breakfast and spa access. Relax and unwind!',
|
||||
'image': 'https://images.unsplash.com/photo-1571896349842-33c89424de2d?w=600',
|
||||
'discount': '30% OFF',
|
||||
'valid_until': next_month.strftime('%Y-%m-%d'),
|
||||
'link': '/rooms',
|
||||
'button_text': 'View Offer',
|
||||
'code': 'WEEKEND30'
|
||||
},
|
||||
{
|
||||
'title': 'Luxury Suite Package',
|
||||
'description': 'Experience our premium suites with exclusive amenities, fine dining, and concierge service',
|
||||
'image': 'https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?w=600',
|
||||
'discount': 'Save $200',
|
||||
'valid_until': next_6_months.strftime('%Y-%m-%d'),
|
||||
'link': '/rooms',
|
||||
'button_text': 'Explore Suites',
|
||||
'code': 'LUXURY200'
|
||||
},
|
||||
{
|
||||
'title': 'Honeymoon Special',
|
||||
'description': 'Romantic getaway with champagne, flowers, special amenities, and complimentary room upgrade',
|
||||
'image': 'https://images.unsplash.com/photo-1596394516093-501ba68a0ba6?w=600',
|
||||
'discount': '25% OFF',
|
||||
'valid_until': next_3_months.strftime('%Y-%m-%d'),
|
||||
'link': '/rooms',
|
||||
'button_text': 'Book Package',
|
||||
'code': 'HONEYMOON25'
|
||||
},
|
||||
{
|
||||
'title': 'Family Fun Package',
|
||||
'description': 'Perfect for families! Includes family room, kids activities, and complimentary meals for children under 12',
|
||||
'image': 'https://images.unsplash.com/photo-1566073771259-6a8506099945?w=600',
|
||||
'discount': '15% OFF',
|
||||
'valid_until': next_6_months.strftime('%Y-%m-%d'),
|
||||
'link': '/rooms',
|
||||
'button_text': 'Book Now',
|
||||
'code': 'FAMILY15'
|
||||
},
|
||||
{
|
||||
'title': 'Business Traveler',
|
||||
'description': 'Extended stay discounts for business travelers. Includes high-speed WiFi, workspace, and airport transfer',
|
||||
'image': 'https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?w=600',
|
||||
'discount': '10% OFF',
|
||||
'valid_until': next_3_months.strftime('%Y-%m-%d'),
|
||||
'link': '/rooms',
|
||||
'button_text': 'Learn More',
|
||||
'code': 'BUSINESS10'
|
||||
},
|
||||
# Expired promotions for testing display logic
|
||||
{
|
||||
'title': 'Summer Special',
|
||||
'description': 'Enjoy 25% off on all room bookings this summer. Limited time offer!',
|
||||
'image': 'https://images.unsplash.com/photo-1564501049412-61c2a3083791?w=600',
|
||||
'discount': '25% OFF',
|
||||
'valid_until': '2024-08-31',
|
||||
'valid_until': expired_3_months_ago.strftime('%Y-%m-%d'),
|
||||
'link': '/rooms',
|
||||
'button_text': 'Book Now'
|
||||
'button_text': 'Book Now',
|
||||
'code': 'SUMMER25'
|
||||
},
|
||||
{
|
||||
'title': 'Weekend Getaway',
|
||||
'description': 'Perfect weekend escape with complimentary breakfast and spa access',
|
||||
'image': 'https://images.unsplash.com/photo-1571896349842-33c89424de2d?w=600',
|
||||
'discount': '30% OFF',
|
||||
'valid_until': '2024-12-31',
|
||||
'title': 'New Year Celebration',
|
||||
'description': 'Ring in the new year with our special celebration package. Includes party access and premium amenities',
|
||||
'image': 'https://images.unsplash.com/photo-1590490360182-c33d57733427?w=600',
|
||||
'discount': '35% OFF',
|
||||
'valid_until': expired_1_month_ago.strftime('%Y-%m-%d'),
|
||||
'link': '/rooms',
|
||||
'button_text': 'Learn More'
|
||||
},
|
||||
{
|
||||
'title': 'Honeymoon Package',
|
||||
'description': 'Romantic getaway with champagne, flowers, and special amenities',
|
||||
'image': 'https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?w=600',
|
||||
'discount': 'Special Rate',
|
||||
'valid_until': '2024-12-31',
|
||||
'link': '/rooms',
|
||||
'button_text': 'Book Package'
|
||||
'button_text': 'View Offer',
|
||||
'code': 'NEWYEAR35'
|
||||
}
|
||||
]
|
||||
promotions_section_title = 'Special Offers'
|
||||
|
||||
Reference in New Issue
Block a user