one2many フィールドのデフォルト値を設定する必要があります。_defaults の関数で試してみましたが、関数が呼び出されません。
これが私のコードです:
分野:
'tax_invoice_line_ids': fields.one2many('account.tax.line', 'tax_id', 'Tax Invoice', domain=[('apply_on','=','invoice')]),
_デフォルト:
_defaults = {
'tax_invoice_line_ids': _invoice_line_default,
}
_invoice_line_default:
def _invoice_line_default(self, cr, uid, context=None):
print "\n\ncame here..........................................."
return True
私は何かを逃していますか?
事前にサンクス。