Explorar o código

Módulo para impresión de factura de venta Flashnet

sebas %!s(int64=3) %!d(string=hai) anos
achega
822df5eb7e

+ 22 - 0
__init__.py

@@ -0,0 +1,22 @@
+# -*- encoding: utf-8 -*-
+#################################################################################
+#                                                                               #
+#                                                                               #
+#    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/>.      #
+#                                                                               #
+#################################################################################
+###################################################################################
+# Product Brand is an Openobject module wich enable Brand management for products #
+###################################################################################
+from . import factura_venta_flashnet, account_invoice, res_currency, report_reciboenfactura

BIN=BIN
__init__.pyc


+ 42 - 0
__openerp__.py

@@ -0,0 +1,42 @@
+# -*- encoding: utf-8 -*-
+#################################################################################
+#                                                                               #
+#                                                                               #
+#    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/>.      #
+#                                                                               #
+#################################################################################
+###################################################################################
+# Product features is an Openobject module wich enable features management for products #
+###################################################################################
+{
+    'name': 'Factura Venta Legal flashnet',
+    'version': '0.1',
+    'category': 'Product',
+    'description': """
+Factura Venta Legal flashnet
+
+Formato para imprimir la factura legal de flashnet
+
+    """,
+    'author': 'flashnet/Sebastian Penayo',
+    'website': 'http://www.flashnet.com',
+    'depends': ['base','account', 'eiru_invoiceid_voucher'],
+    'data': [
+        'factura_venta_flashnet.xml',
+        'account_invoice_view.xml',
+        'report_reciboenfactura.xml',
+        'res_currency_view.xml'
+    ],
+    'installable': True,
+}

+ 41 - 0
account_invoice.py

@@ -0,0 +1,41 @@
+# -*- encoding: utf-8 -*-
+#################################################################################
+#                                                                               #
+#                                                                               #
+#    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/>.      #
+#                                                                               #
+#################################################################################
+
+from openerp import models, fields, api
+
+class account_invoice(models.Model):
+    _inherit = 'account.invoice'
+    _name = 'account.invoice'
+
+    contado = fields.Boolean('Contado')
+    credito = fields.Boolean('Crédito')
+
+    _defaults = {
+        'contado': True
+    }
+
+    @api.one
+    @api.onchange('credito')
+    def cambiar_estado_credito(self):
+        self.contado = not self.credito
+
+    @api.one
+    @api.onchange('contado')
+    def cambiar_estado_contado(self):
+        self.credito = not self.contado

BIN=BIN
account_invoice.pyc


+ 17 - 0
account_invoice_view.xml

@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<openerp>
+    <data>
+        <record id="account_invoice_cred_cont" model="ir.ui.view">
+            <field name="name">account.invoice.cred.cont</field>
+            <field name="model">account.invoice</field>
+            <field name="inherit_id" ref="account.invoice_form" />
+            <field name="arch" type="xml">
+                <field name="fiscal_position" position="after">
+                        <field name="contado"/>
+                        <field name="credito"/>
+                </field>
+            </field>
+        </record>
+    </data>
+</openerp>

+ 30 - 0
factura_venta_flashnet.py

@@ -0,0 +1,30 @@
+from openerp import api, models
+import datetime
+from num2words import num2words
+
+class report_factura_flashnet(models.AbstractModel):
+    _name = 'report.factura_venta_flashnet.report_factura_flashnet'
+
+    @api.multi
+    def render_html(self, data=None):
+        report_obj = self.env['report']
+        report = report_obj._get_report_from_name('factura_venta_flashnet.report_factura_flashnet')
+        docargs = {
+            'doc_ids': self._ids,
+            'doc_model': report.model,
+            'docs': self.env[report.model].browse(self._ids),
+            'convertir':self.convertir,
+            'calcular_precio':self.calcular_precio,
+        }
+        return report_obj.render('factura_venta_flashnet.report_factura_flashnet', docargs)
+
+    def convertir(self,nro,moneda):
+        letra = num2words(nro,lang="es")
+        letra = letra.capitalize()
+        if not moneda:
+            moneda=''
+        letra = letra +' '+moneda
+        return letra
+
+    def calcular_precio(self,precio):
+        return (precio*1.1)

+ 302 - 0
factura_venta_flashnet.xml

