Django error: [<class 'decimal.InvalidOperation'>]

Django error: [<class 'decimal.InvalidOperation'>]

我在我的项目中做了如下信号:

@receiver(pre_save, sender=group1)
@disable_for_loaddata
def total_closing_group1(sender,instance,*args,**kwargs):
    total_group_closing_deb_po = instance.master_group.filter(ledgergroups__Closing_balance__gte=0,balance_nature='Debit').aggregate(the_sum=Coalesce(Sum('ledgergroups__Closing_balance'), Value(0)))['the_sum']
    total_group_closing_deb_neg = instance.master_group.filter(ledgergroups__Closing_balance__lt=0,balance_nature='Debit').aggregate(the_sum=Coalesce(Sum('ledgergroups__Closing_balance'), Value(0)))['the_sum']
    total_group_closing_po_cre = instance.master_group.filter(ledgergroups__Closing_balance__gte=0,balance_nature='Credit').aggregate(the_sum=Coalesce(Sum('ledgergroups__Closing_balance'), Value(0)))['the_sum']
    total_group_closing_neg_cre = instance.master_group.filter(ledgergroups__Closing_balance__lt=0,balance_nature='Credit').aggregate(the_sum=Coalesce(Sum('ledgergroups__Closing_balance'), Value(0)))['the_sum']
    total_closing_deb_po = instance.ledgergroups.filter(Closing_balance__gte=0,group1_Name__balance_nature='Debit').aggregate(the_sum=Coalesce(Sum('Closing_balance'), Value(0)))['the_sum']
    total_closing_deb_ne = instance.ledgergroups.filter(Closing_balance__lt=0,group1_Name__balance_nature='Debit').aggregate(the_sum=Coalesce(Sum('Closing_balance'), Value(0)))['the_sum']
    total_closing_cre_po = instance.ledgergroups.filter(Closing_balance__gte=0,group1_Name__balance_nature='Credit').aggregate(the_sum=Coalesce(Sum('Closing_balance'), Value(0)))['the_sum']
    total_closing_cre_ne = instance.ledgergroups.filter(Closing_balance__lt=0,group1_Name__balance_nature='Credit').aggregate(the_sum=Coalesce(Sum('Closing_balance'), Value(0)))['the_sum']
    if total_group_closing_deb_po != None and total_group_closing_neg_cre != None and total_closing_deb_po != None and total_closing_cre_ne != None:
        instance.positive_closing = total_group_closing_deb_po + abs(total_group_closing_neg_cre) + total_closing_deb_po + abs(total_closing_cre_ne)
    if total_group_closing_po_cre != None and total_group_closing_deb_neg != None and total_closing_cre_po != None and total_closing_deb_ne != None:    
        instance.negative_closing = total_group_closing_po_cre + abs(total_group_closing_deb_neg) + total_closing_cre_po + abs(total_closing_deb_ne)

我的模型是:

class Group1(models.Model):   
    group_name = models.CharField(max_length=32)    
    master = models.ForeignKey("self",on_delete=models.CASCADE,related_name='master_group',null=True)    
    negative_closing = models.DecimalField(max_digits=10,default=0,decimal_places=2,null=True)    
    positive_closing = models.DecimalField(max_digits=10,default=0,decimal_places=2,null=True)


class Ledger1(models.Model):
    name            = models.CharField(max_length=32)
    group1_name     = models.ForeignKey(Group1,on_delete=models.CASCADE,null=True,related_name='ledgergroups')
    closing_balance = models.DecimalField(default=0.00,max_digits=10,decimal_places=2,blank=True)

一开始它工作正常,但是当我通过将数据放入字段来增加数据库负载时突然间。

它向我抛出错误 [<class 'decimal.InvalidOperation'>]

这个错误意味着什么?

有什么想法吗

谢谢

我有一个类似的问题,我为解决这个问题所做的是确保我想要保存的值适合该字段,两件事:

  1. 首先,使用round(myValueFloat, 4)。是的,为了减少我尝试保存的小数位数。
  2. 为我无法减少的值使用更大的字段。

我自己最近也遇到了这个问题。在我的案例中,我认为我对十进制字段的了解是错误的。

我以为 max_digits=x 给出整数部分的 x 值,decimal_places=y 给出小数部分的 y 值,但我错了。

max_digits定义总数。总位数和小数位是 max_digits.

的一部分

例如。如果 max_digits=13decimal_places=3 则该字段将存储最多 10 亿的数值,精确到 3 位小数。

这可能会帮助那些像我一样在过去几个小时里遇到困难的人。