+ Default bonus levels in settings

This commit is contained in:
Phil Zhitnikov 2024-05-26 02:40:47 +04:00
parent 0ff18ef891
commit 4feb41fb9e

View File

@ -268,7 +268,15 @@ BONUS_ELIGIBILITY_STATUS = 'completed'
BONUS_PROGRAM_DEFAULT_CONFIG = { BONUS_PROGRAM_DEFAULT_CONFIG = {
"amounts": { "amounts": {
"signup": 150, "signup": 150,
"default_purchase": 50,
"referral": 500, "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),
]
} }