Merge lp:~inddiana/diana-addons/reconciliacion_cheques_anulados into lp:diana-addons

Proposed by Deivis Argenis Laya Vivas
Status: Needs review
Proposed branch: lp:~inddiana/diana-addons/reconciliacion_cheques_anulados
Merge into: lp:diana-addons
Diff against target: 17124 lines (+16600/-0)
94 files modified
account_voucher_multi_partner/__init__.py (+26/-0)
account_voucher_multi_partner/__openerp__.py (+46/-0)
account_voucher_multi_partner/i18n/es.po (+274/-0)
account_voucher_multi_partner/i18n/es_VE.po (+274/-0)
account_voucher_multi_partner/voucher_multi_partner.py (+245/-0)
account_voucher_multi_partner/voucher_multi_partner_view.xml (+363/-0)
account_voucher_patch/__init__.py (+24/-0)
account_voucher_patch/__openerp__.py (+48/-0)
account_voucher_patch/account_voucher.py (+337/-0)
account_voucher_patch/i18n/es.po (+46/-0)
account_voucher_patch/i18n/es_VE.po (+46/-0)
bank_management/__init__.py (+35/-0)
bank_management/__openerp__.py (+115/-0)
bank_management/check_book_request_sequence.xml (+24/-0)
bank_management/data/banesco_data.xml (+54/-0)
bank_management/data/bank_management_data.xml (+11/-0)
bank_management/data/bicentenario_data.xml (+64/-0)
bank_management/data/caribe_bank_data.xml (+57/-0)
bank_management/data/exterior_bank_data.xml (+58/-0)
bank_management/data/fondo_comun_bank_data.xml (+58/-0)
bank_management/data/industrial_data.xml (+60/-0)
bank_management/data/mercantil_bank_data.xml (+58/-0)
bank_management/data/res.bank.xml (+216/-0)
bank_management/data/venezuela_bank_data.xml (+59/-0)
bank_management/demo/demo.xml (+14/-0)
bank_management/i18n/es.po (+2541/-0)
bank_management/i18n/es_VE.po (+2543/-0)
bank_management/model/__init__.py (+42/-0)
bank_management/model/account.py (+44/-0)
bank_management/model/account_voucher_payment.py (+450/-0)
bank_management/model/bank.py (+75/-0)
bank_management/model/check_book.py (+542/-0)
bank_management/model/check_book_request.py (+215/-0)
bank_management/model/check_book_wizard.py (+56/-0)
bank_management/model/check_note.py (+250/-0)
bank_management/model/motive_cancel_voucher_pay_support.py (+16/-0)
bank_management/model/res_company.py (+55/-0)
bank_management/model/res_partner_bank.py (+144/-0)
bank_management/model/voucher_pay_support.py (+231/-0)
bank_management/report/__init__.py (+35/-0)
bank_management/report/check.py (+127/-0)
bank_management/report/check.rml (+36/-0)
bank_management/report/numero_a_texto.py (+119/-0)
bank_management/report/report_request_check_book.rml (+127/-0)
bank_management/report/report_voucher.py (+142/-0)
bank_management/report/report_voucher.rml (+288/-0)
bank_management/report/report_voucher_amount.py (+158/-0)
bank_management/report/report_voucher_amount.rml (+573/-0)
bank_management/report/reporte_check_book.py (+188/-0)
bank_management/report/reporte_check_book.rml (+368/-0)
bank_management/report/reporte_check_book_request.py (+132/-0)
bank_management/report/reporte_wizard_general.py (+301/-0)
bank_management/report/reporte_wizard_general.rml (+413/-0)
bank_management/security/account_voucher_group.xml (+10/-0)
bank_management/security/ir.model.access.csv (+32/-0)
bank_management/view/bank_management_inherits.xml (+184/-0)
bank_management/view/bank_management_inherits_ventas.xml (+65/-0)
bank_management/view/bank_management_menu.xml (+19/-0)
bank_management/view/check_book_request_view.xml (+117/-0)
bank_management/view/check_book_view.xml (+155/-0)
bank_management/view/check_note_view.xml (+112/-0)
bank_management/view/check_report.xml (+63/-0)
bank_management/view/motive_cancel_voucher_pay_support.xml (+59/-0)
bank_management/view/pay_order_contrapartida.xml (+341/-0)
bank_management/view/pay_order_view.xml (+349/-0)
bank_management/view/res_partner_bank_view.xml (+144/-0)
bank_management/view/voucher_pay_support_view.xml (+152/-0)
bank_management/wizard/__init__.py (+33/-0)
bank_management/wizard/cancel_voucher_pay_support.py (+464/-0)
bank_management/wizard/cancel_wizard.xml (+114/-0)
bank_management/wizard/chk_book_gral.py (+67/-0)
bank_management/wizard/chk_book_gral.xml (+63/-0)
bank_management/wizard/tmp/voucher_pay_support_wizard.py (+87/-0)
bank_management/wizard/voucher_pay_support_wizard_pay_order.py (+343/-0)
bank_management/wizard/voucher_pay_support_wizard_pay_order.xml (+193/-0)
l10n_ve_islr_validations/__init__.py (+2/-0)
l10n_ve_islr_validations/__openerp__.py (+42/-0)
l10n_ve_islr_validations/i18n/es.po (+57/-0)
l10n_ve_islr_validations/i18n/es_VE.po (+57/-0)
l10n_ve_islr_validations/model/__init__.py (+1/-0)
l10n_ve_islr_validations/model/account_voucher.py (+85/-0)
l10n_ve_iva_validations/__init__.py (+1/-0)
l10n_ve_iva_validations/__openerp__.py (+42/-0)
l10n_ve_iva_validations/i18n/es.po (+50/-0)
l10n_ve_iva_validations/i18n/es_VE.po (+50/-0)
l10n_ve_iva_validations/model/__init__.py (+1/-0)
l10n_ve_iva_validations/model/account_voucher.py (+83/-0)
l10n_ve_withholding_validations/__init__.py (+2/-0)
l10n_ve_withholding_validations/__openerp__.py (+43/-0)
l10n_ve_withholding_validations/i18n/es.po (+22/-0)
l10n_ve_withholding_validations/i18n/es_VE.po (+22/-0)
l10n_ve_withholding_validations/model/__init__.py (+1/-0)
l10n_ve_withholding_validations/model/account_voucher.py (+36/-0)
l10n_ve_withholding_validations/workflow/islr_iva_wh_validations.xml (+14/-0)
To merge this branch: bzr merge lp:~inddiana/diana-addons/reconciliacion_cheques_anulados
Reviewer Review Type Date Requested Status
[SISB] Edgar Rivero Pending
Review via email: mp+256355@code.launchpad.net

Description of the change

[MOD] Se agrego anulacion de cheques con reconciliacion y se añadio maestro para motivo de cancelacion

To post a comment you must log in.

Unmerged revisions

100. By Deivis Argenis Laya Vivas

[MOD] Se agrego anulacion de cheques con reconciliacion y se añadio maestro para motivo de cancelacion

99. By Deivis Argenis Laya Vivas

[MOD] Se agrego anulacion de cheques con reconciliacion y se añadio maestro para motivos de conciliacion

98. By Deivis Argenis Laya Vivas

[mod] Agregando opcion de Anulacion de Cheques con reconciliacion

97. By Aristóbulo Meneses

[FIX] res.partner.bank se cambia a required=False
en la declaración del modelo y se traslada a la vista.
Esto es necesario porque para procesar las transferencias
cada proveedor debe tener registradas cuentas bancarias
las cuales no pueden tener una cuenta contable y
un diario asociado obligatoriamente, se lleva a la vista
para mantener la obligatoriedad cuando se crean cuentas
bancarias para la compañía.

96. By Aristóbulo Meneses

[IMP] Cancelación de pagos, mejoras al código,
se elimina la orden de pago a cliente para
la devolución del pago y se genera el asiento
contable que corresponde.

95. By Aristóbulo Meneses

[FIX] se genera correctamente el pay support para
pagos por asiento contable

94. By Aristóbulo Meneses

[ADD] Vistas para ventas

93. By Aristóbulo Meneses

[FIX] Confirmación de retiro y pago de
cheques
Confirmación de pago de transferencias

92. By Aristóbulo Meneses

[FIX] al generar la proforma no se estaba
validando el pago

91. By Aristóbulo Meneses

