Antonio Espinosa
9 years ago
6 changed files with 258 additions and 8 deletions
-
78pos_pricelist/README.rst
-
4pos_pricelist/__openerp__.py
-
25pos_pricelist/data/pos_order.yml
-
110pos_pricelist/models/point_of_sale.py
-
36pos_pricelist/report/report_receipt.xml
-
11pos_pricelist/views/point_of_sale_view.xml
@ -0,0 +1,25 @@ |
|||||
|
# -*- 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/>. |
||||
|
# |
||||
|
############################################################################## |
||||
|
|
||||
|
- !function {model: pos.order, name: _install_tax_detail} |
@ -0,0 +1,36 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<openerp> |
||||
|
<data> |
||||
|
|
||||
|
<template id="report_receipt" |
||||
|
inherit_id="point_of_sale.report_receipt" |
||||
|
name="Add taxes detail"> |
||||
|
<xpath expr="//div[@class='page']" position="inside"> |
||||
|
<table class="table table-condensed"> |
||||
|
<thead> |
||||
|
<tr> |
||||
|
<th>Tax</th> |
||||
|
<th class="text-right">Base</th> |
||||
|
<th class="text-right">Amount</th> |
||||
|
</tr> |
||||
|
</thead> |
||||
|
<tbody> |
||||
|
<tr t-foreach="o.taxes" t-as="tax"> |
||||
|
<td> |
||||
|
<span t-esc="tax.name"/> |
||||
|
</td> |
||||
|
<td class="text-right"> |
||||
|
<span t-esc="formatLang(tax.base, currency_obj=res_company.currency_id)"/> |
||||
|
</td> |
||||
|
<td class="text-right"> |
||||
|
<span t-esc="formatLang(tax.amount, currency_obj=res_company.currency_id)"/> |
||||
|
</td> |
||||
|
</tr> |
||||
|
</tbody> |
||||
|
</table> |
||||
|
</xpath> |
||||
|
</template> |
||||
|
|
||||
|
|
||||
|
</data> |
||||
|
</openerp> |
Write
Preview
Loading…
Cancel
Save
Reference in new issue