+ Default bonus levels in settings

This commit is contained in:
Phil Zhitnikov 2024-05-26 02:40:47 +04:00
parent 1761f57fde
commit 8da934bae7

View File

@ -268,7 +268,15 @@ BONUS_ELIGIBILITY_STATUS = 'completed'
BONUS_PROGRAM_DEFAULT_CONFIG = {
"amounts": {
"signup": 150,
"default_purchase": 50,
"referral": 500,
}
},
"levels": [
# slug, name, orders_count, amount_default_purchase
("new", "Новичок", 0, 50),
("fashion", "Модник", 3, 150),
("pro", "Профессионал", 10, 250),
("shopaholic", "Шопоголик", 20, 350),
("killer", "Фэшн Киллер", 30, 500),
]
}