콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
2 답글
3344 화면

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 :-) ^^


아바타
취소
베스트 답변

Hopefully something happens soon: https://github.com/odoo/odoo/issues/10855#issuecomment-227012302

아바타
취소
관련 게시물 답글 화면 활동
1
11월 24
1796
1
4월 24
2297
0
2월 24
2245
1
12월 23
1696
0
1월 24
260