Multiple annotate with sum and display data in admin - Django
问题 I'm new to both Django and Python. Currently I'm trying the Django Admin by doing. I've three models for a Django app, which are GoodsItem , SoldGoodsItem and FinishedGoodsItem . The models.py is: from django.db import models class GoodsItem(models.Model): name = models.CharField(max_length=255) size = models.DecimalField(max_digits=4, decimal_places=2) INCHES = 'IN' NUMBER = 'NUM' GOODS_ITEM_SIZE_UNITS = ( (INCHES, 'Inches'), (NUMBER, '#'), ) size_unit = models.CharField( max_length=4,