2006-05-02 03:31:56 +02:00
|
|
|
"""
|
2014-09-24 07:13:13 +02:00
|
|
|
The lookup API
|
2006-05-02 03:31:56 +02:00
|
|
|
|
|
|
|
This demonstrates features of the database API.
|
|
|
|
"""
|
|
|
|
|
2011-07-13 11:35:51 +02:00
|
|
|
from django.db import models
|
2018-02-20 16:47:12 +01:00
|
|
|
from django.db.models.lookups import IsNull
|
2006-05-02 03:31:56 +02:00
|
|
|
|
2011-10-13 20:04:12 +02:00
|
|
|
|
2015-05-22 21:16:26 +02:00
|
|
|
class Alarm(models.Model):
|
|
|
|
desc = models.CharField(max_length=100)
|
|
|
|
time = models.TimeField()
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return "%s (%s)" % (self.time, self.desc)
|
|
|
|
|
|
|
|
|
2013-06-10 12:24:45 +02:00
|
|
|
class Author(models.Model):
|
|
|
|
name = models.CharField(max_length=100)
|
2018-03-14 10:00:07 +01:00
|
|
|
alias = models.CharField(max_length=50, null=True, blank=True)
|
2013-10-22 12:21:07 +02:00
|
|
|
|
2013-06-10 12:24:45 +02:00
|
|
|
class Meta:
|
2017-12-28 21:07:29 +01:00
|
|
|
ordering = ("name",)
|
2013-06-10 12:24:45 +02:00
|
|
|
|
2013-11-03 05:36:09 +01:00
|
|
|
|
2013-06-10 12:24:45 +02:00
|
|
|
class Article(models.Model):
|
|
|
|
headline = models.CharField(max_length=100)
|
|
|
|
pub_date = models.DateTimeField()
|
2015-07-22 16:43:21 +02:00
|
|
|
author = models.ForeignKey(Author, models.SET_NULL, blank=True, null=True)
|
2017-03-28 17:57:23 +02:00
|
|
|
slug = models.SlugField(unique=True, blank=True, null=True)
|
2013-10-22 12:21:07 +02:00
|
|
|
|
2013-06-10 12:24:45 +02:00
|
|
|
class Meta:
|
|
|
|
ordering = ("-pub_date", "headline")
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return self.headline
|
2010-11-21 03:28:25 +01:00
|
|
|
|
2013-11-03 05:36:09 +01:00
|
|
|
|
2010-11-21 03:28:25 +01:00
|
|
|
class Tag(models.Model):
|
2013-06-10 12:24:45 +02:00
|
|
|
articles = models.ManyToManyField(Article)
|
2010-11-21 03:28:25 +01:00
|
|
|
name = models.CharField(max_length=100)
|
2013-10-22 12:21:07 +02:00
|
|
|
|
2010-11-21 03:28:25 +01:00
|
|
|
class Meta:
|
2017-12-28 21:07:29 +01:00
|
|
|
ordering = ("name",)
|
2012-02-05 08:11:53 +01:00
|
|
|
|
2013-11-03 05:36:09 +01:00
|
|
|
|
2017-07-30 22:01:45 +02:00
|
|
|
class NulledTextField(models.TextField):
|
2017-07-30 19:00:00 +02:00
|
|
|
def get_prep_value(self, value):
|
|
|
|
return None if value == "" else value
|
2017-07-30 22:01:45 +02:00
|
|
|
|
|
|
|
|
|
|
|
@NulledTextField.register_lookup
|
|
|
|
class NulledTransform(models.Transform):
|
|
|
|
lookup_name = "nulled"
|
|
|
|
template = "NULL"
|
|
|
|
|
|
|
|
|
2018-02-20 16:47:12 +01:00
|
|
|
@NulledTextField.register_lookup
|
|
|
|
class IsNullWithNoneAsRHS(IsNull):
|
|
|
|
lookup_name = "isnull_none_rhs"
|
|
|
|
can_use_none_as_rhs = True
|
|
|
|
|
|
|
|
|
2012-02-05 08:11:53 +01:00
|
|
|
class Season(models.Model):
|
|
|
|
year = models.PositiveSmallIntegerField()
|
|
|
|
gt = models.IntegerField(null=True, blank=True)
|
2017-07-30 22:01:45 +02:00
|
|
|
nulled_text_field = NulledTextField(null=True)
|
2012-02-05 08:11:53 +01:00
|
|
|
|
2020-04-22 11:36:03 +02:00
|
|
|
class Meta:
|
|
|
|
constraints = [
|
|
|
|
models.UniqueConstraint(fields=["year"], name="season_year_unique"),
|
|
|
|
]
|
|
|
|
|
2012-08-12 12:32:08 +02:00
|
|
|
def __str__(self):
|
2016-12-29 16:27:49 +01:00
|
|
|
return str(self.year)
|
2012-02-05 08:11:53 +01:00
|
|
|
|
2013-11-03 05:36:09 +01:00
|
|
|
|
2012-02-05 08:11:53 +01:00
|
|
|
class Game(models.Model):
|
2015-07-22 16:43:21 +02:00
|
|
|
season = models.ForeignKey(Season, models.CASCADE, related_name="games")
|
2012-02-05 08:11:53 +01:00
|
|
|
home = models.CharField(max_length=100)
|
|
|
|
away = models.CharField(max_length=100)
|
|
|
|
|
2013-11-03 05:36:09 +01:00
|
|
|
|
2012-02-05 08:11:53 +01:00
|
|
|
class Player(models.Model):
|
|
|
|
name = models.CharField(max_length=100)
|
|
|
|
games = models.ManyToManyField(Game, related_name="players")
|
|
|
|
|
2014-04-22 22:01:16 +02:00
|
|
|
|
2016-12-10 19:05:34 +01:00
|
|
|
class Product(models.Model):
|
|
|
|
name = models.CharField(max_length=80)
|
|
|
|
qty_target = models.DecimalField(max_digits=6, decimal_places=2)
|
|
|
|
|
|
|
|
|
|
|
|
class Stock(models.Model):
|
|
|
|
product = models.ForeignKey(Product, models.CASCADE)
|
2021-04-22 19:44:25 +02:00
|
|
|
short = models.BooleanField(default=False)
|
2016-12-10 19:05:34 +01:00
|
|
|
qty_available = models.DecimalField(max_digits=6, decimal_places=2)
|
2019-10-11 20:10:31 +02:00
|
|
|
|
|
|
|
|
|
|
|
class Freebie(models.Model):
|
|
|
|
gift_product = models.ForeignKey(Product, models.CASCADE)
|
|
|
|
stock_id = models.IntegerField(blank=True, null=True)
|
|
|
|
|
|
|
|
stock = models.ForeignObject(
|
|
|
|
Stock,
|
|
|
|
from_fields=["stock_id", "gift_product"],
|
|
|
|
to_fields=["id", "product"],
|
|
|
|
on_delete=models.CASCADE,
|
|
|
|
)
|