@@ -0,0 +1,302 @@
+<?xml version="1.0" encoding="utf-8"?>
+<openerp>
+<data>
+
+     <report id="factura_venta_flashnet"
+        model="account.invoice"
+        string="Factura Legal"
+        report_type="qweb-html"
+        name="factura_venta_flashnet.report_factura_flashnet"
+        file="factura_venta_flashnet.report_factura_flashnet"
+     />
+
+    <template id="report_header_custom" inherit_id="report.external_layout_header">
+         <xpath expr="//div[@class='header']" position="replace">
+            <div class ="header">
+            </div>
+         </xpath>
+    </template>
+
+    <template id="external_layout_footer" inherit_id="report.external_layout_footer">
+        <xpath expr="//div[@class='footer']"  position="replace">
+            <div class ="footer">
+            </div>
+        </xpath>
+    </template>
+
+    <template id="report_factura_flashnet">
+        <t t-call="report.html_container">
+            <t t-call="report.external_layout">
+			    <t t-foreach="[1,2,3]" t-as="i">
+                <div class="page">
+                    <style type="text/css">
+                        body{
+                            font-size: 2.9mm;
+                            font-family: Arial Black, Helvetica;
+                        }
+                        div{
+                            padding: 0px;
+                        }
+                        .pagina{
+                            width:19.3cm;
+                        }
+                        .logo{
+                            height: 0.3cm;
+                            width: 100%;
+                            top: 0px;
+                        }
+                        .fecha_emision_data{
+                            width: 11.5cm;
+                            padding-left: 6.3cm;
+                            float: left;
+                            min-height: 0.5cm;
+                        }
+                        .contado_x{
+                            width: 1.8cm;
+                            float: left;
+                            padding-left: 9cm;
+                            min-height: 0.5cm;
+                        }
+                        .credito_x{
+                            width: 1.8cm;
+                            float: left;
+                            padding-left: 1.6cm;
+                            min-height: 0.5cm;
+                        }
+                        .linea2{
+                            position: relative;
+                            top: -0.12cm;
+                            min-height: 0.5cm;
+                         }
+                        .razon_data{
+                            width: 15cm;
+                            float: left;
+                            padding-left: 6.9cm;
+                            min-height: 0.4cm;
+                        }
+                        .ruc_data{
+                            width: 5.5cm;
+                            float: left;
+                            padding-left: 0.2cm;
+                            min-height: 0.5cm;
+                        }
+                        .linea3{
+                            position: relative;
+                            top: -0.12cm;
+                            min-height: 0.3cm;
+                         }
+                        .direccion_data{
+                            width: 14cm;
+                            float: left;
+                            padding-left: 7cm;
+                            min-height: 0.4cm;
+                        }
+                        .linea4{
+                            position: relative;
+                            top: -0.12cm;
+                            min-height: 0.3cm;
+                         }
+                        .telefono_data{
+                            width: 10cm;
+                            float: left;
+                            padding-left: 6.9cm;
+                            min-height: 0.4cm;
+                        }
+                        .linea5{
+                            position: relative;
+                            top: -0.12cm;
+                            min-height: 0.4cm;
+                         }
+                        .contado_x{
+                            width: 1.8cm;
+                            float: left;
+                            padding-left: 9cm;
+                            min-height: 0.4cm;
+                        }
+                        .credito_x{
+                            width: 1cm;
+                            float: left;
+                            padding-left: 1.4cm;
+                            min-height: 0.4cm;
+                        }
+
+                        .nota_remision_data{
+                            width: 4cm;
+                            float: left;
+                            padding-left: 2.5cm;
+                            min-height: 0.4cm;
+                        }
+
+                        .cab-articulos{
+                            height: 0.9cm;
+                            clear: both;
+                        }
+                        .articulos{
+                            height: 4.5cm;
+                        }
+                        .art-col1{
+                            width:0.4cm;
+                            text-align: center;
+                        }
+                        .art-col2{
+							              padding-left: 0.7cm;
+                            width:1cm;
+                            text-align: center;
+                        }
+                        .art-col3{
+                            padding-left: 0.3cm;
+                            width:9.8cm;
+                        }
+                        .art-col4{
+                            width:0.9cm;
+                            text-align: right;
+                        }
+                        .art-col5{
+                            width:2.8cm;
+                            text-align: right;
+                        }
+                        .art-col6{
+                            width:2.7cm;
+                            text-align: right;
+                        }
+                        .art-col7{
+                            width:1.5cm;
+                            text-align: right;
+                        }
+						           .logo1{
+                            height: 3cm;
+                            width: 100%;
+                            top: 0px;
+                        }
+                        .subtotal_data{
+                            width: 6cm;
+                            float: left;
+                            padding-top: 0.002cm;
+                            padding-left: 2.3cm;
+                            min-height: 0.2cm;
+                        }
+                        .subtotal_excentas{
+                            width: 2cm;
+                            float: left;
+                            text-align: right;
+							              padding-left: 10cm;
+                            padding-top: 0.7cm;
+                            min-height: 0.2cm;
+                        }
+                        .subtotal_5{
+                            width: 1cm;
+                            float: left;
+							              padding-left: 1cm;
+                            text-align: right;
+                            padding-top: 0.7cm;
+                            min-height: 0.2cm;
+                        }
+                        .subtotal_10{
+                            width: 2cm;
+                            float: left;
+							              padding-left: 1cm;
+                            text-align: right;
+                            padding-top: 0.7cm;
+                            min-height: 0.2cm;
+                        }
+                        .total_pagar_data{
+                            width: 17.5cm;
+                            float: left;
+                            padding-top: 0.01mm;
+                            padding-left: 5cm;
+                            min-height: 0.3cm;
+                        }
+                        .iva_5_data{
+                            width: 5cm;
+                            float: left;
+                            padding-top: 0.6cm;
+                            padding-left: 4.7cm;
+                            min-height: 0.25cm;
+                        }
+                        .iva_10_data{
+                            width: 5cm;
+                            float: left;
+                            padding-top: 0.6cm;
+                            padding-left: 3.8cm;
+                            min-height: 0.25cm;
+                        }
+                        .iva_total_data{
+                            width: 7cm;
+                            float: left;
+                            padding-top: 0.6cm;
+                            padding-left: 4.8cm;
+                            min-height: 0.25cm;
+                        }
+
+                    </style>
+                    <t t-foreach="docs" t-as="o">
+                        <div class="pagina">
+                            <div class="logo"> </div>
+                            <div class="linea1">
+                                <div class="fecha_emision_data">San Estanislao,<span t-field="o.date_invoice" t-field-options='{"format": "dd MMMM yyyy"}'/></div>
+                                <div class="ruc_data"><span t-field="o.partner_id.ruc"/></div>
+                            </div>
+
+                            <div class="linea2">
+                                <div class="razon_data"><span t-field="o.partner_id.name"/></div>
+                            </div>
+
+                            <div class="linea3">
+                                <div class="direccion_data">
+                                    <t t-f="o.partner_id.street"><span t-field="o.partner_id.street"/> <span t-field="o.partner_id.street2"/></t>
+                                    <t t-f="not o.partner_id.street"> </t>
+                                </div>
+                            </div>
+
+                            <div class="linea4">
+                                <div class="telefono_data"><span t-field="o.partner_id.phone"/></div>
+                            </div>
+							              <div class="linea5">
+                                <div class="nota_remision_data"> </div>
+								                <div class="contado_x">
+                                    <t t-if="o.contado == True">x</t>
+                                    <t t-if="o.contado == False"></t>
+                                </div>
+                                <div class="credito_x">
+                                    <t t-if="o.credito == True">x</t>
+                                    <t t-if="o.credito == False"></t>
+                                </div>
+								  <div class="nota_remision_data"> </div>
+                            </div>
+                            <div class="cab-articulos"> </div>
+                            <div class="articulos">
+                                <table class="tab-articulos">
+                                    <tr t-foreach="o.invoice_line" t-as="l">
+                                        <td class="art-col1"><span t-esc="'{0:,.0f}'.format(l.quantity)"/></td>
+                                        <td class="art-col2"></td>
+                                        <td class="art-col3"><span t-field="l.name"/></td>
+                                        <td class="art-col4"><span t-esc="'{0:,.0f}'.format(l.price_unit)"/></td>
+                                        <td class="art-col5"> </td>
+                                        <td class="art-col6"> </td>
+                                        <td class="art-col7"><span t-esc="'{0:,.0f}'.format(l.price_unit*l.quantity)"/></td>
+                                   </tr>
+                                </table>
+                            </div>
+
+                             <div class="subtotal_data"> </div>
+                             <div class="subtotal_excentas"> </div>
+                             <div class="subtotal_5"> </div>
+                             <td style="font-size:10px;">
+                                <div class="subtotal_10"><span t-esc="'{0:,.0f}'.format(o.amount_total)"/></div>
+                            </td>
+                             <div class="total_pagar_data"><span t-esc="convertir(o.amount_total,o.currency_id.en_letras)"/></div>
+
+                             <div class="iva_5_data"> </div>
+                             <div class="iva_10_data"><span t-esc="'{0:,.0f}'.format(o.amount_tax)"/></div>
+                             <div class="iva_total_data"><span t-esc="'{0:,.0f}'.format(o.amount_tax)"/></div>
+                        </div>
+                       <div class="logo1"> </div>
+                    </t>
+                </div>
+				</t>
+            </t>
+        </t>
+    </template>
+
+</data>
+</openerp>

