跳至内容
菜单
此问题已终结
2 回复
3183 查看

Hello,

The following issue is already known on GitHub (https://github.com/odoo/odoo/issues/10855). As there is no movement I wanted to ask this community if someone has an idea on how to fix the following issue:

It's not possible for accountant to deliver VAT declaration if PoS is used:

Steps to reproduce on Odoo9:

  1. Create a Product with default demo sale and purchase VAT (15%) ;
  2. Open a PoS session;
  3. Sell the product (qty = 1) ; pay the Order ;
  4. Close the session and post entries;
  5. Check generated sale accounting entries ; Open the move.line related to the sale.


Current behavior:

  • 'tax_ids' is not defined

Expected behavior:

  • 'tax_ids' = the vat of the product

I identified the following code snippet as potential problem:

point_of_sale/point_of_sale.py

insert_data('product', {
'name': name,
'quantity': line.qty,
'product_id': line.product_id.id,
'account_id': income_account,
'analytic_account_id': self._prepare_analytic_account(cr, uid, line, context=context),
'credit': ((amount>0) and amount) or 0.0,
'debit': ((amount<0) and -amount) or 0.0,
'partner_id': order.partner_id and self.pool.get("res.partner")._find_accounting_partner(order.partner_id).id or False
})


We suppose by adding "tax_ids" it should work:

'tax_ids': tax_var,

The only difficulty we have is in getting the variable for the tax_ids. 


Does anybody of you have an idea? 


形象
丢弃
编写者 最佳答案

After I sent a message to the official GitHub Odoo Repository, I received the Bugfix: https://github.com/odoo/odoo/commit/150bf7dba650bf149720f5e2ac32d42543a672f9

I made some tests and it seems to work perfectly :-) ^^


形象
丢弃
相关帖文 回复 查看 活动
1
11月 24
1579
1
4月 24
2106
0
2月 24
2040
1
12月 23
1556
0
1月 24
260