最近我一直在尝试通过代码在 odoo13 中创建供应商账单,显然每次我运行代码时都会收到一条消息“无法创建不平衡的日记帐分录。ID:[177] 差异借方 - 贷方:[3.5]”
3.5 在我的单位价格中。
我的代码如下:
payment_move = self.env['account.move'].create({
'type': 'in_invoice',
'partner_id': self.client.id,
})
payment_move.invoice_line_ids.create({'move_id': payment_move.id,
'quantity': 1.0,
'price_unit': 3.5,
'account_id': self.env['account.account'].search(
[('user_type_id', '=', self.env.ref('account.data_account_type_expenses').id)], limit=1).id})
提前致谢。