Python ファイルで作成したフィールドが認識されない理由がわかりません。「line['amt_inv']」の評価中に QWebException: "amt_inv" というエラーが発生します。
これは私のpythonファイルです。
class account_move_line(models.Model):
_inherit = "account.move.line"
amt_inv=fields.Char('Invoice')
amt_reinv=fields.Char('Refunded Invoice')
これは私の xml ファイルの一部です。
<tr t-foreach="lines(partner)" t-as="line">
<td>
<t t-if="line['credit']==0">
<span t-esc="line['amt_inv']"/></t>
<t t-if="line['credit']>0">
<span t-esc="line['amt_reinv']"/></t>
</td>