Browse Source

[FIX] init calculation of taxes

pull/44/head
Javier Iniesta 9 years ago
parent
commit
0fb76b9b6f
  1. 2
      pos_pricelist/__init__.py
  2. 1
      pos_pricelist/__openerp__.py
  3. 29
      pos_pricelist/data/pos_order.yml

2
pos_pricelist/__init__.py

@ -17,6 +17,7 @@
#
##############################################################################
from . import models
from openerp import SUPERUSER_ID
def set_pos_line_taxes(cr, registry):
@ -28,3 +29,4 @@ def set_pos_line_taxes(cr, registry):
join product_taxes_rel rel on rel.prod_id = l.product_id
join account_tax t on rel.tax_id = t.id
where t.company_id = o.company_id""")
registry['pos.order']._install_tax_detail(cr, SUPERUSER_ID)

1
pos_pricelist/__openerp__.py

@ -37,7 +37,6 @@ New feature for the Point Of Sale:
"views/point_of_sale_view.xml",
"report/report_receipt.xml",
"security/ir.model.access.csv",
"data/pos_order.yml",
],
'demo': [
'demo/pos_pricelist_demo.yml',

29
pos_pricelist/data/pos_order.yml

@ -1,29 +0,0 @@
# -*- coding: utf-8 -*-
# Python source code encoding : https://www.python.org/dev/peps/pep-0263/
##############################################################################
#
# OpenERP, Open Source Management Solution
# This module copyright :
# (c) 2015 Antiun Ingenieria, SL (Madrid, Spain, http://www.antiun.com)
# Antonio Espinosa <antonioea@antiun.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
-
!context
noupdate: 1
- !function {model: pos.order, name: _install_tax_detail}
Loading…
Cancel
Save