jabajke

Untitled

Feb 17th, 2023
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1.  
  2. class CommonCarInfo(CommonInfo):
  3. car = models.ForeignKey('main.Car', on_delete=models.SET_NULL, null=True)
  4. supplier = models.ForeignKey('supplier.Supplier', on_delete=models.SET_NULL, null=True)
  5. price = models.DecimalField(decimal_places=2, max_digits=10,
  6. validators=[MinValueValidator(limit_value=1.00)], null=True)
  7.  
  8. class Meta:
  9. abstract = True
  10.  
  11. class AutohouseCar(CommonCarInfo):
  12. autohouse = models.ForeignKey(Autohouse, on_delete=models.SET_NULL, null=True)
  13. amount = models.PositiveSmallIntegerField(default=1)
  14.  
  15. Пытаюсь достучаться до car
Advertisement
Add Comment
Please, Sign In to add comment