[FIX] Se actualiza el nombre del attachment para los soportes
de pago, con el cambio en el campo m2o 'bank_id' por el related 'bank'
se intentaba establecer el nombre del adjunto referenciando al campo
incorrecto

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== added directory 'account_voucher_multi_partner'
2=== added file 'account_voucher_multi_partner/__init__.py'
3--- account_voucher_multi_partner/__init__.py 1970-01-01 00:00:00 +0000
4+++ account_voucher_multi_partner/__init__.py 2015-04-15 16:28:26 +0000
5@@ -0,0 +1,26 @@
6+# -*- coding: utf-8 -*-
7+##############################################################################
8+#
9+# OpenERP, Open Source Management Solution
10+# Copyright (C) 2004-20011S Tiny SPRL (<http://tiny.be>). All Rights Reserved
11+# This module was developen by Vauxoo Team:
12+# Coded by: javier@vauxoo.com
13+#
14+#
15+# This program is free software: you can redistribute it and/or modify
16+# it under the terms of the GNU Affero General Public License as
17+# published by the Free Software Foundation, either version 3 of the
18+# License, or (at your option) any later version.
19+#
20+# This program is distributed in the hope that it will be useful,
21+# but WITHOUT ANY WARRANTY; without even the implied warranty of
22+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23+# GNU Affero General Public License for more details.
24+#
25+# You should have received a copy of the GNU Affero General Public License
26+# along with this program. If not, see <http://www.gnu.org/licenses/>.
27+#
28+##############################################################################
29+
30+import voucher_multi_partner
31+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
32
33=== added file 'account_voucher_multi_partner/__openerp__.py'
34--- account_voucher_multi_partner/__openerp__.py 1970-01-01 00:00:00 +0000
35+++ account_voucher_multi_partner/__openerp__.py 2015-04-15 16:28:26 +0000
36@@ -0,0 +1,46 @@
37+# -*- coding: utf-8 -*-
38+##############################################################################
39+#
40+# OpenERP, Open Source Management Solution
41+# Copyright (C) 2004-20011S Tiny SPRL (<http://tiny.be>). All Rights Reserved
42+# This module was developen by Vauxoo Team:
43+# Coded by: javier@vauxoo.com
44+#
45+#
46+# This program is free software: you can redistribute it and/or modify
47+# it under the terms of the GNU Affero General Public License as
48+# published by the Free Software Foundation, either version 3 of the
49+# License, or (at your option) any later version.
50+#
51+# This program is distributed in the hope that it will be useful,
52+# but WITHOUT ANY WARRANTY; without even the implied warranty of
53+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
54+# GNU Affero General Public License for more details.
55+#
56+# You should have received a copy of the GNU Affero General Public License
57+# along with this program. If not, see <http://www.gnu.org/licenses/>.
58+#
59+##############################################################################
60+{
61+ "name" : "Account voucher multi partner",
62+ "version" : "0.1",
63+ "author" : "Vauxoo",
64+ "website" : "http://vauxoo.com",
65+ "category": 'Generic Modules/Accounting',
66+ "description": """
67+ This module extend account voucher funcionality allowed make payments or receipt
68+ from several partner
69+ """,
70+ 'init_xml': [],
71+ "depends" : ["account_voucher", "account_voucher_patch"],
72+ 'update_xml': [
73+ 'voucher_multi_partner_view.xml',
74+ ],
75+ 'demo_xml': [],
76+ 'test': [],
77+ 'installable': True,
78+ 'active': False,
79+}
80+
81+
82+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
83
84=== added directory 'account_voucher_multi_partner/i18n'
85=== added file 'account_voucher_multi_partner/i18n/es.po'
86--- account_voucher_multi_partner/i18n/es.po 1970-01-01 00:00:00 +0000
87+++ account_voucher_multi_partner/i18n/es.po 2015-04-15 16:28:26 +0000
88@@ -0,0 +1,274 @@
89+# Translation of OpenERP Server.
90+# This file contains the translation of the following modules:
91+# * account_voucher_multi_partner
92+#
93+msgid ""
94+msgstr ""
95+"Project-Id-Version: OpenERP Server 6.1beta\n"
96+"Report-Msgid-Bugs-To: \n"
97+"POT-Creation-Date: 2011-11-25 15:44+0000\n"
98+"PO-Revision-Date: 2011-11-25 15:44+0000\n"
99+"Last-Translator: <>\n"
100+"Language-Team: \n"
101+"MIME-Version: 1.0\n"
102+"Content-Type: text/plain; charset=UTF-8\n"
103+"Content-Transfer-Encoding: \n"
104+"Plural-Forms: \n"
105+
106+#. module: account_voucher_multi_partner
107+#: view:account.voucher:0
108+msgid "Customer Payment"
109+msgstr "Pago cliente"
110+
111+#. module: account_voucher_multi_partner
112+#: view:account.voucher:0
113+msgid "Payment Ref"
114+msgstr "Ref. pago"
115+
116+#. module: account_voucher_multi_partner
117+#: view:account.voucher:0
118+msgid "Group By..."
119+msgstr "Agrupar por..."
120+
121+#. module: account_voucher_multi_partner
122+#: view:account.voucher:0
123+msgid "State"
124+msgstr "Estado"
125+
126+#. module: account_voucher_multi_partner
127+#: view:account.voucher:0
128+msgid "Draft"
129+msgstr "Borrador"
130+
131+#. module: account_voucher_multi_partner
132+#: view:account.voucher:0
133+msgid "Set to Draft"
134+msgstr "Cambiar a borrador"
135+
136+#. module: account_voucher_multi_partner
137+#: model:ir.actions.act_window,name:account_voucher_multi_partner.action_vendor_multi_partner_receipt
138+#: model:ir.ui.menu,name:account_voucher_multi_partner.menu_action_vendor_multi_partner_receipt
139+msgid "Several Customer Payment"
140+msgstr "Pago a múltiples clientes"
141+
142+#. module: account_voucher_multi_partner
143+#: view:account.voucher:0
144+msgid "Draft Vouchers"
145+msgstr "Draft Vouchers"
146+
147+#. module: account_voucher_multi_partner
148+#: view:account.voucher:0
149+msgid "Bill Payment"
150+msgstr "Pago factura"
151+
152+#. module: account_voucher_multi_partner
153+#: view:account.voucher:0
154+msgid "Posted Vouchers"
155+msgstr "Comprobantes contabilizados"
156+
157+#. module: account_voucher_multi_partner
158+#: view:account.voucher:0
159+msgid "Payment Method"
160+msgstr "Método de pago"
161+
162+#. module: account_voucher_multi_partner
163+#: model:ir.actions.act_window,help:account_voucher_multi_partner.action_vendor_multi_partner_payment
164+msgid "The supplier payment form allows you to track the payment you do to your suppliers. When you select a supplier, the payment method and an amount for the payment, OpenERP will propose to reconcile your payment with the open supplier invoices or bills."
165+msgstr "El formulario de pago de proveedor le permite gestionar los pagos que hace a sus proveedores. Cuando selecciona un proveedor, el método de pago y el importe a pagar, OpenERP propondrá la reconciliación de su pago con las facturas de proveedor o recibos pendientes."
166+
167+#. module: account_voucher_multi_partner
168+#: view:account.voucher:0
169+msgid "Journal"
170+msgstr "Diario"
171+
172+#. module: account_voucher_multi_partner
173+#: code:addons/account_voucher_multi_partner/voucher_multi_partner.py:327
174+#, python-format
175+msgid "Invalid action !"
176+msgstr "!Acción invalida!"
177+
178+#. module: account_voucher_multi_partner
179+#: view:account.voucher:0
180+msgid "Residual"
181+msgstr "Residual"
182+
183+#. module: account_voucher_multi_partner
184+#: view:account.voucher:0
185+msgid "Internal Notes"
186+msgstr "Notas internas"
187+
188+#. module: account_voucher_multi_partner
189+#: view:account.voucher:0
190+msgid "Credits"
191+msgstr "Haber"
192+
193+#. module: account_voucher_multi_partner
194+#: view:account.voucher:0
195+msgid "Are you sure to unreconcile this record ?"
196+msgstr "¿Seguro que desea romper la conciliación de este registro?"
197+
198+#. module: account_voucher_multi_partner
199+#: view:account.voucher:0
200+msgid "Journal Items"
201+msgstr "Apuntes contables"
202+
203+#. module: account_voucher_multi_partner
204+#: view:account.voucher:0
205+msgid "Other Information"
206+msgstr "Otra información"
207+
208+#. module: account_voucher_multi_partner
209+#: view:account.voucher:0
210+msgid "Validate"
211+msgstr "Validar"
212+
213+#. module: account_voucher_multi_partner
214+#: view:account.voucher:0
215+msgid "Extended Filters..."
216+msgstr "Filtros extendidos..."
217+
218+#. module: account_voucher_multi_partner
219+#: view:account.voucher:0
220+msgid "Unreconcile"
221+msgstr "Romper conciliación"
222+
223+#. module: account_voucher_multi_partner
224+#: view:account.voucher:0
225+msgid "Payment"
226+msgstr "Pago"
227+
228+#. module: account_voucher_multi_partner
229+#: code:addons/account_voucher_multi_partner/voucher_multi_partner.py:327
230+#, python-format
231+msgid "Cannot validate Voucher(s) with bad total !"
232+msgstr "!No puede validar Comprobantes con el total incorrecto !"
233+
234+#. module: account_voucher_multi_partner
235+#: view:account.voucher:0
236+msgid "Posted"
237+msgstr "Contabilizado"
238+
239+#. module: account_voucher_multi_partner
240+#: view:account.voucher:0
241+msgid "Supplier Invoices and Outstanding transactions"
242+msgstr "Facturas de proveedor y transiciones de salida"
243+
244+#. module: account_voucher_multi_partner
245+#: code:addons/account_voucher_multi_partner/voucher_multi_partner.py:293
246+#, python-format
247+msgid "No Account Base Code and Account Tax Code!"
248+msgstr "!Sin código base y código de impuesto contable!"
249+
250+#. module: account_voucher_multi_partner
251+#: help:account.voucher,multi_partner:0
252+msgid "Check this box if there are twice or more supplier or customer for this voucher"
253+msgstr "Marque este cuadro si hay dos o más proveedores o clientes para este comprobante"
254+
255+#. module: account_voucher_multi_partner
256+#: model:ir.actions.act_window,help:account_voucher_multi_partner.action_vendor_multi_partner_receipt
257+msgid "Sales payment allows you to register the payments you receive from your customers. In order to record a payment, you must enter the customer, the payment method (=the journal) and the payment amount. OpenERP will propose to you automatically the reconciliation of this payment with the open invoices or sales receipts."
258+msgstr "Los pagos de venta permiten registrar los pagos recibidos de sus clientes. Para registrar un pago, debe seleccionar el cliente, el método de pago(= el diario) y el importe del pago. OpenERP le propondrá automáticamente la reconciliación de este pago con las facturas o recibos de ventas pendientes."
259+
260+#. module: account_voucher_multi_partner
261+#: view:account.voucher:0
262+msgid "Cancel"
263+msgstr "Cancelar"
264+
265+#. module: account_voucher_multi_partner
266+#: view:account.voucher:0
267+msgid "Payment Options"
268+msgstr "Opciones de pago"
269+
270+#. module: account_voucher_multi_partner
271+#: field:account.voucher,multi_partner:0
272+msgid "Several Supplier or Customer ?"
273+msgstr "¿Múltiples proveedores o clientes?"
274+
275+#. module: account_voucher_multi_partner
276+#: code:addons/account_voucher_multi_partner/voucher_multi_partner.py:293
277+#, python-format
278+msgid "You have to configure account base code and account tax code on the '%s' tax!"
279+msgstr "¡Debe configurar código de la base contable y código del impuesto contable del impuesto '%s'!"
280+
281+#. module: account_voucher_multi_partner
282+#: view:account.voucher:0
283+msgid "Invoices and outstanding transactions"
284+msgstr "Facturas y transacciones de salida"
285+
286+#. module: account_voucher_multi_partner
287+#: field:account.voucher.line,amount_residual:0
288+msgid "Residual Amount"
289+msgstr "Monto Residual"
290+
291+#. module: account_voucher_multi_partner
292+#: view:account.voucher:0
293+msgid "Supplier"
294+msgstr "Proveedor"
295+
296+#. module: account_voucher_multi_partner
297+#: view:account.voucher:0
298+msgid "To Review"
299+msgstr "A revisar"
300+
301+#. module: account_voucher_multi_partner
302+#: model:ir.module.module,description:account_voucher_multi_partner.module_meta_information
303+msgid "\n"
304+" This module extend account voucher funcionality allowed make payments or receipt\n"
305+" from several partner\n"
306+" "
307+msgstr "\n"
308+" Este modulo extiende la funcionalidad de los comprobantes de pago/cobro permitiendo realizar pagos o cobros\n"
309+" de varias empresas\n"
310+" "
311+
312+#. module: account_voucher_multi_partner
313+#: model:ir.model,name:account_voucher_multi_partner.model_account_voucher
314+msgid "Accounting Voucher"
315+msgstr "Comprobantes contables"
316+
317+#. module: account_voucher_multi_partner
318+#: view:account.voucher:0
319+msgid "Period"
320+msgstr "Período"
321+
322+#. module: account_voucher_multi_partner
323+#: model:ir.model,name:account_voucher_multi_partner.model_account_voucher_line
324+msgid "Voucher Lines"
325+msgstr "Líneas de comprobante"
326+
327+#. module: account_voucher_multi_partner
328+#: model:ir.module.module,shortdesc:account_voucher_multi_partner.module_meta_information
329+msgid "Account voucher multi partner"
330+msgstr "Account voucher multi partner"
331+
332+#. module: account_voucher_multi_partner
333+#: view:account.voucher:0
334+msgid "Search Vouchers"
335+msgstr "Buscar comprobantes"
336+
337+#. module: account_voucher_multi_partner
338+#: field:account.voucher.line,invoice_id:0
339+msgid "Invoice"
340+msgstr "Factura"
341+
342+#. module: account_voucher_multi_partner
343+#: view:account.voucher:0
344+msgid "Payment Information"
345+msgstr "Información de pago"
346+
347+#. module: account_voucher_multi_partner
348+#: view:account.voucher:0
349+msgid "Open Balance"
350+msgstr "Abrir balance"
351+
352+#. module: account_voucher_multi_partner
353+#: view:account.voucher:0
354+msgid "Paid Amount"
355+msgstr "Importe pagado"
356+
357+#. module: account_voucher_multi_partner
358+#: model:ir.actions.act_window,name:account_voucher_multi_partner.action_vendor_multi_partner_payment
359+#: model:ir.ui.menu,name:account_voucher_multi_partner.menu_action_vendor_multi_partner_payment
360+msgid "Several Supplier Payment"
361+msgstr " Pago a múltiples proveedores"
362+
363
364=== added file 'account_voucher_multi_partner/i18n/es_VE.po'
365--- account_voucher_multi_partner/i18n/es_VE.po 1970-01-01 00:00:00 +0000
366+++ account_voucher_multi_partner/i18n/es_VE.po 2015-04-15 16:28:26 +0000
367@@ -0,0 +1,274 @@
368+# Translation of OpenERP Server.
369+# This file contains the translation of the following modules:
370+# * account_voucher_multi_partner
371+#
372+msgid ""
373+msgstr ""
374+"Project-Id-Version: OpenERP Server 6.1beta\n"
375+"Report-Msgid-Bugs-To: \n"
376+"POT-Creation-Date: 2011-11-25 15:44+0000\n"
377+"PO-Revision-Date: 2011-11-25 15:44+0000\n"
378+"Last-Translator: <>\n"
379+"Language-Team: \n"
380+"MIME-Version: 1.0\n"
381+"Content-Type: text/plain; charset=UTF-8\n"
382+"Content-Transfer-Encoding: \n"
383+"Plural-Forms: \n"
384+
385+#. module: account_voucher_multi_partner
386+#: view:account.voucher:0
387+msgid "Customer Payment"
388+msgstr "Pago cliente"
389+
390+#. module: account_voucher_multi_partner
391+#: view:account.voucher:0
392+msgid "Payment Ref"
393+msgstr "Ref. pago"
394+
395+#. module: account_voucher_multi_partner
396+#: view:account.voucher:0
397+msgid "Group By..."
398+msgstr "Agrupar por..."
399+
400+#. module: account_voucher_multi_partner
401+#: view:account.voucher:0
402+msgid "State"
403+msgstr "Estado"
404+
405+#. module: account_voucher_multi_partner
406+#: view:account.voucher:0
407+msgid "Draft"
408+msgstr "Borrador"
409+
410+#. module: account_voucher_multi_partner
411+#: view:account.voucher:0
412+msgid "Set to Draft"
413+msgstr "Cambiar a borrador"
414+
415+#. module: account_voucher_multi_partner
416+#: model:ir.actions.act_window,name:account_voucher_multi_partner.action_vendor_multi_partner_receipt
417+#: model:ir.ui.menu,name:account_voucher_multi_partner.menu_action_vendor_multi_partner_receipt
418+msgid "Several Customer Payment"
419+msgstr "Pago a múltiples clientes"
420+
421+#. module: account_voucher_multi_partner
422+#: view:account.voucher:0
423+msgid "Draft Vouchers"
424+msgstr "Draft Vouchers"
425+
426+#. module: account_voucher_multi_partner
427+#: view:account.voucher:0
428+msgid "Bill Payment"
429+msgstr "Pago factura"
430+
431+#. module: account_voucher_multi_partner
432+#: view:account.voucher:0
433+msgid "Posted Vouchers"
434+msgstr "Comprobantes contabilizados"
435+
436+#. module: account_voucher_multi_partner
437+#: view:account.voucher:0
438+msgid "Payment Method"
439+msgstr "Método de pago"
440+
441+#. module: account_voucher_multi_partner
442+#: model:ir.actions.act_window,help:account_voucher_multi_partner.action_vendor_multi_partner_payment
443+msgid "The supplier payment form allows you to track the payment you do to your suppliers. When you select a supplier, the payment method and an amount for the payment, OpenERP will propose to reconcile your payment with the open supplier invoices or bills."
444+msgstr "El formulario de pago de proveedor le permite gestionar los pagos que hace a sus proveedores. Cuando selecciona un proveedor, el método de pago y el importe a pagar, OpenERP propondrá la reconciliación de su pago con las facturas de proveedor o recibos pendientes."
445+
446+#. module: account_voucher_multi_partner
447+#: view:account.voucher:0
448+msgid "Journal"
449+msgstr "Diario"
450+
451+#. module: account_voucher_multi_partner
452+#: code:addons/account_voucher_multi_partner/voucher_multi_partner.py:327
453+#, python-format
454+msgid "Invalid action !"
455+msgstr "!Acción invalida!"
456+
457+#. module: account_voucher_multi_partner
458+#: view:account.voucher:0
459+msgid "Residual"
460+msgstr "Residual"
461+
462+#. module: account_voucher_multi_partner
463+#: view:account.voucher:0
464+msgid "Internal Notes"
465+msgstr "Notas internas"
466+
467+#. module: account_voucher_multi_partner
468+#: view:account.voucher:0
469+msgid "Credits"
470+msgstr "Haber"
471+
472+#. module: account_voucher_multi_partner
473+#: view:account.voucher:0
474+msgid "Are you sure to unreconcile this record ?"
475+msgstr "¿Seguro que desea romper la conciliación de este registro?"
476+
477+#. module: account_voucher_multi_partner
478+#: view:account.voucher:0
479+msgid "Journal Items"
480+msgstr "Apuntes contables"
481+
482+#. module: account_voucher_multi_partner
483+#: view:account.voucher:0
484+msgid "Other Information"
485+msgstr "Otra información"
486+
487+#. module: account_voucher_multi_partner
488+#: view:account.voucher:0
489+msgid "Validate"
490+msgstr "Validar"
491+
492+#. module: account_voucher_multi_partner
493+#: view:account.voucher:0
494+msgid "Extended Filters..."
495+msgstr "Filtros extendidos..."
496+
497+#. module: account_voucher_multi_partner
498+#: view:account.voucher:0
499+msgid "Unreconcile"
500+msgstr "Romper conciliación"
501+
502+#. module: account_voucher_multi_partner
503+#: view:account.voucher:0
504+msgid "Payment"
505+msgstr "Pago"
506+
507+#. module: account_voucher_multi_partner
508+#: code:addons/account_voucher_multi_partner/voucher_multi_partner.py:327
509+#, python-format
510+msgid "Cannot validate Voucher(s) with bad total !"
511+msgstr "!No puede validar Comprobantes con el total incorrecto !"
512+
513+#. module: account_voucher_multi_partner
514+#: view:account.voucher:0
515+msgid "Posted"
516+msgstr "Contabilizado"
517+
518+#. module: account_voucher_multi_partner
519+#: view:account.voucher:0
520+msgid "Supplier Invoices and Outstanding transactions"
521+msgstr "Facturas de proveedor y transiciones de salida"
522+
523+#. module: account_voucher_multi_partner
524+#: code:addons/account_voucher_multi_partner/voucher_multi_partner.py:293
525+#, python-format
526+msgid "No Account Base Code and Account Tax Code!"
527+msgstr "!Sin código base y código de impuesto contable!"
528+
529+#. module: account_voucher_multi_partner
530+#: help:account.voucher,multi_partner:0
531+msgid "Check this box if there are twice or more supplier or customer for this voucher"
532+msgstr "Marque este cuadro si hay dos o más proveedores o clientes para este comprobante"
533+
534+#. module: account_voucher_multi_partner
535+#: model:ir.actions.act_window,help:account_voucher_multi_partner.action_vendor_multi_partner_receipt
536+msgid "Sales payment allows you to register the payments you receive from your customers. In order to record a payment, you must enter the customer, the payment method (=the journal) and the payment amount. OpenERP will propose to you automatically the reconciliation of this payment with the open invoices or sales receipts."
537+msgstr "Los pagos de venta permiten registrar los pagos recibidos de sus clientes. Para registrar un pago, debe seleccionar el cliente, el método de pago(= el diario) y el importe del pago. OpenERP le propondrá automáticamente la reconciliación de este pago con las facturas o recibos de ventas pendientes."
538+
539+#. module: account_voucher_multi_partner
540+#: view:account.voucher:0
541+msgid "Cancel"
542+msgstr "Cancelar"
543+
544+#. module: account_voucher_multi_partner
545+#: view:account.voucher:0
546+msgid "Payment Options"
547+msgstr "Opciones de pago"
548+
549+#. module: account_voucher_multi_partner
550+#: field:account.voucher,multi_partner:0
551+msgid "Several Supplier or Customer ?"
552+msgstr "¿Múltiples proveedores o clientes?"
553+
554+#. module: account_voucher_multi_partner
555+#: code:addons/account_voucher_multi_partner/voucher_multi_partner.py:293
556+#, python-format
557+msgid "You have to configure account base code and account tax code on the '%s' tax!"
558+msgstr "¡Debe configurar código de la base contable y código del impuesto contable del impuesto '%s'!"
559+
560+#. module: account_voucher_multi_partner
561+#: view:account.voucher:0
562+msgid "Invoices and outstanding transactions"
563+msgstr "Facturas y transacciones de salida"
564+
565+#. module: account_voucher_multi_partner
566+#: field:account.voucher.line,amount_residual:0
567+msgid "Residual Amount"
568+msgstr "Monto Residual"
569+
570+#. module: account_voucher_multi_partner
571+#: view:account.voucher:0
572+msgid "Supplier"
573+msgstr "Proveedor"
574+
575+#. module: account_voucher_multi_partner
576+#: view:account.voucher:0
577+msgid "To Review"
578+msgstr "A revisar"
579+
580+#. module: account_voucher_multi_partner
581+#: model:ir.module.module,description:account_voucher_multi_partner.module_meta_information
582+msgid "\n"
583+" This module extend account voucher funcionality allowed make payments or receipt\n"
584+" from several partner\n"
585+" "
586+msgstr "\n"
587+" Este modulo extiende la funcionalidad de los comprobantes de pago/cobro permitiendo realizar pagos o cobros\n"
588+" de varias empresas\n"
589+" "
590+
591+#. module: account_voucher_multi_partner
592+#: model:ir.model,name:account_voucher_multi_partner.model_account_voucher
593+msgid "Accounting Voucher"
594+msgstr "Comprobantes contables"
595+
596+#. module: account_voucher_multi_partner
597+#: view:account.voucher:0
598+msgid "Period"
599+msgstr "Período"
600+
601+#. module: account_voucher_multi_partner
602+#: model:ir.model,name:account_voucher_multi_partner.model_account_voucher_line
603+msgid "Voucher Lines"
604+msgstr "Líneas de comprobante"
605+
606+#. module: account_voucher_multi_partner
607+#: model:ir.module.module,shortdesc:account_voucher_multi_partner.module_meta_information
608+msgid "Account voucher multi partner"
609+msgstr "Account voucher multi partner"
610+
611+#. module: account_voucher_multi_partner
612+#: view:account.voucher:0
613+msgid "Search Vouchers"
614+msgstr "Buscar comprobantes"
615+
616+#. module: account_voucher_multi_partner
617+#: field:account.voucher.line,invoice_id:0
618+msgid "Invoice"
619+msgstr "Factura"
620+
621+#. module: account_voucher_multi_partner
622+#: view:account.voucher:0
623+msgid "Payment Information"
624+msgstr "Información de pago"
625+
626+#. module: account_voucher_multi_partner
627+#: view:account.voucher:0
628+msgid "Open Balance"
629+msgstr "Abrir balance"
630+
631+#. module: account_voucher_multi_partner
632+#: view:account.voucher:0
633+msgid "Paid Amount"
634+msgstr "Importe pagado"
635+
636+#. module: account_voucher_multi_partner
637+#: model:ir.actions.act_window,name:account_voucher_multi_partner.action_vendor_multi_partner_payment
638+#: model:ir.ui.menu,name:account_voucher_multi_partner.menu_action_vendor_multi_partner_payment
639+msgid "Several Supplier Payment"
640+msgstr " Pago a múltiples proveedores"
641+
642
643=== added file 'account_voucher_multi_partner/voucher_multi_partner.py'
644--- account_voucher_multi_partner/voucher_multi_partner.py 1970-01-01 00:00:00 +0000
645+++ account_voucher_multi_partner/voucher_multi_partner.py 2015-04-15 16:28:26 +0000
646@@ -0,0 +1,245 @@
647+#!/usr/bin/python
648+# -*- coding: utf-8 -*-
649+##############################################################################
650+#
651+# OpenERP, Open Source Management Solution
652+# Copyright (C) 2004-20011S Tiny SPRL (<http://tiny.be>). All Rights Reserved
653+# This module was developen by Vauxoo Team:
654+# Coded by: javier@vauxoo.com
655+#
656+#
657+# This program is free software: you can redistribute it and/or modify
658+# it under the terms of the GNU Affero General Public License as
659+# published by the Free Software Foundation, either version 3 of the
660+# License, or (at your option) any later version.
661+#
662+# This program is distributed in the hope that it will be useful,
663+# but WITHOUT ANY WARRANTY; without even the implied warranty of
664+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
665+# GNU Affero General Public License for more details.
666+#
667+# You should have received a copy of the GNU Affero General Public License
668+# along with this program. If not, see <http://www.gnu.org/licenses/>.
669+#
670+##############################################################################
671+
672+from osv import osv
673+from osv import fields
674+from tools.translate import _
675+import time
676+import datetime
677+import decimal_precision as dp
678+
679+
680+class account_voucher_line(osv.osv):
681+ _inherit = 'account.voucher.line'
682+ name = 'acc.voucher.line.multi.partner'
683+
684+
685+ def _amount_residual(self, cr, uid, ids, name, args, context=None):
686+ currency_pool = self.pool.get('res.currency')
687+ for line in self.browse(cr, uid, ids, context=context):
688+ ctx = context.copy()
689+ ctx.update({'date': line.voucher_id.date})
690+ res = {}
691+ company_currency = line.voucher_id.journal_id.company_id.currency_id.id
692+ voucher_currency = line.voucher_id.currency_id.id
693+ move_line = line.move_line_id or False
694+
695+ if not move_line:
696+ res[line.id] = 0.0
697+
698+ if move_line:
699+ res[line.id] = currency_pool.compute(cr, uid, move_line.currency_id and move_line.currency_id.id or company_currency, voucher_currency, abs(move_line.amount_residual_currency), context=ctx) - line.amount
700+
701+ return res
702+
703+ _columns={
704+ 'invoice_id' : fields.many2one('account.invoice','Invoice'),
705+ 'partner_id' : fields.many2one('res.partner','Partner'),
706+ 'amount_residual': fields.function(_amount_residual, method=True, digits_compute=dp.get_precision('Account'), string='Residual Amount', type='float', store=True),
707+ }
708+
709+
710+
711+ def onchange_partner_id(self, cr, uid, ids, partner_id, journal_id, price, currency_id, ttype, invoice_id, context=None):
712+ currency_pool = self.pool.get('res.currency')
713+ move_line_pool = self.pool.get('account.move.line')
714+# partner_pool = self.pool.get('res.partner')
715+ journal_pool = self.pool.get('account.journal')
716+ invoice_pool = self.pool.get('account.invoice')
717+# partner_brw = partner_pool.browse(cr,uid,partner_id,context=context)
718+ journal_brw = journal_pool.browse(cr, uid, journal_id, context=context)
719+ default = {}
720+ default.setdefault('value',{})
721+
722+ currency_id = currency_id or journal_brw.company_id.currency_id.id
723+
724+ if not partner_id:
725+ return default
726+
727+ default['value']['partner_id'] = partner_id
728+
729+ total_credit = 0.0
730+ total_debit = 0.0
731+ account_type = 'receivable'
732+ if ttype == 'payment':
733+ account_type = 'payable'
734+ total_debit = price or 0.0
735+ else:
736+ total_credit = price or 0.0
737+
738+
739+ if not invoice_id:
740+ return default
741+
742+ default['value']['invoice_id'] = invoice_id
743+ invoice_brw = invoice_pool.browse(cr, uid, invoice_id, context=context)
744+ ids = move_line_pool.search(cr, uid, [('state','=','valid'), ('account_id.type', '=', account_type), ('reconcile_id', '=', False), ('partner_id', '=', partner_id), ('move_id', '=', invoice_brw.move_id.id)], context=context)
745+ moves = move_line_pool.browse(cr, uid, ids, context=context)
746+
747+
748+ company_currency = journal_brw.company_id.currency_id.id
749+ for line in moves:
750+ if line.credit and line.reconcile_partial_id and ttype == 'receipt':
751+ continue
752+ if line.debit and line.reconcile_partial_id and ttype == 'payment':
753+ continue
754+
755+ if line.currency_id and currency_id==line.currency_id.id:
756+ total_credit += line.amount_currency <0 and -line.amount_currency or 0.0
757+ total_debit += line.amount_currency >0 and line.amount_currency or 0.0
758+ else:
759+ total_credit += currency_pool.compute(cr, uid, company_currency, currency_id, line.credit or 0.0)
760+ total_debit += currency_pool.compute(cr, uid, company_currency, currency_id, line.debit or 0.0)
761+
762+ for line in moves:
763+ if line.credit and line.reconcile_partial_id and ttype == 'receipt':
764+ continue
765+ if line.debit and line.reconcile_partial_id and ttype == 'payment':
766+ continue
767+
768+ if line.currency_id and currency_id==line.currency_id.id:
769+ amount_original = abs(line.amount_currency)
770+ amount_unreconciled = abs(line.amount_residual_currency)
771+ else:
772+ amount_original = currency_pool.compute(cr, uid, company_currency, currency_id, line.credit or line.debit or 0.0)
773+ amount_unreconciled = currency_pool.compute(cr, uid, company_currency, currency_id, abs(line.amount_residual))
774+
775+ #original_amount = line.credit or line.debit or 0.0
776+ #amount_unreconciled = currency_pool.compute(cr, uid, line.currency_id and line.currency_id.id or company_currency, currency_id, abs(line.amount_residual_currency), context=context_multi_currency)
777+ default['value'].update({
778+ 'name':line.move_id.name,
779+ 'type': line.credit and 'dr' or 'cr',
780+ 'move_line_id':line.id,
781+ 'account_id':line.account_id.id,
782+ 'amount_original': amount_original,
783+ 'date_original':line.date,
784+ 'date_due':line.date_maturity,
785+ 'amount_unreconciled': amount_unreconciled,
786+ 'amount': amount_unreconciled,
787+
788+ })
789+
790+
791+# if ttype == 'payment' and len(default['value']['line_cr_ids']) > 0:
792+# default['value']['pre_line'] = 1
793+# elif ttype == 'receipt' and len(default['value']['line_dr_ids']) > 0:
794+# default['value']['pre_line'] = 1
795+# default['value']['writeoff_amount'] = self._compute_writeoff_amount(cr, uid, default['value']['line_dr_ids'], default['value']['line_cr_ids'], price)
796+
797+ return default
798+
799+
800+account_voucher_line()
801+
802+
803+class account_voucher(osv.osv):
804+ _inherit='account.voucher'
805+ name='account.voucher.multi.partner'
806+
807+ _columns={
808+ 'multi_partner':fields.boolean('Several Supplier or Customer ?', required=False, help="Check this box if there are twice or more supplier or customer for this voucher"),
809+ }
810+
811+
812+
813+ def onchange_journal_multi_partner(self, cr, uid, ids, journal_id, context=None):
814+ vals = {'value': {}}
815+ if not journal_id:
816+ return vals
817+ journal_pool = self.pool.get('account.journal')
818+ journal = journal_pool.browse(cr, uid, journal_id, context=context)
819+
820+# vals = self.onchange_price(cr, uid, ids, line_ids, tax_id, partner_id, context)
821+
822+ currency_id = False #journal.company_id.currency_id.id
823+ if journal.currency:
824+ currency_id = journal.currency.id
825+ vals['value'].update({'currency_id':currency_id})
826+
827+ # TODO: Debo averiguar cual es la cuenta del voucher, ¿Asumo siempre la del diario?
828+# account_id = False
829+# if journal.type in ('sale','sale_refund'):
830+# account_id = partner.property_account_receivable.id
831+# elif journal.type in ('purchase', 'purchase_refund','expense'):
832+# account_id = partner.property_account_payable.id
833+# else:
834+# account_id = journal.default_credit_account_id.id or journal.default_debit_account_id.id
835+ account_id = journal.default_credit_account_id.id or journal.default_debit_account_id.id
836+ vals['value']['account_id'] = account_id
837+ return vals
838+
839+ def onchange_date_multi_partner(self, cr, uid, ids, journal_id, date, context=None):
840+ """
841+ @param date: latest value from user input for field date
842+ @param args: other arguments
843+ @param context: context arguments, like lang, time zone
844+ @return: Returns a dict which contains new values, and context
845+ """
846+ period_pool = self.pool.get('account.period')
847+ res = self.onchange_journal_multi_partner(cr, uid, ids, journal_id, context=context)
848+ pids = period_pool.search(cr, uid, [('date_start', '<=', date), ('date_stop', '>=', date)])
849+ if pids:
850+ if not 'value' in res:
851+ res['value'] = {}
852+ res['value'].update({'period_id':pids[0]})
853+ return res
854+
855+ def first_move_line_get(self, cr, uid, voucher_id, move_id, company_currency, current_currency, context=None):
856+ data = super(account_voucher, self).first_move_line_get(cr, uid, voucher_id, move_id, company_currency, current_currency, context)
857+ data.update({'partner_id':False})
858+ return data
859+
860+
861+ def voucher_move_line_get_item(self, cr, uid, voucher, line, move_id, company_currency, current_currency):
862+ data = super(account_voucher, self).voucher_move_line_get_item(cr, uid, voucher, line, move_id, company_currency, current_currency)
863+ data.update({'partner_id':line.partner_id.id})
864+ return data
865+
866+
867+ def writeoff_move_line_get(self, cr, uid, voucher_id, line_total, move_id, name, company_currency, current_currency, context=None):
868+ voucher_brw = self.pool.get('account.voucher').browse(cr,uid,voucher_id,context)
869+ if voucher_brw.multi_partner:
870+ #TODO hacer cuenta contable de ajuste en la compañía y evaluar un monto mínimo para realizar el asiento de ajuste
871+ return {}
872+ return super(account_voucher, self).writeoff_move_line_get(cr, uid, voucher_id, line_total, move_id, name, company_currency, current_currency, context)
873+
874+
875+ def check_amount_total(self, cr, uid, ids, context=None):
876+ for voucher_brw in self.browse(cr, uid, ids,context):
877+ amount = 0.0
878+ for line in voucher_brw.line_ids:
879+ amount+= line.amount
880+ if amount != voucher_brw.amount and voucher_brw.multi_partner or amount == 0.0:
881+ raise osv.except_osv(_('Invalid action !'), _('Cannot validate Voucher(s) with bad total !'))
882+ return True
883+
884+ def proforma_voucher(self, cr, uid, ids, context=None):
885+ self.check_amount_total(cr, uid, ids, context=context)
886+ return super(account_voucher, self).proforma_voucher(cr, uid, ids, context)
887+
888+account_voucher()
889+
890+
891+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
892
893=== added file 'account_voucher_multi_partner/voucher_multi_partner_view.xml'
894--- account_voucher_multi_partner/voucher_multi_partner_view.xml 1970-01-01 00:00:00 +0000
895+++ account_voucher_multi_partner/voucher_multi_partner_view.xml 2015-04-15 16:28:26 +0000
896@@ -0,0 +1,363 @@
897+<?xml version="1.0"?>
898+<openerp>
899+ <data>
900+
901+ <record id="view_multi_partner_filter_vendor_pay" model="ir.ui.view">
902+ <field name="name">multi.partner.purchase.pay.select</field>
903+ <field name="model">account.voucher</field>
904+ <field name="type">search</field>
905+ <field name="arch" type="xml">
906+ <search string="Search Vouchers">
907+ <group col='8' colspan='4'>
908+ <filter icon="terp-document-new" string="Draft" domain="[('state','=','draft')]" help="Draft Vouchers"/>
909+ <filter icon="terp-camera_test" string="Posted" domain="[('state','=','posted')]" help="Posted Vouchers"/>
910+ <separator orientation="vertical"/>
911+ <filter icon="terp-gtk-jump-to-ltr" string="To Review" domain="[('state','=','posted')]" groups="base.group_extended" help="To Review"/>
912+ <separator orientation="vertical"/>
913+ <field name="date"/>
914+ <field name="number"/>
915+ </group>
916+ <newline/>
917+ <group col='8' colspan='4'>
918+ <field name="journal_id" widget="selection" context="{'journal_id': self, 'set_visible':False}" domain="[('type','in',('bank','cash'))]"/>
919+ <field name="period_id" groups="base.group_extended"/>
920+ </group>
921+ <newline/>
922+ <group expand="0" string="Extended Filters..." col='8' colspan='4'>
923+ <field name="reference"/>
924+ <field name="name"/>
925+ <field name="narration"/>
926+ <field name="amount"/>
927+ </group>
928+ <newline/>
929+ <group expand="0" string="Group By..." colspan="4" col="10">
930+ <filter string="Journal" icon="terp-folder-orange" domain="[]" context="{'group_by':'journal_id'}"/>
931+ <filter string="Period" icon="terp-go-month" domain="[]" context="{'group_by':'period_id','visible':True}"/>
932+ <filter string="State" icon="terp-stock_effects-object-colorize" domain="[]" context="{'group_by':'state'}"/>
933+ </group>
934+ </search>
935+ </field>
936+ </record>
937+
938+ <record model="ir.ui.view" id="view_vendor_multi_partner_payment_form">
939+ <field name="name">multi.partner.payment.form</field>
940+ <field name="model">account.voucher</field>
941+ <field name="type">form</field>
942+ <field name="arch" type="xml">
943+ <form string="Bill Payment">
944+ <group col="6" colspan="4">
945+ <field name="amount"/>
946+ <field name="journal_id"
947+ domain="[('type','in',['bank', 'cash'])]"
948+ widget="selection" select="1"
949+ on_change="onchange_journal_multi_partner(journal_id)"
950+ string="Payment Method"/>
951+ <field name="date" select="1" on_change="onchange_date_multi_partner(journal_id, date)"/>
952+ <field name="reference" select="1" string="Payment Ref"/>
953+ <field name="name" colspan="2"/>
954+ <field name="company_id" select="1" widget="selection" groups="base.group_multi_company"/>
955+ <field name="account_id"
956+ widget="selection"
957+ invisible="False"/>
958+ <field name="pre_line" invisible="1"/>
959+ <field name="type" invisible="True"/>
960+ <field name="multi_partner" invisible="True"/>
961+ </group>
962+ <notebook colspan="4">
963+ <page string="Payment Information">
964+ <field name="line_dr_ids" default_get="{'journal_id':journal_id, 'type':type, 'partner_id':partner_id}" colspan="4" nolabel="1" height="140">
965+ <tree string="Supplier Invoices and Outstanding transactions" editable="bottom">
966+ <field name="move_line_id" context="{'journal_id':parent.journal_id, 'partner_id':partner_id}"
967+ on_change="onchange_move_line_id(move_line_id)"
968+ domain="[('account_id.type','=','payable'), ('reconcile_id','=', False), ('partner_id','=',partner_id)]"
969+ />
970+ <field name="partner_id" domain="[('supplier','=',True)]" required="0" on_change="onchange_partner_id(partner_id, parent.journal_id, parent.amount, parent.currency_id, parent.type, invoice_id, context)" string="Supplier"/>
971+ <field name="invoice_id" widget='many2one' domain="[('partner_id','=',partner_id)]" on_change="onchange_partner_id(partner_id, parent.journal_id, parent.amount, parent.currency_id, parent.type, invoice_id, context)"/>
972+ <field name="account_id" groups="base.group_no_one" domain="[('type','=','payable')]"/>
973+ <field name="date_original" readonly="1"/>
974+ <field name="date_due" readonly="1"/>
975+ <field name="amount_original" readonly="1"/>
976+ <field name="amount_unreconciled" sum="Open Balance" readonly="1"/>
977+ <field name="amount" sum="Payment"/>
978+ <field name="amount_residual" sum="Residual"/>
979+ </tree>
980+ </field>
981+ <field name="line_cr_ids" colspan="4" nolabel="1" attrs="{'invisible': [('pre_line','=',False)]}" default_get="{'journal_id':journal_id, 'partner_id':partner_id}">
982+ <tree string="Credits" editable="bottom">
983+ <field name="move_line_id"/>
984+ <field name="account_id" groups="base.group_extended" domain="[('type','=','receivable')]"/>
985+ <field name="date_original"/>
986+ <field name="amount_original"/>
987+ <field name="amount" sum="Payment"/>
988+ </tree>
989+ </field>
990+ <group col="2" colspan="3">
991+ <separator string="Internal Notes" colspan="2"/>
992+ <field name="narration" colspan="2" nolabel="1"/>
993+ </group>
994+ <group col="2" colspan="1">
995+ <group col="2" colspan="1">
996+ <field name="analytic_id"
997+ groups="analytic.group_analytic_accounting"/>
998+ <separator string="Payment Options" colspan="2"/>
999+ <field name="payment_option" required="1"/>
1000+ <field name="writeoff_amount"
1001+ attrs="{'invisible':[('payment_option','!=','with_writeoff')]}"/>
1002+ <field name="writeoff_acc_id"
1003+ attrs="{'invisible':[('payment_option','!=','with_writeoff')], 'required':[('payment_option','=','with_writeoff')]}"
1004+ domain="[('type','=','other')]"/>
1005+ <field name="comment"
1006+ attrs="{'invisible':[('payment_option','!=','with_writeoff')]}"/>
1007+
1008+ </group>
1009+ <separator string="Other Information" colspan="2"/>
1010+ <group col="4" colspan="1">
1011+ <field name="currency_id" invisible="True"/>
1012+ <field name="number"/>
1013+ </group>
1014+ </group>
1015+ </page>
1016+ <page string="Journal Items" groups="base.group_extended" attrs="{'invisible': [('state','!=','posted')]}">
1017+ <group col="6" colspan="4">
1018+ <field name="period_id"/>
1019+ <field name="audit"/>
1020+ </group>
1021+ <field name="move_ids" colspan="4" nolabel="1" readonly="1">
1022+ <tree string="Journal Items">
1023+ <field name="move_id"/>
1024+ <field name="ref"/>
1025+ <field name="date"/>
1026+ <field name="statement_id"/>
1027+ <field name="partner_id"/>
1028+ <field name="account_id"/>
1029+ <field name="name"/>
1030+ <field name="debit"/>
1031+ <field name="credit"/>
1032+ <field name="state"/>
1033+ <field name="reconcile_id"/>
1034+ <field name="amount_currency"/>
1035+ <field name="currency_id"/>
1036+ </tree>
1037+ </field>
1038+ </page>
1039+ </notebook>
1040+ <group col="10" colspan="4">
1041+ <field name="state"/>
1042+ <button name="cancel_voucher" string="Cancel" states="draft,proforma" icon="gtk-cancel"/>
1043+ <button name="cancel_voucher" string="Unreconcile" type="object" states="posted" icon="terp-stock_effects-object-colorize" confirm="Are you sure to unreconcile this record ?"/>
1044+ <button name="action_cancel_draft" type="object" states="cancel" string="Set to Draft" icon="terp-stock_effects-object-colorize"/>
1045+ <button name="proforma_voucher" string="Validate" states="draft" icon="gtk-go-forward"/>
1046+ </group>
1047+ </form>
1048+ </field>
1049+ </record>
1050+
1051+
1052+ <record id="action_vendor_multi_partner_payment" model="ir.actions.act_window">
1053+ <field name="name">Several Supplier Payment</field>
1054+ <field name="res_model">account.voucher</field>
1055+ <field name="view_type">form</field>
1056+ <field name="domain">[('journal_id.type', 'in', ['bank', 'cash']), ('type','=','payment'), ('multi_partner','=',True)]</field>
1057+ <field name="context">{'type':'payment','multi_partner':True}</field>
1058+ <field name="view_id" eval="False"/>
1059+ <field name="search_view_id" ref="view_multi_partner_filter_vendor_pay"/>
1060+ <field name="target">current</field>
1061+ <field name="help">The supplier payment form allows you to track the payment you do to your suppliers. When you select a supplier, the payment method and an amount for the payment, OpenERP will propose to reconcile your payment with the open supplier invoices or bills.</field>
1062+ </record>
1063+ <record id="action_vendor_multi_partner_payment_tree" model="ir.actions.act_window.view">
1064+ <field eval="1" name="sequence"/>
1065+ <field name="view_mode">tree</field>
1066+ <field name="act_window_id" ref="action_vendor_multi_partner_payment"/>
1067+ </record>
1068+ <record id="action_vendor_multi_partner_payment_form" model="ir.actions.act_window.view">
1069+ <field eval="2" name="sequence"/>
1070+ <field name="view_mode">form</field>
1071+ <field name="view_id" ref="view_vendor_multi_partner_payment_form"/>
1072+ <field name="act_window_id" ref="action_vendor_multi_partner_payment"/>
1073+ </record>
1074+
1075+ <menuitem action="action_vendor_multi_partner_payment" id="menu_action_vendor_multi_partner_payment" icon="STOCK_JUSTIFY_FILL"
1076+ sequence="12" parent="account.menu_finance_payables"/>
1077+
1078+
1079+
1080+
1081+ <record id="view_multi_partner_filter_customer_pay" model="ir.ui.view">
1082+ <field name="name">multi.partner.customer.pay.select</field>
1083+ <field name="model">account.voucher</field>
1084+ <field name="type">search</field>
1085+ <field name="arch" type="xml">
1086+ <search string="Search Vouchers">
1087+ <group col='8' colspan='4'>
1088+ <filter icon="terp-document-new" string="Draft" domain="[('state','=','draft')]" help="Draft Vouchers"/>
1089+ <filter icon="terp-camera_test" string="Posted" domain="[('state','=','posted')]" help="Posted Vouchers"/>
1090+ <separator orientation="vertical"/>
1091+ <filter icon="terp-gtk-jump-to-ltr" string="To Review" domain="[('state','=','posted')]" groups="base.group_extended" help="To Review"/>
1092+ <separator orientation="vertical"/>
1093+ <field name="date"/>
1094+ <field name="number"/>
1095+ </group>
1096+ <newline/>
1097+ <group col='8' colspan='4'>
1098+ <field name="journal_id" widget="selection" context="{'journal_id': self, 'set_visible':False}" domain="[('type','in',('bank','cash'))]"/>
1099+ <field name="period_id" groups="base.group_extended"/>
1100+ </group>
1101+ <newline/>
1102+ <group expand="0" string="Extended Filters..." col='8' colspan='4'>
1103+ <field name="reference"/>
1104+ <field name="name"/>
1105+ <field name="narration"/>
1106+ <field name="amount"/>
1107+ </group>
1108+ <newline/>
1109+ <group expand="0" string="Group By..." colspan="4" col="10">
1110+ <filter string="Journal" icon="terp-folder-orange" domain="[]" context="{'group_by':'journal_id'}"/>
1111+ <filter string="Period" icon="terp-go-month" domain="[]" context="{'group_by':'period_id','visible':True}"/>
1112+ <filter string="State" icon="terp-stock_effects-object-colorize" domain="[]" context="{'group_by':'state'}"/>
1113+ </group>
1114+ </search>
1115+ </field>
1116+ </record>
1117+
1118+<!--
1119+ <record model="ir.ui.view" id="view_vendor_multi_partner_receipt_form">
1120+ <field name="name">multi.partner.receipt.form</field>
1121+ <field name="model">account.voucher</field>
1122+ <field name="type">form</field>
1123+ <field name="arch" type="xml">
1124+ <form string="Customer Payment">
1125+ <group col="6" colspan="4">
1126+ <field name="journal_id" on_change= "onchange_journal_multi_partner(journal_id)"
1127+ domain="[('type','in',['bank', 'cash'])]"
1128+ widget="selection" select="1"
1129+ string="Payment Method"/>
1130+ <field name="amount"
1131+ string="Paid Amount"/>
1132+ <field name="date" select="1"/>
1133+ <field name="reference" select="1" string="Payment Ref"/>
1134+ <field name="name" colspan="2"/>
1135+ <field name="company_id" select="1" widget="selection" groups="base.group_multi_company"/>
1136+ <field name="account_id"
1137+ widget="selection"/>
1138+ <field name="pre_line" invisible="1"/>
1139+ <field name="type" invisible="False"/>
1140+ <field name="multi_partner" invisible="True"/>
1141+ </group>
1142+ <notebook colspan="4">
1143+ <page string="Payment Information">
1144+ <field name="line_cr_ids" default_get="{'journal_id':journal_id, 'type':type, 'partner_id':partner_id}" colspan="4" nolabel="1" height="140" on_change="onchange_line_ids(line_dr_ids, line_cr_ids, amount)">
1145+ <tree string="Invoices and outstanding transactions" editable="bottom">
1146+ <field name="move_line_id" context="{'journal_id':parent.journal_id, 'partner_id':parent.partner_id}"
1147+ on_change="onchange_move_line_id(move_line_id)"
1148+ domain="[('account_id.type','in',('receivable','payable')), ('reconcile_id','=', False), ('partner_id','=',parent.partner_id)]"
1149+ required="1"
1150+ />
1151+ <field name="partner_id" domain="[('customer','=',True)]" on_change="onchange_partner_id(partner_id, parent.journal_id, parent.amount, parent.currency_id, parent.type, invoice_id, context)"/>
1152+ <field name="invoice_id" widget='many2one' domain="[('partner_id','=',partner_id)]" on_change="onchange_partner_id(partner_id, parent.journal_id, parent.amount, parent.currency_id, parent.type, invoice_id, context)"/>
1153+ <field name="account_id" groups="base.group_no_one" domain="[('type','=','receivable')]"/>
1154+ <field name="date_original" readonly="1"/>
1155+ <field name="date_due" readonly="1"/>
1156+ <field name="amount_original" readonly="1"/>
1157+ <field name="amount_unreconciled" sum="Open Balance" readonly="1"/>
1158+ <field name="amount" sum="Payment"/>
1159+ </tree>
1160+ </field>
1161+ <field name="line_dr_ids" colspan="4" nolabel="1" attrs="{'invisible': [('pre_line','=',False)]}" default_get="{'journal_id':journal_id}" on_change="onchange_line_ids(line_dr_ids, line_cr_ids, amount)">
1162+ <tree string="Credits" editable="bottom">
1163+ <field name="move_line_id"/>
1164+ <field name="account_id" groups="base.group_extended" domain="[('type','=','receivable')]"/>
1165+ <field name="date_original"/>
1166+ <field name="amount_original"/>
1167+ <field name="amount" sum="Payment"/>
1168+ </tree>
1169+ </field>
1170+ <group col="2" colspan="3">
1171+ <separator string="Internal Notes" colspan="2"/>
1172+ <field name="narration" colspan="2" nolabel="1"/>
1173+ </group>
1174+ <group col="2" colspan="1">
1175+ <group col="2" colspan="1">
1176+ <separator string="Payment Options" colspan="2"/>
1177+ <field name="analytic_id"
1178+ groups="analytic.group_analytic_accounting"/>
1179+ <field name="payment_option" required="1"/>
1180+ <field name="writeoff_amount"
1181+ attrs="{'invisible':[('payment_option','!=','with_writeoff')]}"/>
1182+ <field name="writeoff_acc_id"
1183+ attrs="{'invisible':[('payment_option','!=','with_writeoff')], 'required':[('payment_option','=','with_writeoff')]}"
1184+ domain="[('type','=','other')]"/>
1185+ <field name="comment"
1186+ attrs="{'invisible':[('payment_option','!=','with_writeoff')]}"/>
1187+ </group>
1188+ <separator string="Other Information" colspan="2"/>
1189+ <group col="4" colspan="1">
1190+ <field name="currency_id" invisible="True"/>
1191+ <field name="number"/>
1192+ </group>
1193+ </group>
1194+ </page>
1195+ <page string="Journal Items" groups="base.group_extended" attrs="{'invisible': [('state','!=','posted')]}">
1196+ <group col="6" colspan="4">
1197+ <field name="period_id"/>
1198+ <field name="audit"/>
1199+ </group>
1200+ <field name="move_ids" colspan="4" nolabel="1" readonly="1">
1201+ <tree string="Journal Items">
1202+ <field name="move_id"/>
1203+ <field name="ref"/>
1204+ <field name="date"/>
1205+ <field name="statement_id"/>
1206+ <field name="account_id"/>
1207+ <field name="name"/>
1208+ <field name="debit"/>
1209+ <field name="credit"/>
1210+ <field name="state"/>
1211+ <field name="reconcile_id"/>
1212+ <field name="amount_currency"/>
1213+ <field name="currency_id"/>
1214+ </tree>
1215+ </field>
1216+ </page>
1217+ </notebook>
1218+ <group col="10" colspan="4">
1219+ <field name="state"/>
1220+ <button name="cancel_voucher" string="Cancel" states="draft,proforma" icon="gtk-cancel"/>
1221+ <button name="cancel_voucher" string="Unreconcile" type="object" states="posted" icon="terp-stock_effects-object-colorize" confirm="Are you sure to unreconcile this record ?"/>
1222+ <button name="action_cancel_draft" type="object" states="cancel" string="Set to Draft" icon="terp-stock_effects-object-colorize"/>
1223+ <button name="proforma_voucher" string="Validate" states="draft" icon="gtk-go-forward"/>
1224+ </group>
1225+ </form>
1226+ </field>
1227+ </record>
1228+
1229+ <record id="action_vendor_multi_partner_receipt" model="ir.actions.act_window">
1230+ <field name="name">Several Customer Payment</field>
1231+ <field name="res_model">account.voucher</field>
1232+ <field name="view_type">form</field>
1233+ <field name="domain">[('journal_id.type', 'in', ['bank', 'cash']), ('type','=','receipt'), ('multi_partner','=',True)]</field>
1234+ <field name="context">{'type':'receipt','multi_partner':True}</field>
1235+ <field name="search_view_id" ref="view_multi_partner_filter_customer_pay"/>
1236+ <field name="view_id" eval="False"/>
1237+ <field name="target">current</field>
1238+ <field name="help">Sales payment allows you to register the payments you receive from your customers. In order to record a payment, you must enter the customer, the payment method (=the journal) and the payment amount. OpenERP will propose to you automatically the reconciliation of this payment with the open invoices or sales receipts.</field>
1239+ </record>
1240+ <record id="action_vendor_multi_partner_receipt_tree" model="ir.actions.act_window.view">
1241+ <field eval="1" name="sequence"/>
1242+ <field name="view_mode">tree</field>
1243+ <field name="act_window_id" ref="action_vendor_multi_partner_receipt"/>
1244+ </record>
1245+ <record id="action_vendor_multi_partner_receipt_form" model="ir.actions.act_window.view">
1246+ <field eval="2" name="sequence"/>
1247+ <field name="view_mode">form</field>
1248+ <field name="view_id" ref="view_vendor_multi_partner_receipt_form"/>
1249+ <field name="act_window_id" ref="action_vendor_multi_partner_receipt"/>
1250+ </record>
1251+
1252+ <menuitem action="action_vendor_multi_partner_receipt" icon="STOCK_JUSTIFY_FILL" sequence="12"
1253+ id="menu_action_vendor_multi_partner_receipt" parent="account.menu_finance_receivables"/>
1254+-->
1255+
1256+
1257+
1258+ </data>
1259+</openerp>
1260
1261=== added directory 'account_voucher_patch'
1262=== added file 'account_voucher_patch/__init__.py'
1263--- account_voucher_patch/__init__.py 1970-01-01 00:00:00 +0000
1264+++ account_voucher_patch/__init__.py 2015-04-15 16:28:26 +0000
1265@@ -0,0 +1,24 @@
1266+# -*- coding: utf-8 -*-
1267+##############################################################################
1268+#
1269+# OpenERP, Open Source Management Solution
1270+# Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
1271+#
1272+# This program is free software: you can redistribute it and/or modify
1273+# it under the terms of the GNU Affero General Public License as
1274+# published by the Free Software Foundation, either version 3 of the
1275+# License, or (at your option) any later version.
1276+#
1277+# This program is distributed in the hope that it will be useful,
1278+# but WITHOUT ANY WARRANTY; without even the implied warranty of
1279+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1280+# GNU Affero General Public License for more details.
1281+#
1282+# You should have received a copy of the GNU Affero General Public License
1283+# along with this program. If not, see <http://www.gnu.org/licenses/>.
1284+#
1285+##############################################################################
1286+
1287+import account_voucher
1288+
1289+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
1290
1291=== added file 'account_voucher_patch/__openerp__.py'
1292--- account_voucher_patch/__openerp__.py 1970-01-01 00:00:00 +0000
1293+++ account_voucher_patch/__openerp__.py 2015-04-15 16:28:26 +0000
1294@@ -0,0 +1,48 @@
1295+# -*- coding: utf-8 -*-
1296+##############################################################################
1297+#
1298+# OpenERP, Open Source Management Solution
1299+# Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
1300+#
1301+# This program is free software: you can redistribute it and/or modify
1302+# it under the terms of the GNU Affero General Public License as
1303+# published by the Free Software Foundation, either version 3 of the
1304+# License, or (at your option) any later version.
1305+#
1306+# This program is distributed in the hope that it will be useful,
1307+# but WITHOUT ANY WARRANTY; without even the implied warranty of
1308+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1309+# GNU Affero General Public License for more details.
1310+#
1311+# You should have received a copy of the GNU Affero General Public License
1312+# along with this program. If not, see <http://www.gnu.org/licenses/>.
1313+#
1314+##############################################################################
1315+
1316+{
1317+ "name" : "Accounting Voucher Entries",
1318+ "version" : "1.0",
1319+ "author" : 'OpenERP SA',
1320+ "description": """Account Voucher module includes all the basic requirements of
1321+ Voucher Entries for Bank, Cash, Sales, Purchase, Expanse, Contra, etc...
1322+ * Voucher Entry
1323+ * Voucher Receipt
1324+ * Cheque Register
1325+ * Basically this module explode for V6 one refactor to the code for account vaoucher!
1326+ """,
1327+ "category" : "Generic Modules/Accounting",
1328+ "website" : "http://vauxoo.com",
1329+ "depends" : ["account","account_voucher"],
1330+ "init_xml" : [],
1331+
1332+ "demo_xml" : [],
1333+
1334+ "update_xml" : [
1335+ ],
1336+ "test" : [
1337+ ],
1338+ "active": False,
1339+ "installable": True,
1340+}
1341+
1342+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
1343
1344=== added file 'account_voucher_patch/account_voucher.py'
1345--- account_voucher_patch/account_voucher.py 1970-01-01 00:00:00 +0000
1346+++ account_voucher_patch/account_voucher.py 2015-04-15 16:28:26 +0000
1347@@ -0,0 +1,337 @@
1348+# -*- coding: utf-8 -*-
1349+##############################################################################
1350+#
1351+# OpenERP, Open Source Management Solution
1352+# Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
1353+#
1354+# This program is free software: you can redistribute it and/or modify
1355+# it under the terms of the GNU Affero General Public License as
1356+# published by the Free Software Foundation, either version 3 of the
1357+# License, or (at your option) any later version.
1358+#
1359+# This program is distributed in the hope that it will be useful,
1360+# but WITHOUT ANY WARRANTY; without even the implied warranty of
1361+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1362+# GNU Affero General Public License for more details.
1363+#
1364+# You should have received a copy of the GNU Affero General Public License
1365+# along with this program. If not, see <http://www.gnu.org/licenses/>.
1366+#
1367+##############################################################################
1368+
1369+import time
1370+from lxml import etree
1371+
1372+import netsvc
1373+from osv import osv, fields
1374+import decimal_precision as dp
1375+from tools.translate import _
1376+
1377+
1378+class account_voucher(osv.osv):
1379+ _inherit='account.voucher'
1380+
1381+
1382+
1383+ def _get_company_currency(self, cr, uid, voucher_id, context=None):
1384+ '''
1385+ Get the currency of the actual company.
1386+
1387+ :param voucher_id: Id of the voucher what i want to obtain company currency.
1388+ :return: currency id of the company of the voucher
1389+ :rtype: int
1390+ '''
1391+ return self.pool.get('account.voucher').browse(cr,uid,voucher_id,context).journal_id.company_id.currency_id.id
1392+
1393+ def _get_current_currency(self, cr, uid, voucher_id, context=None):
1394+ '''
1395+ Get the currency of the voucher.
1396+
1397+ :param voucher_id: Id of the voucher what i want to obtain current currency.
1398+ :return: currency id of the voucher
1399+ :rtype: int
1400+ '''
1401+ voucher = self.pool.get('account.voucher').browse(cr,uid,voucher_id,context)
1402+ return voucher.currency_id.id or self._get_company_currency(cr,uid,voucher.id,context)
1403+
1404+
1405+ def _sel_context(self, cr, uid, voucher_id,context=None):
1406+ """
1407+ Select the context to use accordingly if it needs to be multicurrency or not.
1408+
1409+ :param voucher_id: Id of the actual voucher
1410+ :return: The returned context will be the same as given in parameter if the voucher currency is the same
1411+ than the company currency, otherwise it's a copy of the parameter with an extra key 'date' containing
1412+ the date of the voucher.
1413+ :rtype: dict
1414+ """
1415+ company_currency = self._get_company_currency(cr, uid, voucher_id, context)
1416+ current_currency = self._get_current_currency(cr, uid, voucher_id, context)
1417+ if current_currency <> company_currency:
1418+ context_multi_currency = context.copy()
1419+ voucher_brw = self.pool.get('account.voucher').browse(cr, uid, voucher_id, context)
1420+ context_multi_currency.update({'date': voucher_brw.date})
1421+ return context_multi_currency
1422+ return context
1423+
1424+
1425+ def account_move_get(self, cr, uid, voucher_id, context=None):
1426+ '''
1427+ This method prepare the creation of the account move related to the given voucher.
1428+
1429+ :param voucher_id: Id of voucher for which we are creating account_move.
1430+ :return: mapping between fieldname and value of account move to create
1431+ :rtype: dict
1432+ '''
1433+ move_obj = self.pool.get('account.move')
1434+ seq_obj = self.pool.get('ir.sequence')
1435+ voucher_brw = self.pool.get('account.voucher').browse(cr,uid,voucher_id,context)
1436+ if voucher_brw.number:
1437+ name = voucher_brw.number
1438+ elif voucher_brw.journal_id.sequence_id:
1439+ name = seq_obj.get_id(cr, uid, voucher_brw.journal_id.sequence_id.id)
1440+ else:
1441+ raise osv.except_osv(_('Error !'), _('Please define a sequence on the journal !'))
1442+ if not voucher_brw.reference:
1443+ ref = name.replace('/','')
1444+ else:
1445+ ref = voucher_brw.reference
1446+
1447+ move = {
1448+ 'name': name,
1449+ 'journal_id': voucher_brw.journal_id.id,
1450+ 'narration': voucher_brw.narration,
1451+ 'date': voucher_brw.date,
1452+ 'ref': ref,
1453+ 'period_id': voucher_brw.period_id and voucher_brw.period_id.id or False
1454+ }
1455+ return move
1456+
1457+
1458+ def first_move_line_get(self, cr, uid, voucher_id, move_id, company_currency, current_currency, context=None):
1459+ '''
1460+ Return a dict to be use to create the first account move line of given voucher.
1461+
1462+ :param voucher_id: Id of voucher what we are creating account_move.
1463+ :param move_id: Id of account move where this line will be added.
1464+ :param company_currency: id of currency of the company to which the voucher belong
1465+ :param current_currency: id of currency of the voucher
1466+ :return: mapping between fieldname and value of account move line to create
1467+ :rtype: dict
1468+ '''
1469+ move_line_obj = self.pool.get('account.move.line')
1470+ currency_obj = self.pool.get('res.currency')
1471+ voucher_brw = self.pool.get('account.voucher').browse(cr,uid,voucher_id,context)
1472+ debit = credit = 0.0
1473+ # TODO: is there any other alternative then the voucher type ??
1474+ # -for sale, purchase we have but for the payment and receipt we do not have as based on the bank/cash journal we can not know its payment or receipt
1475+ if voucher_brw.type in ('purchase', 'payment'):
1476+ credit = currency_obj.compute(cr, uid, current_currency, company_currency, voucher_brw.amount, context=context)
1477+ elif voucher_brw.type in ('sale', 'receipt'):
1478+ debit = currency_obj.compute(cr, uid, current_currency, company_currency, voucher_brw.amount, context=context)
1479+ if debit < 0:
1480+ credit = -debit
1481+ debit = 0.0
1482+ if credit < 0:
1483+ debit = -credit
1484+ credit = 0.0
1485+ sign = debit - credit < 0 and -1 or 1
1486+ #set the first line of the voucher
1487+ move_line = {
1488+ 'name': voucher_brw.name or '/',
1489+ 'debit': debit,
1490+ 'credit': credit,
1491+ 'account_id': voucher_brw.account_id.id,
1492+ 'move_id': move_id,
1493+ 'journal_id': voucher_brw.journal_id.id,
1494+ 'period_id': voucher_brw.period_id.id,
1495+ 'partner_id': voucher_brw.partner_id.id,
1496+ 'currency_id': company_currency <> current_currency and current_currency or False,
1497+ 'amount_currency': company_currency <> current_currency and sign * voucher_brw.amount or 0.0,
1498+ 'date': voucher_brw.date,
1499+ 'date_maturity': voucher_brw.date_due
1500+ }
1501+ return move_line
1502+
1503+
1504+ def voucher_move_line_get_item(self, cr, uid, voucher, line, move_id, company_currency, current_currency):
1505+ return {
1506+ 'journal_id': voucher.journal_id.id,
1507+ 'period_id': voucher.period_id.id,
1508+ 'name': line.name and line.name or '/',
1509+ 'account_id': line.account_id.id,
1510+ 'move_id': move_id,
1511+ 'partner_id': voucher.partner_id.id,
1512+ 'currency_id': company_currency <> current_currency and current_currency or False,
1513+ 'analytic_account_id': line.account_analytic_id and line.account_analytic_id.id or False,
1514+ 'quantity': 1,
1515+ 'credit': 0.0,
1516+ 'debit': 0.0,
1517+ 'date': voucher.date
1518+ }
1519+
1520+
1521+ def voucher_move_line_create(self, cr, uid, voucher_id, line_total, move_id, company_currency, current_currency, context=None):
1522+ '''
1523+ Create one account move line, on the given account move, per voucher line where amount is not 0.0.
1524+ It returns Tuple with tot_line what is total of difference between debit and credit and
1525+ a list of lists with ids to be reconciled with this format (total_deb_cred,list_of_lists).
1526+
1527+ :param voucher_id: Voucher id what we are working with
1528+ :param line_total: Amount of the first line, which correspond to the amount we should totally split among all voucher lines.
1529+ :param move_id: Account move wher those lines will be joined.
1530+ :param company_currency: id of currency of the company to which the voucher belong
1531+ :param current_currency: id of currency of the voucher
1532+ :return: Tuple build as (remaining amount not allocated on voucher lines, list of account_move_line created in this method)
1533+ :rtype: tuple(int, list of int)
1534+ '''
1535+ move_line_obj = self.pool.get('account.move.line')
1536+ currency_obj = self.pool.get('res.currency')
1537+ tot_line = line_total
1538+ rec_lst_ids = []
1539+
1540+ if context is None:
1541+ context = {}
1542+
1543+ voucher_brw = self.pool.get('account.voucher').browse(cr,uid,voucher_id,context)
1544+ for line in voucher_brw.line_ids:
1545+ #create one move line per voucher line where amount is not 0.0
1546+ if not line.amount:
1547+ continue
1548+ #we check if the voucher line is fully paid or not and create a move line to balance the payment and initial invoice if needed
1549+ if line.amount == line.amount_unreconciled:
1550+ amount = line.move_line_id.amount_residual #residual amount in company currency
1551+ else:
1552+ amount = currency_obj.compute(cr, uid, current_currency, company_currency, line.untax_amount or line.amount, context=context)
1553+ move_line = self.voucher_move_line_get_item(cr, uid, voucher_brw, line, move_id, company_currency, current_currency)
1554+ if amount < 0:
1555+ amount = -amount
1556+ if line.type == 'dr':
1557+ line.type = 'cr'
1558+ else:
1559+ line.type = 'dr'
1560+
1561+ if (line.type=='dr'):
1562+ tot_line += amount
1563+ move_line['debit'] = amount
1564+ else:
1565+ tot_line -= amount
1566+ move_line['credit'] = amount
1567+
1568+ if voucher_brw.tax_id and voucher_brw.type in ('sale', 'purchase'):
1569+ move_line.update({
1570+ 'account_tax_id': voucher_brw.tax_id.id,
1571+ })
1572+ if move_line.get('account_tax_id', False):
1573+ tax_data = tax_obj.browse(cr, uid, [move_line['account_tax_id']], context=context)[0]
1574+ if not (tax_data.base_code_id and tax_data.tax_code_id):
1575+ raise osv.except_osv(_('No Account Base Code and Account Tax Code!'),_("You have to configure account base code and account tax code on the '%s' tax!") % (tax_data.name))
1576+ sign = (move_line['debit'] - move_line['credit']) < 0 and -1 or 1
1577+ move_line['amount_currency'] = company_currency <> current_currency and sign * line.amount or 0.0
1578+ voucher_line = move_line_obj.create(cr, uid, move_line)
1579+ if line.move_line_id.id:
1580+ rec_ids = [voucher_line, line.move_line_id.id]
1581+ rec_lst_ids.append(rec_ids)
1582+
1583+ return (tot_line, rec_lst_ids)
1584+
1585+ def writeoff_move_line_get(self, cr, uid, voucher_id, line_total, move_id, name, company_currency, current_currency, context=None):
1586+ '''
1587+ Set a dict to be use to create the writeoff move line.
1588+
1589+ :param voucher_id: Id of voucher what we are creating account_move.
1590+ :param line_total: Amount remaining to be allocated on lines.
1591+ :param move_id: Id of account move where this line will be added.
1592+ :param name: Description of account move line.
1593+ :param company_currency: id of currency of the company to which the voucher belong
1594+ :param current_currency: id of currency of the voucher
1595+ :return: mapping between fieldname and value of account move line to create
1596+ :rtype: dict
1597+ '''
1598+ move_line_obj = self.pool.get('account.move.line')
1599+ currency_obj = self.pool.get('res.currency')
1600+ move_line = {}
1601+
1602+ voucher_brw = self.pool.get('account.voucher').browse(cr,uid,voucher_id,context)
1603+ inv_currency_id = voucher_brw.currency_id or voucher_brw.journal_id.currency or voucher_brw.journal_id.company_id.currency_id
1604+
1605+ if not currency_obj.is_zero(cr, uid, inv_currency_id, line_total):
1606+ diff = line_total
1607+ account_id = False
1608+ if voucher_brw.payment_option == 'with_writeoff':
1609+ account_id = voucher_brw.writeoff_acc_id.id
1610+ elif voucher_brw.type in ('sale', 'receipt'):
1611+ account_id = voucher_brw.partner_id.property_account_receivable.id
1612+ else:
1613+ account_id = voucher_brw.partner_id.property_account_payable.id
1614+ move_line = {
1615+ 'name': name,
1616+ 'account_id': account_id,
1617+ 'move_id': move_id,
1618+ 'partner_id': voucher_brw.partner_id.id,
1619+ 'date': voucher_brw.date,
1620+ 'credit': diff > 0 and diff or 0.0,
1621+ 'debit': diff < 0 and -diff or 0.0,
1622+ #'amount_currency': company_currency <> current_currency and currency_obj.compute(cr, uid, company_currency, current_currency, diff * -1, context=context) or 0.0,
1623+ #'currency_id': company_currency <> current_currency and current_currency or False,
1624+ }
1625+
1626+ return move_line
1627+
1628+
1629+ def action_move_line_create(self, cr, uid, ids, context=None):
1630+ '''
1631+ Confirm the vouchers given in ids and create the journal entries for each of them
1632+ '''
1633+ if context is None:
1634+ context = {}
1635+ move_pool = self.pool.get('account.move')
1636+ move_line_pool = self.pool.get('account.move.line')
1637+ currency_pool = self.pool.get('res.currency')
1638+ tax_obj = self.pool.get('account.tax')
1639+
1640+ for voucher in self.browse(cr, uid, ids, context=context):
1641+ if voucher.move_id:
1642+ continue
1643+ company_currency = self._get_company_currency(cr, uid, voucher.id, context)
1644+ current_currency = self._get_current_currency(cr, uid, voucher.id, context)
1645+ context = self._sel_context(cr, uid, voucher.id, context)
1646+ #Create the account move record.
1647+ move_id = move_pool.create(cr, uid, self.account_move_get(cr, uid, voucher.id, context=context), context=context)
1648+ # Get the name of the account_move just created
1649+ name = move_pool.browse(cr, uid, move_id, context=context).name
1650+ #create the first line manually
1651+ move_line_id = move_line_pool.create(cr, uid, self.first_move_line_get(cr,uid,voucher.id, move_id, company_currency, current_currency, context), context)
1652+ mov_line_brw = move_line_pool.browse(cr, uid, move_line_id, context=context)
1653+ rec_list_ids = []
1654+ line_total = mov_line_brw.debit - mov_line_brw.credit
1655+ if voucher.type == 'sale':
1656+ line_total = line_total - currency_pool.compute(cr, uid, voucher.currency_id.id, company_currency, voucher.tax_amount, context=context)
1657+ elif voucher.type == 'purchase':
1658+ line_total = line_total + currency_pool.compute(cr, uid, voucher.currency_id.id, company_currency, voucher.tax_amount, context=context)
1659+
1660+ #create one move line per voucher line where amount is not 0.0
1661+ line_total, rec_list_ids = self.voucher_move_line_create(cr, uid, voucher.id, line_total, move_id, company_currency, current_currency, context)
1662+ #create the writeoff line if needed
1663+ ml_writeoff = self.writeoff_move_line_get(cr, uid, voucher.id, line_total, move_id, name, company_currency, current_currency, context)
1664+ if ml_writeoff:
1665+ ml_writeoff_id = move_line_pool.create(cr, uid, ml_writeoff, context)
1666+ #We post the voucher.
1667+ self.write(cr, uid, [voucher.id], {
1668+ 'move_id': move_id,
1669+ 'state': 'posted',
1670+ 'number': name,
1671+ })
1672+ move_pool.post(cr, uid, [move_id], context={})
1673+ #reconcile move line
1674+ for rec_ids in rec_list_ids:
1675+ if len(rec_ids) >= 2:
1676+ move_line_pool.reconcile_partial(cr, uid, rec_ids)
1677+ return True
1678+
1679+
1680+
1681+account_voucher()
1682+
1683+
1684+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
1685
1686=== added directory 'account_voucher_patch/i18n'
1687=== added file 'account_voucher_patch/i18n/es.po'
1688--- account_voucher_patch/i18n/es.po 1970-01-01 00:00:00 +0000
1689+++ account_voucher_patch/i18n/es.po 2015-04-15 16:28:26 +0000
1690@@ -0,0 +1,46 @@
1691+# Translation of OpenERP Server.
1692+# This file contains the translation of the following modules:
1693+# * account_voucher_patch
1694+#
1695+msgid ""
1696+msgstr ""
1697+"Project-Id-Version: OpenERP Server 6.0.3\n"
1698+"Report-Msgid-Bugs-To: support@openerp.com\n"
1699+"POT-Creation-Date: 2012-01-30 20:16+0000\n"
1700+"PO-Revision-Date: 2012-01-30 15:51-0400\n"
1701+"Last-Translator: Luis Escobar <luiseev@gmail.com>\n"
1702+"Language-Team: \n"
1703+"MIME-Version: 1.0\n"
1704+"Content-Type: text/plain; charset=UTF-8\n"
1705+"Content-Transfer-Encoding: 8bit\n"
1706+"Plural-Forms: \n"
1707+
1708+#. module: account_voucher_patch
1709+#: code:addons/account_voucher_patch/account_voucher.py:94
1710+#, python-format
1711+msgid "Please define a sequence on the journal !"
1712+msgstr "Por Favor defina una secuencia en el diario!"
1713+
1714+#. module: account_voucher_patch
1715+#: code:addons/account_voucher_patch/account_voucher.py:229
1716+#, python-format
1717+msgid "No Account Base Code and Account Tax Code!"
1718+msgstr "No codigo de cuenta base y codigo de la cuenta de impuesto!"
1719+
1720+#. module: account_voucher_patch
1721+#: code:addons/account_voucher_patch/account_voucher.py:229
1722+#, python-format
1723+msgid "You have to configure account base code and account tax code on the '%s' tax!"
1724+msgstr "Tiene que configurar el codigo de cuenta base y el codigo de la cuenta de Impuesto en el impuesto '%s'"
1725+
1726+#. module: account_voucher_patch
1727+#: model:ir.model,name:account_voucher_patch.model_account_voucher
1728+msgid "Accounting Voucher"
1729+msgstr "Comprobantes contables"
1730+
1731+#. module: account_voucher_patch
1732+#: code:addons/account_voucher_patch/account_voucher.py:94
1733+#, python-format
1734+msgid "Error !"
1735+msgstr "Error !"
1736+
1737
1738=== added file 'account_voucher_patch/i18n/es_VE.po'
1739--- account_voucher_patch/i18n/es_VE.po 1970-01-01 00:00:00 +0000
1740+++ account_voucher_patch/i18n/es_VE.po 2015-04-15 16:28:26 +0000
1741@@ -0,0 +1,46 @@
1742+# Translation of OpenERP Server.
1743+# This file contains the translation of the following modules:
1744+# * account_voucher_patch
1745+#
1746+msgid ""
1747+msgstr ""
1748+"Project-Id-Version: OpenERP Server 6.0.3\n"
1749+"Report-Msgid-Bugs-To: support@openerp.com\n"
1750+"POT-Creation-Date: 2012-01-30 20:16+0000\n"
1751+"PO-Revision-Date: 2012-01-30 15:51-0400\n"
1752+"Last-Translator: Luis Escobar <luiseev@gmail.com>\n"
1753+"Language-Team: \n"
1754+"MIME-Version: 1.0\n"
1755+"Content-Type: text/plain; charset=UTF-8\n"
1756+"Content-Transfer-Encoding: 8bit\n"
1757+"Plural-Forms: \n"
1758+
1759+#. module: account_voucher_patch
1760+#: code:addons/account_voucher_patch/account_voucher.py:94
1761+#, python-format
1762+msgid "Please define a sequence on the journal !"
1763+msgstr "Por Favor defina una secuencia en el diario!"
1764+
1765+#. module: account_voucher_patch
1766+#: code:addons/account_voucher_patch/account_voucher.py:229
1767+#, python-format
1768+msgid "No Account Base Code and Account Tax Code!"
1769+msgstr "No codigo de cuenta base y codigo de la cuenta de impuesto!"
1770+
1771+#. module: account_voucher_patch
1772+#: code:addons/account_voucher_patch/account_voucher.py:229
1773+#, python-format
1774+msgid "You have to configure account base code and account tax code on the '%s' tax!"
1775+msgstr "Tiene que configurar el codigo de cuenta base y el codigo de la cuenta de Impuesto en el impuesto '%s'"
1776+
1777+#. module: account_voucher_patch
1778+#: model:ir.model,name:account_voucher_patch.model_account_voucher
1779+msgid "Accounting Voucher"
1780+msgstr "Comprobantes contables"
1781+
1782+#. module: account_voucher_patch
1783+#: code:addons/account_voucher_patch/account_voucher.py:94
1784+#, python-format
1785+msgid "Error !"
1786+msgstr "Error !"
1787+
1788
1789=== added directory 'bank_management'
1790=== added file 'bank_management/__init__.py'
1791--- bank_management/__init__.py 1970-01-01 00:00:00 +0000
1792+++ bank_management/__init__.py 2015-04-15 16:28:26 +0000
1793@@ -0,0 +1,35 @@
1794+#!/usr/bin/python
1795+# -*- encoding: utf-8 -*-
1796+###########################################################################
1797+# Module Writen to OpenERP, Open Source Management Solution
1798+# Copyright (C) OpenERP Venezuela (<http://openerp.com.ve>).
1799+# All Rights Reserved
1800+###############Credits######################################################
1801+# Coded by: Humberto Arocha <humberto@openerp.com.ve>
1802+# Angelica Barrios <angélicaisabelb@gmail.com>
1803+# María Gabriela Quilarque <gabrielaquilarque97@gmail.com>
1804+# Javier Duran <javieredm@gmail.com>
1805+# Aristóbulo Meneses <ameneses@industriasdiana.gob.ve>
1806+# Planified by: Nhomar Hernandez
1807+# Finance by: Helados Gilda, C.A. http://heladosgilda.com.ve
1808+# Audited by: Humberto Arocha humberto@openerp.com.ve
1809+#############################################################################
1810+# This program is free software: you can redistribute it and/or modify
1811+# it under the terms of the GNU Affero General Public License as published by
1812+# the Free Software Foundation, either version 3 of the License, or
1813+# (at your option) any later version.
1814+#
1815+# This program is distributed in the hope that it will be useful,
1816+# but WITHOUT ANY WARRANTY; without even the implied warranty of
1817+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1818+# GNU Affero General Public License for more details.
1819+#
1820+# You should have received a copy of the GNU Affero General Public License
1821+# along with this program. If not, see <http://www.gnu.org/licenses/>.
1822+################################################################################
1823+
1824+import model
1825+import wizard
1826+import report
1827+
1828+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
1829
1830=== added file 'bank_management/__openerp__.py'
1831--- bank_management/__openerp__.py 1970-01-01 00:00:00 +0000
1832+++ bank_management/__openerp__.py 2015-04-15 16:28:26 +0000
1833@@ -0,0 +1,115 @@
1834+#!/usr/bin/python
1835+# -*- encoding: utf-8 -*-
1836+###########################################################################
1837+# Module Writen to OpenERP, Open Source Management Solution
1838+# Copyright (C) OpenERP Venezuela (<http://openerp.com.ve>).
1839+# All Rights Reserved
1840+###############Credits######################################################
1841+# Coded by: Humberto Arocha <humberto@openerp.com.ve>
1842+# Angelica Barrios <angélicaisabelb@gmail.com>
1843+# María Gabriela Quilarque <gabrielaquilarque97@gmail.com>
1844+# Javier Duran <javier@vauxoo.com>
1845+# Aristóbulo Meneses <ameneses@industriasdiana.gob.ve>
1846+# Josbel Caraballo <jcaraballo@industriasdiana.gob.ve>
1847+# Planified by: Nhomar Hernandez
1848+# Finance by: Helados Gilda, C.A. http://heladosgilda.com.ve
1849+# Audited by: Humberto Arocha humberto@openerp.com.ve
1850+#############################################################################
1851+# This program is free software: you can redistribute it and/or modify
1852+# it under the terms of the GNU Affero General Public License as published by
1853+# the Free Software Foundation, either version 3 of the License, or
1854+# (at your option) any later version.
1855+#
1856+# This program is distributed in the hope that it will be useful,
1857+# but WITHOUT ANY WARRANTY; without even the implied warranty of
1858+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1859+# GNU Affero General Public License for more details.
1860+#
1861+# You should have received a copy of the GNU Affero General Public License
1862+# along with this program. If not, see <http://www.gnu.org/licenses/>.
1863+################################################################################
1864+
1865+###
1866+### res_company --> account_management ver si se puede eliminar esta dependencia ####
1867+### retencion_iva, base_vat_ve ver si se puede eliminar esta dependencia
1868+
1869+{
1870+ "name" : "Bank Management",
1871+ "version" : "0.2",
1872+ "author" : "Vauxoo",
1873+ "website" : "http://vauxoo.com",
1874+ "category": 'Generic Modules/Accounting',
1875+ "description": """
1876+ - Management of check book, check note
1877+ - Print format of venezuelan check note
1878+ - Traceability of check note throught paid support
1879+ - Account voucher payment
1880+---------------------------------------------------------
1881+ 1.- Create bank account
1882+ 2.- Create check book request
1883+ 3.- Load check note
1884+ 4.- Make supplier invoice
1885+ 5.- Create one supplier payment
1886+ 6.- Create support (click button)
1887+
1888+ This module required openerp_print module, which is in the project: lp:addons-vauxoo,
1889+ for print directly to the printer.
1890+
1891+ If you want to add withholding vat on Voucher Payment Detailed report you must be install the module bank_iva_report hosted in lp:addons-vauxoo
1892+ If you want to print reports directly to the printer you must be install the module bank_print_report hosted in lp:addons-vauxoo
1893+
1894+ This module requires additional libraries to work properly
1895+ # pip install cups or apt-get install python-cups (in Debian based OS)
1896+
1897+ Also needs lpr binary to work properly
1898+ # apt-get install lpr (in Debian based OS)
1899+ """,
1900+ 'init_xml': [],
1901+ "depends" : [
1902+ "base",
1903+ "account_accountant",
1904+ "account_voucher",
1905+ "account_voucher_multi_partner",
1906+ "account_voucher_patch"
1907+ ],
1908+ 'update_xml': [
1909+ 'view/check_report.xml',
1910+ 'view/check_book_request_view.xml',
1911+ 'view/check_book_view.xml',
1912+ 'view/check_note_view.xml',
1913+ 'view/res_partner_bank_view.xml',
1914+ 'wizard/cancel_wizard.xml',
1915+ 'view/voucher_pay_support_view.xml',
1916+ #~ 'view/pay_order_contrapartida.xml',
1917+ #~ 'view/pay_order_view.xml',
1918+ 'view/motive_cancel_voucher_pay_support.xml',
1919+ 'view/bank_management_menu.xml',
1920+ 'wizard/voucher_pay_support_wizard_pay_order.xml',
1921+ 'wizard/chk_book_gral.xml',
1922+ 'view/bank_management_inherits.xml',
1923+ 'view/bank_management_inherits_ventas.xml',
1924+ 'security/ir.model.access.csv',
1925+ 'security/account_voucher_group.xml',
1926+ 'data/bank_management_data.xml',
1927+ 'data/res.bank.xml',
1928+ 'data/banesco_data.xml',
1929+ 'data/bicentenario_data.xml',
1930+ 'data/caribe_bank_data.xml',
1931+ 'data/exterior_bank_data.xml',
1932+ 'data/fondo_comun_bank_data.xml',
1933+ 'data/industrial_data.xml',
1934+ 'data/mercantil_bank_data.xml',
1935+ 'data/venezuela_bank_data.xml',
1936+ ],
1937+ 'demo_xml': [],
1938+ 'test': [],
1939+ 'installable': True,
1940+ 'active': False,
1941+ 'external_dependencies': {
1942+ 'python': ['cups',],
1943+ 'bin': ['lpr',],
1944+ },
1945+}
1946+
1947+
1948+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
1949
1950=== added file 'bank_management/check_book_request_sequence.xml'
1951--- bank_management/check_book_request_sequence.xml 1970-01-01 00:00:00 +0000
1952+++ bank_management/check_book_request_sequence.xml 2015-04-15 16:28:26 +0000
1953@@ -0,0 +1,24 @@
1954+<?xml version="1.0" encoding="utf-8"?>
1955+<openerp>
1956+ <data noupdate="1"> <!-- esto es para cargar las secuencias en el modulo, para inicializarlas con 0 se carga con 1 no lee -->
1957+
1958+ <!-- Secuencias para el modelo check.book.request para el code -->
1959+ <record id="seq_check_book" model="ir.sequence.type">
1960+ <field name="name">Check book Request</field>
1961+ <field name="code">check.book.request</field>
1962+ </record>
1963+
1964+ <!-- Sequences forcheck.book.request para el code -->
1965+ <record id="seq_check_book_code" model="ir.sequence">
1966+ <field name="name">Check book Request</field>
1967+ <field name="code">check.book.request</field>
1968+ <field name="prefix">SOL.CHQ.:</field>
1969+ <field name="padding">8</field>
1970+ <field name="number_increment">1</field>
1971+ </record>
1972+
1973+ </data>
1974+</openerp>
1975+
1976+
1977+
1978
1979=== added directory 'bank_management/data'
1980=== added file 'bank_management/data/banesco_data.xml'
1981--- bank_management/data/banesco_data.xml 1970-01-01 00:00:00 +0000
1982+++ bank_management/data/banesco_data.xml 2015-04-15 16:28:26 +0000
1983@@ -0,0 +1,54 @@
1984+<?xml version="1.0" ?>
1985+<openerp>
1986+
1987+<!--
1988+ res_bank
1989+-->
1990+ <data noupdate="1">
1991+ <record forcecreate="False" id="res_bank_Banesco" model="res.bank">
1992+ <field name="name">BANESCO BANCO UNIVERSAL S.A.C.A.</field>
1993+ <field search="[('code','=','VE')]" model='res.country' name='country'/>
1994+ <field name="code">0134</field>
1995+ <field eval="500.0" name="max_lim"/>
1996+ <field eval="&quot;&quot;&quot;&lt;header&gt;
1997+ &lt;pageTemplate&gt;
1998+ &lt;frame id=&quot;first&quot; x1=&quot;0.0mm&quot; y1=&quot;0.0mm&quot; width=&quot;178.0mm&quot; height=&quot;80.0mm&quot;/&gt;
1999+ &lt;pageGraphics&gt;
2000+ &lt;setFont name=&quot;Courier&quot; size=&quot;8&quot;/&gt;
2001+ &lt;!--cantidad--&gt;
2002+ &lt;place x=&quot;135.0mm&quot; y=&quot;75.0mm&quot; width=&quot;80.0mm&quot; height=&quot;5.0mm&quot;&gt;
2003+ &lt;para&gt;***[[ formatLang(get_monto() ) ]]***&lt;/para&gt;
2004+ &lt;/place&gt;
2005+ &lt;!--beneficiario--&gt;
2006+ &lt;place x=&quot;35.0mm&quot; y=&quot;60.0mm&quot; width=&quot;140.0mm&quot; height=&quot;10.0mm&quot;&gt;
2007+ &lt;para&gt;[[get_beneficiario(o.id)]]&lt;/para&gt;
2008+ &lt;/place&gt;
2009+ &lt;!--cantidad en letras--&gt;
2010+&lt;!-- &lt;place x=&quot;36.0mm&quot; y=&quot;50.0mm&quot; width=&quot;135.0mm&quot; height=&quot;10.0mm&quot;&gt;
2011+ &lt;para&gt;[[ obt_texto() ]]&lt;/para&gt;
2012+ &lt;/place&gt;--&gt;
2013+ &lt;!--fecha--&gt;
2014+ &lt;place x=&quot;30.0mm&quot; y=&quot;44.0mm&quot; width=&quot;60.0mm&quot; height=&quot;10.0mm&quot;&gt;
2015+ &lt;para&gt;[[ get_fecha()[0] ]]&lt;/para&gt;
2016+ &lt;/place&gt;
2017+ &lt;!--ano de endose--&gt;
2018+ &lt;place x=&quot;80.0mm&quot; y=&quot;44.0mm&quot; width=&quot;40.0mm&quot; height=&quot;10.0mm&quot;&gt;
2019+ &lt;para&gt;[[ get_fecha()[1] ]]&lt;/para&gt;
2020+ &lt;/place&gt;
2021+ &lt;!--tiempo de endose--&gt;
2022+ &lt;place x=&quot;89.0mm&quot; y=&quot;22.0mm&quot; width=&quot;80.0mm&quot; height=&quot;10.0mm&quot;&gt;
2023+ &lt;para&gt;CADUCA A LOS [[ company.expiry]] DÍAS / NO ENDOSABLE&lt;/para&gt;
2024+ &lt;/place&gt;
2025+ &lt;/pageGraphics&gt;
2026+ &lt;/pageTemplate&gt;
2027+&lt;/header&gt; &quot;&quot;&quot;" name="format_h"/>
2028+ <field eval="100.0" name="min_lim"/>
2029+ </record>
2030+ </data>
2031+
2032+
2033+
2034+
2035+</openerp>
2036+
2037+
2038
2039=== added file 'bank_management/data/bank_management_data.xml'
2040--- bank_management/data/bank_management_data.xml 1970-01-01 00:00:00 +0000
2041+++ bank_management/data/bank_management_data.xml 2015-04-15 16:28:26 +0000
2042@@ -0,0 +1,11 @@
2043+<?xml version="1.0" encoding="utf-8"?>
2044+<openerp>
2045+ <data noupdate="1">
2046+
2047+ <record forcecreate="False" id="decimal_bank_mana" model="decimal.precision">
2048+ <field name="name">Bank</field>
2049+ <field name="digits">2</field>
2050+ </record>
2051+
2052+ </data>
2053+</openerp>
2054
2055=== added file 'bank_management/data/bicentenario_data.xml'
2056--- bank_management/data/bicentenario_data.xml 1970-01-01 00:00:00 +0000
2057+++ bank_management/data/bicentenario_data.xml 2015-04-15 16:28:26 +0000
2058@@ -0,0 +1,64 @@
2059+<?xml version="1.0" ?>
2060+<openerp>
2061+
2062+<!--
2063+ res_bank
2064+-->
2065+
2066+ <data noupdate="1">
2067+ <record forcecreate="False" id="res_bank_Bicentenario" model="res.bank">
2068+ <field name="name">BANCO BICENTENARIO BANCO UNIVERSAL, C.A.</field>
2069+ <field name="code">0175</field>
2070+ <field search="[('code','=','VE')]" model='res.country' name='country'/>
2071+ <field eval="500.0" name="max_lim"/>
2072+ <field eval="500.0" name="max_lim"/>
2073+ <field eval="&quot;&quot;&quot; &lt;header&gt;
2074+ &lt;pageTemplate&gt;
2075+ &lt;frame id=&quot;first&quot; x1=&quot;0.0mm&quot; y1=&quot;0.0mm&quot; width=&quot;178.0mm&quot; height=&quot;80.0mm&quot;/&gt;
2076+ &lt;pageGraphics&gt;
2077+
2078+ &lt;!--cantidad--&gt;
2079+ &lt;place x=&quot;135.0mm&quot; y=&quot;66.0mm&quot; width=&quot;41.0mm&quot; height=&quot;10.0mm&quot;&gt;
2080+ &lt;para&gt;***[[ o.amount]]***&lt;/para&gt;
2081+ &lt;/place&gt;
2082+
2083+ &lt;!--beneficiario--&gt;
2084+ &lt;place x=&quot;25.0mm&quot; y=&quot;50.0mm&quot; width=&quot;140.0mm&quot; height=&quot;10.0mm&quot;&gt;
2085+ &lt;para style=&quot;P1&quot;&gt;[[o.payee_id.partner_id.name.upper()]]&lt;/para&gt;
2086+ &lt;/place&gt;
2087+
2088+ &lt;!--cantidad en letras--&gt;
2089+ &lt;place x=&quot;26.0mm&quot; y=&quot;40.0mm&quot; width=&quot;135.0mm&quot; height=&quot;12.0mm&quot;&gt;
2090+ &lt;para&gt;[[ obt_texto(o.amount) ]]&lt;/para&gt;
2091+ &lt;/place&gt;
2092+
2093+ &lt;!--fecha--&gt;
2094+ &lt;place x=&quot;30.0mm&quot; y=&quot;25.0mm&quot; width=&quot;40.0mm&quot; height=&quot;10.0mm&quot;&gt;
2095+ &lt;para&gt;Caracas [[ o.date]] de&lt;/para&gt;
2096+ &lt;/place&gt;
2097+
2098+ &lt;!--ano de endose--&gt;
2099+ &lt;place x=&quot;80.0mm&quot; y=&quot;25.0mm&quot; width=&quot;40.0mm&quot; height=&quot;10.0mm&quot;&gt;
2100+ &lt;para&gt;10&lt;/para&gt;
2101+ &lt;/place&gt;
2102+
2103+ &lt;!--tiempo de endose--&gt;
2104+ &lt;place x=&quot;100.0mm&quot; y=&quot;10.0mm&quot; width=&quot;60.0mm&quot; height=&quot;10.0mm&quot;&gt;
2105+ &lt;para&gt;Caduca a los [[ o.expiry]] días&lt;/para&gt;
2106+ &lt;/place&gt;
2107+
2108+ &lt;setFont name=&quot;Helvetica&quot; size=&quot;8&quot;/&gt;
2109+
2110+ &lt;/pageGraphics&gt;
2111+ &lt;/pageTemplate&gt;
2112+ &lt;/header&gt; &quot;&quot;&quot;" name="format_h"/>
2113+ <field eval="100.0" name="min_lim"/>
2114+ </record>
2115+ </data>
2116+
2117+
2118+
2119+
2120+</openerp>
2121+
2122+
2123
2124=== added file 'bank_management/data/caribe_bank_data.xml'
2125--- bank_management/data/caribe_bank_data.xml 1970-01-01 00:00:00 +0000
2126+++ bank_management/data/caribe_bank_data.xml 2015-04-15 16:28:26 +0000
2127@@ -0,0 +1,57 @@
2128+<?xml version="1.0" ?>
2129+<openerp>
2130+
2131+<!--
2132+ res_bank
2133+-->
2134+
2135+ <data noupdate="1">
2136+ <record forcecreate="False" id="res_bank_caribe" model="res.bank">
2137+ <field name="name">BANCO DEL CARIBE, C.A. BANCO UNIVERSAL</field>
2138+ <field search="[('code','=','VE')]" model='res.country' name='country'/>
2139+ <field name="code">0114</field>
2140+ <field eval="500.0" name="max_lim"/>
2141+
2142+ <field eval="&quot;&quot;&quot;&lt;header&gt;
2143+ &lt;pageTemplate&gt;
2144+ &lt;frame id=&quot;first&quot; x1=&quot;0.0mm&quot; y1=&quot;0.0mm&quot; width=&quot;178.0mm&quot; height=&quot;80.0mm&quot;/&gt;
2145+ &lt;pageGraphics&gt;
2146+ &lt;setFont name=&quot;Courier&quot; size=&quot;8&quot;/&gt;
2147+ &lt;!--cantidad--&gt;
2148+ &lt;place x=&quot;135.0mm&quot; y=&quot;74.0mm&quot; width=&quot;80.0mm&quot; height=&quot;5.0mm&quot;&gt;
2149+ &lt;para&gt;***[[ formatLang(get_monto() ) ]]***&lt;/para&gt;
2150+ &lt;/place&gt;
2151+ &lt;!--beneficiario--&gt;
2152+ &lt;place x=&quot;35.0mm&quot; y=&quot;57.0mm&quot; width=&quot;140.0mm&quot; height=&quot;10.0mm&quot;&gt;
2153+ &lt;para&gt;[[get_beneficiario(o.id)]]&lt;/para&gt;
2154+ &lt;/place&gt;
2155+ &lt;!--cantidad en letras--&gt;
2156+&lt;!-- &lt;place x=&quot;36.0mm&quot; y=&quot;50.0mm&quot; width=&quot;135.0mm&quot; height=&quot;10.0mm&quot;&gt;
2157+ &lt;para&gt;[[ obt_texto() ]]&lt;/para&gt;
2158+ &lt;/place&gt;--&gt;
2159+ &lt;!--fecha--&gt;
2160+ &lt;place x=&quot;30.0mm&quot; y=&quot;41.0mm&quot; width=&quot;60.0mm&quot; height=&quot;10.0mm&quot;&gt;
2161+ &lt;para&gt;[[ get_fecha()[0] ]]&lt;/para&gt;
2162+ &lt;/place&gt;
2163+ &lt;!--ano de endose--&gt;
2164+ &lt;place x=&quot;80.0mm&quot; y=&quot;41.0mm&quot; width=&quot;40.0mm&quot; height=&quot;10.0mm&quot;&gt;
2165+ &lt;para&gt;[[ get_fecha()[1] ]]&lt;/para&gt;
2166+ &lt;/place&gt;
2167+ &lt;!--tiempo de endose--&gt;
2168+ &lt;place x=&quot;89.0mm&quot; y=&quot;24.0mm&quot; width=&quot;80.0mm&quot; height=&quot;10.0mm&quot;&gt;
2169+ &lt;para&gt;CADUCA A LOS [[ company.expiry]] DÍAS / NO ENDOSABLE&lt;/para&gt;
2170+ &lt;/place&gt;
2171+ &lt;/pageGraphics&gt;
2172+ &lt;/pageTemplate&gt;
2173+&lt;/header&gt; &quot;&quot;&quot;" name="format_h"/>
2174+
2175+ <field eval="100.0" name="min_lim"/>
2176+ </record>
2177+ </data>
2178+
2179+
2180+
2181+
2182+</openerp>
2183+
2184+
2185
2186=== added file 'bank_management/data/exterior_bank_data.xml'
2187--- bank_management/data/exterior_bank_data.xml 1970-01-01 00:00:00 +0000
2188+++ bank_management/data/exterior_bank_data.xml 2015-04-15 16:28:26 +0000
2189@@ -0,0 +1,58 @@
2190+<?xml version="1.0" ?>
2191+<openerp>
2192+
2193+<!--
2194+ res_bank
2195+-->
2196+
2197+ <data noupdate="1">
2198+ <record forcecreate="False" id="res_bank_exterior" model="res.bank">
2199+ <field name="name">BANCO EXTERIOR, C.A. BANCO UNIVERSAL</field>
2200+ <field search="[('code','=','VE')]" model='res.country' name='country'/>
2201+ <field name="code">0115</field>
2202+ <field eval="500.0" name="max_lim"/>
2203+
2204+ <field eval="&quot;&quot;&quot;&lt;header&gt;
2205+ &lt;pageTemplate&gt;
2206+ &lt;frame id=&quot;first&quot; x1=&quot;0.0mm&quot; y1=&quot;0.0mm&quot; width=&quot;178.0mm&quot; height=&quot;80.0mm&quot;/&gt;
2207+ &lt;pageGraphics&gt;
2208+ &lt;setFont name=&quot;Courier&quot; size=&quot;8&quot;/&gt;
2209+ &lt;!--cantidad--&gt;
2210+ &lt;place x=&quot;135.0mm&quot; y=&quot;72.0mm&quot; width=&quot;80.0mm&quot; height=&quot;5.0mm&quot;&gt;
2211+ &lt;para&gt;***[[ formatLang(get_monto() ) ]]***&lt;/para&gt;
2212+ &lt;/place&gt;
2213+ &lt;!--beneficiario--&gt;
2214+ &lt;place x=&quot;35.0mm&quot; y=&quot;56.0mm&quot; width=&quot;140.0mm&quot; height=&quot;10.0mm&quot;&gt;
2215+ &lt;para&gt;[[get_beneficiario(o.id)]]&lt;/para&gt;
2216+ &lt;/place&gt;
2217+ &lt;!--cantidad en letras--&gt;
2218+&lt;!-- &lt;place x=&quot;36.0mm&quot; y=&quot;50.0mm&quot; width=&quot;135.0mm&quot; height=&quot;10.0mm&quot;&gt;
2219+ &lt;para&gt;[[ obt_texto() ]]&lt;/para&gt;
2220+ &lt;/place&gt;--&gt;
2221+ &lt;!--fecha--&gt;
2222+ &lt;place x=&quot;10.0mm&quot; y=&quot;40.0mm&quot; width=&quot;60.0mm&quot; height=&quot;10.0mm&quot;&gt;
2223+ &lt;para&gt;[[ get_fecha()[0] ]]&lt;/para&gt;
2224+ &lt;/place&gt;
2225+ &lt;!--ano de endose--&gt;
2226+ &lt;place x=&quot;70.0mm&quot; y=&quot;40.0mm&quot; width=&quot;40.0mm&quot; height=&quot;10.0mm&quot;&gt;
2227+ &lt;para&gt;[[ get_fecha()[1] ]]&lt;/para&gt;
2228+ &lt;/place&gt;
2229+ &lt;!--tiempo de endose--&gt;
2230+ &lt;place x=&quot;20.0mm&quot; y=&quot;21.0mm&quot; width=&quot;80.0mm&quot; height=&quot;10.0mm&quot;&gt;
2231+ &lt;para&gt;CADUCA A LOS [[ company.expiry]] DÍAS / NO ENDOSABLE&lt;/para&gt;
2232+ &lt;/place&gt;
2233+ &lt;/pageGraphics&gt;
2234+ &lt;/pageTemplate&gt;
2235+&lt;/header&gt; &quot;&quot;&quot;" name="format_h"/>
2236+
2237+
2238+ <field eval="100.0" name="min_lim"/>
2239+ </record>
2240+ </data>
2241+
2242+
2243+
2244+
2245+</openerp>
2246+
2247+
2248
2249=== added file 'bank_management/data/fondo_comun_bank_data.xml'
2250--- bank_management/data/fondo_comun_bank_data.xml 1970-01-01 00:00:00 +0000
2251+++ bank_management/data/fondo_comun_bank_data.xml 2015-04-15 16:28:26 +0000
2252@@ -0,0 +1,58 @@
2253+<?xml version="1.0" ?>
2254+<openerp>
2255+
2256+<!--
2257+ res_bank
2258+-->
2259+
2260+ <data noupdate="1">
2261+ <record forcecreate="False" id="res_bank_fondo_comun" model="res.bank">
2262+ <field name="name">BFC BANCO FONDO COMUN C.A. BANCO UNIVERSAL</field>
2263+ <field search="[('code','=','VE')]" model='res.country' name='country'/>
2264+ <field name="code">0151</field>
2265+ <field eval="500.0" name="max_lim"/>
2266+
2267+ <field eval="&quot;&quot;&quot;&lt;header&gt;
2268+ &lt;pageTemplate&gt;
2269+ &lt;frame id=&quot;first&quot; x1=&quot;0.0mm&quot; y1=&quot;0.0mm&quot; width=&quot;178.0mm&quot; height=&quot;80.0mm&quot;/&gt;
2270+ &lt;pageGraphics&gt;
2271+ &lt;setFont name=&quot;Courier&quot; size=&quot;8&quot;/&gt;
2272+ &lt;!--cantidad--&gt;
2273+ &lt;place x=&quot;135.0mm&quot; y=&quot;74.0mm&quot; width=&quot;80.0mm&quot; height=&quot;5.0mm&quot;&gt;
2274+ &lt;para&gt;***[[ formatLang(get_monto() ) ]]***&lt;/para&gt;
2275+ &lt;/place&gt;
2276+ &lt;!--beneficiario--&gt;
2277+ &lt;place x=&quot;35.0mm&quot; y=&quot;55.0mm&quot; width=&quot;140.0mm&quot; height=&quot;10.0mm&quot;&gt;
2278+ &lt;para&gt;[[get_beneficiario(o.id)]]&lt;/para&gt;
2279+ &lt;/place&gt;
2280+ &lt;!--cantidad en letras--&gt;
2281+&lt;!-- &lt;place x=&quot;36.0mm&quot; y=&quot;50.0mm&quot; width=&quot;135.0mm&quot; height=&quot;10.0mm&quot;&gt;
2282+ &lt;para&gt;[[ obt_texto() ]]&lt;/para&gt;
2283+ &lt;/place&gt;--&gt;
2284+ &lt;!--fecha--&gt;
2285+ &lt;place x=&quot;18.0mm&quot; y=&quot;40.0mm&quot; width=&quot;60.0mm&quot; height=&quot;10.0mm&quot;&gt;
2286+ &lt;para&gt;[[ get_fecha()[0] ]]&lt;/para&gt;
2287+ &lt;/place&gt;
2288+ &lt;!--ano de endose--&gt;
2289+ &lt;place x=&quot;84.0mm&quot; y=&quot;40.0mm&quot; width=&quot;40.0mm&quot; height=&quot;10.0mm&quot;&gt;
2290+ &lt;para&gt;[[ get_fecha()[1] ]]&lt;/para&gt;
2291+ &lt;/place&gt;
2292+ &lt;!--tiempo de endose--&gt;
2293+ &lt;place x=&quot;20.0mm&quot; y=&quot;20.0mm&quot; width=&quot;80.0mm&quot; height=&quot;10.0mm&quot;&gt;
2294+ &lt;para&gt;CADUCA A LOS [[ company.expiry]] DÍAS / NO ENDOSABLE&lt;/para&gt;
2295+ &lt;/place&gt;
2296+ &lt;/pageGraphics&gt;
2297+ &lt;/pageTemplate&gt;
2298+&lt;/header&gt; &quot;&quot;&quot;" name="format_h"/>
2299+
2300+
2301+ <field eval="100.0" name="min_lim"/>
2302+ </record>
2303+ </data>
2304+
2305+
2306+
2307+
2308+</openerp>
2309+
2310+
2311
2312=== added file 'bank_management/data/industrial_data.xml'
2313--- bank_management/data/industrial_data.xml 1970-01-01 00:00:00 +0000
2314+++ bank_management/data/industrial_data.xml 2015-04-15 16:28:26 +0000
2315@@ -0,0 +1,60 @@
2316+<?xml version="1.0" ?>
2317+<openerp>
2318+
2319+<!--
2320+ res_bank
2321+-->
2322+
2323+ <data noupdate="1">
2324+ <record forcecreate="False" id="res_bank_Industrial" model="res.bank">
2325+ <field name="name">BANCO INDUSTRIAL DE VENEZUELA, C.A.</field>
2326+ <field search="[('code','=','VE')]" model='res.country' name='country'/>
2327+ <field name="code">0003</field>
2328+ <field eval="500.0" name="max_lim"/>
2329+
2330+ <field eval="&quot;&quot;&quot;&lt;header&gt;
2331+ &lt;pageTemplate&gt;
2332+ &lt;frame id=&quot;first&quot; x1=&quot;0.0mm&quot; y1=&quot;0.0mm&quot; width=&quot;178.0mm&quot; height=&quot;80.0mm&quot;/&gt;
2333+ &lt;pageGraphics&gt;
2334+ &lt;setFont name=&quot;Courier&quot; size=&quot;8&quot;/&gt;
2335+ &lt;!--cantidad--&gt;
2336+ &lt;place x=&quot;125.0mm&quot; y=&quot;74.0mm&quot; width=&quot;80.0mm&quot; height=&quot;5.0mm&quot;&gt;
2337+ &lt;para&gt;***[[ formatLang(get_monto() ) ]]***&lt;/para&gt;
2338+ &lt;/place&gt;
2339+ &lt;!--beneficiario--&gt;
2340+ &lt;place x=&quot;35.0mm&quot; y=&quot;56.0mm&quot; width=&quot;140.0mm&quot; height=&quot;10.0mm&quot;&gt;
2341+ &lt;para&gt;[[get_beneficiario(o.id)]]&lt;/para&gt;
2342+ &lt;/place&gt;
2343+ &lt;!--cantidad en letras--&gt;
2344+&lt;!-- &lt;place x=&quot;36.0mm&quot; y=&quot;50.0mm&quot; width=&quot;135.0mm&quot; height=&quot;10.0mm&quot;&gt;
2345+ &lt;para&gt;[[ obt_texto() ]]&lt;/para&gt;
2346+ &lt;/place&gt;--&gt;
2347+ &lt;!--fecha--&gt;
2348+ &lt;place x=&quot;10.0mm&quot; y=&quot;42.0mm&quot; width=&quot;60.0mm&quot; height=&quot;10.0mm&quot;&gt;
2349+ &lt;para&gt;[[ get_fecha()[0] ]]&lt;/para&gt;
2350+ &lt;/place&gt;
2351+ &lt;!--ano de endose--&gt;
2352+ &lt;place x=&quot;75.0mm&quot; y=&quot;42.0mm&quot; width=&quot;40.0mm&quot; height=&quot;10.0mm&quot;&gt;
2353+ &lt;para&gt;[[ get_fecha()[1] ]]&lt;/para&gt;
2354+ &lt;/place&gt;
2355+ &lt;!--tiempo de endose--&gt;
2356+ &lt;place x=&quot;30.0mm&quot; y=&quot;21.0mm&quot; width=&quot;80.0mm&quot; height=&quot;10.0mm&quot;&gt;
2357+ &lt;para&gt;CADUCA A LOS [[ company.expiry]] DÍAS / NO ENDOSABLE&lt;/para&gt;
2358+ &lt;/place&gt;
2359+ &lt;/pageGraphics&gt;
2360+ &lt;/pageTemplate&gt;
2361+&lt;/header&gt; &quot;&quot;&quot;" name="format_h"/>
2362+
2363+
2364+ <field eval="100.0" name="min_lim"/>
2365+
2366+
2367+ </record>
2368+ </data>
2369+
2370+
2371+
2372+
2373+</openerp>
2374+
2375+
2376
2377=== added file 'bank_management/data/mercantil_bank_data.xml'
2378--- bank_management/data/mercantil_bank_data.xml 1970-01-01 00:00:00 +0000
2379+++ bank_management/data/mercantil_bank_data.xml 2015-04-15 16:28:26 +0000
2380@@ -0,0 +1,58 @@
2381+<?xml version="1.0" ?>
2382+<openerp>
2383+
2384+<!--
2385+ res_bank
2386+-->
2387+
2388+ <data noupdate="1">
2389+ <record forcecreate="False" id="res_bank_mercantil" model="res.bank">
2390+ <field name="name">BANCO MERCANTIL, C.A. S.A.C.A. BANCO UNIVERSAL</field>
2391+ <field search="[('code','=','VE')]" model='res.country' name='country'/>
2392+ <field name="code">0105</field>
2393+ <field eval="500.0" name="max_lim"/>
2394+
2395+ <field eval="&quot;&quot;&quot;&lt;header&gt;
2396+ &lt;pageTemplate&gt;
2397+ &lt;frame id=&quot;first&quot; x1=&quot;0.0mm&quot; y1=&quot;0.0mm&quot; width=&quot;178.0mm&quot; height=&quot;80.0mm&quot;/&gt;
2398+ &lt;pageGraphics&gt;
2399+ &lt;setFont name=&quot;Courier&quot; size=&quot;8&quot;/&gt;
2400+ &lt;!--cantidad--&gt;
2401+ &lt;place x=&quot;135.0mm&quot; y=&quot;73.0mm&quot; width=&quot;80.0mm&quot; height=&quot;5.0mm&quot;&gt;
2402+ &lt;para&gt;***[[ formatLang(get_monto() ) ]]***&lt;/para&gt;
2403+ &lt;/place&gt;
2404+ &lt;!--beneficiario--&gt;
2405+ &lt;place x=&quot;35.0mm&quot; y=&quot;56.0mm&quot; width=&quot;140.0mm&quot; height=&quot;10.0mm&quot;&gt;
2406+ &lt;para&gt;[[get_beneficiario(o.id)]]&lt;/para&gt;
2407+ &lt;/place&gt;
2408+ &lt;!--cantidad en letras--&gt;
2409+&lt;!-- &lt;place x=&quot;36.0mm&quot; y=&quot;50.0mm&quot; width=&quot;135.0mm&quot; height=&quot;10.0mm&quot;&gt;
2410+ &lt;para&gt;[[ obt_texto() ]]&lt;/para&gt;
2411+ &lt;/place&gt;--&gt;
2412+ &lt;!--fecha--&gt;
2413+ &lt;place x=&quot;30.0mm&quot; y=&quot;41.0mm&quot; width=&quot;60.0mm&quot; height=&quot;10.0mm&quot;&gt;
2414+ &lt;para&gt;[[ get_fecha()[0] ]]&lt;/para&gt;
2415+ &lt;/place&gt;
2416+ &lt;!--ano de endose--&gt;
2417+ &lt;place x=&quot;80.0mm&quot; y=&quot;41.0mm&quot; width=&quot;40.0mm&quot; height=&quot;10.0mm&quot;&gt;
2418+ &lt;para&gt;[[ get_fecha()[1] ]]&lt;/para&gt;
2419+ &lt;/place&gt;
2420+ &lt;!--tiempo de endose--&gt;
2421+ &lt;place x=&quot;89.0mm&quot; y=&quot;22.0mm&quot; width=&quot;80.0mm&quot; height=&quot;10.0mm&quot;&gt;
2422+ &lt;para&gt;CADUCA A LOS [[ company.expiry]] DÍAS / NO ENDOSABLE&lt;/para&gt;
2423+ &lt;/place&gt;
2424+ &lt;/pageGraphics&gt;
2425+ &lt;/pageTemplate&gt;
2426+&lt;/header&gt; &quot;&quot;&quot;" name="format_h"/>
2427+
2428+
2429+ <field eval="100.0" name="min_lim"/>
2430+ </record>
2431+ </data>
2432+
2433+
2434+
2435+
2436+</openerp>
2437+
2438+
2439
2440=== added file 'bank_management/data/res.bank.xml'
2441--- bank_management/data/res.bank.xml 1970-01-01 00:00:00 +0000
2442+++ bank_management/data/res.bank.xml 2015-04-15 16:28:26 +0000
2443@@ -0,0 +1,216 @@
2444+<?xml version="1.0" encoding="utf-8"?>
2445+<openerp>
2446+ <data noupdate="1">
2447+ <record id="bank1" model="res.bank">
2448+ <field name="name">BANCO PROVINCIAL, S.A. BANCO UNIVERSAL</field>
2449+ <field search="[('code','=','VE')]" model='res.country' name='country'/>
2450+ <field name="code">0108</field>
2451+ <field name="min_lim">0.0</field>
2452+ <field name="max_lim">0.0</field>
2453+ </record>
2454+ <record id="bank2" model="res.bank">
2455+ <field name="name">BANCO OCCIDENTAL DE DESCUENTO BANCO UNIVERSAL, C.A. S.A.C.A</field>
2456+ <field search="[('code','=','VE')]" model='res.country' name='country'/>
2457+ <field name="code">0116</field>
2458+ <field name="min_lim">0.0</field>
2459+ <field name="max_lim">0.0</field>
2460+ </record>
2461+ <record id="bank3" model="res.bank">
2462+ <field name="name">VENEZOLANO DE CREDITO, S.A. BANCO UNIVERSAL</field>
2463+ <field search="[('code','=','VE')]" model='res.country' name='country'/>
2464+ <field name="code">0104</field>
2465+ <field name="min_lim">0.0</field>
2466+ <field name="max_lim">0.0</field>
2467+ </record>
2468+ <record id="bank4" model="res.bank">
2469+ <field name="name">BANCO FEDERAL, C.A.</field>
2470+ <field search="[('code','=','VE')]" model='res.country' name='country'/>
2471+ <field name="code">0133</field>
2472+ <field name="min_lim">0.0</field>
2473+ <field name="max_lim">0.0</field>
2474+ </record>
2475+ <record id="bank5" model="res.bank">
2476+ <field name="name">BANCO PLAZA, C.A.</field>
2477+ <field search="[('code','=','VE')]" model='res.country' name='country'/>
2478+ <field name="code">0138</field>
2479+ <field name="min_lim">0.0</field>
2480+ <field name="max_lim">0.0</field>
2481+ </record>
2482+ <record id="bank6" model="res.bank">
2483+ <field name="name">BANCO CENTRAL DE VENEZUELA</field>
2484+ <field search="[('code','=','VE')]" model='res.country' name='country'/>
2485+ <field name="code">0001</field>
2486+ <field name="min_lim">0.0</field>
2487+ <field name="max_lim">0.0</field>
2488+ </record>
2489+ <record id="bank7" model="res.bank">
2490+ <field name="name">Banco de Comercio Exterior – Venezuela</field>
2491+ <field search="[('code','=','VE')]" model='res.country' name='country'/>
2492+ <field name="code">BCE</field>
2493+ <field name="min_lim">0.0</field>
2494+ <field name="max_lim">0.0</field>
2495+ </record>
2496+ <record id="bank8" model="res.bank">
2497+ <field name="name">BANCO CORO, C.A.</field>
2498+ <field search="[('code','=','VE')]" model='res.country' name='country'/>
2499+ <field name="code">0006</field>
2500+ <field name="min_lim">0.0</field>
2501+ <field name="max_lim">0.0</field>
2502+ </record>
2503+ <record id="bank9" model="res.bank">
2504+ <field name="name">BANCO GUAYANA, C.A.</field>
2505+ <field search="[('code','=','VE')]" model='res.country' name='country'/>
2506+ <field name="code">0008</field>
2507+ <field name="min_lim">0.0</field>
2508+ <field name="max_lim">0.0</field>
2509+ </record>
2510+ <record id="bank10" model="res.bank">
2511+ <field name="name">CORP BANCA 0 C.A. BANCO UNIVERSAL</field>
2512+ <field search="[('code','=','VE')]" model='res.country' name='country'/>
2513+ <field name="code">0121</field>
2514+ <field name="min_lim">0.0</field>
2515+ <field name="max_lim">0.0</field>
2516+ </record>
2517+ <record id="bank11" model="res.bank">
2518+ <field name="name">BANCO CARONI, C.A. BANCO UNIVERSAL</field>
2519+ <field search="[('code','=','VE')]" model='res.country' name='country'/>
2520+ <field name="code">0128</field>
2521+ <field name="min_lim">0.0</field>
2522+ <field name="max_lim">0.0</field>
2523+ </record>
2524+ <record id="bank12" model="res.bank">
2525+ <field name="name">BANCO SOFITASA BANCO UNIVERSAL, C.A.</field>
2526+ <field search="[('code','=','VE')]" model='res.country' name='country'/>
2527+ <field name="code">0137</field>
2528+ <field name="min_lim">0.0</field>
2529+ <field name="max_lim">0.0</field>
2530+ </record>
2531+ <record id="bank13" model="res.bank">
2532+ <field name="name">BANCO DE LA GENTE EMPRENDEDORA BANGENTE, C.A.</field>
2533+ <field search="[('code','=','VE')]" model='res.country' name='country'/>
2534+ <field name="code">0146</field>
2535+ <field name="min_lim">0.0</field>
2536+ <field name="max_lim">0.0</field>
2537+ </record>
2538+ <record id="bank14" model="res.bank">
2539+ <field name="name">TOTAL BANK, C.A. BANCO UNIVERSAL</field>
2540+ <field search="[('code','=','VE')]" model='res.country' name='country'/>
2541+ <field name="code">0148</field>
2542+ <field name="min_lim">0.0</field>
2543+ <field name="max_lim">0.0</field>
2544+ </record>
2545+ <record id="bank15" model="res.bank">
2546+ <field name="name">100% BANCO, BANCO COMERCIAL, C.A.</field>
2547+ <field search="[('code','=','VE')]" model='res.country' name='country'/>
2548+ <field name="code">0156</field>
2549+ <field name="min_lim">0.0</field>
2550+ <field name="max_lim">0.0</field>
2551+ </record>
2552+ <record id="bank16" model="res.bank">
2553+ <field name="name">DEL SUR BANCO UNIVERSAL, C.A.</field>
2554+ <field search="[('code','=','VE')]" model='res.country' name='country'/>
2555+ <field name="code">0157</field>
2556+ <field name="min_lim">0.0</field>
2557+ <field name="max_lim">0.0</field>
2558+ </record>
2559+ <record id="bank17" model="res.bank">
2560+ <field name="name">BANVALOR BANCO COMERCIAL, C.A.</field>
2561+ <field search="[('code','=','VE')]" model='res.country' name='country'/>
2562+ <field name="code">0162</field>
2563+ <field name="min_lim">0.0</field>
2564+ <field name="max_lim">0.0</field>
2565+ </record>
2566+ <record id="bank18" model="res.bank">
2567+ <field name="name">BANCO DEL TESORO, C.A. BANCO UNIVERSAL</field>
2568+ <field search="[('code','=','VE')]" model='res.country' name='country'/>
2569+ <field name="code">0163</field>
2570+ <field name="min_lim">0.0</field>
2571+ <field name="max_lim">0.0</field>
2572+ </record>
2573+ <record id="bank19" model="res.bank">
2574+ <field name="name">BANCO AGRICOLA DE VENEZUELA, C.A. BANCO UNIVERSAL</field>
2575+ <field search="[('code','=','VE')]" model='res.country' name='country'/>
2576+ <field name="code">0166</field>
2577+ <field name="min_lim">0.0</field>
2578+ <field name="max_lim">0.0</field>
2579+ </record>
2580+ <record id="bank20" model="res.bank">
2581+ <field name="name">BANCRECER S.A. BANCO DE DESARROLLO</field>
2582+ <field search="[('code','=','VE')]" model='res.country' name='country'/>
2583+ <field name="code">0168</field>
2584+ <field name="min_lim">0.0</field>
2585+ <field name="max_lim">0.0</field>
2586+ </record>
2587+ <record id="bank21" model="res.bank">
2588+ <field name="name">MI BANCO, BANCO DE DESARROLLO, C.A.</field>
2589+ <field search="[('code','=','VE')]" model='res.country' name='country'/>
2590+ <field name="code">0169</field>
2591+ <field name="min_lim">0.0</field>
2592+ <field name="max_lim">0.0</field>
2593+ </record>
2594+ <record id="bank22" model="res.bank">
2595+ <field name="name">BANCO ACTIVO, C.A. BANCO COMERCIAL</field>
2596+ <field search="[('code','=','VE')]" model='res.country' name='country'/>
2597+ <field name="code">0171</field>
2598+ <field name="min_lim">0.0</field>
2599+ <field name="max_lim">0.0</field>
2600+ </record>
2601+ <record id="bank23" model="res.bank">
2602+ <field name="name">BANCO INTERNACIONAL DE DESARROLLO, C.A.</field>
2603+ <field search="[('code','=','VE')]" model='res.country' name='country'/>
2604+ <field name="code">0173</field>
2605+ <field name="min_lim">0.0</field>
2606+ <field name="max_lim">0.0</field>
2607+ </record>
2608+ <record id="bank24" model="res.bank">
2609+ <field name="name">BANPLUS BANCO COMERCIAL, C.A.</field>
2610+ <field search="[('code','=','VE')]" model='res.country' name='country'/>
2611+ <field name="code">0174</field>
2612+ <field name="min_lim">0.0</field>
2613+ <field name="max_lim">0.0</field>
2614+ </record>
2615+ <record id="bank25" model="res.bank">
2616+ <field name="name">CITIBANK N.A.</field>
2617+ <field search="[('code','=','VE')]" model='res.country' name='country'/>
2618+ <field name="code">0190</field>
2619+ <field name="min_lim">0.0</field>
2620+ <field name="max_lim">0.0</field>
2621+ </record>
2622+ <record id="bank26" model="res.bank">
2623+ <field name="name">BANCO NACIONAL CREDITO, C.A. BANCO UNIVERSAL</field>
2624+ <field search="[('code','=','VE')]" model='res.country' name='country'/>
2625+ <field name="code">0191</field>
2626+ <field name="min_lim">0.0</field>
2627+ <field name="max_lim">0.0</field>
2628+ </record>
2629+ <record id="bank27" model="res.bank">
2630+ <field name="name">HELM BANK DE VENEZUELA, S.A. BANCO COMERCIAL REGIONAL</field>
2631+ <field search="[('code','=','VE')]" model='res.country' name='country'/>
2632+ <field name="code">0194</field>
2633+ <field name="min_lim">0.0</field>
2634+ <field name="max_lim">0.0</field>
2635+ </record>
2636+ <record id="bank28" model="res.bank">
2637+ <field name="name">ABN-AMRO BANK N.V.</field>
2638+ <field search="[('code','=','VE')]" model='res.country' name='country'/>
2639+ <field name="code">0196</field>
2640+ <field name="min_lim">0.0</field>
2641+ <field name="max_lim">0.0</field>
2642+ </record>
2643+ <record id="bank29" model="res.bank">
2644+ <field name="name">CASA PROPIA E.A.P.</field>
2645+ <field search="[('code','=','VE')]" model='res.country' name='country'/>
2646+ <field name="code">0410</field>
2647+ <field name="min_lim">0.0</field>
2648+ <field name="max_lim">0.0</field>
2649+ </record>
2650+ <record id="bank30" model="res.bank">
2651+ <field name="name">INSTITUTO MUNICIPAL DE CREDITO POPULAR</field>
2652+ <field search="[('code','=','VE')]" model='res.country' name='country'/>
2653+ <field name="code">0601</field>
2654+ <field name="min_lim">0.0</field>
2655+ <field name="max_lim">0.0</field>
2656+ </record>
2657+ </data>
2658+</openerp>
2659+
2660
2661=== added file 'bank_management/data/venezuela_bank_data.xml'
2662--- bank_management/data/venezuela_bank_data.xml 1970-01-01 00:00:00 +0000
2663+++ bank_management/data/venezuela_bank_data.xml 2015-04-15 16:28:26 +0000
2664@@ -0,0 +1,59 @@
2665+<?xml version="1.0" ?>
2666+<openerp>
2667+
2668+<!--
2669+ res_bank
2670+-->
2671+
2672+ <data noupdate="1">
2673+ <record forcecreate="False" id="res_bank_venezuela" model="res.bank">
2674+ <field name="name">BANCO DE VENEZUELA S.A.C.A. BANCO UNIVERSAL</field>
2675+ <field search="[('code','=','VE')]" model='res.country' name='country'/>
2676+ <field name="code">0102</field>
2677+ <field eval="500.0" name="max_lim"/>
2678+
2679+
2680+ <field eval="&quot;&quot;&quot;&lt;header&gt;
2681+ &lt;pageTemplate&gt;
2682+ &lt;frame id=&quot;first&quot; x1=&quot;0.0mm&quot; y1=&quot;0.0mm&quot; width=&quot;178.0mm&quot; height=&quot;80.0mm&quot;/&gt;
2683+ &lt;pageGraphics&gt;
2684+ &lt;setFont name=&quot;Courier&quot; size=&quot;8&quot;/&gt;
2685+ &lt;!--cantidad--&gt;
2686+ &lt;place x=&quot;135.0mm&quot; y=&quot;75.0mm&quot; width=&quot;80.0mm&quot; height=&quot;5.0mm&quot;&gt;
2687+ &lt;para&gt;***[[ formatLang(get_monto() ) ]]***&lt;/para&gt;
2688+ &lt;/place&gt;
2689+ &lt;!--beneficiario--&gt;
2690+ &lt;place x=&quot;35.0mm&quot; y=&quot;54.0mm&quot; width=&quot;140.0mm&quot; height=&quot;10.0mm&quot;&gt;
2691+ &lt;para&gt;[[get_beneficiario(o.id)]]&lt;/para&gt;
2692+ &lt;/place&gt;
2693+ &lt;!--cantidad en letras--&gt;
2694+&lt;!-- &lt;place x=&quot;36.0mm&quot; y=&quot;50.0mm&quot; width=&quot;135.0mm&quot; height=&quot;10.0mm&quot;&gt;
2695+ &lt;para&gt;[[ obt_texto() ]]&lt;/para&gt;
2696+ &lt;/place&gt;--&gt;
2697+ &lt;!--fecha--&gt;
2698+ &lt;place x=&quot;20.0mm&quot; y=&quot;38.0mm&quot; width=&quot;60.0mm&quot; height=&quot;10.0mm&quot;&gt;
2699+ &lt;para&gt;[[ get_fecha()[0] ]]&lt;/para&gt;
2700+ &lt;/place&gt;
2701+ &lt;!--ano de endose--&gt;
2702+ &lt;place x=&quot;79.0mm&quot; y=&quot;38.0mm&quot; width=&quot;40.0mm&quot; height=&quot;10.0mm&quot;&gt;
2703+ &lt;para&gt;[[ get_fecha()[1] ]]&lt;/para&gt;
2704+ &lt;/place&gt;
2705+ &lt;!--tiempo de endose--&gt;
2706+ &lt;place x=&quot;89.0mm&quot; y=&quot;14.0mm&quot; width=&quot;80.0mm&quot; height=&quot;10.0mm&quot;&gt;
2707+ &lt;para&gt;CADUCA A LOS [[ company.expiry]] DÍAS / NO ENDOSABLE&lt;/para&gt;
2708+ &lt;/place&gt;
2709+ &lt;/pageGraphics&gt;
2710+ &lt;/pageTemplate&gt;
2711+&lt;/header&gt; &quot;&quot;&quot;" name="format_h"/>
2712+
2713+
2714+ <field eval="100.0" name="min_lim"/>
2715+ </record>
2716+ </data>
2717+
2718+
2719+
2720+
2721+</openerp>
2722+
2723+
2724
2725=== added directory 'bank_management/demo'
2726=== added file 'bank_management/demo/demo.xml'
2727--- bank_management/demo/demo.xml 1970-01-01 00:00:00 +0000
2728+++ bank_management/demo/demo.xml 2015-04-15 16:28:26 +0000
2729@@ -0,0 +1,14 @@
2730+<?xml version="1.0" ?>
2731+<openerp>
2732+ <data noupdate="1">
2733+ <record id="res_partner_bank_0" model="res.partner.bank">
2734+ <field model="account.account" name="trans_account_id" search="[('name', '=', u'Bank Current Account')]"/>
2735+ <field model="account.journal" name="journal_id" search="[('name', '=', u'Bank Journal ')]"/>
2736+ <field name="state">bank</field>
2737+ <field name="partner_id" ref="base.main_partner"/>
2738+ <field model="account.account" name="bank_account_id" search="[('name', '=', u'Bank Current Account')]"/>
2739+ <field name="bank" ref="res_bank_mercantil"/>
2740+ <field name="acc_number">1057542233</field>
2741+ </record>
2742+ </data>
2743+</openerp>
2744
2745=== added directory 'bank_management/i18n'
2746=== added file 'bank_management/i18n/es.po'
2747--- bank_management/i18n/es.po 1970-01-01 00:00:00 +0000
2748+++ bank_management/i18n/es.po 2015-04-15 16:28:26 +0000
2749@@ -0,0 +1,2541 @@
2750+# Translation of OpenERP Server.
2751+# This file contains the translation of the following modules:
2752+# * bank_management
2753+#
2754+msgid ""
2755+msgstr ""
2756+"Project-Id-Version: OpenERP Server 6.0.3\n"
2757+"Report-Msgid-Bugs-To: support@openerp.com\n"
2758+"POT-Creation-Date: 2012-01-09 16:14+0000\n"
2759+"PO-Revision-Date: 2012-01-09 16:14+0000\n"
2760+"Last-Translator: <>\n"
2761+"Language-Team: \n"
2762+"MIME-Version: 1.0\n"
2763+"Content-Type: text/plain; charset=UTF-8\n"
2764+"Content-Transfer-Encoding: \n"
2765+"Plural-Forms: \n"
2766+
2767+#. module: bank_management
2768+#: view:account.voucher:0
2769+msgid "Payment Ref"
2770+msgstr "Ref. pago"
2771+
2772+#. module: bank_management
2773+#: report:chk.book.request:0
2774+msgid "Dear Sirs:"
2775+msgstr "Estimados Señores:"
2776+
2777+#. module: bank_management
2778+#: field:account.voucher,one_partner:0
2779+msgid "One Supplier or Customer ?"
2780+msgstr "¿Un solo proveedor o Cliente?"
2781+
2782+#. module: bank_management
2783+#: field:cancel.voucher.pay.support,name:0
2784+msgid "Nombre"
2785+msgstr "Nombre"
2786+
2787+#. module: bank_management
2788+#: model:ir.model,name:bank_management.model_print_model_reports
2789+msgid "Class used for introduce the report to print and this features."
2790+msgstr "Class used for introduce the report to print and this features."
2791+
2792+#. module: bank_management
2793+#: model:ir.model,name:bank_management.model_ir_print
2794+msgid " "
2795+msgstr " "
2796+
2797+#. module: bank_management
2798+#: view:gral.check.book:0
2799+#: model:ir.actions.report.xml,name:bank_management.report_check_book
2800+msgid "Check Book Report"
2801+msgstr "Reporte de chequera"
2802+
2803+#. module: bank_management
2804+#: code:addons/bank_management/check/check_book.py:397
2805+#: code:addons/bank_management/check/check_book.py:399
2806+#: code:addons/bank_management/check/check_note.py:104
2807+#: code:addons/bank_management/check/check_note.py:106
2808+#, python-format
2809+msgid "Enter the Reason for Cancellation in other information field"
2810+msgstr "Introduzca los motivos de anulación en el campo de otra información"
2811+
2812+#. module: bank_management
2813+#: view:account.voucher:0
2814+msgid "Residual"
2815+msgstr "Residual"
2816+
2817+#. module: bank_management
2818+#: view:voucher.pay.support.wizard:0
2819+msgid "The check is printed correctly?"
2820+msgstr "The check is printed correctly?"
2821+
2822+#. module: bank_management
2823+#: model:ir.model,name:bank_management.model_check_book
2824+msgid "check.book"
2825+msgstr "check.book"
2826+
2827+#. module: bank_management
2828+#: help:check.book,qty_active:0
2829+msgid "Check note quantity on state active"
2830+msgstr "Cantidad de cheques en estado activo"
2831+
2832+#. module: bank_management
2833+#: field:cancel.voucher.pay.support,amount:0
2834+msgid "Total a Pagar"
2835+msgstr "Total a Pagar"
2836+
2837+#. module: bank_management
2838+#: report:chk.book.request:0
2839+msgid "By:"
2840+msgstr "Por:"
2841+
2842+#. module: bank_management
2843+#: model:ir.actions.report.xml,name:bank_management.report_gral_chk_book
2844+msgid "Check Book General Report"
2845+msgstr "Reporte general de chequera"
2846+
2847+#. module: bank_management
2848+#: constraint:check.book:0
2849+msgid "Error ! Check number must be greater than zero\"."
2850+msgstr "Error ! Número del cheque debe ser mayor a cero\"."
2851+
2852+#. module: bank_management
2853+#: model:ir.actions.act_window,help:bank_management.action_check_note
2854+msgid "With Check Book you can create and manage Check Note."
2855+msgstr "Con chequeras puedes crear y administrar cheques."
2856+
2857+#. module: bank_management
2858+#: field:voucher.pay.support,amount:0
2859+msgid "Amount"
2860+msgstr "Monto"
2861+
2862+#. module: bank_management
2863+#: field:res.partner.bank,bank_account_id:0
2864+msgid "Accounting Account"
2865+msgstr "Cuenta Contable"
2866+
2867+#. module: bank_management
2868+#: selection:cancel.voucher.pay.support,cancel_check_note:0
2869+msgid "Dano fisico"
2870+msgstr "Dano fisico"
2871+
2872+#. module: bank_management
2873+#: help:print.model.reports,python_code:0
2874+msgid "Set the python code to use"
2875+msgstr "Set the python code to use"
2876+
2877+#. module: bank_management
2878+#: model:ir.actions.act_window,help:bank_management.action_sol_check_book
2879+msgid "With Check Book Request you can create and manage Check Book."
2880+msgstr "Con las solicitudes de chequeras podras crear y administrar chequeras."
2881+
2882+#. module: bank_management
2883+#: report:cash_amount.3:0
2884+#: report:cash_receipt.drcr.3:0
2885+msgid "No."
2886+msgstr "No."
2887+
2888+#. module: bank_management
2889+#: field:check.note,suffix:0
2890+msgid "Suffix"
2891+msgstr "Sufijo"
2892+
2893+#. module: bank_management
2894+#: selection:check.book.wizard,tiempo:0
2895+msgid "Fiscal Period"
2896+msgstr "Período Fiscal"
2897+
2898+#. module: bank_management
2899+#: field:print.model.reports,check_note_use:0
2900+msgid "Use to print Check?"
2901+msgstr "Use to print Check?"
2902+
2903+#. module: bank_management
2904+#: field:gral.check.book,desde:0
2905+msgid "Starting Date"
2906+msgstr "Fecha de Inicio"
2907+
2908+#. module: bank_management
2909+#: field:print.model.reports,gs_option_id:0
2910+msgid "Ghostscript Options"
2911+msgstr "Ghostscript Options"
2912+
2913+#. module: bank_management
2914+#: model:ir.model,name:bank_management.model_check_book_wizard
2915+msgid "check.book.wizard"
2916+msgstr "check.book.wizard"
2917+
2918+#. module: bank_management
2919+#: selection:check.book.wizard,state_check_note:0
2920+#: selection:gral.check.book,state_check_note:0
2921+msgid "Issued"
2922+msgstr "Issued"
2923+
2924+#. module: bank_management
2925+#: view:account.voucher:0
2926+msgid "Paid Amount"
2927+msgstr "Importe pagado"
2928+
2929+#. module: bank_management
2930+#: code:addons/bank_management/check/check_note.py:130
2931+#, python-format
2932+msgid "You can not duplicate this document!!!"
2933+msgstr "Ud no puede duplicar este documento!!!"
2934+
2935+#. module: bank_management
2936+#: field:res.bank,max_lim:0
2937+msgid "Max. Limit"
2938+msgstr "Limite Max."
2939+
2940+#. module: bank_management
2941+#: field:check.book,cancel_check:0
2942+#: field:check.note,cancel_check_note:0
2943+#: field:voucher.pay.support,cancel_check_note:0
2944+#: field:voucher.pay.support.wizard,cancel_check_note:0
2945+msgid "Reason for Cancellation"
2946+msgstr "Motivos para anular"
2947+
2948+#. module: bank_management
2949+#: view:check.book:0
2950+#: field:check.book,state:0
2951+#: view:check.book.request:0
2952+#: field:check.book.request,state:0
2953+#: view:check.note:0
2954+#: field:check.note,state:0
2955+#: view:voucher.pay.support:0
2956+#: field:voucher.pay.support,state:0
2957+#: field:voucher.pay.support.wizard,state:0
2958+msgid "State"
2959+msgstr "Estado"
2960+
2961+#. module: bank_management
2962+#: code:addons/bank_management/check/account_voucher_payment.py:116
2963+#, python-format
2964+msgid "Please verify the Amount of Payment !\n"
2965+" The Paid Amount no match the computed total"
2966+msgstr "!Por favor revise el monto del pago !\n"
2967+" El monto a pagar no es igual al monto calculado"
2968+
2969+#. module: bank_management
2970+#: selection:cancel.voucher.pay.support,cancel_check_note:0
2971+msgid "Cheque Devuelto"
2972+msgstr "Cheque Devuelto"
2973+
2974+#. module: bank_management
2975+#: view:voucher.pay.support.wizard:0
2976+msgid "Select Bank Account"
2977+msgstr "Selecciones Cuenta Bancaria"
2978+
2979+#. module: bank_management
2980+#: field:account.journal,default_payment_credit_account_id:0
2981+msgid "Write-Off Credit Account"
2982+msgstr "Cuenta de ajuste acreditar"
2983+
2984+#. module: bank_management
2985+#: report:chk.book.request:0
2986+msgid "Authorized Signature(s)"
2987+msgstr "Firma(s) Autorizada(s)"
2988+
2989+#. module: bank_management
2990+#: field:account.journal,default_payment_debit_account_id:0
2991+msgid "Write-Off Debit account"
2992+msgstr "Cuenta de ajuste a debitar"
2993+
2994+#. module: bank_management
2995+#: help:check.book,date_active:0
2996+msgid "Date on which the check book status change to active"
2997+msgstr "Fecha en la cual la chequera cambia su estado a activo"
2998+
2999+#. module: bank_management
3000+#: code:addons/bank_management/check/account_voucher_payment.py:116
3001+#, python-format
3002+msgid "Bad Total !"
3003+msgstr "!Total incorrecto!"
3004+
3005+#. module: bank_management
3006+#: view:account.voucher:0
3007+#: view:check.book:0
3008+#: view:check.note:0
3009+msgid "Other Information"
3010+msgstr "Otra información"
3011+
3012+#. module: bank_management
3013+#: code:addons/bank_management/check/report/reporte_check_book.py:122
3014+#: code:addons/bank_management/check/report/reporte_wizard_general.py:197
3015+#, python-format
3016+msgid "Cancel Check book"
3017+msgstr "Cancelar Chequera"
3018+
3019+#. module: bank_management
3020+#: selection:print.gs.option,device:0
3021+msgid " Epson-compatible 9-pin, triple resolutio"
3022+msgstr " Epson-compatible 9-pin, triple resolutio"
3023+
3024+#. module: bank_management
3025+#: model:ir.ui.menu,name:bank_management.id_check_management
3026+msgid "Check Management"
3027+msgstr "Administración Bancaria"
3028+
3029+#. module: bank_management
3030+#: field:check.book.request,code:0
3031+msgid "Request Number"
3032+msgstr "Número de solicitud"
3033+
3034+#. module: bank_management
3035+#: selection:check.book,qty_check_selection:0
3036+msgid "100"
3037+msgstr "100"
3038+
3039+#. module: bank_management
3040+#: view:account.voucher:0
3041+msgid "Pay Order"
3042+msgstr "Pay Order"
3043+
3044+#. module: bank_management
3045+#: report:cash_amount.3:0
3046+msgid "Pagos Anteriores"
3047+msgstr "Pagos Anteriores"
3048+
3049+#. module: bank_management
3050+#: field:res.company,header_report:0
3051+msgid "Report Header"
3052+msgstr "Report Header"
3053+
3054+#. module: bank_management
3055+#: field:account.voucher,payee_id:0
3056+#: view:voucher.pay.support:0
3057+#: field:voucher.pay.support,payee_id:0
3058+#: field:voucher.pay.support.wizard,payee_id:0
3059+msgid "Beneficiary"
3060+msgstr "Beneficiario"
3061+
3062+#. module: bank_management
3063+#: report:cash_amount.3:0
3064+msgid "Retenciones IVA"
3065+msgstr "Retenciones IVA"
3066+
3067+#. module: bank_management
3068+#: field:res.partner.bank,virtual_balance:0
3069+msgid "Virtual Balance"
3070+msgstr "Balance Virtual"
3071+
3072+#. module: bank_management
3073+#: selection:cancel.voucher.pay.support,cancel_check_note:0
3074+msgid "Pago no realizado"
3075+msgstr "Pago no realizado"
3076+
3077+#. module: bank_management
3078+#: help:print.lpr.option,fit_to_page:0
3079+msgid "Specifies that the document should be scaled to fit on the page"
3080+msgstr "Specifies that the document should be scaled to fit on the page"
3081+
3082+#. module: bank_management
3083+#: field:check.book,date_done:0
3084+msgid "Closing Date"
3085+msgstr "Fecha de cierre"
3086+
3087+#. module: bank_management
3088+#: help:check.book,accounting_bank_id:0
3089+msgid "bank account to which belong the check book"
3090+msgstr "Cuenta bancaria a la cual pertenece la chequera"
3091+
3092+#. module: bank_management
3093+#: field:cancel.voucher.pay.support,partner_id:0
3094+#: view:voucher.pay.support:0
3095+#: field:voucher.pay.support,partner_id:0
3096+#: field:voucher.pay.support.wizard,partner_id:0
3097+msgid "Contrapartida"
3098+msgstr "Contrapartida"
3099+
3100+#. module: bank_management
3101+#: help:voucher.pay.support,state:0
3102+msgid "State Voucher Check Note"
3103+msgstr "Estado del cheque en el voucher"
3104+
3105+#. module: bank_management
3106+#: report:cash_amount.3:0
3107+#: report:cash_receipt.drcr.3:0
3108+msgid "Por Concepto de :"
3109+msgstr "Por Concepto de :"
3110+
3111+#. module: bank_management
3112+#: model:ir.model,name:bank_management.model_cancel_voucher_pay_support
3113+msgid "cancel.voucher.pay.support"
3114+msgstr "cancel.voucher.pay.support"
3115+
3116+#. module: bank_management
3117+#: code:addons/bank_management/check/wizard/voucher_pay_support_wizard_pay_order.py:110
3118+#, python-format
3119+msgid "There are not check in this account, enter another one!!!"
3120+msgstr "No existen cheques en esta cuenta, ingrese otra!!!"
3121+
3122+#. module: bank_management
3123+#: field:check.book.wizard,tiempo:0
3124+#: field:gral.check.book,tiempo:0
3125+msgid "Time"
3126+msgstr "Período"
3127+
3128+#. module: bank_management
3129+#: report:chk.book.request:0
3130+msgid "Agency:"
3131+msgstr "Agencia:"
3132+
3133+#. module: bank_management
3134+#: view:voucher.pay.support.wizard:0
3135+msgid "Agree"
3136+msgstr "De acuerdo"
3137+
3138+#. module: bank_management
3139+#: selection:print.lpr.option,orientation_requested:0
3140+msgid "Landscape (90 degrees)"
3141+msgstr "Landscape (90 degrees)"
3142+
3143+#. module: bank_management
3144+#: field:check.book.wizard,mes:0
3145+#: view:gral.check.book:0
3146+#: field:gral.check.book,mes:0
3147+#: selection:gral.check.book,tiempo:0
3148+msgid "Period"
3149+msgstr "Período"
3150+
3151+#. module: bank_management
3152+#: view:check.note:0
3153+msgid "Search Check Note"
3154+msgstr "Busqueda de cheque"
3155+
3156+#. module: bank_management
3157+#: field:cancel.voucher.pay.support,accounting_bank_id:0
3158+msgid "Cuenta Bancaria"
3159+msgstr "Cuenta Bancaria"
3160+
3161+#. module: bank_management
3162+#: report:cash_amount.3:0
3163+#: report:cash_receipt.drcr.3:0
3164+msgid "Cancelado"
3165+msgstr "Cancelado"
3166+
3167+#. module: bank_management
3168+#: code:addons/bank_management/check/voucher_pay_support.py:135
3169+#, python-format
3170+msgid "Remove the reason for cancellation"
3171+msgstr "Borre los motivos para anulación"
3172+
3173+#. module: bank_management
3174+#: model:ir.actions.report.xml,name:bank_management.check_fmt_report
3175+#: view:voucher.pay.support.wizard:0
3176+msgid "Print Check"
3177+msgstr "Imprimir Cheque"
3178+
3179+#. module: bank_management
3180+#: view:voucher.pay.support:0
3181+msgid "Search Voucher Pay Support"
3182+msgstr "Busqueda soporte de pago"
3183+
3184+#. module: bank_management
3185+#: help:res.bank,format_h:0
3186+msgid "Print format of check"
3187+msgstr "Formato de impresión el cheque"
3188+
3189+#. module: bank_management
3190+#: field:print.lpr.option,media:0
3191+msgid "Media"
3192+msgstr "Media"
3193+
3194+#. module: bank_management
3195+#: field:check.book,check_book_request_id:0
3196+#: view:check.book.request:0
3197+#: report:chk.book.request:0
3198+#: model:ir.actions.act_window,name:bank_management.action_sol_check_book
3199+#: model:ir.ui.menu,name:bank_management.menu_check_book_solicitud
3200+msgid "Check Book Request"
3201+msgstr "Solicitud de chequera"
3202+
3203+#. module: bank_management
3204+#: help:check.book,bank_id:0
3205+#: help:check.book.request,bank_id:0
3206+msgid "The bank entity name must be load when saved it"
3207+msgstr "El nombre de la entidad bancaria es obligatorio"
3208+
3209+#. module: bank_management
3210+#: view:check.book:0
3211+msgid "Reactive"
3212+msgstr "Reactivar"
3213+
3214+#. module: bank_management
3215+#: view:check.book.request:0
3216+#: field:check.book.request,agen_id:0
3217+msgid "Bank Agency"
3218+msgstr "Agencia Bancaria"
3219+
3220+#. module: bank_management
3221+#: report:chk.book:0
3222+#: report:wizard.general.book:0
3223+msgid "DATE"
3224+msgstr "FECHA"
3225+
3226+#. module: bank_management
3227+#: report:chk.book:0
3228+#: report:wizard.general.book:0
3229+msgid "AMOUNT COMMITTED"
3230+msgstr "MONTO COMPROMETIDO"
3231+
3232+#. module: bank_management
3233+#: report:chk.book.request:0
3234+msgid "Sirs:"
3235+msgstr "Señores:"
3236+
3237+#. module: bank_management
3238+#: model:ir.actions.act_window,name:bank_management.action_wiz_gral_check_book
3239+#: model:ir.ui.menu,name:bank_management.menu_action_wiz_gral_check_book
3240+msgid "General Check Book Report"
3241+msgstr "Reporte general de chequera"
3242+
3243+#. module: bank_management
3244+#: selection:print.gs.option,device:0
3245+msgid " Epson-compatible dot matrix printer (9 or 24 pi"
3246+msgstr " Epson-compatible dot matrix printer (9 or 24 pi"
3247+
3248+#. module: bank_management
3249+#: report:chk.book.request:0
3250+msgid ", bearer of Identity Card No."
3251+msgstr ", portador de la Cédula de Identidad No."
3252+
3253+#. module: bank_management
3254+#: help:check.book.request,state:0
3255+msgid "Request check book state"
3256+msgstr "Estado en que se encuentra la solicitud"
3257+
3258+#. module: bank_management
3259+#: model:ir.model,name:bank_management.model_account_journal
3260+#: field:res.partner.bank,journal_id:0
3261+msgid "Journal"
3262+msgstr "Diario"
3263+
3264+#. module: bank_management
3265+#: view:res.partner.bank:0
3266+msgid "Bank account"
3267+msgstr "Cuenta bancaria"
3268+
3269+#. module: bank_management
3270+#: report:chk.book:0
3271+#: report:wizard.general.book:0
3272+msgid "AMOUNT"
3273+msgstr "MONTO"
3274+
3275+#. module: bank_management
3276+#: view:check.note:0
3277+#: model:ir.actions.act_window,name:bank_management.action_check_note
3278+#: model:ir.ui.menu,name:bank_management.menu_check_note
3279+#: field:voucher.pay.support,check_note_id:0
3280+#: view:voucher.pay.support.wizard:0
3281+msgid "Check Note"
3282+msgstr "Cheque"
3283+
3284+#. module: bank_management
3285+#: code:addons/bank_management/check/report/reporte_check_book.py:76
3286+#: code:addons/bank_management/check/report/reporte_wizard_general.py:82
3287+#: selection:check.note,cancel_check_note:0
3288+#: selection:voucher.pay.support,cancel_check_note:0
3289+#: selection:voucher.pay.support.wizard,cancel_check_note:0
3290+#, python-format
3291+msgid "Expired"
3292+msgstr "Caducidad"
3293+
3294+#. module: bank_management
3295+#: view:account.voucher:0
3296+msgid "Payment"
3297+msgstr "Pago"
3298+
3299+#. module: bank_management
3300+#: view:check.book:0
3301+msgid "Search Check Book"
3302+msgstr "Busqueda Chequeras"
3303+
3304+#. module: bank_management
3305+#: field:cancel.voucher.pay.support,expiry:0
3306+msgid "Dias de Caducidad"
3307+msgstr "Dias de Caducidad"
3308+
3309+#. module: bank_management
3310+#: view:check.book:0
3311+#: selection:check.book,state:0
3312+#: view:check.book.request:0
3313+#: view:check.note:0
3314+msgid "Request"
3315+msgstr "Solicitud"
3316+
3317+#. module: bank_management
3318+#: model:ir.actions.act_window,name:bank_management.action_pay_order_contrapartida
3319+#: model:ir.actions.act_window,name:bank_management.action_rec_order_contrapartida
3320+#: model:ir.ui.menu,name:bank_management.menu_contrapartida
3321+#: model:ir.ui.menu,name:bank_management.menu_rec_contrapartida
3322+msgid "Orden de Pago Contrapartida"
3323+msgstr "Orden de Pago Contrapartida"
3324+
3325+#. module: bank_management
3326+#: report:cash_amount.3:0
3327+msgid "Número"
3328+msgstr "Número"
3329+
3330+#. module: bank_management
3331+#: field:account.voucher,pay_bank:0
3332+msgid "Pay check ?"
3333+msgstr "¿Pago con cheque?"
3334+
3335+#. module: bank_management
3336+#: field:print.model.reports,model_id:0
3337+msgid "Model"
3338+msgstr "Model"
3339+
3340+#. module: bank_management
3341+#: report:cash_amount.3:0
3342+#: report:cash_receipt.drcr.3:0
3343+msgid "Recibe:"
3344+msgstr "Recibe:"
3345+
3346+#. module: bank_management
3347+#: selection:print.lpr.option,media:0
3348+msgid "Half Letter"
3349+msgstr "Half Letter"
3350+
3351+#. module: bank_management
3352+#: field:voucher.pay.support,return_voucher_id:0
3353+msgid "Cancellation Voucher"
3354+msgstr "Comprobante Devuelto"
3355+
3356+#. module: bank_management
3357+#: field:check.book,date_draft:0
3358+msgid "Date Received"
3359+msgstr "Fecha de recepción"
3360+
3361+#. module: bank_management
3362+#: model:ir.model,name:bank_management.model_gral_check_book
3363+msgid "gral.check.book"
3364+msgstr "gral.check.book"
3365+
3366+#. module: bank_management
3367+#: code:addons/bank_management/check/report/reporte_check_book.py:74
3368+#: code:addons/bank_management/check/report/reporte_wizard_general.py:80
3369+#: selection:check.book,cancel_check:0
3370+#: selection:check.note,cancel_check_note:0
3371+#: selection:voucher.pay.support,cancel_check_note:0
3372+#: selection:voucher.pay.support.wizard,cancel_check_note:0
3373+#, python-format
3374+msgid "Physical damage"
3375+msgstr "Daño físico"
3376+
3377+#. module: bank_management
3378+#: report:chk.book:0
3379+#: report:wizard.general.book:0
3380+msgid "THIS DOCUMENT IS NOT INTENDED TO BE USED AS FINAL DOCUMENT"
3381+msgstr "ESTE DOCUMENTO NO ESTA DESTINADO A SER UTILIZADO COMO DOCUMENTO FINAL"
3382+
3383+#. module: bank_management
3384+#: code:addons/bank_management/check/check_book.py:399
3385+#, python-format
3386+msgid "warning !"
3387+msgstr "advertencia !"
3388+
3389+#. module: bank_management
3390+#: help:print.model.reports,gs_use:0
3391+msgid "Checking this field will allow to print Ghostscript options"
3392+msgstr "Checking this field will allow to print Ghostscript options"
3393+
3394+#. module: bank_management
3395+#: field:cancel.voucher.pay.support,cancel_check_note:0
3396+msgid "Motivo de Cancelacion"
3397+msgstr "Motivo de Cancelacion"
3398+
3399+#. module: bank_management
3400+#: view:check.book:0
3401+#: field:check.book,name:0
3402+#: view:check.book.request:0
3403+#: field:check.book.wizard,check_book_id:0
3404+#: view:check.note:0
3405+#: field:check.note,check_book_id:0
3406+#: field:gral.check.book,check_book_id:0
3407+#: model:ir.actions.act_window,name:bank_management.action_check_book
3408+#: model:ir.ui.menu,name:bank_management.menu_check_book
3409+msgid "Check Book"
3410+msgstr "Chequera"
3411+
3412+#. module: bank_management
3413+#: field:print.model.reports,depend_state:0
3414+msgid "Depends State"
3415+msgstr "Depends State"
3416+
3417+#. module: bank_management
3418+#: selection:gral.check.book,state_check_note:0
3419+msgid "Unfiltered"
3420+msgstr "Sin filtro"
3421+
3422+#. module: bank_management
3423+#: view:account.voucher:0
3424+msgid "Supplier"
3425+msgstr "Proveedor"
3426+
3427+#. module: bank_management
3428+#: selection:check.book,qty_check_selection:0
3429+msgid "25"
3430+msgstr "25"
3431+
3432+#. module: bank_management
3433+#: selection:cancel.voucher.pay.support,cancel_check_note:0
3434+msgid "Perdida o extravio"
3435+msgstr "Perdida o extravio"
3436+
3437+#. module: bank_management
3438+#: report:chk.book:0
3439+#: report:wizard.general.book:0
3440+msgid "AMOUNT PAID"
3441+msgstr "MONTO PAGADO"
3442+
3443+#. module: bank_management
3444+#: help:res.partner.bank,bank_account_id:0
3445+msgid "Acountig account associated to the bank account, it journal entries will be made"
3446+msgstr "Cuenta contable asociada a la cuenta bancaria, en donde se realizarán los asientos"
3447+
3448+#. module: bank_management
3449+#: code:addons/bank_management/check/check_book.py:397
3450+#: code:addons/bank_management/check/check_book_request.py:137
3451+#: code:addons/bank_management/check/check_note.py:130
3452+#, python-format
3453+msgid "Warning !"
3454+msgstr "Advertencia !"
3455+
3456+#. module: bank_management
3457+#: model:ir.actions.act_window,help:bank_management.action_res_partner_bank
3458+msgid "With Bank Account you can create and manage Bank Account."
3459+msgstr "Con cuentas bancarias Ud. puede crear y administrar cuentas bancarias."
3460+
3461+#. module: bank_management
3462+#: field:cancel.voucher.pay.support,date:0
3463+#: report:cash_amount.3:0
3464+msgid "Fecha"
3465+msgstr "Fecha"
3466+
3467+#. module: bank_management
3468+#: view:check.book.request:0
3469+#: selection:check.book.request,state:0
3470+msgid "Received"
3471+msgstr "Recibido"
3472+
3473+#. module: bank_management
3474+#: view:res.bank:0
3475+#: field:res.bank,format_h:0
3476+msgid "Format Check"
3477+msgstr "Formato de Cheque"
3478+
3479+#. module: bank_management
3480+#: help:print.gs.option,name:0
3481+msgid "Set the name for this Ghostscript"
3482+msgstr "Set the name for this Ghostscript"
3483+
3484+#. module: bank_management
3485+#: field:voucher.pay.support,date:0
3486+msgid "Issued Date"
3487+msgstr "Fecha de emisión"
3488+
3489+#. module: bank_management
3490+#: model:ir.model,name:bank_management.model_voucher_pay_support
3491+msgid "voucher_pay_support"
3492+msgstr "voucher_pay_support"
3493+
3494+#. module: bank_management
3495+#: view:account.voucher:0
3496+msgid "Payment Options"
3497+msgstr "Opciones de pago"
3498+
3499+#. module: bank_management
3500+#: field:print.gs.option,device:0
3501+msgid "Device Driver"
3502+msgstr "Device Driver"
3503+
3504+#. module: bank_management
3505+#: model:ir.model,name:bank_management.model_check_note
3506+msgid "check.note"
3507+msgstr "check.note"
3508+
3509+#. module: bank_management
3510+#: view:account.voucher:0
3511+msgid "Unreconcile"
3512+msgstr "Romper conciliación"
3513+
3514+#. module: bank_management
3515+#: code:addons/bank_management/check/check_note.py:104
3516+#: code:addons/bank_management/check/check_note.py:106
3517+#: code:addons/bank_management/check/voucher_pay_support.py:135
3518+#: code:addons/bank_management/check/voucher_pay_support.py:140
3519+#: code:addons/bank_management/check/voucher_pay_support.py:157
3520+#: code:addons/bank_management/check/wizard/voucher_pay_support_wizard_pay_order.py:110
3521+#: code:addons/bank_management/check/wizard/voucher_pay_support_wizard_pay_order.py:167
3522+#: code:addons/bank_management/check/wizard/voucher_pay_support_wizard_pay_order.py:215
3523+#, python-format
3524+msgid "Alert !"
3525+msgstr "Atención !"
3526+
3527+#. module: bank_management
3528+#: model:ir.actions.act_window,name:bank_management.action_pay_order
3529+#: model:ir.actions.act_window,name:bank_management.action_rec_order
3530+#: model:ir.ui.menu,name:bank_management.menu_pay_order_general
3531+#: model:ir.ui.menu,name:bank_management.menu_rec_order_general
3532+msgid "Orden de Pago"
3533+msgstr "Orden de Pago"
3534+
3535+#. module: bank_management
3536+#: view:voucher.pay.support.wizard:0
3537+msgid "_Cancel"
3538+msgstr "_Cancelar"
3539+
3540+#. module: bank_management
3541+#: view:account.voucher:0
3542+msgid "Payment Information"
3543+msgstr "Información de pago"
3544+
3545+#. module: bank_management
3546+#: field:check.book,qty_check:0
3547+#: view:voucher.pay.support:0
3548+#: selection:voucher.pay.support.wizard,type:0
3549+msgid "Check"
3550+msgstr "Cheque"
3551+
3552+#. module: bank_management
3553+#: help:check.book.request,agen_id:0
3554+msgid "The Bank Agency name must be load when saved it"
3555+msgstr "El nombre de la agencia bancaria es obligatorio"
3556+
3557+#. module: bank_management
3558+#: field:check.book.wizard,desde:0
3559+msgid "From"
3560+msgstr "Desde"
3561+
3562+#. module: bank_management
3563+#: model:ir.actions.act_window,help:bank_management.action_check_book
3564+msgid "With Check Book you can create and manage Check Book."
3565+msgstr "Con chequeras Ud. puede crear y administrar chequeras."
3566+
3567+#. module: bank_management
3568+#: selection:print.lpr.option,media:0
3569+msgid "Legal"
3570+msgstr "Legal"
3571+
3572+#. module: bank_management
3573+#: view:voucher.pay.support.wizard:0
3574+msgid "Next"
3575+msgstr "Siguiente"
3576+
3577+#. module: bank_management
3578+#: report:cash_receipt.drcr.3:0
3579+msgid "Detalles"
3580+msgstr "Detalles"
3581+
3582+#. module: bank_management
3583+#: field:voucher.pay.support,expiry:0
3584+msgid "Expiry Days"
3585+msgstr "Días de caducidad"
3586+
3587+#. module: bank_management
3588+#: view:check.book.request:0
3589+#: field:check.book.request,partner_id:0
3590+msgid "Authorized"
3591+msgstr "Autorizado"
3592+
3593+#. module: bank_management
3594+#: view:check.book.request:0
3595+msgid "Print"
3596+msgstr "Imprimir"
3597+
3598+#. module: bank_management
3599+#: view:cancel.voucher.pay.support:0
3600+msgid "Reason of Cancellation"
3601+msgstr "Reason of Cancellation"
3602+
3603+#. module: bank_management
3604+#: field:voucher.pay.support.wizard,bool_sure:0
3605+msgid "Are you sure?"
3606+msgstr "¿Esta seguro?"
3607+
3608+#. module: bank_management
3609+#: code:addons/bank_management/check/report/reporte_check_book.py:61
3610+#: code:addons/bank_management/check/report/reporte_wizard_general.py:67
3611+#: view:check.book:0
3612+#: selection:check.book,state:0
3613+#: selection:check.note,state:0
3614+#, python-format
3615+msgid "Hibernate"
3616+msgstr "Hibernar"
3617+
3618+#. module: bank_management
3619+#: field:cancel.voucher.pay.support,type:0
3620+#: field:voucher.pay.support,type:0
3621+#: field:voucher.pay.support.wizard,type:0
3622+msgid "Type"
3623+msgstr "Tipo"
3624+
3625+#. module: bank_management
3626+#: field:ir.print,report_id:0
3627+#: field:print.model.reports,report_id:0
3628+msgid "Report"
3629+msgstr "Report"
3630+
3631+#. module: bank_management
3632+#: field:voucher.pay.support,max_lim:0
3633+msgid "Max Limit"
3634+msgstr "Limite Max"
3635+
3636+#. module: bank_management
3637+#: code:addons/bank_management/check/check_book.py:243
3638+#: code:addons/bank_management/check/wizard/cancel_voucher_pay_support.py:154
3639+#, python-format
3640+msgid "Atencion !"
3641+msgstr "Atencion !"
3642+
3643+#. module: bank_management
3644+#: view:check.book.request:0
3645+msgid "Receive"
3646+msgstr "Recibido"
3647+
3648+#. module: bank_management
3649+#: report:chk.book.request:0
3650+msgid "Please to make delivery of"
3651+msgstr "Sirvase en hacer entrega de"
3652+
3653+#. module: bank_management
3654+#: report:cash_amount.3:0
3655+#: report:cash_receipt.drcr.3:0
3656+msgid "Fecha:"
3657+msgstr "Fecha:"
3658+
3659+#. module: bank_management
3660+#: view:res.partner.bank:0
3661+msgid "Partner"
3662+msgstr "Empresa"
3663+
3664+#. module: bank_management
3665+#: help:print.model.reports,allow_repeat:0
3666+msgid "Checking this field will allow you to print more than once this report"
3667+msgstr "Checking this field will allow you to print more than once this report"
3668+
3669+#. module: bank_management
3670+#: view:check.book:0
3671+msgid "Load Checks"
3672+msgstr "Cargar Cheques"
3673+
3674+#. module: bank_management
3675+#: report:chk.book.request:0
3676+msgid ") checkbook stubs of:"
3677+msgstr ") talonario(s) de chequera(s) de:"
3678+
3679+#. module: bank_management
3680+#: field:check.book,date_active:0
3681+msgid "Activation Date"
3682+msgstr "Fecha de activación"
3683+
3684+#. module: bank_management
3685+#: field:ir.print,create_date:0
3686+msgid "Date Created"
3687+msgstr "Date Created"
3688+
3689+#. module: bank_management
3690+#: help:check.book,fixed_prefix:0
3691+msgid "If the prefix of the number of checks is constant check this option"
3692+msgstr "Sí el prefijo del número de cheques es constante marque esta opción"
3693+
3694+#. module: bank_management
3695+#: view:account.voucher:0
3696+msgid "Generar Pago"
3697+msgstr "Generar Pago"
3698+
3699+#. module: bank_management
3700+#: code:addons/bank_management/check/report/reporte_check_book.py:59
3701+#: code:addons/bank_management/check/report/reporte_wizard_general.py:65
3702+#: view:check.book:0
3703+#: selection:check.book,state:0
3704+#: view:check.note:0
3705+#: selection:check.note,state:0
3706+#, python-format
3707+msgid "Review"
3708+msgstr "Revisar"
3709+
3710+#. module: bank_management
3711+#: field:check.book.wizard,state_check_note:0
3712+#: help:check.note,state:0
3713+#: field:gral.check.book,state_check_note:0
3714+msgid "Check Note State"
3715+msgstr "Estado actual del cheque"
3716+
3717+#. module: bank_management
3718+#: model:ir.actions.act_window,name:bank_management.wiz_pay_support_cancel
3719+msgid "Cancel Voucher Payment"
3720+msgstr "Anular Voucher de pago"
3721+
3722+#. module: bank_management
3723+#: help:print.lpr.option,cpi:0
3724+msgid "Sets the number of characters per inch"
3725+msgstr "Sets the number of characters per inch"
3726+
3727+#. module: bank_management
3728+#: help:check.book,prefix:0
3729+msgid "The check note number format is prefix + suffix, \n"
3730+" if Fixed Prefix is true this number will be load to all check note"
3731+msgstr "El formato del nro de cheque es prefijo + sufijo, \n"
3732+" Si es Prefijo fijo este nro. será cargado a todos los cheques"
3733+
3734+#. module: bank_management
3735+#: code:addons/bank_management/check/wizard/voucher_pay_support_wizard_pay_order.py:167
3736+#, python-format
3737+msgid "Enter at least one choice!!!"
3738+msgstr "Ingrese al menos una opción!!!"
3739+
3740+#. module: bank_management
3741+#: field:print.model.reports,allow_repeat:0
3742+msgid "Allow print again"
3743+msgstr "Allow print again"
3744+
3745+#. module: bank_management
3746+#: report:cash_amount.3:0
3747+msgid "Notas de Debito / Credito"
3748+msgstr "Notas de Debito / Credito"
3749+
3750+#. module: bank_management
3751+#: field:voucher.pay.support,account_voucher_id:0
3752+msgid "Origin Voucher"
3753+msgstr "Comprobante de origen"
3754+
3755+#. module: bank_management
3756+#: field:voucher.pay.support.wizard,amount:0
3757+msgid "Payment Amount"
3758+msgstr "Monto a pagar"
3759+
3760+#. module: bank_management
3761+#: code:addons/bank_management/check/report/reporte_check_book.py:73
3762+#: code:addons/bank_management/check/report/reporte_wizard_general.py:79
3763+#: selection:check.note,cancel_check_note:0
3764+#: selection:voucher.pay.support,cancel_check_note:0
3765+#: selection:voucher.pay.support.wizard,cancel_check_note:0
3766+#, python-format
3767+msgid "Loss or misplacement"
3768+msgstr "Perdida o extravío"
3769+
3770+#. module: bank_management
3771+#: field:check.book,to_suffix:0
3772+msgid "To Suffix"
3773+msgstr "Hasta sufijo"
3774+
3775+#. module: bank_management
3776+#: field:print.model,model:0
3777+msgid "Modelo"
3778+msgstr "Modelo"
3779+
3780+#. module: bank_management
3781+#: report:chk.book.request:0
3782+msgid "BANK"
3783+msgstr "Banco"
3784+
3785+#. module: bank_management
3786+#: view:account.voucher:0
3787+msgid "Are you sure to unreconcile this record ?"
3788+msgstr "¿Seguro que desea romper la conciliación de este registro?"
3789+
3790+#. module: bank_management
3791+#: selection:check.book.wizard,tiempo:0
3792+#: selection:gral.check.book,tiempo:0
3793+#: field:voucher.pay.support.wizard,date:0
3794+msgid "Date"
3795+msgstr "Fecha"
3796+
3797+#. module: bank_management
3798+#: field:cancel.voucher.pay.support,state:0
3799+msgid "Estado"
3800+msgstr "Estado"
3801+
3802+#. module: bank_management
3803+#: report:chk.book.request:0
3804+msgid "checks for the account cited above."
3805+msgstr "cheques correspondientes a la cuenta antes citada."
3806+
3807+#. module: bank_management
3808+#: model:ir.model,name:bank_management.model_res_company
3809+msgid "Companies"
3810+msgstr "Compañías"
3811+
3812+#. module: bank_management
3813+#: field:voucher.pay.support.wizard,min_lim:0
3814+msgid "Min. Limit (Bs.)"
3815+msgstr "Limit Min. (Bs.)"
3816+
3817+#. module: bank_management
3818+#: view:res.company:0
3819+#: field:res.company,transitory:0
3820+#: field:res.partner.bank,trans_account_id:0
3821+msgid "Transitory Account"
3822+msgstr "Cuenta transitoria"
3823+
3824+#. module: bank_management
3825+#: report:chk.book.request:0
3826+msgid "No.:"
3827+msgstr "No.:"
3828+
3829+#. module: bank_management
3830+#: view:account.voucher:0
3831+msgid "Invoices and outstanding transactions"
3832+msgstr "Facturas y transacciones de salida"
3833+
3834+#. module: bank_management
3835+#: help:res.partner.bank,balance:0
3836+msgid "return the balance of accounting account"
3837+msgstr "devuelve el balance de la cuenta contable"
3838+
3839+#. module: bank_management
3840+#: help:check.book.request,accounting_bank_id:0
3841+msgid "Bank account to which belong the check book"
3842+msgstr "Cuenta bancaria a la cual pertenece la chequera"
3843+
3844+#. module: bank_management
3845+#: help:check.book,cancel_check:0
3846+msgid "Grounds for cancellation"
3847+msgstr "Causas que provocarón la anulación"
3848+
3849+#. module: bank_management
3850+#: field:ir.print,create_uid:0
3851+msgid "Creator"
3852+msgstr "Creator"
3853+
3854+#. module: bank_management
3855+#: help:cancel.voucher.pay.support,state:0
3856+msgid "Estado del Cheque Voucher"
3857+msgstr "Estado del Cheque Voucher"
3858+
3859+#. module: bank_management
3860+#: field:print.model.reports,python_code:0
3861+msgid "Python Code"
3862+msgstr "Python Code"
3863+
3864+#. module: bank_management
3865+#: field:print.lpr.option,orientation_requested:0
3866+msgid "Orientation Requested"
3867+msgstr "Orientation Requested"
3868+
3869+#. module: bank_management
3870+#: view:account.voucher:0
3871+#: code:addons/bank_management/check/report/reporte_check_book.py:62
3872+#: code:addons/bank_management/check/report/reporte_wizard_general.py:68
3873+#: selection:cancel.voucher.pay.support,state:0
3874+#: view:check.book:0
3875+#: selection:check.book,state:0
3876+#: view:check.book.request:0
3877+#: selection:check.book.request,state:0
3878+#: view:check.note:0
3879+#: selection:check.note,state:0
3880+#: view:voucher.pay.support:0
3881+#: selection:voucher.pay.support,state:0
3882+#: selection:voucher.pay.support.wizard,state:0
3883+#, python-format
3884+msgid "Cancel"
3885+msgstr "Cancelar"
3886+
3887+#. module: bank_management
3888+#: field:cancel.voucher.pay.support,payee_id:0
3889+msgid "Beneficiario"
3890+msgstr "Beneficiario"
3891+
3892+#. module: bank_management
3893+#: field:account.voucher,voucher_pay_support_id:0
3894+msgid "Payment Order"
3895+msgstr "Orden de pago"
3896+
3897+#. module: bank_management
3898+#: field:res.company,expiry:0
3899+msgid "Expiration Days"
3900+msgstr "Días de caducidad"
3901+
3902+#. module: bank_management
3903+#: selection:check.book,cancel_check:0
3904+#: selection:check.note,cancel_check_note:0
3905+#: selection:voucher.pay.support,cancel_check_note:0
3906+msgid "Other"
3907+msgstr "Otro"
3908+
3909+#. module: bank_management
3910+#: code:addons/bank_management/check/check_book.py:343
3911+#, python-format
3912+msgid "Need all prefix check"
3913+msgstr "Need all prefix check"
3914+
3915+#. module: bank_management
3916+#: field:print.lpr.option,fit_to_page:0
3917+msgid "Fit to page"
3918+msgstr "Fit to page"
3919+
3920+#. module: bank_management
3921+#: view:res.company:0
3922+msgid "Expiry Date"
3923+msgstr "Días de caducidad"
3924+
3925+#. module: bank_management
3926+#: view:voucher.pay.support.wizard:0
3927+msgid "Select Payment Type"
3928+msgstr "Seleccione el tipo de pago"
3929+
3930+#. module: bank_management
3931+#: report:cash_amount.3:0
3932+#: report:cash_receipt.drcr.3:0
3933+msgid "-"
3934+msgstr "-"
3935+
3936+#. module: bank_management
3937+#: report:cash_amount.3:0
3938+#: report:cash_receipt.drcr.3:0
3939+msgid "Credito"
3940+msgstr "Credito"
3941+
3942+#. module: bank_management
3943+#: field:check.book,qty_active:0
3944+msgid "Available Checks"
3945+msgstr "Cheques disponibles"
3946+
3947+
3948+#. module: bank_management
3949+#: field:check.book.request,accounting_bank_id:0
3950+msgid "Account Bank"
3951+msgstr "Cuenta Bancaria"
3952+
3953+#. module: bank_management
3954+#: field:check.book,qty_check_selection:0
3955+msgid "Check Qty"
3956+msgstr "Cant. cheques"
3957+
3958+#. module: bank_management
3959+#: view:check.book:0
3960+#: field:check.book,bank_id:0
3961+#: view:check.book.request:0
3962+#: field:check.book.request,bank_id:0
3963+#: view:check.note:0
3964+#: field:check.note,bank_id:0
3965+#: model:ir.model,name:bank_management.model_res_bank
3966+#: model:ir.ui.menu,name:bank_management.menu_configuration_bank
3967+#: view:res.partner.bank:0
3968+#: view:voucher.pay.support:0
3969+#: field:voucher.pay.support,bank_id:0
3970+#: field:voucher.pay.support.wizard,bank_id:0
3971+msgid "Bank"
3972+msgstr "Banco"
3973+
3974+#. module: bank_management
3975+#: field:print.gs.option,name:0
3976+#: field:print.lpr.option,name:0
3977+#: field:voucher.pay.support.wizard,name:0
3978+msgid "Name"
3979+msgstr "Nombre"
3980+
3981+#. module: bank_management
3982+#: code:addons/bank_management/check/report/reporte_check_book.py:123
3983+#: code:addons/bank_management/check/report/reporte_wizard_general.py:198
3984+#, python-format
3985+msgid "Done Check book"
3986+msgstr "Chequera Usada"
3987+
3988+#. module: bank_management
3989+#: field:check.book,fixed_prefix:0
3990+msgid "Fixed Prefix?"
3991+msgstr "¿Prefijo fijo?"
3992+
3993+#. module: bank_management
3994+#: selection:check.book,qty_check_selection:0
3995+msgid "75"
3996+msgstr "75"
3997+
3998+#. module: bank_management
3999+#: help:res.partner.bank,virtual_balance:0
4000+msgid "Proposed Balance=Sum transitory money more balance closed or balance account"
4001+msgstr "Balance propuesto=Sum dinero en transito mas balance cerrado o balance de la cuenta"
4002+
4003+#. module: bank_management
4004+#: help:print.lpr.option,orientation_requested:0
4005+msgid "The orientation-requested option rotates the page depending on the value of N:\n"
4006+"3 - portrait orientation (no rotation)\n"
4007+"4 - landscape orientation (90 degrees)\n"
4008+"5 - reverse landscape or seascape orientation (270 degrees)\n"
4009+"6 - reverse portrait or upside-down orientation (180 degrees)"
4010+msgstr "The orientation-requested option rotates the page depending on the value of N:\n"
4011+"3 - portrait orientation (no rotation)\n"
4012+"4 - landscape orientation (90 degrees)\n"
4013+"5 - reverse landscape or seascape orientation (270 degrees)\n"
4014+"6 - reverse portrait or upside-down orientation (180 degrees)"
4015+
4016+#. module: bank_management
4017+#: help:check.book,from_suffix:0
4018+msgid "the check note number format is prefix + suffix\n"
4019+" beginning of the suffix"
4020+msgstr "El formato del nro de cheque es prefijo + sufijo\n"
4021+" comienzo del sufijo"
4022+
4023+#. module: bank_management
4024+#: sql_constraint:account.journal:0
4025+msgid "The name of the journal must be unique per company !"
4026+msgstr "¡El nombre del diaro debe ser único por compañía!"
4027+
4028+#. module: bank_management
4029+#: help:print.model.reports,check_note_use:0
4030+msgid "Checking this field when allow you to take different headers to print"
4031+msgstr "Checking this field when allow you to take different headers to print"
4032+
4033+#. module: bank_management
4034+#: report:chk.book:0
4035+#: report:wizard.general.book:0
4036+msgid "NOTA:"
4037+msgstr "NOTA:"
4038+
4039+#. module: bank_management
4040+#: report:cash_amount.3:0
4041+msgid "Recibido (en palabras) :"
4042+msgstr "Recibido (en palabras) :"
4043+
4044+#. module: bank_management
4045+#: field:cancel.voucher.pay.support,bank_id:0
4046+#: report:cash_amount.3:0
4047+msgid "Banco"
4048+msgstr "Banco"
4049+
4050+#. module: bank_management
4051+#: report:cash_amount.3:0
4052+#: report:cash_receipt.drcr.3:0
4053+msgid "Comprobante de Cobro Bancario"
4054+msgstr "Comprobante de Cobro Bancario"
4055+
4056+#. module: bank_management
4057+#: report:chk.book:0
4058+#: report:wizard.general.book:0
4059+msgid "CLOSING DATE:"
4060+msgstr "FECHA DE CIERRE:"
4061+
4062+#. module: bank_management
4063+#: field:print.lpr.option,cpi:0
4064+msgid "Number of Characters Per Inch"
4065+msgstr "Number of Characters Per Inch"
4066+
4067+#. module: bank_management
4068+#: view:check.book:0
4069+#: view:check.book.request:0
4070+#: view:check.note:0
4071+#: view:res.partner.bank:0
4072+#: view:voucher.pay.support:0
4073+msgid "Group By..."
4074+msgstr "Agrupar por..."
4075+
4076+#. module: bank_management
4077+#: report:cash_amount.3:0
4078+#: report:cash_receipt.drcr.3:0
4079+msgid "Estado:"
4080+msgstr "Estado:"
4081+
4082+#. module: bank_management
4083+#: report:cash_amount.3:0
4084+#: report:cash_receipt.drcr.3:0
4085+msgid "Banco:"
4086+msgstr "Banco:"
4087+
4088+#. module: bank_management
4089+#: help:print.model,model:0
4090+msgid "Introduzca en este campo el modelo que sera enviado directamente a la impresora"
4091+msgstr "Introduzca en este campo el modelo que sera enviado directamente a la impresora"
4092+
4093+#. module: bank_management
4094+#: field:ir.print,model_id:0
4095+msgid "Document"
4096+msgstr "Document"
4097+
4098+#. module: bank_management
4099+#: view:account.voucher:0
4100+msgid "Bill Payment"
4101+msgstr "Pago factura"
4102+
4103+#. module: bank_management
4104+#: field:check.book,rate_user:0
4105+msgid "Use Rate"
4106+msgstr "Tasa de uso"
4107+
4108+#. module: bank_management
4109+#: report:chk.book.request:0
4110+msgid "("
4111+msgstr "("
4112+
4113+#. module: bank_management
4114+#: view:account.voucher:0
4115+msgid "Set to Draft"
4116+msgstr "Cambiar a borrador"
4117+
4118+#. module: bank_management
4119+#: selection:print.lpr.option,orientation_requested:0
4120+msgid "Reverse landscape (270 degrees)"
4121+msgstr "Reverse landscape (270 degrees)"
4122+
4123+#. module: bank_management
4124+#: selection:voucher.pay.support.wizard,cancel_check_note:0
4125+msgid "Others"
4126+msgstr "Otros"
4127+
4128+#. module: bank_management
4129+#: model:ir.model,name:bank_management.model_print_gs_option
4130+msgid " ftp://mirror.switch.ch/mirror/ghost/gs5man_e.pdf "
4131+msgstr " ftp://mirror.switch.ch/mirror/ghost/gs5man_e.pdf "
4132+
4133+#. module: bank_management
4134+#: help:check.book,rate_user:0
4135+msgid "percent used a checkbook"
4136+msgstr "percent used a checkbook"
4137+
4138+#. module: bank_management
4139+#: selection:check.book.wizard,state_check_note:0
4140+msgid "Without Filter"
4141+msgstr "Without Filter"
4142+
4143+#. module: bank_management
4144+#: report:chk.book:0
4145+#: report:wizard.general.book:0
4146+msgid "CHECK BOOK REPORT"
4147+msgstr "REPORTE DE CHEQUERAS"
4148+
4149+#. module: bank_management
4150+#: code:addons/bank_management/check/voucher_pay_support.py:140
4151+#, python-format
4152+msgid "Enter the acknowledgment"
4153+msgstr "Ingrese el Acuse de Recibido"
4154+
4155+#. module: bank_management
4156+#: constraint:res.bank:0
4157+msgid "Error ! Specified bank name already exists for any other registered bank. "
4158+msgstr "Error ! El nombre del banco ya esta siendo usado. "
4159+
4160+#. module: bank_management
4161+#: view:voucher.pay.support.wizard:0
4162+msgid "print confirmation"
4163+msgstr "Confirmar impresión"
4164+
4165+#. module: bank_management
4166+#: report:cash_amount.3:0
4167+#: report:cash_receipt.drcr.3:0
4168+msgid "Debito"
4169+msgstr "Debito"
4170+
4171+#. module: bank_management
4172+#: view:voucher.pay.support:0
4173+msgid "See Voucher Payment Summary"
4174+msgstr "Ver comprobante de pago resumido"
4175+
4176+#. module: bank_management
4177+#: constraint:voucher.pay.support:0
4178+msgid "Warning ! You can not duplicate this document"
4179+msgstr "Advertencia ! Ud no puede duplicar este documento"
4180+
4181+#. module: bank_management
4182+#: help:res.bank,min_lim:0
4183+msgid "Minimum amount for check"
4184+msgstr "Monto mínimo para los cheques"
4185+
4186+#. module: bank_management
4187+#: help:res.partner.bank,journal_id:0
4188+msgid "In which journal the entries will be made"
4189+msgstr "Diario contable en donde se realizaran los asientos"
4190+
4191+#. module: bank_management
4192+#: selection:cancel.voucher.pay.support,cancel_check_note:0
4193+msgid "Error de Impresion"
4194+msgstr "Error de Impresion"
4195+
4196+#. module: bank_management
4197+#: report:chk.book:0
4198+#: report:wizard.general.book:0
4199+msgid "CHECK NOTE NRO."
4200+msgstr "NRO. DE CHEQUE"
4201+
4202+#. module: bank_management
4203+#: field:cancel.voucher.pay.support,max_lim:0
4204+msgid "Limite maximo (Bs.)"
4205+msgstr "Limite maximo (Bs.)"
4206+
4207+#. module: bank_management
4208+#: view:check.book.request:0
4209+#: selection:check.book.request,state:0
4210+msgid "Send"
4211+msgstr "Enviado"
4212+
4213+#. module: bank_management
4214+#: field:print.model.reports,gs_use:0
4215+msgid "Use Ghostscript?"
4216+msgstr "Use Ghostscript?"
4217+
4218+#. module: bank_management
4219+#: help:res.company,expiry:0
4220+msgid "Number of the days on which the check could be cashed"
4221+msgstr "Number of the days on which the check could be cashed"
4222+
4223+#. module: bank_management
4224+#: view:res.partner.bank:0
4225+msgid "Bank Account Owner"
4226+msgstr "Propietario cuenta bancaria"
4227+
4228+#. module: bank_management
4229+#: selection:print.lpr.option,orientation_requested:0
4230+msgid "Reverse portrait (180 degrees)"
4231+msgstr "Reverse portrait (180 degrees)"
4232+
4233+#. module: bank_management
4234+#: report:chk.book:0
4235+#: report:wizard.general.book:0
4236+msgid "CHECKS AVAILABLE:"
4237+msgstr "CHEQUES DISPONIBLES:"
4238+
4239+#. module: bank_management
4240+#: field:voucher.pay.support,name:0
4241+msgid "Acknowledgment of receipt"
4242+msgstr "Acuse de recibo"
4243+
4244+#. module: bank_management
4245+#: model:ir.actions.report.xml,name:bank_management.report_account_voucher_amt3
4246+msgid "Voucher Payment Detailed"
4247+msgstr "Comprobante de pago detallado"
4248+
4249+#. module: bank_management
4250+#: code:addons/bank_management/check/report/reporte_check_book.py:119
4251+#: code:addons/bank_management/check/report/reporte_wizard_general.py:194
4252+#, python-format
4253+msgid "Review Check book"
4254+msgstr "Revisar chequera"
4255+
4256+#. module: bank_management
4257+#: report:cash_amount.3:0
4258+#: report:cash_receipt.drcr.3:0
4259+msgid "Pagado"
4260+msgstr "Pagado"
4261+
4262+#. module: bank_management
4263+#: help:check.book,qty_check:0
4264+msgid "Check note quantity of check book"
4265+msgstr "Check note quantity of check book"
4266+
4267+#. module: bank_management
4268+#: help:check.book,qty_check_selection:0
4269+msgid "Quantity of check note will have the check book"
4270+msgstr "Cantidad de cheques que poseera la chequera"
4271+
4272+#. module: bank_management
4273+#: field:voucher.pay.support.wizard,bool_good:0
4274+msgid "Printed"
4275+msgstr "Printed"
4276+
4277+#. module: bank_management
4278+#: report:chk.book:0
4279+#: report:wizard.general.book:0
4280+msgid "THIS DOCUMENT MAY HAVE STILL MISSING INFORMATION"
4281+msgstr "ESTE DOCUMENTO TODAVIA PUEDE TENER INFORMACION FALTANTE"
4282+
4283+#. module: bank_management
4284+#: field:check.book,from_suffix:0
4285+msgid "From Suffix"
4286+msgstr "Desde Sufijo"
4287+
4288+#. module: bank_management
4289+#: report:cash_amount.3:0
4290+msgid "Particulares"
4291+msgstr "Particulares"
4292+
4293+#. module: bank_management
4294+#: help:check.book.request,partner_id:0
4295+msgid "Person authorized to withdraw the checkbook"
4296+msgstr "Persona autorizda a retirar la chequera"
4297+
4298+#. module: bank_management
4299+#: field:voucher.pay.support.wizard,check_note_id:0
4300+msgid "Check No"
4301+msgstr "Cheque No"
4302+
4303+#. module: bank_management
4304+#: view:voucher.pay.support:0
4305+msgid "Payment Made"
4306+msgstr "Pagado"
4307+
4308+#. module: bank_management
4309+#: report:cash_amount.3:0
4310+msgid "Monto"
4311+msgstr "Monto"
4312+
4313+#. module: bank_management
4314+#: help:print.model.reports,num_copies:0
4315+msgid "Set the number of copies to print"
4316+msgstr "Set the number of copies to print"
4317+
4318+#. module: bank_management
4319+#: view:res.partner.bank:0
4320+msgid "Journal Entries"
4321+msgstr "Asientos"
4322+
4323+#. module: bank_management
4324+#: report:cash_amount.3:0
4325+#: report:cash_receipt.drcr.3:0
4326+msgid "Código de Cuenta:"
4327+msgstr "Código de Cuenta:"
4328+
4329+#. module: bank_management
4330+#: view:gral.check.book:0
4331+msgid "Filter by Period"
4332+msgstr "Filtrado por periodo"
4333+
4334+#. module: bank_management
4335+#: report:wizard.general.book:0
4336+msgid "TOTAL AMOUNT PAID"
4337+msgstr "TOTAL AMOUNT PAID"
4338+
4339+#. module: bank_management
4340+#: field:cancel.voucher.pay.support,notes:0
4341+msgid "Motivo"
4342+msgstr "Motivo"
4343+
4344+#. module: bank_management
4345+#: help:print.model.reports,printer:0
4346+msgid "Select the printer that will be used for print the report"
4347+msgstr "Select the printer that will be used for print the report"
4348+
4349+#. module: bank_management
4350+#: selection:print.lpr.option,media:0
4351+msgid "DL"
4352+msgstr "DL"
4353+
4354+#. module: bank_management
4355+#: report:chk.book:0
4356+#: report:wizard.general.book:0
4357+msgid "BENEFICIARY"
4358+msgstr "BENEFICIARIO"
4359+
4360+#. module: bank_management
4361+#: view:voucher.pay.support:0
4362+msgid "Checks Drawn"
4363+msgstr "Cheque Retirado"
4364+
4365+#. module: bank_management
4366+#: view:voucher.pay.support.wizard:0
4367+msgid "Nota"
4368+msgstr "Nota"
4369+
4370+#. module: bank_management
4371+#: view:voucher.pay.support.wizard:0
4372+msgid "Grounds for Annulment"
4373+msgstr "Grounds for Annulment"
4374+
4375+#. module: bank_management
4376+#: field:account.voucher,check_note_ids:0
4377+#: view:check.book:0
4378+#: field:check.book,check_note_ids:0
4379+#: view:check.note:0
4380+msgid "Checks"
4381+msgstr "Cheques"
4382+
4383+#. module: bank_management
4384+#: code:addons/bank_management/check/voucher_pay_support.py:157
4385+#, python-format
4386+msgid "You must enter Account Bank Transitional: %s"
4387+msgstr "Debe introducir una cuenta bancaria transitoria: %s"
4388+
4389+#. module: bank_management
4390+#: code:addons/bank_management/check/report/reporte_check_book.py:121
4391+#: code:addons/bank_management/check/report/reporte_wizard_general.py:196
4392+#, python-format
4393+msgid "Hibernate Check book"
4394+msgstr "Hibernar chequera"
4395+
4396+#. module: bank_management
4397+#: selection:cancel.voucher.pay.support,type:0
4398+#: selection:voucher.pay.support,type:0
4399+#: view:voucher.pay.support.wizard:0
4400+msgid "Cheque"
4401+msgstr "Cheque"
4402+
4403+#. module: bank_management
4404+#: code:addons/bank_management/check/report/reporte_check_book.py:60
4405+#: code:addons/bank_management/check/report/reporte_wizard_general.py:66
4406+#: view:check.book:0
4407+#: selection:check.book,state:0
4408+#: view:check.note:0
4409+#: selection:check.note,state:0
4410+#, python-format
4411+msgid "Active"
4412+msgstr "Activo"
4413+
4414+#. module: bank_management
4415+#: view:check.book:0
4416+msgid "Checks Note"
4417+msgstr "Cheques"
4418+
4419+#. module: bank_management
4420+#: field:print.model.reports,num_copies:0
4421+msgid "Number of Copies"
4422+msgstr "Number of Copies"
4423+
4424+#. module: bank_management
4425+#: help:res.bank,max_lim:0
4426+msgid "Maximum amount for check"
4427+msgstr "Monto maximo para los cheques"
4428+
4429+#. module: bank_management
4430+#: selection:cancel.voucher.pay.support,type:0
4431+#: field:cancel.voucher.pay.support,wire:0
4432+#: selection:voucher.pay.support,type:0
4433+msgid "Transferencia"
4434+msgstr "Transferencia"
4435+
4436+#. module: bank_management
4437+#: report:cash_amount.3:0
4438+msgid "Detalle de Pago:"
4439+msgstr "Detalle de Pago:"
4440+
4441+#. module: bank_management
4442+#: report:chk.book:0
4443+#: report:wizard.general.book:0
4444+msgid "STATE"
4445+msgstr "ESTADO"
4446+
4447+#. module: bank_management
4448+#: field:res.partner.bank,transitory_money:0
4449+msgid "Transitory Money"
4450+msgstr "Dinero en transito"
4451+
4452+#. module: bank_management
4453+#: report:chk.book:0
4454+#: report:wizard.general.book:0
4455+msgid "ACTIVATION DATE:"
4456+msgstr "FECHA DE ACTIVACION:"
4457+
4458+#. module: bank_management
4459+#: model:ir.model,name:bank_management.model_voucher_pay_support_wizard
4460+msgid "voucher.pay.support.wizard"
4461+msgstr "voucher.pay.support.wizard"
4462+
4463+#. module: bank_management
4464+#: field:check.book.wizard,hasta:0
4465+msgid "To"
4466+msgstr "Hasta"
4467+
4468+#. module: bank_management
4469+#: view:voucher.pay.support.wizard:0
4470+msgid "Process"
4471+msgstr "Procesar"
4472+
4473+#. module: bank_management
4474+#: field:cancel.voucher.pay.support,period_id:0
4475+msgid "Periodo"
4476+msgstr "Periodo"
4477+
4478+#. module: bank_management
4479+#: model:ir.model,name:bank_management.model_account_voucher
4480+msgid "Accounting Voucher"
4481+msgstr "Comprobantes contables"
4482+
4483+#. module: bank_management
4484+#: code:addons/bank_management/check/report/reporte_check_book.py:63
4485+#: code:addons/bank_management/check/report/reporte_wizard_general.py:69
4486+#: selection:check.note,state:0
4487+#, python-format
4488+msgid "Assigned"
4489+msgstr "Asignado"
4490+
4491+#. module: bank_management
4492+#: help:print.gs.option,device:0
4493+msgid "Sets the device driver"
4494+msgstr "Sets the device driver"
4495+
4496+#. module: bank_management
4497+#: code:addons/bank_management/check/report/reporte_check_book.py:64
4498+#: code:addons/bank_management/check/report/reporte_wizard_general.py:70
4499+#: selection:cancel.voucher.pay.support,state:0
4500+#: view:check.book:0
4501+#: selection:check.book,state:0
4502+#: selection:check.note,state:0
4503+#: view:voucher.pay.support:0
4504+#: selection:voucher.pay.support,state:0
4505+#: selection:voucher.pay.support.wizard,state:0
4506+#, python-format
4507+msgid "Done"
4508+msgstr "Hecho"
4509+
4510+#. module: bank_management
4511+#: report:wizard.general.book:0
4512+msgid "TOTAL AMOUNT COMMITTED"
4513+msgstr "TOTAL AMOUNT COMMITTED"
4514+
4515+#. module: bank_management
4516+#: selection:cancel.voucher.pay.support,state:0
4517+#: view:voucher.pay.support:0
4518+#: selection:voucher.pay.support,state:0
4519+#: selection:voucher.pay.support.wizard,state:0
4520+msgid "Open"
4521+msgstr "Abierto"
4522+
4523+#. module: bank_management
4524+#: view:account.voucher:0
4525+msgid "Customer Payment"
4526+msgstr "Pago cliente"
4527+
4528+#. module: bank_management
4529+#: view:voucher.pay.support:0
4530+#: field:voucher.pay.support,wire:0
4531+#: view:voucher.pay.support.wizard:0
4532+#: selection:voucher.pay.support.wizard,type:0
4533+#: field:voucher.pay.support.wizard,wire:0
4534+msgid "Transfer"
4535+msgstr "Transferencia"
4536+
4537+#. module: bank_management
4538+#: field:voucher.pay.support.wizard,expiry:0
4539+msgid "expiration days"
4540+msgstr "Días de caducidad"
4541+
4542+#. module: bank_management
4543+#: help:check.book,date_draft:0
4544+msgid "date of receipt of the checkbook"
4545+msgstr "Fecha de recepción de la chequera"
4546+
4547+#. module: bank_management
4548+#: field:voucher.pay.support.wizard,max_lim:0
4549+msgid "Max Limit (Bs.)"
4550+msgstr "Limite Max (Bs.)"
4551+
4552+#. module: bank_management
4553+#: field:cancel.voucher.pay.support,bool_bad:0
4554+msgid "No se imprimio"
4555+msgstr "No se imprimio"
4556+
4557+#. module: bank_management
4558+#: view:account.voucher:0
4559+msgid "Payment Method"
4560+msgstr "Método de pago"
4561+
4562+#. module: bank_management
4563+#: report:chk.book.request:0
4564+msgid "Attentively,"
4565+msgstr "Atentamente,"
4566+
4567+#. module: bank_management
4568+#: view:voucher.pay.support:0
4569+msgid "Cancel Checks"
4570+msgstr "Cheques cancelados"
4571+
4572+#. module: bank_management
4573+#: selection:print.lpr.option,orientation_requested:0
4574+msgid "Portrait (no rotation)"
4575+msgstr "Portrait (no rotation)"
4576+
4577+#. module: bank_management
4578+#: selection:check.book,cancel_check:0
4579+msgid "Lost or misplaced"
4580+msgstr "Perdida o extravío"
4581+
4582+#. module: bank_management
4583+#: help:check.book,state:0
4584+msgid "Check book state"
4585+msgstr "Estado actual de la chequera"
4586+
4587+#. module: bank_management
4588+#: help:print.model.reports,state:0
4589+msgid "Set the states to used for allow the printing of the document. States must be separated by commas and no spaces. Example: draft,open,done. The state field must be defined in the model as state"
4590+msgstr "Set the states to used for allow the printing of the document. States must be separated by commas and no spaces. Example: draft,open,done. The state field must be defined in the model as state"
4591+
4592+#. module: bank_management
4593+#: code:addons/bank_management/check/check_book.py:243
4594+#: code:addons/bank_management/check/check_book_request.py:137
4595+#, python-format
4596+msgid "you can not duplicate this document!!!"
4597+msgstr "Ud. no puede duplicar este documento!!!"
4598+
4599+#. module: bank_management
4600+#: selection:gral.check.book,state_check_note:0
4601+msgid "Charged"
4602+msgstr "Cobrado"
4603+
4604+#. module: bank_management
4605+#: view:check.book.request:0
4606+msgid "Request Letter"
4607+msgstr "Carta de solicitud"
4608+
4609+#. module: bank_management
4610+#: constraint:res.bank:0
4611+msgid "Error ! Minimum limit must be less than maximun limit"
4612+msgstr "Error ! El límite Mínimo debe ser menor que el límite máximo"
4613+
4614+#. module: bank_management
4615+#: model:ir.actions.report.xml,name:bank_management.report_account_voucher3
4616+msgid "Voucher Payment Summary"
4617+msgstr "Comprobante de pago resumido"
4618+
4619+#. module: bank_management
4620+#: model:ir.model,name:bank_management.model_print_lpr_option
4621+msgid " http://www.cups.org/documentation.php/options.html "
4622+msgstr " http://www.cups.org/documentation.php/options.html "
4623+
4624+#. module: bank_management
4625+#: report:cash_amount.3:0
4626+#: report:cash_receipt.drcr.3:0
4627+msgid "Cash Receipt Voucher"
4628+msgstr "Comprobante de cobro efectivo"
4629+
4630+#. module: bank_management
4631+#: field:print.model.reports,state:0
4632+msgid "States"
4633+msgstr "States"
4634+
4635+#. module: bank_management
4636+#: help:print.lpr.option,media:0
4637+msgid "Sets the media size"
4638+msgstr "Sets the media size"
4639+
4640+#. module: bank_management
4641+#: view:account.voucher:0
4642+msgid "Open Balance"
4643+msgstr "Abrir balance"
4644+
4645+#. module: bank_management
4646+#: selection:cancel.voucher.pay.support,cancel_check_note:0
4647+msgid "Otros"
4648+msgstr "Otros"
4649+
4650+#. module: bank_management
4651+#: report:chk.book:0
4652+#: report:wizard.general.book:0
4653+msgid "CHECK BOOK:"
4654+msgstr "CHEQUERA:"
4655+
4656+#. module: bank_management
4657+#: code:addons/bank_management/check/wizard/voucher_pay_support_wizard_pay_order.py:215
4658+#, python-format
4659+msgid "You have to enter the transitory bank account: %s"
4660+msgstr "Ud. debe introducir la cuenta bancaria transitoria: %s"
4661+
4662+#. module: bank_management
4663+#: help:print.lpr.option,name:0
4664+msgid "Set the name for this LPR Profile"
4665+msgstr "Set the name for this LPR Profile"
4666+
4667+#. module: bank_management
4668+#: model:ir.model,name:bank_management.model_check_book_request
4669+msgid "check.book.request"
4670+msgstr "check.book.request"
4671+
4672+#. module: bank_management
4673+#: help:res.partner.bank,trans_account_id:0
4674+msgid "Account which the money that has no been charged"
4675+msgstr "Cuenta en la cual se encuentra el dinero no cobrado"
4676+
4677+#. module: bank_management
4678+#: help:print.model.reports,depend_state:0
4679+msgid "Checking this field to allow the printing by states filter"
4680+msgstr "Checking this field to allow the printing by states filter"
4681+
4682+#. module: bank_management
4683+#: view:account.voucher:0
4684+msgid "Credits"
4685+msgstr "Haber"
4686+
4687+#. module: bank_management
4688+#: help:account.voucher,pay_bank:0
4689+msgid "Check this box if you want to pay with check or transfer"
4690+msgstr "Seleccione esta opción sí desea pagar con cheque"
4691+
4692+#. module: bank_management
4693+#: field:cancel.voucher.pay.support,company_id:0
4694+#: field:voucher.pay.support,company_id:0
4695+#: field:voucher.pay.support.wizard,company_id:0
4696+msgid "Company"
4697+msgstr "Compañia"
4698+
4699+#. module: bank_management
4700+#: field:print.model.reports,lpr_option_id:0
4701+msgid "Lpr Options"
4702+msgstr "Lpr Options"
4703+
4704+#. module: bank_management
4705+#: model:ir.model,name:bank_management.model_print_model
4706+msgid "Class to introduce the model to send to the printer"
4707+msgstr "Class to introduce the model to send to the printer"
4708+
4709+#. module: bank_management
4710+#: selection:voucher.pay.support.wizard,cancel_check_note:0
4711+msgid "Print error"
4712+msgstr "Error de impresión"
4713+
4714+#. module: bank_management
4715+#: field:voucher.pay.support.wizard,notes:0
4716+msgid "Reason"
4717+msgstr "Motivo"
4718+
4719+#. module: bank_management
4720+#: code:addons/bank_management/check/report/reporte_check_book.py:77
4721+#: code:addons/bank_management/check/report/reporte_wizard_general.py:83
4722+#: selection:check.note,cancel_check_note:0
4723+#: selection:voucher.pay.support,cancel_check_note:0
4724+#: selection:voucher.pay.support.wizard,cancel_check_note:0
4725+#, python-format
4726+msgid "Returned check"
4727+msgstr "Cheque devuelto"
4728+
4729+#. module: bank_management
4730+#: view:check.book.request:0
4731+msgid "Chequeras"
4732+msgstr "Chequeras"
4733+
4734+#. module: bank_management
4735+#: view:cancel.voucher.pay.support:0
4736+msgid "Cancellation Voucher Payment"
4737+msgstr "Cancellation Voucher Payment"
4738+
4739+#. module: bank_management
4740+#: report:chk.book.request:0
4741+msgid "to receive on our behalf stubs requested."
4742+msgstr "para que reciba en nuestro nombre los talonarios solicitados."
4743+
4744+#. module: bank_management
4745+#: report:chk.book:0
4746+#: report:wizard.general.book:0
4747+msgid "VOIDED CHECK:"
4748+msgstr "CHEQUES ANULADOS:"
4749+
4750+#. module: bank_management
4751+#: help:gral.check.book,state_check_note:0
4752+msgid "Check note state on voucher"
4753+msgstr "Estado del cheque en el comprobante"
4754+
4755+#. module: bank_management
4756+#: model:ir.module.module,shortdesc:bank_management.module_meta_information
4757+msgid "Bank Management"
4758+msgstr "Bank Management"
4759+
4760+#. module: bank_management
4761+#: view:voucher.pay.support:0
4762+msgid "See Voucher Payment"
4763+msgstr "Ver comprobante de pago"
4764+
4765+#. module: bank_management
4766+#: code:addons/bank_management/check/report/reporte_check_book.py:75
4767+#: code:addons/bank_management/check/report/reporte_wizard_general.py:81
4768+#: selection:check.note,cancel_check_note:0
4769+#: selection:voucher.pay.support,cancel_check_note:0
4770+#: selection:voucher.pay.support.wizard,cancel_check_note:0
4771+#, python-format
4772+msgid "Payment is not made"
4773+msgstr "Pago sin realizar"
4774+
4775+#. module: bank_management
4776+#: model:ir.actions.act_window,help:bank_management.action_voucher_pay_support
4777+msgid "With voucher pay support you can support delivery and check transactions."
4778+msgstr "Con soporte de pago Ud. puede enviar revisar transacciones."
4779+
4780+#. module: bank_management
4781+#: field:check.book,notes:0
4782+#: field:check.note,notes:0
4783+#: field:voucher.pay.support,notes:0
4784+msgid "Note"
4785+msgstr "Nota"
4786+
4787+#. module: bank_management
4788+#: field:gral.check.book,hasta:0
4789+msgid "Ending Date"
4790+msgstr "Fecha Final"
4791+
4792+#. module: bank_management
4793+#: selection:check.book,qty_check_selection:0
4794+msgid "50"
4795+msgstr "50"
4796+
4797+#. module: bank_management
4798+#: field:res.partner.bank,balance:0
4799+msgid "Account Balance"
4800+msgstr "Balance contable"
4801+
4802+#. module: bank_management
4803+#: selection:print.gs.option,device:0
4804+msgid "Epson-compatible 9-pin, intermediate resolution"
4805+msgstr "Epson-compatible 9-pin, intermediate resolution"
4806+
4807+#. module: bank_management
4808+#: help:gral.check.book,tiempo:0
4809+msgid "period in which to generate the report"
4810+msgstr "period in which to generate the report"
4811+
4812+#. module: bank_management
4813+#: sql_constraint:account.journal:0
4814+msgid "The code of the journal must be unique per company !"
4815+msgstr "¡El código del diario debe ser único por compañía!"
4816+
4817+#. module: bank_management
4818+#: view:cancel.voucher.pay.support:0
4819+msgid "Execute Cancellation"
4820+msgstr "Ejecutar Cancelación"
4821+
4822+#. module: bank_management
4823+#: help:print.model.reports,report_id:0
4824+msgid "Set in this field, the model to send directing to the printer"
4825+msgstr "Set in this field, the model to send directing to the printer"
4826+
4827+#. module: bank_management
4828+#: model:ir.actions.act_window,name:bank_management.action_pay_order_wizard_soporte
4829+#: model:ir.actions.act_window,name:bank_management.action_voucher_pay_support
4830+#: model:ir.ui.menu,name:bank_management.menu_voucher_pay_support
4831+#: view:voucher.pay.support:0
4832+msgid "Paid Support"
4833+msgstr "Soporte de pago"
4834+
4835+#. module: bank_management
4836+#: report:chk.book:0
4837+#: report:wizard.general.book:0
4838+msgid "BANKING ENTITY:"
4839+msgstr "ENTIDAD BANCARIA:"
4840+
4841+#. module: bank_management
4842+#: code:addons/bank_management/check/report/reporte_check_book.py:120
4843+#: code:addons/bank_management/check/report/reporte_wizard_general.py:195
4844+#, python-format
4845+msgid "Active Check book"
4846+msgstr "Chequera activa"
4847+
4848+#. module: bank_management
4849+#: view:res.partner.bank:0
4850+msgid "Search Account Bank"
4851+msgstr "Busqueda cuenta bancaria"
4852+
4853+#. module: bank_management
4854+#: constraint:res.company:0
4855+msgid "Error! You can not create recursive companies."
4856+msgstr "¡Error! No puede crear compañías recursivas."
4857+
4858+#. module: bank_management
4859+#: view:check.note:0
4860+#: field:check.note,date_done:0
4861+msgid "Collection Date"
4862+msgstr "Fecha de cobro"
4863+
4864+#. module: bank_management
4865+#: field:print.model.reports,printer:0
4866+msgid "Printers"
4867+msgstr "Printers"
4868+
4869+#. module: bank_management
4870+#: help:res.company,transitory:0
4871+msgid "Apply transitory account"
4872+msgstr "Apply transitory account"
4873+
4874+#. module: bank_management
4875+#: report:cash_amount.3:0
4876+#: report:cash_receipt.drcr.3:0
4877+msgid "Comprobante de Pago Bancario"
4878+msgstr "Comprobante de Pago Bancario"
4879+
4880+#. module: bank_management
4881+#: view:gral.check.book:0
4882+msgid "General Report Checkbooks"
4883+msgstr "Reporte General de Chequeras"
4884+
4885+#. module: bank_management
4886+#: help:account.voucher,one_partner:0
4887+msgid "Check this box if there only one supplier or customer for this voucher"
4888+msgstr "Marque esta caja si solo hay un proveedor o cliente en este comprobante"
4889+
4890+#. module: bank_management
4891+#: field:print.model,model_report_ids:0
4892+msgid "Modelo Reports"
4893+msgstr "Modelo Reports"
4894+
4895+#. module: bank_management
4896+#: code:addons/bank_management/check/report/reporte_check_book.py:118
4897+#: code:addons/bank_management/check/report/reporte_wizard_general.py:193
4898+#, python-format
4899+msgid "Draft Check book"
4900+msgstr "Chequeras en borrador"
4901+
4902+#. module: bank_management
4903+#: report:chk.book.request:0
4904+msgid "Authorizing"
4905+msgstr "Autorizado"
4906+
4907+#. module: bank_management
4908+#: report:chk.book.request:0
4909+msgid "And we thank you in advance of you."
4910+msgstr "Agradecemos de antemano y quedamos de Uds."
4911+
4912+#. module: bank_management
4913+#: view:res.company:0
4914+msgid "Configuration"
4915+msgstr "Configuración"
4916+
4917+#. module: bank_management
4918+#: report:cash_amount.3:0
4919+#: report:cash_receipt.drcr.3:0
4920+msgid "Número de Cheque"
4921+msgstr "Número de Cheque"
4922+
4923+#. module: bank_management
4924+#: model:ir.module.module,description:bank_management.module_meta_information
4925+msgid "\n"
4926+" - Management of check book, check note\n"
4927+" - Print format of venezuelan check note\n"
4928+" - Traceability of check note throught paid support\n"
4929+" - Account voucher payment \n"
4930+"---------------------------------------------------------\n"
4931+" 1.- Create bank account\n"
4932+" 2.- Create check book request\n"
4933+" 3.- Load check note\n"
4934+" 4.- Make supplier invoice\n"
4935+" 5.- Create one supplier payment\n"
4936+" 6.- Create support (click button)\n"
4937+" "
4938+msgstr "\n"
4939+" - Administración de chequeras, cheques\n"
4940+" - Impresión de cheques con formatos Venezolanos\n"
4941+" - Trazabilidad de cheques a través de soportes de pago\n"
4942+" - Comprobante de pago \n"
4943+"---------------------------------------------------------\n"
4944+" 1.- Crear cuentas bancarias\n"
4945+" 2.- Crear solicitud de chequeras\n"
4946+" 3.- Cargar cheques\n"
4947+" 4.- Realizar factura de proveedor\n"
4948+" 5.- Crear pago un solo proveedor\n"
4949+" 6.- Crear soporte (click button)\n"
4950+" "
4951+
4952+#. module: bank_management
4953+#: field:print.lpr.option,lpi:0
4954+msgid "Number of Lines Per Inch"
4955+msgstr "Number of Lines Per Inch"
4956+
4957+#. module: bank_management
4958+#: view:cancel.voucher.pay.support:0
4959+msgid "Abort Cancellation"
4960+msgstr "Suspender Cancelación"
4961+
4962+#. module: bank_management
4963+#: field:cancel.voucher.pay.support,bool_good:0
4964+msgid "Si se imprimio"
4965+msgstr "Si se imprimio"
4966+
4967+#. module: bank_management
4968+#: model:ir.model,name:bank_management.model_account_voucher_line
4969+msgid "Voucher Lines"
4970+msgstr "Líneas de comprobante"
4971+
4972+#. module: bank_management
4973+#: report:chk.book:0
4974+#: report:wizard.general.book:0
4975+msgid "CHECKS NUMBER:"
4976+msgstr "NUMERO DE CHEQUES:"
4977+
4978+#. module: bank_management
4979+#: view:voucher.pay.support.wizard:0
4980+msgid "check generation"
4981+msgstr "Generación de cheque"
4982+
4983+#. module: bank_management
4984+#: help:res.company,header_report:0
4985+msgid "Set the header to place the report when it is not suitable for print"
4986+msgstr "Set the header to place the report when it is not suitable for print"
4987+
4988+#. module: bank_management
4989+#: view:voucher.pay.support.wizard:0
4990+msgid "In progress..."
4991+msgstr "En progreso..."
4992+
4993+#. module: bank_management
4994+#: code:addons/bank_management/check/report/reporte_check_book.py:58
4995+#: code:addons/bank_management/check/report/reporte_wizard_general.py:64
4996+#: selection:cancel.voucher.pay.support,state:0
4997+#: view:check.book:0
4998+#: selection:check.book,state:0
4999+#: view:check.book.request:0
5000+#: selection:check.book.request,state:0
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches