You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
636 B
15 lines
636 B
from django.db import models
|
|
import uuid
|
|
from . import BaseModel, CustomUser
|
|
|
|
class Purchase(BaseModel):
|
|
id = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=True)
|
|
user = models.ForeignKey(CustomUser, on_delete=models.CASCADE)
|
|
identifier = models.BigIntegerField()
|
|
purchase_date = models.DateTimeField()
|
|
product_id = models.CharField(max_length=100)
|
|
quantity = models.IntegerField(null=True, blank=True)
|
|
revocation_date = models.DateTimeField(null=True, blank=True)
|
|
|
|
def __str__(self):
|
|
return f"{self.identifier} > {self.product_id} - {self.purchase_date} - {self.user.username}"
|
|
|