تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
2 الردود
3287 أدوات العرض

I try to create filed related with account.invoice.mount_total, and when I do that I get error
My example:

class PlayInvoice(models.Model):
  _name = 'play.invoice'
  
  invoice_id = fields.Many2one('account.invoice', 'Invoice') 
  amount_total_invoice = fields.Monetary(string='Total', related='invoice_id.amount_total')

Error:

Traceback (most recent call last):
    return self._fields[key].__get__(self, type(self))
KeyError: 'currency_id'

الصورة الرمزية
إهمال

Try searching for monetary fields in this forum

أفضل إجابة

Hi,

Add currency field in your model

 currency_id = fields.Many2one('res.currency', string='Currency', readonly=True},default=invoice_id.currency_id)

currency id set default from invoice.

Thanks

Aswini iWesabe

الصورة الرمزية
إهمال
المنشورات ذات الصلة الردود أدوات العرض النشاط
2
يوليو 24
2693
1
يونيو 24
5153
1
أكتوبر 23
10878
1
أكتوبر 23
98
1
أغسطس 23
2194