我目前有两种不同的型号。
class Journal(models.Model):
date = models.DateField()
from_account = models.ForeignKey(Account,related_name='transferred_from')
to_account = models.ForeignKey(Account,related_name='transferred_to')
amount = models.DecimalField(max_digits=8, decimal_places=2)
memo = models.CharField(max_length=100,null=True,blank=True)
class Ledger(models.Model):
date = models.DateField()
bank_account = models.ForeignKey(EquityAccount,related_name='paid_from')
account = models.ForeignKey(Account)
amount = models.DecimalField(max_digits=8, decimal_places=2)
name = models.ForeignKey(Party)
memo = models.CharField(max_length=100,null=True,blank=True)
我在视图中创建报告并收到以下错误: 合并'ValuesQuerySet'类必须在每种情况下都包含相同的值。
我想要做的只是拉出常见的字段,以便我可以连接它们两个例如
def report(request):
ledger = GeneralLedger.objects.values('account').annotate(total=Sum('amount'))
journal = Journal.objects.values('from_account').annotate(total=Sum('amount'))
report = ledger & journal
...
如果我试着让它们完全相同来测试,例如。
def report(request):
ledger = GeneralLedger.objects.values('memo').annotate(total=Sum('amount'))
journal = Journal.objects.values('memo').annotate(total=Sum('amount'))
report = ledger & journal
...
我收到此错误: 无法在两种不同的基本模型上组合查询。
任何人都知道如何实现这一目标?
答案 0 :(得分:21)
from itertools import chain
report = chain(ledger, journal)
Itertools获胜!
如果要进行联盟,则应将这些querysets
转换为python set
对象。
如果可以正确过滤查询集本身,那么你应该真的这样做!