+ 29 - 0
report_reciboenfactura.py

@@ -0,0 +1,29 @@
+from openerp import api, models
+from num2words import num2words
+
+class report_recibonenfactura(models.AbstractModel):
+    _name = 'report.factura_venta_flashnet.reciboenfactura_flashnet'
+
+    @api.multi
+    def render_html(self, data=None):
+        report_obj = self.env['report']
+        report = report_obj._get_report_from_name('factura_venta_flashnet.reciboenfactura_flashnet')
+        docargs = {
+            'doc_ids': self._ids,
+            'doc_model': report.model,
+            'docs': self.env[report.model].browse(self._ids),
+            'convertir':self.convertir,
+            'calcular_precio':self.calcular_precio,
+        }
+        return report_obj.render('factura_venta_flashnet.reciboenfactura_flashnet', docargs)
+
+    def convertir(self,nro,moneda):
+        letra = num2words(nro,lang="es")
+        letra = letra.capitalize()
+        if not moneda:
+            moneda=''
+        letra = letra +' '+moneda
+        return letra
+
+    def calcular_precio(self,precio):
+        return (precio*1.1)

BIN=BIN
report_reciboenfactura.pyc


+ 343 - 0
report_reciboenfactura.xml

@@ -0,0 +1,343 @@
+<?xml version="1.0" encoding="utf-8"?>
+<openerp>
+<data>
+
+
+	 <report id="informe_reciboenfactura_flashnet"
+        model="account.invoice"
+        string="Recibo en factura"
+        report_type="qweb-pdf"
+        name="factura_venta_flashnet.reciboenfactura_flashnet"
+        file="factura_venta_flashnet.reciboenfactura_flashnet"
+     />
+
+	<record id="paperformat_lowmargin" model="report.paperformat">
+          <field name="name">factura</field>
+          <field name="default" eval="True" />
+          <field name="format">custom</field>
+          <field name="page_height">140</field>
+          <field name="page_width">210</field>
+          <field name="orientation">Portrait</field>
+          <field name="margin_top">3</field>
+          <field name="margin_bottom">2</field>
+          <field name="margin_left">1</field>
+          <field name="margin_right">1</field>
+          <field name="header_line" eval="False" />
+          <field name="header_spacing">3</field>
+          <field name="dpi">90</field>
+    </record>
+
+
+	<record id="factura_venta_flashnet.informe_reciboenfactura_flashnet" model="ir.actions.report.xml">
+		<field name="paperformat_id" ref="factura_venta_flashnet.paperformat_lowmargin" />
+	</record>
+
+	<template id="reciboenfactura_flashnet">
+		<t t-call="report.html_container">
+		    <!-- <t t-foreach="[1]" t-as="i"> -->
+						<div class="page">
+								<style type="text/css">
+										body{
+												font-size: 4.0mm;
+												font-family: Arial;
+												font-weight: bold;
+										}
+										body1{
+												font-size: 4.3mm;
+												font-weight: bold;
+												font-family: Calibri;
+										}
+										div{
+												padding: 0px;
+										}
+										.pagina{
+												width:19.5cm;
+												padding-left: 2cm;
+												padding-right: 1cm;
+												height: 14cm;
+										}
+										.titulo{
+											width: 19.2cm;
+											text-align: center;
+											padding-top: 2.5cm;
+											margin-left: 0.8cm;
+											width: 100%;
+											min-height: 0.9cm;
+										}
+										.descripcion1{
+												width: 11.2cm;
+												font-size: 15px;
+												padding-top: 0.5cm;
+												float: left;
+												min-height: 0.7cm;
+										}
+
+										.descripcion2{
+												width: 13cm;
+												font-size: 15px;
+												float: left;
+												min-height: 0cm;
+										}
+
+										.descripcion3{
+												width: 15cm;
+												font-size: 15px;
+												float: left;
+												min-height: 0cm;
+										}
+										.descripcion4{
+												width: 15cm;
+												font-size: 15px;
+												float: left;
+												min-height: 0.3cm;
+										}
+										.email{
+												width: 13cm;
+												font-size: 15px;
+												float: left;
+												min-height: 0.3cm;
+										}
+
+										.table-condensed>tbody>tr>td {
+												padding: 1px !important;
+										}
+										.divisoria{
+												height: 0.1cm;
+												clear: both;
+										}
+										.linea1{
+												position: relative;
+												top: -0.12cm;
+												min-height: 0.5cm;
+										 }
+										.fecha_emision_data{
+												width: 8.5cm;
+												font-size: 4.0mm;
+												float: left;
+												min-height: 0.5cm;
+										}
+										.number{
+												width: 7cm;
+												float: left;
+												font-size: 4.0mm;
+												padding-left: 0.2cm;
+												min-height: 0.5cm;
+										}
+										.linea2{
+												position: relative;
+												top: -0.12cm;
+												min-height: 0.5cm;
+										 }
+										.razon_data{
+												width: 12cm;
+												font-size: 4.0mm;
+												float: left;
+												min-height: 0.4cm;
+										}
+										.linea3{
+												position: relative;
+												top: -0.12cm;
+												min-height: 0.5cm;
+										 }
+										.ruc{
+												width: 7cm;
+												float: left;
+												font-size: 4.0mm;
+												min-height: 0.4cm;
+										}
+										.due{
+												width: 7cm;
+												float: left;
+												font-size: 4.0mm;
+												min-height: 0.4cm;
+										}
+										.linea4{
+												position: relative;
+												top: -0.12cm;
+												min-height: 0.3cm;
+										 }
+										 .street{
+												 width: 15cm;
+												 float: left;
+												 font-size: 4.0mm;
+												 min-height: 0.4cm;
+										 }
+										 .mobile{
+												 width: 7cm;
+												 float: left;
+												 font-size: 4.0mm;
+												 min-height: 0.4cm;
+										 }
+										 .linea5{
+ 												position: relative;
+ 												top: -0.12cm;
+ 												min-height: 0.3cm;
+ 										 }
+										 .vendor{
+												 width: 8cm;
+												 float: left;
+												 font-size: 4.0mm;
+												 min-height: 0.4cm;
+										 }
+
+										 .fechapago{
+												 width: 8cm;
+												 float: left;
+												 font-size: 4.0mm;
+												 min-height: 0.4cm;
+										 }
+
+										.cab-articulos{
+												height: 0.4cm;
+												clear: both;
+										}
+										.articulos{
+												height: 4.5cm;
+												width: 14cm;
+										}
+										.art-col1{
+												width:1.9cm;
+												text-align: center;
+										}
+										.art-col2{
+												padding-left: 0.3cm;
+												width:12cm;
+										}
+										.art-col3{
+												padding-left: 0.3cm;
+												text-align: right;
+												width:3cm;
+										}
+										.art-col4{
+												width:3.4cm;
+												text-align: right;
+										}
+										.art-col5{
+												width:3.4cm;
+												text-align: right;
+										}
+
+										.total_pagar_data{
+												width: 17.5cm;
+												float: left;
+												font-size: 4.0mm;
+												padding-top: 0.01mm;
+												min-height: 0.3cm;
+										}
+
+								</style>
+
+								<t t-foreach="docs" t-as="o">
+										<div class="pagina">
+                        <div class="divisoria" ></div>
+												<div style="border:0.3px solid #000;"></div>
+												<div class="titulo" >
+														<h4 class="text-center"><strong>RECIBO DE DINERO Nº: <span t-field="o.name"/></strong></h4>
+														<h3 class="text-center">Flash Net</h3>
+												</div>
+
+												<div style="border:0.3px solid #000;"></div>
+												<div class="divisoria"> </div>
+												<div class="linea1">
+														<div class="fecha_emision_data"><b>FECHA: </b><span t-field="o.date_invoice" t-field-options='{"format": "dd MMMM yyyy"}'/></div>
+														<div class="number"><strong>REF. VENTA: </strong><span t-field="o.name"/></div>
+												</div>
+
+												<div class="linea2">
+														<div class="razon_data"><b>CLIENTE: </b><span t-field="o.partner_id.name"/></div>
+												</div>
+
+												<div class="linea3">
+														<div class="ruc"><b>R.U.C. Nº: </b><span t-field="o.partner_id.ruc"/></div>
+														<div class="due"><b>Vencimiento: </b><span t-field="o.date_due"/></div>
+												</div>
+
+												<div class="linea4">
+													  <div class="street"><b>DIRECCIÓN: </b><span t-field="o.partner_id.street"/></div>
+														<div class="mobile"><b>TÉLEFONO: </b><span t-field="o.partner_id.mobile"/></div>
+												</div>
+	                      <div class="linea5">
+														<div class="vendor"><b>COBRADOR: </b><span t-field="o.employee_id"/></div>
+														<div class="fechapago"><b>FECHA DE PAGO: </b></div>
+												</div>
+
+												<div class="divisoria"> </div>
+												<div style="border:0.3px solid #000;"></div>
+												<div class="divisoria"> </div>
+
+												<table class="table table-condensed table-bordered">
+														<thead>
+																<tr>
+																		<th class="art-col1">CODIGO</th>
+																		<th class="art-col2">DESCRIPCION</th>
+																		<th class="art-col3">CANT.</th>
+																		<th class="art-col4">P. UNIT </th>
+																		<th class="art-col5">SUBTOTAL</th>
+																</tr>
+													 </thead>
+													 <tbody class="sale_tbody">
+															 <t t-set="valor_mat" t-value="0"/>
+															 <t t-set="qty" t-value="0"/>
+																<tr t-foreach="o.invoice_line" t-as="l">
+																		<td class="art-col1">
+																				<span t-field="l.product_id.default_code"/>
+																		</td>
+																		<td class="art-col2">
+																			 <span t-field="l.product_id"/>
+																		</td>
+																		<td class="art-col3">
+																				<span t-esc= "'{0:,.0f}'.format(int(l.quantity)).replace(',', '.')">
+																						<span t-value="qty + l.quantity"/></span>
+																						<t t-set="qty" t-value="qty + l.quantity"/>
+																		</td>
+																		<td class="art-col4">
+																				<span t-esc="'{0:,.0f}'.format(l.price_unit)"/>
+																		</td>
+
+																		<td class="art-col5">
+																				<span t-esc= "'{0:,.0f}'.format((l.quantity * l.price_unit)).replace(',', '.')">
+																						<span t-value="valor_mat+(l.quantity * l.price_unit)"/></span>
+																						<t t-set="valor_mat" t-value="valor_mat+(l.quantity * l.price_unit)"/>
+																		</td>
+																</tr>
+
+														</tbody>
+												</table>
+												<div class="row">
+														<div class="col-xs-12 pull-right">
+																<table class="table table-condensed">
+																		<td class="art-col1"><b>Totales: </b></td>
+																		<td class="art-col2"></td>
+																		<td class="art-col3">
+																				<span t-esc="'{0:,.0f}'.format(int(qty)).replace(',', '.')"></span>
+																		</td>
+																		<td class="art-col4"></td>
+																		<td class="art-col5">
+																				<span t-esc="'{0:,.0f}'.format((valor_mat)).replace(',', '.')"></span>
+																		</td>
+																</table>
+														 </div>
+												</div>
+
+												<div class="row">
+														<div class="col-xs-12 pull-right">
+																<table class="table table-condensed">
+
+																		<tr class="border-black">
+																				<td><div class="total_pagar_data"><b>Total a pagar: </b><span t-esc="convertir(o.amount_total,o.currency_id.en_letras)"/>	Gs. <span t-esc="'{0:,.0f}'.format(o.amount_total)"/></div></td>
+
+																		</tr>
+																</table>
+
+														</div>
+
+												</div>
+										</div>
+                    <p style="page-break-after:always"></p>
+								</t>
+						</div>
+		    </t>
+
+	   </template>
+</data>
+</openerp>

+ 26 - 0
res_currency.py

@@ -0,0 +1,26 @@
+# -*- encoding: utf-8 -*-
+#################################################################################
+#                                                                               #
+#                                                                               #
+#    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/>.      #
+#                                                                               #
+#################################################################################
+
+from openerp import models, fields
+
+class res_currency(models.Model):
+    _inherit = 'res.currency'
+    _name = 'res.currency'
+
+    en_letras = fields.Char('En letras')

BIN=BIN
res_currency.pyc


+ 16 - 0
res_currency_view.xml

@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<openerp>
+    <data>
+        <record id="res_currency_en_letras" model="ir.ui.view">
+            <field name="name">res.currency.en.letras</field>
+            <field name="model">res.currency</field>
+            <field name="inherit_id" ref="base.view_currency_form" />
+            <field name="arch" type="xml">
+                <field name="symbol" position="after">
+                    <field name="en_letras"/>
+                </field>
+            </field>
+        </record>
+    </data>
+</openerp>

BIN=BIN
static/description/icon.png