network_inventory/devices/models/warranty.py
Andreas Zweili b2bc1f5d88 change the customer property to a ForeignKey
Everytime the warranty gets saved the customer gets
set to the one from the corresponding device
2020-03-01 11:16:36 +01:00

43 lines
1.2 KiB
Python

from django.db import models
from core.models import Category
from core.utils import td_format
from customers.models import Customer
from .device import Device
class WarrantyType(Category):
description = models.TextField()
class Meta:
verbose_name_plural = "Warranty Types"
class Warranty(models.Model):
customer = models.ForeignKey(Customer,
on_delete=models.CASCADE,
blank=True)
device = models.ForeignKey(Device, on_delete=models.CASCADE)
valid_from = models.DateField()
valid_until = models.DateField()
warranty_type = models.ForeignKey(WarrantyType,
models.SET_NULL,
blank=True,
null=True)
def save(self, *args, **kwargs):
self.customer = self.device.customer
super(Warranty, self).save(*args, **kwargs)
def __str__(self):
return str(self.device)
class Meta:
verbose_name_plural = "Warranties"
@property
def duration_in_years(self):
delta = self.valid_until - self.valid_from
return td_format(delta)