igorsimb / mp-monitor

Django app for scraping Wildberries
1 stars 0 forks source link

Create Payment Plans #157

Closed igorsimb closed 1 week ago

igorsimb commented 2 weeks ago

Example: https://priceva.ru/subscription

It should be a class within Tenant class (similar to Status). E.g.

class PaymentPlan(models.Model):
    name = models.CharField(max_length=100)
    price = models.DecimalField(max_digits=10, decimal_places=2)
    duration = models.IntegerField(help_text="Duration in days")

Other names for the class: