Coverage for src/orders/choices.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.9.2, created at 2025-08-04 12:59 +0300

1from django.db import models 

2 

3from src.common.utils import ChoicesMaxLengthMixin 

4 

5 

6class OrderStatusChoices(ChoicesMaxLengthMixin, models.TextChoices): 

7 PENDING = 'PE', 'Pending' 

8 COMPLETED = 'CO', 'Completed'