-2
以下是相關的應用程序和課程。嘗試獲取屬於發票的所有組件的總和並將其保存在發票的'sub_total'字段中。發票sub_total =發票實例所有組件的總和。什麼將會被解決?提前致謝。django內聯課程價格的總和
from stock.models import Part
class Invoice(models.Model):
invoice_number = models.CharField(max_length=250)
sub_total = models.DecimalField(max_digits=8, decimal_places=2)
class Component(models.Model):
invoice = models.ForeignKey('Invoice',)
stock = models.ForeignKey('stock.Part',)
qty = models.SmallPositiveIntegerField()
unit_price = models.DecimalField(max_digits=8, decimal_places=2)
amount = models.DecimalField(max_digits=8, decimal_places=2)
向我們展示你的看法和你有什麼,直到這點做?錯誤即將到來。不要指望我們爲你做你的工作。 –
只是希望得到一個線索,就是這樣。像這樣的東西可能不需要觀點 - 簡單地在models.py中完成 - 那是我所希望的。 – sunjoo