my database value is 6205545687155.00000000
when I create journal entry by the create method of xmlrpc , the value in odoo change to 6205545687155.000977
my python code :
debit_journal_item = {
'move_id': journal_entry_id,
'account_id': 3095,
'amount_currency': float(item[1]),
'currency_id': item[0],
'analytic_account_id': 89,
'debit': float(item[2])
}
journal_items.append(debit_journal_item)models.execute_kw(db_name, uid, pwd, 'account.move.line', 'create', [journal_items])