我想知道Odoo Version 8中函数字段的一些警告。 我有一个功能字段 amount_line_total ,就像 account.invoice 模型中的 amount_untaxed 一样,但我没有使用此功能字段存储= True。
amount_line_total = fields.Float(string='Lines Total', digits=dp.get_precision('Account'),readonly=True, compute='_compute_amount', track_visibility='always')
当我创建发票时,会在日志中显示警告:
openerp.models: No such field(s) in model account.invoice: amount_line_total
如果不使用函数字段store = True?
,是否还有其他方法可以再次显示该警告如果您有任何想法,请与我分享。
由于