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
=== added directory 'account_voucher_multi_partner'
=== added file 'account_voucher_multi_partner/__init__.py'
--- account_voucher_multi_partner/__init__.py 1970-01-01 00:00:00 +0000
+++ account_voucher_multi_partner/__init__.py 2015-04-15 16:28:26 +0000
@@ -0,0 +1,26 @@
1# -*- coding: utf-8 -*-
2##############################################################################
3#
4# OpenERP, Open Source Management Solution
5# Copyright (C) 2004-20011S Tiny SPRL (<http://tiny.be>). All Rights Reserved
6# This module was developen by Vauxoo Team:
7# Coded by: javier@vauxoo.com
8#
9#
10# This program is free software: you can redistribute it and/or modify
11# it under the terms of the GNU Affero General Public License as
12# published by the Free Software Foundation, either version 3 of the
13# License, or (at your option) any later version.
14#
15# This program is distributed in the hope that it will be useful,
16# but WITHOUT ANY WARRANTY; without even the implied warranty of
17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18# GNU Affero General Public License for more details.
19#
20# You should have received a copy of the GNU Affero General Public License
21# along with this program. If not, see <http://www.gnu.org/licenses/>.
22#
23##############################################################################
24
25import voucher_multi_partner
26# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
027
=== added file 'account_voucher_multi_partner/__openerp__.py'
--- account_voucher_multi_partner/__openerp__.py 1970-01-01 00:00:00 +0000
+++ account_voucher_multi_partner/__openerp__.py 2015-04-15 16:28:26 +0000
@@ -0,0 +1,46 @@
1# -*- coding: utf-8 -*-
2##############################################################################
3#
4# OpenERP, Open Source Management Solution
5# Copyright (C) 2004-20011S Tiny SPRL (<http://tiny.be>). All Rights Reserved
6# This module was developen by Vauxoo Team:
7# Coded by: javier@vauxoo.com
8#
9#
10# This program is free software: you can redistribute it and/or modify
11# it under the terms of the GNU Affero General Public License as
12# published by the Free Software Foundation, either version 3 of the
13# License, or (at your option) any later version.
14#
15# This program is distributed in the hope that it will be useful,
16# but WITHOUT ANY WARRANTY; without even the implied warranty of
17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18# GNU Affero General Public License for more details.
19#
20# You should have received a copy of the GNU Affero General Public License
21# along with this program. If not, see <http://www.gnu.org/licenses/>.
22#
23##############################################################################
24{
25 "name" : "Account voucher multi partner",
26 "version" : "0.1",
27 "author" : "Vauxoo",
28 "website" : "http://vauxoo.com",
29 "category": 'Generic Modules/Accounting',
30 "description": """
31 This module extend account voucher funcionality allowed make payments or receipt
32 from several partner
33 """,
34 'init_xml': [],
35 "depends" : ["account_voucher", "account_voucher_patch"],
36 'update_xml': [
37 'voucher_multi_partner_view.xml',
38 ],
39 'demo_xml': [],
40 'test': [],
41 'installable': True,
42 'active': False,
43}
44
45
46# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
047
=== added directory 'account_voucher_multi_partner/i18n'
=== added file 'account_voucher_multi_partner/i18n/es.po'
--- account_voucher_multi_partner/i18n/es.po 1970-01-01 00:00:00 +0000
+++ account_voucher_multi_partner/i18n/es.po 2015-04-15 16:28:26 +0000
@@ -0,0 +1,274 @@
1# Translation of OpenERP Server.
2# This file contains the translation of the following modules:
3# * account_voucher_multi_partner
4#
5msgid ""
6msgstr ""
7"Project-Id-Version: OpenERP Server 6.1beta\n"
8"Report-Msgid-Bugs-To: \n"
9"POT-Creation-Date: 2011-11-25 15:44+0000\n"
10"PO-Revision-Date: 2011-11-25 15:44+0000\n"
11"Last-Translator: <>\n"
12"Language-Team: \n"
13"MIME-Version: 1.0\n"
14"Content-Type: text/plain; charset=UTF-8\n"
15"Content-Transfer-Encoding: \n"
16"Plural-Forms: \n"
17
18#. module: account_voucher_multi_partner
19#: view:account.voucher:0
20msgid "Customer Payment"
21msgstr "Pago cliente"
22
23#. module: account_voucher_multi_partner
24#: view:account.voucher:0
25msgid "Payment Ref"
26msgstr "Ref. pago"
27
28#. module: account_voucher_multi_partner
29#: view:account.voucher:0
30msgid "Group By..."
31msgstr "Agrupar por..."
32
33#. module: account_voucher_multi_partner
34#: view:account.voucher:0
35msgid "State"
36msgstr "Estado"
37
38#. module: account_voucher_multi_partner
39#: view:account.voucher:0
40msgid "Draft"
41msgstr "Borrador"
42
43#. module: account_voucher_multi_partner
44#: view:account.voucher:0
45msgid "Set to Draft"
46msgstr "Cambiar a borrador"
47
48#. module: account_voucher_multi_partner
49#: model:ir.actions.act_window,name:account_voucher_multi_partner.action_vendor_multi_partner_receipt
50#: model:ir.ui.menu,name:account_voucher_multi_partner.menu_action_vendor_multi_partner_receipt
51msgid "Several Customer Payment"
52msgstr "Pago a múltiples clientes"
53
54#. module: account_voucher_multi_partner
55#: view:account.voucher:0
56msgid "Draft Vouchers"
57msgstr "Draft Vouchers"
58
59#. module: account_voucher_multi_partner
60#: view:account.voucher:0
61msgid "Bill Payment"
62msgstr "Pago factura"
63
64#. module: account_voucher_multi_partner
65#: view:account.voucher:0
66msgid "Posted Vouchers"
67msgstr "Comprobantes contabilizados"
68
69#. module: account_voucher_multi_partner
70#: view:account.voucher:0
71msgid "Payment Method"
72msgstr "Método de pago"
73
74#. module: account_voucher_multi_partner
75#: model:ir.actions.act_window,help:account_voucher_multi_partner.action_vendor_multi_partner_payment
76msgid "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."
77msgstr "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."
78
79#. module: account_voucher_multi_partner
80#: view:account.voucher:0
81msgid "Journal"
82msgstr "Diario"
83
84#. module: account_voucher_multi_partner
85#: code:addons/account_voucher_multi_partner/voucher_multi_partner.py:327
86#, python-format
87msgid "Invalid action !"
88msgstr "!Acción invalida!"
89
90#. module: account_voucher_multi_partner
91#: view:account.voucher:0
92msgid "Residual"
93msgstr "Residual"
94
95#. module: account_voucher_multi_partner
96#: view:account.voucher:0
97msgid "Internal Notes"
98msgstr "Notas internas"
99
100#. module: account_voucher_multi_partner
101#: view:account.voucher:0
102msgid "Credits"
103msgstr "Haber"
104
105#. module: account_voucher_multi_partner
106#: view:account.voucher:0
107msgid "Are you sure to unreconcile this record ?"
108msgstr "¿Seguro que desea romper la conciliación de este registro?"
109
110#. module: account_voucher_multi_partner
111#: view:account.voucher:0
112msgid "Journal Items"
113msgstr "Apuntes contables"
114
115#. module: account_voucher_multi_partner
116#: view:account.voucher:0
117msgid "Other Information"
118msgstr "Otra información"
119
120#. module: account_voucher_multi_partner
121#: view:account.voucher:0
122msgid "Validate"
123msgstr "Validar"
124
125#. module: account_voucher_multi_partner
126#: view:account.voucher:0
127msgid "Extended Filters..."
128msgstr "Filtros extendidos..."
129
130#. module: account_voucher_multi_partner
131#: view:account.voucher:0
132msgid "Unreconcile"
133msgstr "Romper conciliación"
134
135#. module: account_voucher_multi_partner
136#: view:account.voucher:0
137msgid "Payment"
138msgstr "Pago"
139
140#. module: account_voucher_multi_partner
141#: code:addons/account_voucher_multi_partner/voucher_multi_partner.py:327
142#, python-format
143msgid "Cannot validate Voucher(s) with bad total !"
144msgstr "!No puede validar Comprobantes con el total incorrecto !"
145
146#. module: account_voucher_multi_partner
147#: view:account.voucher:0
148msgid "Posted"
149msgstr "Contabilizado"
150
151#. module: account_voucher_multi_partner
152#: view:account.voucher:0
153msgid "Supplier Invoices and Outstanding transactions"
154msgstr "Facturas de proveedor y transiciones de salida"
155
156#. module: account_voucher_multi_partner
157#: code:addons/account_voucher_multi_partner/voucher_multi_partner.py:293
158#, python-format
159msgid "No Account Base Code and Account Tax Code!"
160msgstr "!Sin código base y código de impuesto contable!"
161
162#. module: account_voucher_multi_partner
163#: help:account.voucher,multi_partner:0
164msgid "Check this box if there are twice or more supplier or customer for this voucher"
165msgstr "Marque este cuadro si hay dos o más proveedores o clientes para este comprobante"
166
167#. module: account_voucher_multi_partner
168#: model:ir.actions.act_window,help:account_voucher_multi_partner.action_vendor_multi_partner_receipt
169msgid "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."
170msgstr "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."
171
172#. module: account_voucher_multi_partner
173#: view:account.voucher:0
174msgid "Cancel"
175msgstr "Cancelar"
176
177#. module: account_voucher_multi_partner
178#: view:account.voucher:0
179msgid "Payment Options"
180msgstr "Opciones de pago"
181
182#. module: account_voucher_multi_partner
183#: field:account.voucher,multi_partner:0
184msgid "Several Supplier or Customer ?"
185msgstr "¿Múltiples proveedores o clientes?"
186
187#. module: account_voucher_multi_partner
188#: code:addons/account_voucher_multi_partner/voucher_multi_partner.py:293
189#, python-format
190msgid "You have to configure account base code and account tax code on the '%s' tax!"
191msgstr "¡Debe configurar código de la base contable y código del impuesto contable del impuesto '%s'!"
192
193#. module: account_voucher_multi_partner
194#: view:account.voucher:0
195msgid "Invoices and outstanding transactions"
196msgstr "Facturas y transacciones de salida"
197
198#. module: account_voucher_multi_partner
199#: field:account.voucher.line,amount_residual:0
200msgid "Residual Amount"
201msgstr "Monto Residual"
202
203#. module: account_voucher_multi_partner
204#: view:account.voucher:0
205msgid "Supplier"
206msgstr "Proveedor"
207
208#. module: account_voucher_multi_partner
209#: view:account.voucher:0
210msgid "To Review"
211msgstr "A revisar"
212
213#. module: account_voucher_multi_partner
214#: model:ir.module.module,description:account_voucher_multi_partner.module_meta_information
215msgid "\n"
216" This module extend account voucher funcionality allowed make payments or receipt\n"
217" from several partner\n"
218" "
219msgstr "\n"
220" Este modulo extiende la funcionalidad de los comprobantes de pago/cobro permitiendo realizar pagos o cobros\n"
221" de varias empresas\n"
222" "
223
224#. module: account_voucher_multi_partner
225#: model:ir.model,name:account_voucher_multi_partner.model_account_voucher
226msgid "Accounting Voucher"
227msgstr "Comprobantes contables"
228
229#. module: account_voucher_multi_partner
230#: view:account.voucher:0
231msgid "Period"
232msgstr "Período"
233
234#. module: account_voucher_multi_partner
235#: model:ir.model,name:account_voucher_multi_partner.model_account_voucher_line
236msgid "Voucher Lines"
237msgstr "Líneas de comprobante"
238
239#. module: account_voucher_multi_partner
240#: model:ir.module.module,shortdesc:account_voucher_multi_partner.module_meta_information
241msgid "Account voucher multi partner"
242msgstr "Account voucher multi partner"
243
244#. module: account_voucher_multi_partner
245#: view:account.voucher:0
246msgid "Search Vouchers"
247msgstr "Buscar comprobantes"
248
249#. module: account_voucher_multi_partner
250#: field:account.voucher.line,invoice_id:0
251msgid "Invoice"
252msgstr "Factura"
253
254#. module: account_voucher_multi_partner
255#: view:account.voucher:0
256msgid "Payment Information"
257msgstr "Información de pago"
258
259#. module: account_voucher_multi_partner
260#: view:account.voucher:0
261msgid "Open Balance"
262msgstr "Abrir balance"
263
264#. module: account_voucher_multi_partner
265#: view:account.voucher:0
266msgid "Paid Amount"
267msgstr "Importe pagado"
268
269#. module: account_voucher_multi_partner
270#: model:ir.actions.act_window,name:account_voucher_multi_partner.action_vendor_multi_partner_payment
271#: model:ir.ui.menu,name:account_voucher_multi_partner.menu_action_vendor_multi_partner_payment
272msgid "Several Supplier Payment"
273msgstr " Pago a múltiples proveedores"
274
0275
=== added file 'account_voucher_multi_partner/i18n/es_VE.po'
--- account_voucher_multi_partner/i18n/es_VE.po 1970-01-01 00:00:00 +0000
+++ account_voucher_multi_partner/i18n/es_VE.po 2015-04-15 16:28:26 +0000
@@ -0,0 +1,274 @@
1# Translation of OpenERP Server.
2# This file contains the translation of the following modules:
3# * account_voucher_multi_partner
4#
5msgid ""
6msgstr ""
7"Project-Id-Version: OpenERP Server 6.1beta\n"
8"Report-Msgid-Bugs-To: \n"
9"POT-Creation-Date: 2011-11-25 15:44+0000\n"
10"PO-Revision-Date: 2011-11-25 15:44+0000\n"
11"Last-Translator: <>\n"
12"Language-Team: \n"
13"MIME-Version: 1.0\n"
14"Content-Type: text/plain; charset=UTF-8\n"
15"Content-Transfer-Encoding: \n"
16"Plural-Forms: \n"
17
18#. module: account_voucher_multi_partner
19#: view:account.voucher:0
20msgid "Customer Payment"
21msgstr "Pago cliente"
22
23#. module: account_voucher_multi_partner
24#: view:account.voucher:0
25msgid "Payment Ref"
26msgstr "Ref. pago"
27
28#. module: account_voucher_multi_partner
29#: view:account.voucher:0
30msgid "Group By..."
31msgstr "Agrupar por..."
32
33#. module: account_voucher_multi_partner
34#: view:account.voucher:0
35msgid "State"
36msgstr "Estado"
37
38#. module: account_voucher_multi_partner
39#: view:account.voucher:0
40msgid "Draft"
41msgstr "Borrador"
42
43#. module: account_voucher_multi_partner
44#: view:account.voucher:0
45msgid "Set to Draft"
46msgstr "Cambiar a borrador"
47
48#. module: account_voucher_multi_partner
49#: model:ir.actions.act_window,name:account_voucher_multi_partner.action_vendor_multi_partner_receipt
50#: model:ir.ui.menu,name:account_voucher_multi_partner.menu_action_vendor_multi_partner_receipt
51msgid "Several Customer Payment"
52msgstr "Pago a múltiples clientes"
53
54#. module: account_voucher_multi_partner
55#: view:account.voucher:0
56msgid "Draft Vouchers"
57msgstr "Draft Vouchers"
58
59#. module: account_voucher_multi_partner
60#: view:account.voucher:0
61msgid "Bill Payment"
62msgstr "Pago factura"
63
64#. module: account_voucher_multi_partner
65#: view:account.voucher:0
66msgid "Posted Vouchers"
67msgstr "Comprobantes contabilizados"
68
69#. module: account_voucher_multi_partner
70#: view:account.voucher:0
71msgid "Payment Method"
72msgstr "Método de pago"
73
74#. module: account_voucher_multi_partner
75#: model:ir.actions.act_window,help:account_voucher_multi_partner.action_vendor_multi_partner_payment
76msgid "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."
77msgstr "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."
78
79#. module: account_voucher_multi_partner
80#: view:account.voucher:0
81msgid "Journal"
82msgstr "Diario"
83
84#. module: account_voucher_multi_partner
85#: code:addons/account_voucher_multi_partner/voucher_multi_partner.py:327
86#, python-format
87msgid "Invalid action !"
88msgstr "!Acción invalida!"
89
90#. module: account_voucher_multi_partner
91#: view:account.voucher:0
92msgid "Residual"
93msgstr "Residual"
94
95#. module: account_voucher_multi_partner
96#: view:account.voucher:0
97msgid "Internal Notes"
98msgstr "Notas internas"
99
100#. module: account_voucher_multi_partner
101#: view:account.voucher:0
102msgid "Credits"
103msgstr "Haber"
104
105#. module: account_voucher_multi_partner
106#: view:account.voucher:0
107msgid "Are you sure to unreconcile this record ?"
108msgstr "¿Seguro que desea romper la conciliación de este registro?"
109
110#. module: account_voucher_multi_partner
111#: view:account.voucher:0
112msgid "Journal Items"
113msgstr "Apuntes contables"
114
115#. module: account_voucher_multi_partner
116#: view:account.voucher:0
117msgid "Other Information"
118msgstr "Otra información"
119
120#. module: account_voucher_multi_partner
121#: view:account.voucher:0
122msgid "Validate"
123msgstr "Validar"
124
125#. module: account_voucher_multi_partner
126#: view:account.voucher:0
127msgid "Extended Filters..."
128msgstr "Filtros extendidos..."
129
130#. module: account_voucher_multi_partner
131#: view:account.voucher:0
132msgid "Unreconcile"
133msgstr "Romper conciliación"
134
135#. module: account_voucher_multi_partner
136#: view:account.voucher:0
137msgid "Payment"
138msgstr "Pago"
139
140#. module: account_voucher_multi_partner
141#: code:addons/account_voucher_multi_partner/voucher_multi_partner.py:327
142#, python-format
143msgid "Cannot validate Voucher(s) with bad total !"
144msgstr "!No puede validar Comprobantes con el total incorrecto !"
145
146#. module: account_voucher_multi_partner
147#: view:account.voucher:0
148msgid "Posted"
149msgstr "Contabilizado"
150
151#. module: account_voucher_multi_partner
152#: view:account.voucher:0
153msgid "Supplier Invoices and Outstanding transactions"
154msgstr "Facturas de proveedor y transiciones de salida"
155
156#. module: account_voucher_multi_partner
157#: code:addons/account_voucher_multi_partner/voucher_multi_partner.py:293
158#, python-format
159msgid "No Account Base Code and Account Tax Code!"
160msgstr "!Sin código base y código de impuesto contable!"
161
162#. module: account_voucher_multi_partner
163#: help:account.voucher,multi_partner:0
164msgid "Check this box if there are twice or more supplier or customer for this voucher"
165msgstr "Marque este cuadro si hay dos o más proveedores o clientes para este comprobante"
166
167#. module: account_voucher_multi_partner
168#: model:ir.actions.act_window,help:account_voucher_multi_partner.action_vendor_multi_partner_receipt
169msgid "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."
170msgstr "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."
171
172#. module: account_voucher_multi_partner
173#: view:account.voucher:0
174msgid "Cancel"
175msgstr "Cancelar"
176
177#. module: account_voucher_multi_partner
178#: view:account.voucher:0
179msgid "Payment Options"
180msgstr "Opciones de pago"
181
182#. module: account_voucher_multi_partner
183#: field:account.voucher,multi_partner:0
184msgid "Several Supplier or Customer ?"
185msgstr "¿Múltiples proveedores o clientes?"
186
187#. module: account_voucher_multi_partner
188#: code:addons/account_voucher_multi_partner/voucher_multi_partner.py:293
189#, python-format
190msgid "You have to configure account base code and account tax code on the '%s' tax!"
191msgstr "¡Debe configurar código de la base contable y código del impuesto contable del impuesto '%s'!"
192
193#. module: account_voucher_multi_partner
194#: view:account.voucher:0
195msgid "Invoices and outstanding transactions"
196msgstr "Facturas y transacciones de salida"
197
198#. module: account_voucher_multi_partner
199#: field:account.voucher.line,amount_residual:0
200msgid "Residual Amount"
201msgstr "Monto Residual"
202
203#. module: account_voucher_multi_partner
204#: view:account.voucher:0
205msgid "Supplier"
206msgstr "Proveedor"
207
208#. module: account_voucher_multi_partner
209#: view:account.voucher:0
210msgid "To Review"
211msgstr "A revisar"
212
213#. module: account_voucher_multi_partner
214#: model:ir.module.module,description:account_voucher_multi_partner.module_meta_information
215msgid "\n"
216" This module extend account voucher funcionality allowed make payments or receipt\n"
217" from several partner\n"
218" "
219msgstr "\n"
220" Este modulo extiende la funcionalidad de los comprobantes de pago/cobro permitiendo realizar pagos o cobros\n"
221" de varias empresas\n"
222" "
223
224#. module: account_voucher_multi_partner
225#: model:ir.model,name:account_voucher_multi_partner.model_account_voucher
226msgid "Accounting Voucher"
227msgstr "Comprobantes contables"
228
229#. module: account_voucher_multi_partner
230#: view:account.voucher:0
231msgid "Period"
232msgstr "Período"
233
234#. module: account_voucher_multi_partner
235#: model:ir.model,name:account_voucher_multi_partner.model_account_voucher_line
236msgid "Voucher Lines"
237msgstr "Líneas de comprobante"
238
239#. module: account_voucher_multi_partner
240#: model:ir.module.module,shortdesc:account_voucher_multi_partner.module_meta_information
241msgid "Account voucher multi partner"
242msgstr "Account voucher multi partner"
243
244#. module: account_voucher_multi_partner
245#: view:account.voucher:0
246msgid "Search Vouchers"
247msgstr "Buscar comprobantes"
248
249#. module: account_voucher_multi_partner
250#: field:account.voucher.line,invoice_id:0
251msgid "Invoice"
252msgstr "Factura"
253
254#. module: account_voucher_multi_partner
255#: view:account.voucher:0
256msgid "Payment Information"
257msgstr "Información de pago"
258
259#. module: account_voucher_multi_partner
260#: view:account.voucher:0
261msgid "Open Balance"
262msgstr "Abrir balance"
263
264#. module: account_voucher_multi_partner
265#: view:account.voucher:0
266msgid "Paid Amount"
267msgstr "Importe pagado"
268
269#. module: account_voucher_multi_partner
270#: model:ir.actions.act_window,name:account_voucher_multi_partner.action_vendor_multi_partner_payment
271#: model:ir.ui.menu,name:account_voucher_multi_partner.menu_action_vendor_multi_partner_payment
272msgid "Several Supplier Payment"
273msgstr " Pago a múltiples proveedores"
274
0275
=== added file 'account_voucher_multi_partner/voucher_multi_partner.py'
--- account_voucher_multi_partner/voucher_multi_partner.py 1970-01-01 00:00:00 +0000
+++ account_voucher_multi_partner/voucher_multi_partner.py 2015-04-15 16:28:26 +0000
@@ -0,0 +1,245 @@
1#!/usr/bin/python
2# -*- coding: utf-8 -*-
3##############################################################################
4#
5# OpenERP, Open Source Management Solution
6# Copyright (C) 2004-20011S Tiny SPRL (<http://tiny.be>). All Rights Reserved
7# This module was developen by Vauxoo Team:
8# Coded by: javier@vauxoo.com
9#
10#
11# This program is free software: you can redistribute it and/or modify
12# it under the terms of the GNU Affero General Public License as
13# published by the Free Software Foundation, either version 3 of the
14# License, or (at your option) any later version.
15#
16# This program is distributed in the hope that it will be useful,
17# but WITHOUT ANY WARRANTY; without even the implied warranty of
18# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19# GNU Affero General Public License for more details.
20#
21# You should have received a copy of the GNU Affero General Public License
22# along with this program. If not, see <http://www.gnu.org/licenses/>.
23#
24##############################################################################
25
26from osv import osv
27from osv import fields
28from tools.translate import _
29import time
30import datetime
31import decimal_precision as dp
32
33
34class account_voucher_line(osv.osv):
35 _inherit = 'account.voucher.line'
36 name = 'acc.voucher.line.multi.partner'
37
38
39 def _amount_residual(self, cr, uid, ids, name, args, context=None):
40 currency_pool = self.pool.get('res.currency')
41 for line in self.browse(cr, uid, ids, context=context):
42 ctx = context.copy()
43 ctx.update({'date': line.voucher_id.date})
44 res = {}
45 company_currency = line.voucher_id.journal_id.company_id.currency_id.id
46 voucher_currency = line.voucher_id.currency_id.id
47 move_line = line.move_line_id or False
48
49 if not move_line:
50 res[line.id] = 0.0
51
52 if move_line:
53 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
54
55 return res
56
57 _columns={
58 'invoice_id' : fields.many2one('account.invoice','Invoice'),
59 'partner_id' : fields.many2one('res.partner','Partner'),
60 'amount_residual': fields.function(_amount_residual, method=True, digits_compute=dp.get_precision('Account'), string='Residual Amount', type='float', store=True),
61 }
62
63
64
65 def onchange_partner_id(self, cr, uid, ids, partner_id, journal_id, price, currency_id, ttype, invoice_id, context=None):
66 currency_pool = self.pool.get('res.currency')
67 move_line_pool = self.pool.get('account.move.line')
68# partner_pool = self.pool.get('res.partner')
69 journal_pool = self.pool.get('account.journal')
70 invoice_pool = self.pool.get('account.invoice')
71# partner_brw = partner_pool.browse(cr,uid,partner_id,context=context)
72 journal_brw = journal_pool.browse(cr, uid, journal_id, context=context)
73 default = {}
74 default.setdefault('value',{})
75
76 currency_id = currency_id or journal_brw.company_id.currency_id.id
77
78 if not partner_id:
79 return default
80
81 default['value']['partner_id'] = partner_id
82
83 total_credit = 0.0
84 total_debit = 0.0
85 account_type = 'receivable'
86 if ttype == 'payment':
87 account_type = 'payable'
88 total_debit = price or 0.0
89 else:
90 total_credit = price or 0.0
91
92
93 if not invoice_id:
94 return default
95
96 default['value']['invoice_id'] = invoice_id
97 invoice_brw = invoice_pool.browse(cr, uid, invoice_id, context=context)
98 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)
99 moves = move_line_pool.browse(cr, uid, ids, context=context)
100
101
102 company_currency = journal_brw.company_id.currency_id.id
103 for line in moves:
104 if line.credit and line.reconcile_partial_id and ttype == 'receipt':
105 continue
106 if line.debit and line.reconcile_partial_id and ttype == 'payment':
107 continue
108
109 if line.currency_id and currency_id==line.currency_id.id:
110 total_credit += line.amount_currency <0 and -line.amount_currency or 0.0
111 total_debit += line.amount_currency >0 and line.amount_currency or 0.0
112 else:
113 total_credit += currency_pool.compute(cr, uid, company_currency, currency_id, line.credit or 0.0)
114 total_debit += currency_pool.compute(cr, uid, company_currency, currency_id, line.debit or 0.0)
115
116 for line in moves:
117 if line.credit and line.reconcile_partial_id and ttype == 'receipt':
118 continue
119 if line.debit and line.reconcile_partial_id and ttype == 'payment':
120 continue
121
122 if line.currency_id and currency_id==line.currency_id.id:
123 amount_original = abs(line.amount_currency)
124 amount_unreconciled = abs(line.amount_residual_currency)
125 else:
126 amount_original = currency_pool.compute(cr, uid, company_currency, currency_id, line.credit or line.debit or 0.0)
127 amount_unreconciled = currency_pool.compute(cr, uid, company_currency, currency_id, abs(line.amount_residual))
128
129 #original_amount = line.credit or line.debit or 0.0
130 #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)
131 default['value'].update({
132 'name':line.move_id.name,
133 'type': line.credit and 'dr' or 'cr',
134 'move_line_id':line.id,
135 'account_id':line.account_id.id,
136 'amount_original': amount_original,
137 'date_original':line.date,
138 'date_due':line.date_maturity,
139 'amount_unreconciled': amount_unreconciled,
140 'amount': amount_unreconciled,
141
142 })
143
144
145# if ttype == 'payment' and len(default['value']['line_cr_ids']) > 0:
146# default['value']['pre_line'] = 1
147# elif ttype == 'receipt' and len(default['value']['line_dr_ids']) > 0:
148# default['value']['pre_line'] = 1
149# default['value']['writeoff_amount'] = self._compute_writeoff_amount(cr, uid, default['value']['line_dr_ids'], default['value']['line_cr_ids'], price)
150
151 return default
152
153
154account_voucher_line()
155
156
157class account_voucher(osv.osv):
158 _inherit='account.voucher'
159 name='account.voucher.multi.partner'
160
161 _columns={
162 '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"),
163 }
164
165
166
167 def onchange_journal_multi_partner(self, cr, uid, ids, journal_id, context=None):
168 vals = {'value': {}}
169 if not journal_id:
170 return vals
171 journal_pool = self.pool.get('account.journal')
172 journal = journal_pool.browse(cr, uid, journal_id, context=context)
173
174# vals = self.onchange_price(cr, uid, ids, line_ids, tax_id, partner_id, context)
175
176 currency_id = False #journal.company_id.currency_id.id
177 if journal.currency:
178 currency_id = journal.currency.id
179 vals['value'].update({'currency_id':currency_id})
180
181 # TODO: Debo averiguar cual es la cuenta del voucher, ¿Asumo siempre la del diario?
182# account_id = False
183# if journal.type in ('sale','sale_refund'):
184# account_id = partner.property_account_receivable.id
185# elif journal.type in ('purchase', 'purchase_refund','expense'):
186# account_id = partner.property_account_payable.id
187# else:
188# account_id = journal.default_credit_account_id.id or journal.default_debit_account_id.id
189 account_id = journal.default_credit_account_id.id or journal.default_debit_account_id.id
190 vals['value']['account_id'] = account_id
191 return vals
192
193 def onchange_date_multi_partner(self, cr, uid, ids, journal_id, date, context=None):
194 """
195 @param date: latest value from user input for field date
196 @param args: other arguments
197 @param context: context arguments, like lang, time zone
198 @return: Returns a dict which contains new values, and context
199 """
200 period_pool = self.pool.get('account.period')
201 res = self.onchange_journal_multi_partner(cr, uid, ids, journal_id, context=context)
202 pids = period_pool.search(cr, uid, [('date_start', '<=', date), ('date_stop', '>=', date)])
203 if pids:
204 if not 'value' in res:
205 res['value'] = {}
206 res['value'].update({'period_id':pids[0]})
207 return res
208
209 def first_move_line_get(self, cr, uid, voucher_id, move_id, company_currency, current_currency, context=None):
210 data = super(account_voucher, self).first_move_line_get(cr, uid, voucher_id, move_id, company_currency, current_currency, context)
211 data.update({'partner_id':False})
212 return data
213
214
215 def voucher_move_line_get_item(self, cr, uid, voucher, line, move_id, company_currency, current_currency):
216 data = super(account_voucher, self).voucher_move_line_get_item(cr, uid, voucher, line, move_id, company_currency, current_currency)
217 data.update({'partner_id':line.partner_id.id})
218 return data
219
220
221 def writeoff_move_line_get(self, cr, uid, voucher_id, line_total, move_id, name, company_currency, current_currency, context=None):
222 voucher_brw = self.pool.get('account.voucher').browse(cr,uid,voucher_id,context)
223 if voucher_brw.multi_partner:
224 #TODO hacer cuenta contable de ajuste en la compañía y evaluar un monto mínimo para realizar el asiento de ajuste
225 return {}
226 return super(account_voucher, self).writeoff_move_line_get(cr, uid, voucher_id, line_total, move_id, name, company_currency, current_currency, context)
227
228
229 def check_amount_total(self, cr, uid, ids, context=None):
230 for voucher_brw in self.browse(cr, uid, ids,context):
231 amount = 0.0
232 for line in voucher_brw.line_ids:
233 amount+= line.amount
234 if amount != voucher_brw.amount and voucher_brw.multi_partner or amount == 0.0:
235 raise osv.except_osv(_('Invalid action !'), _('Cannot validate Voucher(s) with bad total !'))
236 return True
237
238 def proforma_voucher(self, cr, uid, ids, context=None):
239 self.check_amount_total(cr, uid, ids, context=context)
240 return super(account_voucher, self).proforma_voucher(cr, uid, ids, context)
241
242account_voucher()
243
244
245# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
0246
=== added file 'account_voucher_multi_partner/voucher_multi_partner_view.xml'
--- account_voucher_multi_partner/voucher_multi_partner_view.xml 1970-01-01 00:00:00 +0000
+++ account_voucher_multi_partner/voucher_multi_partner_view.xml 2015-04-15 16:28:26 +0000
@@ -0,0 +1,363 @@
1<?xml version="1.0"?>
2<openerp>
3 <data>
4
5 <record id="view_multi_partner_filter_vendor_pay" model="ir.ui.view">
6 <field name="name">multi.partner.purchase.pay.select</field>
7 <field name="model">account.voucher</field>
8 <field name="type">search</field>
9 <field name="arch" type="xml">
10 <search string="Search Vouchers">
11 <group col='8' colspan='4'>
12 <filter icon="terp-document-new" string="Draft" domain="[('state','=','draft')]" help="Draft Vouchers"/>
13 <filter icon="terp-camera_test" string="Posted" domain="[('state','=','posted')]" help="Posted Vouchers"/>
14 <separator orientation="vertical"/>
15 <filter icon="terp-gtk-jump-to-ltr" string="To Review" domain="[('state','=','posted')]" groups="base.group_extended" help="To Review"/>
16 <separator orientation="vertical"/>
17 <field name="date"/>
18 <field name="number"/>
19 </group>
20 <newline/>
21 <group col='8' colspan='4'>
22 <field name="journal_id" widget="selection" context="{'journal_id': self, 'set_visible':False}" domain="[('type','in',('bank','cash'))]"/>
23 <field name="period_id" groups="base.group_extended"/>
24 </group>
25 <newline/>
26 <group expand="0" string="Extended Filters..." col='8' colspan='4'>
27 <field name="reference"/>
28 <field name="name"/>
29 <field name="narration"/>
30 <field name="amount"/>
31 </group>
32 <newline/>
33 <group expand="0" string="Group By..." colspan="4" col="10">
34 <filter string="Journal" icon="terp-folder-orange" domain="[]" context="{'group_by':'journal_id'}"/>
35 <filter string="Period" icon="terp-go-month" domain="[]" context="{'group_by':'period_id','visible':True}"/>
36 <filter string="State" icon="terp-stock_effects-object-colorize" domain="[]" context="{'group_by':'state'}"/>
37 </group>
38 </search>
39 </field>
40 </record>
41
42 <record model="ir.ui.view" id="view_vendor_multi_partner_payment_form">
43 <field name="name">multi.partner.payment.form</field>
44 <field name="model">account.voucher</field>
45 <field name="type">form</field>
46 <field name="arch" type="xml">
47 <form string="Bill Payment">
48 <group col="6" colspan="4">
49 <field name="amount"/>
50 <field name="journal_id"
51 domain="[('type','in',['bank', 'cash'])]"
52 widget="selection" select="1"
53 on_change="onchange_journal_multi_partner(journal_id)"
54 string="Payment Method"/>
55 <field name="date" select="1" on_change="onchange_date_multi_partner(journal_id, date)"/>
56 <field name="reference" select="1" string="Payment Ref"/>
57 <field name="name" colspan="2"/>
58 <field name="company_id" select="1" widget="selection" groups="base.group_multi_company"/>
59 <field name="account_id"
60 widget="selection"
61 invisible="False"/>
62 <field name="pre_line" invisible="1"/>
63 <field name="type" invisible="True"/>
64 <field name="multi_partner" invisible="True"/>
65 </group>
66 <notebook colspan="4">
67 <page string="Payment Information">
68 <field name="line_dr_ids" default_get="{'journal_id':journal_id, 'type':type, 'partner_id':partner_id}" colspan="4" nolabel="1" height="140">
69 <tree string="Supplier Invoices and Outstanding transactions" editable="bottom">
70 <field name="move_line_id" context="{'journal_id':parent.journal_id, 'partner_id':partner_id}"
71 on_change="onchange_move_line_id(move_line_id)"
72 domain="[('account_id.type','=','payable'), ('reconcile_id','=', False), ('partner_id','=',partner_id)]"
73 />
74 <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"/>
75 <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)"/>
76 <field name="account_id" groups="base.group_no_one" domain="[('type','=','payable')]"/>
77 <field name="date_original" readonly="1"/>
78 <field name="date_due" readonly="1"/>
79 <field name="amount_original" readonly="1"/>
80 <field name="amount_unreconciled" sum="Open Balance" readonly="1"/>
81 <field name="amount" sum="Payment"/>
82 <field name="amount_residual" sum="Residual"/>
83 </tree>
84 </field>
85 <field name="line_cr_ids" colspan="4" nolabel="1" attrs="{'invisible': [('pre_line','=',False)]}" default_get="{'journal_id':journal_id, 'partner_id':partner_id}">
86 <tree string="Credits" editable="bottom">
87 <field name="move_line_id"/>
88 <field name="account_id" groups="base.group_extended" domain="[('type','=','receivable')]"/>
89 <field name="date_original"/>
90 <field name="amount_original"/>
91 <field name="amount" sum="Payment"/>
92 </tree>
93 </field>
94 <group col="2" colspan="3">
95 <separator string="Internal Notes" colspan="2"/>
96 <field name="narration" colspan="2" nolabel="1"/>
97 </group>
98 <group col="2" colspan="1">
99 <group col="2" colspan="1">
100 <field name="analytic_id"
101 groups="analytic.group_analytic_accounting"/>
102 <separator string="Payment Options" colspan="2"/>
103 <field name="payment_option" required="1"/>
104 <field name="writeoff_amount"
105 attrs="{'invisible':[('payment_option','!=','with_writeoff')]}"/>
106 <field name="writeoff_acc_id"
107 attrs="{'invisible':[('payment_option','!=','with_writeoff')], 'required':[('payment_option','=','with_writeoff')]}"
108 domain="[('type','=','other')]"/>
109 <field name="comment"
110 attrs="{'invisible':[('payment_option','!=','with_writeoff')]}"/>
111
112 </group>
113 <separator string="Other Information" colspan="2"/>
114 <group col="4" colspan="1">
115 <field name="currency_id" invisible="True"/>
116 <field name="number"/>
117 </group>
118 </group>
119 </page>
120 <page string="Journal Items" groups="base.group_extended" attrs="{'invisible': [('state','!=','posted')]}">
121 <group col="6" colspan="4">
122 <field name="period_id"/>
123 <field name="audit"/>
124 </group>
125 <field name="move_ids" colspan="4" nolabel="1" readonly="1">
126 <tree string="Journal Items">
127 <field name="move_id"/>
128 <field name="ref"/>
129 <field name="date"/>
130 <field name="statement_id"/>
131 <field name="partner_id"/>
132 <field name="account_id"/>
133 <field name="name"/>
134 <field name="debit"/>
135 <field name="credit"/>
136 <field name="state"/>
137 <field name="reconcile_id"/>
138 <field name="amount_currency"/>
139 <field name="currency_id"/>
140 </tree>
141 </field>
142 </page>
143 </notebook>
144 <group col="10" colspan="4">
145 <field name="state"/>
146 <button name="cancel_voucher" string="Cancel" states="draft,proforma" icon="gtk-cancel"/>
147 <button name="cancel_voucher" string="Unreconcile" type="object" states="posted" icon="terp-stock_effects-object-colorize" confirm="Are you sure to unreconcile this record ?"/>
148 <button name="action_cancel_draft" type="object" states="cancel" string="Set to Draft" icon="terp-stock_effects-object-colorize"/>
149 <button name="proforma_voucher" string="Validate" states="draft" icon="gtk-go-forward"/>
150 </group>
151 </form>
152 </field>
153 </record>
154
155
156 <record id="action_vendor_multi_partner_payment" model="ir.actions.act_window">
157 <field name="name">Several Supplier Payment</field>
158 <field name="res_model">account.voucher</field>
159 <field name="view_type">form</field>
160 <field name="domain">[('journal_id.type', 'in', ['bank', 'cash']), ('type','=','payment'), ('multi_partner','=',True)]</field>
161 <field name="context">{'type':'payment','multi_partner':True}</field>
162 <field name="view_id" eval="False"/>
163 <field name="search_view_id" ref="view_multi_partner_filter_vendor_pay"/>
164 <field name="target">current</field>
165 <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>
166 </record>
167 <record id="action_vendor_multi_partner_payment_tree" model="ir.actions.act_window.view">
168 <field eval="1" name="sequence"/>
169 <field name="view_mode">tree</field>
170 <field name="act_window_id" ref="action_vendor_multi_partner_payment"/>
171 </record>
172 <record id="action_vendor_multi_partner_payment_form" model="ir.actions.act_window.view">
173 <field eval="2" name="sequence"/>
174 <field name="view_mode">form</field>
175 <field name="view_id" ref="view_vendor_multi_partner_payment_form"/>
176 <field name="act_window_id" ref="action_vendor_multi_partner_payment"/>
177 </record>
178
179 <menuitem action="action_vendor_multi_partner_payment" id="menu_action_vendor_multi_partner_payment" icon="STOCK_JUSTIFY_FILL"
180 sequence="12" parent="account.menu_finance_payables"/>
181
182
183
184
185 <record id="view_multi_partner_filter_customer_pay" model="ir.ui.view">
186 <field name="name">multi.partner.customer.pay.select</field>
187 <field name="model">account.voucher</field>
188 <field name="type">search</field>
189 <field name="arch" type="xml">
190 <search string="Search Vouchers">
191 <group col='8' colspan='4'>
192 <filter icon="terp-document-new" string="Draft" domain="[('state','=','draft')]" help="Draft Vouchers"/>
193 <filter icon="terp-camera_test" string="Posted" domain="[('state','=','posted')]" help="Posted Vouchers"/>
194 <separator orientation="vertical"/>
195 <filter icon="terp-gtk-jump-to-ltr" string="To Review" domain="[('state','=','posted')]" groups="base.group_extended" help="To Review"/>
196 <separator orientation="vertical"/>
197 <field name="date"/>
198 <field name="number"/>
199 </group>
200 <newline/>
201 <group col='8' colspan='4'>
202 <field name="journal_id" widget="selection" context="{'journal_id': self, 'set_visible':False}" domain="[('type','in',('bank','cash'))]"/>
203 <field name="period_id" groups="base.group_extended"/>
204 </group>
205 <newline/>
206 <group expand="0" string="Extended Filters..." col='8' colspan='4'>
207 <field name="reference"/>
208 <field name="name"/>
209 <field name="narration"/>
210 <field name="amount"/>
211 </group>
212 <newline/>
213 <group expand="0" string="Group By..." colspan="4" col="10">
214 <filter string="Journal" icon="terp-folder-orange" domain="[]" context="{'group_by':'journal_id'}"/>
215 <filter string="Period" icon="terp-go-month" domain="[]" context="{'group_by':'period_id','visible':True}"/>
216 <filter string="State" icon="terp-stock_effects-object-colorize" domain="[]" context="{'group_by':'state'}"/>
217 </group>
218 </search>
219 </field>
220 </record>
221
222<!--
223 <record model="ir.ui.view" id="view_vendor_multi_partner_receipt_form">
224 <field name="name">multi.partner.receipt.form</field>
225 <field name="model">account.voucher</field>
226 <field name="type">form</field>
227 <field name="arch" type="xml">
228 <form string="Customer Payment">
229 <group col="6" colspan="4">
230 <field name="journal_id" on_change= "onchange_journal_multi_partner(journal_id)"
231 domain="[('type','in',['bank', 'cash'])]"
232 widget="selection" select="1"
233 string="Payment Method"/>
234 <field name="amount"
235 string="Paid Amount"/>
236 <field name="date" select="1"/>
237 <field name="reference" select="1" string="Payment Ref"/>
238 <field name="name" colspan="2"/>
239 <field name="company_id" select="1" widget="selection" groups="base.group_multi_company"/>
240 <field name="account_id"
241 widget="selection"/>
242 <field name="pre_line" invisible="1"/>
243 <field name="type" invisible="False"/>
244 <field name="multi_partner" invisible="True"/>
245 </group>
246 <notebook colspan="4">
247 <page string="Payment Information">
248 <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)">
249 <tree string="Invoices and outstanding transactions" editable="bottom">
250 <field name="move_line_id" context="{'journal_id':parent.journal_id, 'partner_id':parent.partner_id}"
251 on_change="onchange_move_line_id(move_line_id)"
252 domain="[('account_id.type','in',('receivable','payable')), ('reconcile_id','=', False), ('partner_id','=',parent.partner_id)]"
253 required="1"
254 />
255 <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)"/>
256 <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)"/>
257 <field name="account_id" groups="base.group_no_one" domain="[('type','=','receivable')]"/>
258 <field name="date_original" readonly="1"/>
259 <field name="date_due" readonly="1"/>
260 <field name="amount_original" readonly="1"/>
261 <field name="amount_unreconciled" sum="Open Balance" readonly="1"/>
262 <field name="amount" sum="Payment"/>
263 </tree>
264 </field>
265 <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)">
266 <tree string="Credits" editable="bottom">
267 <field name="move_line_id"/>
268 <field name="account_id" groups="base.group_extended" domain="[('type','=','receivable')]"/>
269 <field name="date_original"/>
270 <field name="amount_original"/>
271 <field name="amount" sum="Payment"/>
272 </tree>
273 </field>
274 <group col="2" colspan="3">
275 <separator string="Internal Notes" colspan="2"/>
276 <field name="narration" colspan="2" nolabel="1"/>
277 </group>
278 <group col="2" colspan="1">
279 <group col="2" colspan="1">
280 <separator string="Payment Options" colspan="2"/>
281 <field name="analytic_id"
282 groups="analytic.group_analytic_accounting"/>
283 <field name="payment_option" required="1"/>
284 <field name="writeoff_amount"
285 attrs="{'invisible':[('payment_option','!=','with_writeoff')]}"/>
286 <field name="writeoff_acc_id"
287 attrs="{'invisible':[('payment_option','!=','with_writeoff')], 'required':[('payment_option','=','with_writeoff')]}"
288 domain="[('type','=','other')]"/>
289 <field name="comment"
290 attrs="{'invisible':[('payment_option','!=','with_writeoff')]}"/>
291 </group>
292 <separator string="Other Information" colspan="2"/>
293 <group col="4" colspan="1">
294 <field name="currency_id" invisible="True"/>
295 <field name="number"/>
296 </group>
297 </group>
298 </page>
299 <page string="Journal Items" groups="base.group_extended" attrs="{'invisible': [('state','!=','posted')]}">
300 <group col="6" colspan="4">
301 <field name="period_id"/>
302 <field name="audit"/>
303 </group>
304 <field name="move_ids" colspan="4" nolabel="1" readonly="1">
305 <tree string="Journal Items">
306 <field name="move_id"/>
307 <field name="ref"/>
308 <field name="date"/>
309 <field name="statement_id"/>
310 <field name="account_id"/>
311 <field name="name"/>
312 <field name="debit"/>
313 <field name="credit"/>
314 <field name="state"/>
315 <field name="reconcile_id"/>
316 <field name="amount_currency"/>
317 <field name="currency_id"/>
318 </tree>
319 </field>
320 </page>
321 </notebook>
322 <group col="10" colspan="4">
323 <field name="state"/>
324 <button name="cancel_voucher" string="Cancel" states="draft,proforma" icon="gtk-cancel"/>
325 <button name="cancel_voucher" string="Unreconcile" type="object" states="posted" icon="terp-stock_effects-object-colorize" confirm="Are you sure to unreconcile this record ?"/>
326 <button name="action_cancel_draft" type="object" states="cancel" string="Set to Draft" icon="terp-stock_effects-object-colorize"/>
327 <button name="proforma_voucher" string="Validate" states="draft" icon="gtk-go-forward"/>
328 </group>
329 </form>
330 </field>
331 </record>
332
333 <record id="action_vendor_multi_partner_receipt" model="ir.actions.act_window">
334 <field name="name">Several Customer Payment</field>
335 <field name="res_model">account.voucher</field>
336 <field name="view_type">form</field>
337 <field name="domain">[('journal_id.type', 'in', ['bank', 'cash']), ('type','=','receipt'), ('multi_partner','=',True)]</field>
338 <field name="context">{'type':'receipt','multi_partner':True}</field>
339 <field name="search_view_id" ref="view_multi_partner_filter_customer_pay"/>
340 <field name="view_id" eval="False"/>
341 <field name="target">current</field>
342 <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>
343 </record>
344 <record id="action_vendor_multi_partner_receipt_tree" model="ir.actions.act_window.view">
345 <field eval="1" name="sequence"/>
346 <field name="view_mode">tree</field>
347 <field name="act_window_id" ref="action_vendor_multi_partner_receipt"/>
348 </record>
349 <record id="action_vendor_multi_partner_receipt_form" model="ir.actions.act_window.view">
350 <field eval="2" name="sequence"/>
351 <field name="view_mode">form</field>
352 <field name="view_id" ref="view_vendor_multi_partner_receipt_form"/>
353 <field name="act_window_id" ref="action_vendor_multi_partner_receipt"/>
354 </record>
355
356 <menuitem action="action_vendor_multi_partner_receipt" icon="STOCK_JUSTIFY_FILL" sequence="12"
357 id="menu_action_vendor_multi_partner_receipt" parent="account.menu_finance_receivables"/>
358-->
359
360
361
362 </data>
363</openerp>
0364
=== added directory 'account_voucher_patch'
=== added file 'account_voucher_patch/__init__.py'
--- account_voucher_patch/__init__.py 1970-01-01 00:00:00 +0000
+++ account_voucher_patch/__init__.py 2015-04-15 16:28:26 +0000
@@ -0,0 +1,24 @@
1# -*- coding: utf-8 -*-
2##############################################################################
3#
4# OpenERP, Open Source Management Solution
5# Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
6#
7# This program is free software: you can redistribute it and/or modify
8# it under the terms of the GNU Affero General Public License as
9# published by the Free Software Foundation, either version 3 of the
10# License, or (at your option) any later version.
11#
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU Affero General Public License for more details.
16#
17# You should have received a copy of the GNU Affero General Public License
18# along with this program. If not, see <http://www.gnu.org/licenses/>.
19#
20##############################################################################
21
22import account_voucher
23
24# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
025
=== added file 'account_voucher_patch/__openerp__.py'
--- account_voucher_patch/__openerp__.py 1970-01-01 00:00:00 +0000
+++ account_voucher_patch/__openerp__.py 2015-04-15 16:28:26 +0000
@@ -0,0 +1,48 @@
1# -*- coding: utf-8 -*-
2##############################################################################
3#
4# OpenERP, Open Source Management Solution
5# Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
6#
7# This program is free software: you can redistribute it and/or modify
8# it under the terms of the GNU Affero General Public License as
9# published by the Free Software Foundation, either version 3 of the
10# License, or (at your option) any later version.
11#
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU Affero General Public License for more details.
16#
17# You should have received a copy of the GNU Affero General Public License
18# along with this program. If not, see <http://www.gnu.org/licenses/>.
19#
20##############################################################################
21
22{
23 "name" : "Accounting Voucher Entries",
24 "version" : "1.0",
25 "author" : 'OpenERP SA',
26 "description": """Account Voucher module includes all the basic requirements of
27 Voucher Entries for Bank, Cash, Sales, Purchase, Expanse, Contra, etc...
28 * Voucher Entry
29 * Voucher Receipt
30 * Cheque Register
31 * Basically this module explode for V6 one refactor to the code for account vaoucher!
32 """,
33 "category" : "Generic Modules/Accounting",
34 "website" : "http://vauxoo.com",
35 "depends" : ["account","account_voucher"],
36 "init_xml" : [],
37
38 "demo_xml" : [],
39
40 "update_xml" : [
41 ],
42 "test" : [
43 ],
44 "active": False,
45 "installable": True,
46}
47
48# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
049
=== added file 'account_voucher_patch/account_voucher.py'
--- account_voucher_patch/account_voucher.py 1970-01-01 00:00:00 +0000
+++ account_voucher_patch/account_voucher.py 2015-04-15 16:28:26 +0000
@@ -0,0 +1,337 @@
1# -*- coding: utf-8 -*-
2##############################################################################
3#
4# OpenERP, Open Source Management Solution
5# Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
6#
7# This program is free software: you can redistribute it and/or modify
8# it under the terms of the GNU Affero General Public License as
9# published by the Free Software Foundation, either version 3 of the
10# License, or (at your option) any later version.
11#
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU Affero General Public License for more details.
16#
17# You should have received a copy of the GNU Affero General Public License
18# along with this program. If not, see <http://www.gnu.org/licenses/>.
19#
20##############################################################################
21
22import time
23from lxml import etree
24
25import netsvc
26from osv import osv, fields
27import decimal_precision as dp
28from tools.translate import _
29
30
31class account_voucher(osv.osv):
32 _inherit='account.voucher'
33
34
35
36 def _get_company_currency(self, cr, uid, voucher_id, context=None):
37 '''
38 Get the currency of the actual company.
39
40 :param voucher_id: Id of the voucher what i want to obtain company currency.
41 :return: currency id of the company of the voucher
42 :rtype: int
43 '''
44 return self.pool.get('account.voucher').browse(cr,uid,voucher_id,context).journal_id.company_id.currency_id.id
45
46 def _get_current_currency(self, cr, uid, voucher_id, context=None):
47 '''
48 Get the currency of the voucher.
49
50 :param voucher_id: Id of the voucher what i want to obtain current currency.
51 :return: currency id of the voucher
52 :rtype: int
53 '''
54 voucher = self.pool.get('account.voucher').browse(cr,uid,voucher_id,context)
55 return voucher.currency_id.id or self._get_company_currency(cr,uid,voucher.id,context)
56
57
58 def _sel_context(self, cr, uid, voucher_id,context=None):
59 """
60 Select the context to use accordingly if it needs to be multicurrency or not.
61
62 :param voucher_id: Id of the actual voucher
63 :return: The returned context will be the same as given in parameter if the voucher currency is the same
64 than the company currency, otherwise it's a copy of the parameter with an extra key 'date' containing
65 the date of the voucher.
66 :rtype: dict
67 """
68 company_currency = self._get_company_currency(cr, uid, voucher_id, context)
69 current_currency = self._get_current_currency(cr, uid, voucher_id, context)
70 if current_currency <> company_currency:
71 context_multi_currency = context.copy()
72 voucher_brw = self.pool.get('account.voucher').browse(cr, uid, voucher_id, context)
73 context_multi_currency.update({'date': voucher_brw.date})
74 return context_multi_currency
75 return context
76
77
78 def account_move_get(self, cr, uid, voucher_id, context=None):
79 '''
80 This method prepare the creation of the account move related to the given voucher.
81
82 :param voucher_id: Id of voucher for which we are creating account_move.
83 :return: mapping between fieldname and value of account move to create
84 :rtype: dict
85 '''
86 move_obj = self.pool.get('account.move')
87 seq_obj = self.pool.get('ir.sequence')
88 voucher_brw = self.pool.get('account.voucher').browse(cr,uid,voucher_id,context)
89 if voucher_brw.number:
90 name = voucher_brw.number
91 elif voucher_brw.journal_id.sequence_id:
92 name = seq_obj.get_id(cr, uid, voucher_brw.journal_id.sequence_id.id)
93 else:
94 raise osv.except_osv(_('Error !'), _('Please define a sequence on the journal !'))
95 if not voucher_brw.reference:
96 ref = name.replace('/','')
97 else:
98 ref = voucher_brw.reference
99
100 move = {
101 'name': name,
102 'journal_id': voucher_brw.journal_id.id,
103 'narration': voucher_brw.narration,
104 'date': voucher_brw.date,
105 'ref': ref,
106 'period_id': voucher_brw.period_id and voucher_brw.period_id.id or False
107 }
108 return move
109
110
111 def first_move_line_get(self, cr, uid, voucher_id, move_id, company_currency, current_currency, context=None):
112 '''
113 Return a dict to be use to create the first account move line of given voucher.
114
115 :param voucher_id: Id of voucher what we are creating account_move.
116 :param move_id: Id of account move where this line will be added.
117 :param company_currency: id of currency of the company to which the voucher belong
118 :param current_currency: id of currency of the voucher
119 :return: mapping between fieldname and value of account move line to create
120 :rtype: dict
121 '''
122 move_line_obj = self.pool.get('account.move.line')
123 currency_obj = self.pool.get('res.currency')
124 voucher_brw = self.pool.get('account.voucher').browse(cr,uid,voucher_id,context)
125 debit = credit = 0.0
126 # TODO: is there any other alternative then the voucher type ??
127 # -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
128 if voucher_brw.type in ('purchase', 'payment'):
129 credit = currency_obj.compute(cr, uid, current_currency, company_currency, voucher_brw.amount, context=context)
130 elif voucher_brw.type in ('sale', 'receipt'):
131 debit = currency_obj.compute(cr, uid, current_currency, company_currency, voucher_brw.amount, context=context)
132 if debit < 0:
133 credit = -debit
134 debit = 0.0
135 if credit < 0:
136 debit = -credit
137 credit = 0.0
138 sign = debit - credit < 0 and -1 or 1
139 #set the first line of the voucher
140 move_line = {
141 'name': voucher_brw.name or '/',
142 'debit': debit,
143 'credit': credit,
144 'account_id': voucher_brw.account_id.id,
145 'move_id': move_id,
146 'journal_id': voucher_brw.journal_id.id,
147 'period_id': voucher_brw.period_id.id,
148 'partner_id': voucher_brw.partner_id.id,
149 'currency_id': company_currency <> current_currency and current_currency or False,
150 'amount_currency': company_currency <> current_currency and sign * voucher_brw.amount or 0.0,
151 'date': voucher_brw.date,
152 'date_maturity': voucher_brw.date_due
153 }
154 return move_line
155
156
157 def voucher_move_line_get_item(self, cr, uid, voucher, line, move_id, company_currency, current_currency):
158 return {
159 'journal_id': voucher.journal_id.id,
160 'period_id': voucher.period_id.id,
161 'name': line.name and line.name or '/',
162 'account_id': line.account_id.id,
163 'move_id': move_id,
164 'partner_id': voucher.partner_id.id,
165 'currency_id': company_currency <> current_currency and current_currency or False,
166 'analytic_account_id': line.account_analytic_id and line.account_analytic_id.id or False,
167 'quantity': 1,
168 'credit': 0.0,
169 'debit': 0.0,
170 'date': voucher.date
171 }
172
173
174 def voucher_move_line_create(self, cr, uid, voucher_id, line_total, move_id, company_currency, current_currency, context=None):
175 '''
176 Create one account move line, on the given account move, per voucher line where amount is not 0.0.
177 It returns Tuple with tot_line what is total of difference between debit and credit and
178 a list of lists with ids to be reconciled with this format (total_deb_cred,list_of_lists).
179
180 :param voucher_id: Voucher id what we are working with
181 :param line_total: Amount of the first line, which correspond to the amount we should totally split among all voucher lines.
182 :param move_id: Account move wher those lines will be joined.
183 :param company_currency: id of currency of the company to which the voucher belong
184 :param current_currency: id of currency of the voucher
185 :return: Tuple build as (remaining amount not allocated on voucher lines, list of account_move_line created in this method)
186 :rtype: tuple(int, list of int)
187 '''
188 move_line_obj = self.pool.get('account.move.line')
189 currency_obj = self.pool.get('res.currency')
190 tot_line = line_total
191 rec_lst_ids = []
192
193 if context is None:
194 context = {}
195
196 voucher_brw = self.pool.get('account.voucher').browse(cr,uid,voucher_id,context)
197 for line in voucher_brw.line_ids:
198 #create one move line per voucher line where amount is not 0.0
199 if not line.amount:
200 continue
201 #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
202 if line.amount == line.amount_unreconciled:
203 amount = line.move_line_id.amount_residual #residual amount in company currency
204 else:
205 amount = currency_obj.compute(cr, uid, current_currency, company_currency, line.untax_amount or line.amount, context=context)
206 move_line = self.voucher_move_line_get_item(cr, uid, voucher_brw, line, move_id, company_currency, current_currency)
207 if amount < 0:
208 amount = -amount
209 if line.type == 'dr':
210 line.type = 'cr'
211 else:
212 line.type = 'dr'
213
214 if (line.type=='dr'):
215 tot_line += amount
216 move_line['debit'] = amount
217 else:
218 tot_line -= amount
219 move_line['credit'] = amount
220
221 if voucher_brw.tax_id and voucher_brw.type in ('sale', 'purchase'):
222 move_line.update({
223 'account_tax_id': voucher_brw.tax_id.id,
224 })
225 if move_line.get('account_tax_id', False):
226 tax_data = tax_obj.browse(cr, uid, [move_line['account_tax_id']], context=context)[0]
227 if not (tax_data.base_code_id and tax_data.tax_code_id):
228 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))
229 sign = (move_line['debit'] - move_line['credit']) < 0 and -1 or 1
230 move_line['amount_currency'] = company_currency <> current_currency and sign * line.amount or 0.0
231 voucher_line = move_line_obj.create(cr, uid, move_line)
232 if line.move_line_id.id:
233 rec_ids = [voucher_line, line.move_line_id.id]
234 rec_lst_ids.append(rec_ids)
235
236 return (tot_line, rec_lst_ids)
237
238 def writeoff_move_line_get(self, cr, uid, voucher_id, line_total, move_id, name, company_currency, current_currency, context=None):
239 '''
240 Set a dict to be use to create the writeoff move line.
241
242 :param voucher_id: Id of voucher what we are creating account_move.
243 :param line_total: Amount remaining to be allocated on lines.
244 :param move_id: Id of account move where this line will be added.
245 :param name: Description of account move line.
246 :param company_currency: id of currency of the company to which the voucher belong
247 :param current_currency: id of currency of the voucher
248 :return: mapping between fieldname and value of account move line to create
249 :rtype: dict
250 '''
251 move_line_obj = self.pool.get('account.move.line')
252 currency_obj = self.pool.get('res.currency')
253 move_line = {}
254
255 voucher_brw = self.pool.get('account.voucher').browse(cr,uid,voucher_id,context)
256 inv_currency_id = voucher_brw.currency_id or voucher_brw.journal_id.currency or voucher_brw.journal_id.company_id.currency_id
257
258 if not currency_obj.is_zero(cr, uid, inv_currency_id, line_total):
259 diff = line_total
260 account_id = False
261 if voucher_brw.payment_option == 'with_writeoff':
262 account_id = voucher_brw.writeoff_acc_id.id
263 elif voucher_brw.type in ('sale', 'receipt'):
264 account_id = voucher_brw.partner_id.property_account_receivable.id
265 else:
266 account_id = voucher_brw.partner_id.property_account_payable.id
267 move_line = {
268 'name': name,
269 'account_id': account_id,
270 'move_id': move_id,
271 'partner_id': voucher_brw.partner_id.id,
272 'date': voucher_brw.date,
273 'credit': diff > 0 and diff or 0.0,
274 'debit': diff < 0 and -diff or 0.0,
275 #'amount_currency': company_currency <> current_currency and currency_obj.compute(cr, uid, company_currency, current_currency, diff * -1, context=context) or 0.0,
276 #'currency_id': company_currency <> current_currency and current_currency or False,
277 }
278
279 return move_line
280
281
282 def action_move_line_create(self, cr, uid, ids, context=None):
283 '''
284 Confirm the vouchers given in ids and create the journal entries for each of them
285 '''
286 if context is None:
287 context = {}
288 move_pool = self.pool.get('account.move')
289 move_line_pool = self.pool.get('account.move.line')
290 currency_pool = self.pool.get('res.currency')
291 tax_obj = self.pool.get('account.tax')
292
293 for voucher in self.browse(cr, uid, ids, context=context):
294 if voucher.move_id:
295 continue
296 company_currency = self._get_company_currency(cr, uid, voucher.id, context)
297 current_currency = self._get_current_currency(cr, uid, voucher.id, context)
298 context = self._sel_context(cr, uid, voucher.id, context)
299 #Create the account move record.
300 move_id = move_pool.create(cr, uid, self.account_move_get(cr, uid, voucher.id, context=context), context=context)
301 # Get the name of the account_move just created
302 name = move_pool.browse(cr, uid, move_id, context=context).name
303 #create the first line manually
304 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)
305 mov_line_brw = move_line_pool.browse(cr, uid, move_line_id, context=context)
306 rec_list_ids = []
307 line_total = mov_line_brw.debit - mov_line_brw.credit
308 if voucher.type == 'sale':
309 line_total = line_total - currency_pool.compute(cr, uid, voucher.currency_id.id, company_currency, voucher.tax_amount, context=context)
310 elif voucher.type == 'purchase':
311 line_total = line_total + currency_pool.compute(cr, uid, voucher.currency_id.id, company_currency, voucher.tax_amount, context=context)
312
313 #create one move line per voucher line where amount is not 0.0
314 line_total, rec_list_ids = self.voucher_move_line_create(cr, uid, voucher.id, line_total, move_id, company_currency, current_currency, context)
315 #create the writeoff line if needed
316 ml_writeoff = self.writeoff_move_line_get(cr, uid, voucher.id, line_total, move_id, name, company_currency, current_currency, context)
317 if ml_writeoff:
318 ml_writeoff_id = move_line_pool.create(cr, uid, ml_writeoff, context)
319 #We post the voucher.
320 self.write(cr, uid, [voucher.id], {
321 'move_id': move_id,
322 'state': 'posted',
323 'number': name,
324 })
325 move_pool.post(cr, uid, [move_id], context={})
326 #reconcile move line
327 for rec_ids in rec_list_ids:
328 if len(rec_ids) >= 2:
329 move_line_pool.reconcile_partial(cr, uid, rec_ids)
330 return True
331
332
333
334account_voucher()
335
336
337# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
0338
=== added directory 'account_voucher_patch/i18n'
=== added file 'account_voucher_patch/i18n/es.po'
--- account_voucher_patch/i18n/es.po 1970-01-01 00:00:00 +0000
+++ account_voucher_patch/i18n/es.po 2015-04-15 16:28:26 +0000
@@ -0,0 +1,46 @@
1# Translation of OpenERP Server.
2# This file contains the translation of the following modules:
3# * account_voucher_patch
4#
5msgid ""
6msgstr ""
7"Project-Id-Version: OpenERP Server 6.0.3\n"
8"Report-Msgid-Bugs-To: support@openerp.com\n"
9"POT-Creation-Date: 2012-01-30 20:16+0000\n"
10"PO-Revision-Date: 2012-01-30 15:51-0400\n"
11"Last-Translator: Luis Escobar <luiseev@gmail.com>\n"
12"Language-Team: \n"
13"MIME-Version: 1.0\n"
14"Content-Type: text/plain; charset=UTF-8\n"
15"Content-Transfer-Encoding: 8bit\n"
16"Plural-Forms: \n"
17
18#. module: account_voucher_patch
19#: code:addons/account_voucher_patch/account_voucher.py:94
20#, python-format
21msgid "Please define a sequence on the journal !"
22msgstr "Por Favor defina una secuencia en el diario!"
23
24#. module: account_voucher_patch
25#: code:addons/account_voucher_patch/account_voucher.py:229
26#, python-format
27msgid "No Account Base Code and Account Tax Code!"
28msgstr "No codigo de cuenta base y codigo de la cuenta de impuesto!"
29
30#. module: account_voucher_patch
31#: code:addons/account_voucher_patch/account_voucher.py:229
32#, python-format
33msgid "You have to configure account base code and account tax code on the '%s' tax!"
34msgstr "Tiene que configurar el codigo de cuenta base y el codigo de la cuenta de Impuesto en el impuesto '%s'"
35
36#. module: account_voucher_patch
37#: model:ir.model,name:account_voucher_patch.model_account_voucher
38msgid "Accounting Voucher"
39msgstr "Comprobantes contables"
40
41#. module: account_voucher_patch
42#: code:addons/account_voucher_patch/account_voucher.py:94
43#, python-format
44msgid "Error !"
45msgstr "Error !"
46
047
=== added file 'account_voucher_patch/i18n/es_VE.po'
--- account_voucher_patch/i18n/es_VE.po 1970-01-01 00:00:00 +0000
+++ account_voucher_patch/i18n/es_VE.po 2015-04-15 16:28:26 +0000
@@ -0,0 +1,46 @@
1# Translation of OpenERP Server.
2# This file contains the translation of the following modules:
3# * account_voucher_patch
4#
5msgid ""
6msgstr ""
7"Project-Id-Version: OpenERP Server 6.0.3\n"
8"Report-Msgid-Bugs-To: support@openerp.com\n"
9"POT-Creation-Date: 2012-01-30 20:16+0000\n"
10"PO-Revision-Date: 2012-01-30 15:51-0400\n"
11"Last-Translator: Luis Escobar <luiseev@gmail.com>\n"
12"Language-Team: \n"
13"MIME-Version: 1.0\n"
14"Content-Type: text/plain; charset=UTF-8\n"
15"Content-Transfer-Encoding: 8bit\n"
16"Plural-Forms: \n"
17
18#. module: account_voucher_patch
19#: code:addons/account_voucher_patch/account_voucher.py:94
20#, python-format
21msgid "Please define a sequence on the journal !"
22msgstr "Por Favor defina una secuencia en el diario!"
23
24#. module: account_voucher_patch
25#: code:addons/account_voucher_patch/account_voucher.py:229
26#, python-format
27msgid "No Account Base Code and Account Tax Code!"
28msgstr "No codigo de cuenta base y codigo de la cuenta de impuesto!"
29
30#. module: account_voucher_patch
31#: code:addons/account_voucher_patch/account_voucher.py:229
32#, python-format
33msgid "You have to configure account base code and account tax code on the '%s' tax!"
34msgstr "Tiene que configurar el codigo de cuenta base y el codigo de la cuenta de Impuesto en el impuesto '%s'"
35
36#. module: account_voucher_patch
37#: model:ir.model,name:account_voucher_patch.model_account_voucher
38msgid "Accounting Voucher"
39msgstr "Comprobantes contables"
40
41#. module: account_voucher_patch
42#: code:addons/account_voucher_patch/account_voucher.py:94
43#, python-format
44msgid "Error !"
45msgstr "Error !"
46
047
=== added directory 'bank_management'
=== added file 'bank_management/__init__.py'
--- bank_management/__init__.py 1970-01-01 00:00:00 +0000
+++ bank_management/__init__.py 2015-04-15 16:28:26 +0000
@@ -0,0 +1,35 @@
1#!/usr/bin/python
2# -*- encoding: utf-8 -*-
3###########################################################################
4# Module Writen to OpenERP, Open Source Management Solution
5# Copyright (C) OpenERP Venezuela (<http://openerp.com.ve>).
6# All Rights Reserved
7###############Credits######################################################
8# Coded by: Humberto Arocha <humberto@openerp.com.ve>
9# Angelica Barrios <angélicaisabelb@gmail.com>
10# María Gabriela Quilarque <gabrielaquilarque97@gmail.com>
11# Javier Duran <javieredm@gmail.com>
12# Aristóbulo Meneses <ameneses@industriasdiana.gob.ve>
13# Planified by: Nhomar Hernandez
14# Finance by: Helados Gilda, C.A. http://heladosgilda.com.ve
15# Audited by: Humberto Arocha humberto@openerp.com.ve
16#############################################################################
17# This program is free software: you can redistribute it and/or modify
18# it under the terms of the GNU Affero General Public License as published by
19# the Free Software Foundation, either version 3 of the License, or
20# (at your option) any later version.
21#
22# This program is distributed in the hope that it will be useful,
23# but WITHOUT ANY WARRANTY; without even the implied warranty of
24# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25# GNU Affero General Public License for more details.
26#
27# You should have received a copy of the GNU Affero General Public License
28# along with this program. If not, see <http://www.gnu.org/licenses/>.
29################################################################################
30
31import model
32import wizard
33import report
34
35# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
036
=== added file 'bank_management/__openerp__.py'
--- bank_management/__openerp__.py 1970-01-01 00:00:00 +0000
+++ bank_management/__openerp__.py 2015-04-15 16:28:26 +0000
@@ -0,0 +1,115 @@
1#!/usr/bin/python
2# -*- encoding: utf-8 -*-
3###########################################################################
4# Module Writen to OpenERP, Open Source Management Solution
5# Copyright (C) OpenERP Venezuela (<http://openerp.com.ve>).
6# All Rights Reserved
7###############Credits######################################################
8# Coded by: Humberto Arocha <humberto@openerp.com.ve>
9# Angelica Barrios <angélicaisabelb@gmail.com>
10# María Gabriela Quilarque <gabrielaquilarque97@gmail.com>
11# Javier Duran <javier@vauxoo.com>
12# Aristóbulo Meneses <ameneses@industriasdiana.gob.ve>
13# Josbel Caraballo <jcaraballo@industriasdiana.gob.ve>
14# Planified by: Nhomar Hernandez
15# Finance by: Helados Gilda, C.A. http://heladosgilda.com.ve
16# Audited by: Humberto Arocha humberto@openerp.com.ve
17#############################################################################
18# This program is free software: you can redistribute it and/or modify
19# it under the terms of the GNU Affero General Public License as published by
20# the Free Software Foundation, either version 3 of the License, or
21# (at your option) any later version.
22#
23# This program is distributed in the hope that it will be useful,
24# but WITHOUT ANY WARRANTY; without even the implied warranty of
25# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26# GNU Affero General Public License for more details.
27#
28# You should have received a copy of the GNU Affero General Public License
29# along with this program. If not, see <http://www.gnu.org/licenses/>.
30################################################################################
31
32###
33### res_company --> account_management ver si se puede eliminar esta dependencia ####
34### retencion_iva, base_vat_ve ver si se puede eliminar esta dependencia
35
36{
37 "name" : "Bank Management",
38 "version" : "0.2",
39 "author" : "Vauxoo",
40 "website" : "http://vauxoo.com",
41 "category": 'Generic Modules/Accounting',
42 "description": """
43 - Management of check book, check note
44 - Print format of venezuelan check note
45 - Traceability of check note throught paid support
46 - Account voucher payment
47---------------------------------------------------------
48 1.- Create bank account
49 2.- Create check book request
50 3.- Load check note
51 4.- Make supplier invoice
52 5.- Create one supplier payment
53 6.- Create support (click button)
54
55 This module required openerp_print module, which is in the project: lp:addons-vauxoo,
56 for print directly to the printer.
57
58 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
59 If you want to print reports directly to the printer you must be install the module bank_print_report hosted in lp:addons-vauxoo
60
61 This module requires additional libraries to work properly
62 # pip install cups or apt-get install python-cups (in Debian based OS)
63
64 Also needs lpr binary to work properly
65 # apt-get install lpr (in Debian based OS)
66 """,
67 'init_xml': [],
68 "depends" : [
69 "base",
70 "account_accountant",
71 "account_voucher",
72 "account_voucher_multi_partner",
73 "account_voucher_patch"
74 ],
75 'update_xml': [
76 'view/check_report.xml',
77 'view/check_book_request_view.xml',
78 'view/check_book_view.xml',
79 'view/check_note_view.xml',
80 'view/res_partner_bank_view.xml',
81 'wizard/cancel_wizard.xml',
82 'view/voucher_pay_support_view.xml',
83 #~ 'view/pay_order_contrapartida.xml',
84 #~ 'view/pay_order_view.xml',
85 'view/motive_cancel_voucher_pay_support.xml',
86 'view/bank_management_menu.xml',
87 'wizard/voucher_pay_support_wizard_pay_order.xml',
88 'wizard/chk_book_gral.xml',
89 'view/bank_management_inherits.xml',
90 'view/bank_management_inherits_ventas.xml',
91 'security/ir.model.access.csv',
92 'security/account_voucher_group.xml',
93 'data/bank_management_data.xml',
94 'data/res.bank.xml',
95 'data/banesco_data.xml',
96 'data/bicentenario_data.xml',
97 'data/caribe_bank_data.xml',
98 'data/exterior_bank_data.xml',
99 'data/fondo_comun_bank_data.xml',
100 'data/industrial_data.xml',
101 'data/mercantil_bank_data.xml',
102 'data/venezuela_bank_data.xml',
103 ],
104 'demo_xml': [],
105 'test': [],
106 'installable': True,
107 'active': False,
108 'external_dependencies': {
109 'python': ['cups',],
110 'bin': ['lpr',],
111 },
112}
113
114
115# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
0116
=== added file 'bank_management/check_book_request_sequence.xml'
--- bank_management/check_book_request_sequence.xml 1970-01-01 00:00:00 +0000
+++ bank_management/check_book_request_sequence.xml 2015-04-15 16:28:26 +0000
@@ -0,0 +1,24 @@
1<?xml version="1.0" encoding="utf-8"?>
2<openerp>
3 <data noupdate="1"> <!-- esto es para cargar las secuencias en el modulo, para inicializarlas con 0 se carga con 1 no lee -->
4
5 <!-- Secuencias para el modelo check.book.request para el code -->
6 <record id="seq_check_book" model="ir.sequence.type">
7 <field name="name">Check book Request</field>
8 <field name="code">check.book.request</field>
9 </record>
10
11 <!-- Sequences forcheck.book.request para el code -->
12 <record id="seq_check_book_code" model="ir.sequence">
13 <field name="name">Check book Request</field>
14 <field name="code">check.book.request</field>
15 <field name="prefix">SOL.CHQ.:</field>
16 <field name="padding">8</field>
17 <field name="number_increment">1</field>
18 </record>
19
20 </data>
21</openerp>
22
23
24
025
=== added directory 'bank_management/data'
=== added file 'bank_management/data/banesco_data.xml'
--- bank_management/data/banesco_data.xml 1970-01-01 00:00:00 +0000
+++ bank_management/data/banesco_data.xml 2015-04-15 16:28:26 +0000
@@ -0,0 +1,54 @@
1<?xml version="1.0" ?>
2<openerp>
3
4<!--
5 res_bank
6-->
7 <data noupdate="1">
8 <record forcecreate="False" id="res_bank_Banesco" model="res.bank">
9 <field name="name">BANESCO BANCO UNIVERSAL S.A.C.A.</field>
10 <field search="[('code','=','VE')]" model='res.country' name='country'/>
11 <field name="code">0134</field>
12 <field eval="500.0" name="max_lim"/>
13 <field eval="&quot;&quot;&quot;&lt;header&gt;
14 &lt;pageTemplate&gt;
15 &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;
16 &lt;pageGraphics&gt;
17 &lt;setFont name=&quot;Courier&quot; size=&quot;8&quot;/&gt;
18 &lt;!--cantidad--&gt;
19 &lt;place x=&quot;135.0mm&quot; y=&quot;75.0mm&quot; width=&quot;80.0mm&quot; height=&quot;5.0mm&quot;&gt;
20 &lt;para&gt;***[[ formatLang(get_monto() ) ]]***&lt;/para&gt;
21 &lt;/place&gt;
22 &lt;!--beneficiario--&gt;
23 &lt;place x=&quot;35.0mm&quot; y=&quot;60.0mm&quot; width=&quot;140.0mm&quot; height=&quot;10.0mm&quot;&gt;
24 &lt;para&gt;[[get_beneficiario(o.id)]]&lt;/para&gt;
25 &lt;/place&gt;
26 &lt;!--cantidad en letras--&gt;
27&lt;!-- &lt;place x=&quot;36.0mm&quot; y=&quot;50.0mm&quot; width=&quot;135.0mm&quot; height=&quot;10.0mm&quot;&gt;
28 &lt;para&gt;[[ obt_texto() ]]&lt;/para&gt;
29 &lt;/place&gt;--&gt;
30 &lt;!--fecha--&gt;
31 &lt;place x=&quot;30.0mm&quot; y=&quot;44.0mm&quot; width=&quot;60.0mm&quot; height=&quot;10.0mm&quot;&gt;
32 &lt;para&gt;[[ get_fecha()[0] ]]&lt;/para&gt;
33 &lt;/place&gt;
34 &lt;!--ano de endose--&gt;
35 &lt;place x=&quot;80.0mm&quot; y=&quot;44.0mm&quot; width=&quot;40.0mm&quot; height=&quot;10.0mm&quot;&gt;
36 &lt;para&gt;[[ get_fecha()[1] ]]&lt;/para&gt;
37 &lt;/place&gt;
38 &lt;!--tiempo de endose--&gt;
39 &lt;place x=&quot;89.0mm&quot; y=&quot;22.0mm&quot; width=&quot;80.0mm&quot; height=&quot;10.0mm&quot;&gt;
40 &lt;para&gt;CADUCA A LOS [[ company.expiry]] DÍAS / NO ENDOSABLE&lt;/para&gt;
41 &lt;/place&gt;
42 &lt;/pageGraphics&gt;
43 &lt;/pageTemplate&gt;
44&lt;/header&gt; &quot;&quot;&quot;" name="format_h"/>
45 <field eval="100.0" name="min_lim"/>
46 </record>
47 </data>
48
49
50
51
52</openerp>
53
54
055
=== added file 'bank_management/data/bank_management_data.xml'
--- bank_management/data/bank_management_data.xml 1970-01-01 00:00:00 +0000
+++ bank_management/data/bank_management_data.xml 2015-04-15 16:28:26 +0000
@@ -0,0 +1,11 @@
1<?xml version="1.0" encoding="utf-8"?>
2<openerp>
3 <data noupdate="1">
4
5 <record forcecreate="False" id="decimal_bank_mana" model="decimal.precision">
6 <field name="name">Bank</field>
7 <field name="digits">2</field>
8 </record>
9
10 </data>
11</openerp>
012
=== added file 'bank_management/data/bicentenario_data.xml'
--- bank_management/data/bicentenario_data.xml 1970-01-01 00:00:00 +0000
+++ bank_management/data/bicentenario_data.xml 2015-04-15 16:28:26 +0000
@@ -0,0 +1,64 @@
1<?xml version="1.0" ?>
2<openerp>
3
4<!--
5 res_bank
6-->
7
8 <data noupdate="1">
9 <record forcecreate="False" id="res_bank_Bicentenario" model="res.bank">
10 <field name="name">BANCO BICENTENARIO BANCO UNIVERSAL, C.A.</field>
11 <field name="code">0175</field>
12 <field search="[('code','=','VE')]" model='res.country' name='country'/>
13 <field eval="500.0" name="max_lim"/>
14 <field eval="500.0" name="max_lim"/>
15 <field eval="&quot;&quot;&quot; &lt;header&gt;
16 &lt;pageTemplate&gt;
17 &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;
18 &lt;pageGraphics&gt;
19
20 &lt;!--cantidad--&gt;
21 &lt;place x=&quot;135.0mm&quot; y=&quot;66.0mm&quot; width=&quot;41.0mm&quot; height=&quot;10.0mm&quot;&gt;
22 &lt;para&gt;***[[ o.amount]]***&lt;/para&gt;
23 &lt;/place&gt;
24
25 &lt;!--beneficiario--&gt;
26 &lt;place x=&quot;25.0mm&quot; y=&quot;50.0mm&quot; width=&quot;140.0mm&quot; height=&quot;10.0mm&quot;&gt;
27 &lt;para style=&quot;P1&quot;&gt;[[o.payee_id.partner_id.name.upper()]]&lt;/para&gt;
28 &lt;/place&gt;
29
30 &lt;!--cantidad en letras--&gt;
31 &lt;place x=&quot;26.0mm&quot; y=&quot;40.0mm&quot; width=&quot;135.0mm&quot; height=&quot;12.0mm&quot;&gt;
32 &lt;para&gt;[[ obt_texto(o.amount) ]]&lt;/para&gt;
33 &lt;/place&gt;
34
35 &lt;!--fecha--&gt;
36 &lt;place x=&quot;30.0mm&quot; y=&quot;25.0mm&quot; width=&quot;40.0mm&quot; height=&quot;10.0mm&quot;&gt;
37 &lt;para&gt;Caracas [[ o.date]] de&lt;/para&gt;
38 &lt;/place&gt;
39
40 &lt;!--ano de endose--&gt;
41 &lt;place x=&quot;80.0mm&quot; y=&quot;25.0mm&quot; width=&quot;40.0mm&quot; height=&quot;10.0mm&quot;&gt;
42 &lt;para&gt;10&lt;/para&gt;
43 &lt;/place&gt;
44
45 &lt;!--tiempo de endose--&gt;
46 &lt;place x=&quot;100.0mm&quot; y=&quot;10.0mm&quot; width=&quot;60.0mm&quot; height=&quot;10.0mm&quot;&gt;
47 &lt;para&gt;Caduca a los [[ o.expiry]] días&lt;/para&gt;
48 &lt;/place&gt;
49
50 &lt;setFont name=&quot;Helvetica&quot; size=&quot;8&quot;/&gt;
51
52 &lt;/pageGraphics&gt;
53 &lt;/pageTemplate&gt;
54 &lt;/header&gt; &quot;&quot;&quot;" name="format_h"/>
55 <field eval="100.0" name="min_lim"/>
56 </record>
57 </data>
58
59
60
61
62</openerp>
63
64
065
=== added file 'bank_management/data/caribe_bank_data.xml'
--- bank_management/data/caribe_bank_data.xml 1970-01-01 00:00:00 +0000
+++ bank_management/data/caribe_bank_data.xml 2015-04-15 16:28:26 +0000
@@ -0,0 +1,57 @@
1<?xml version="1.0" ?>
2<openerp>
3
4<!--
5 res_bank
6-->
7
8 <data noupdate="1">
9 <record forcecreate="False" id="res_bank_caribe" model="res.bank">
10 <field name="name">BANCO DEL CARIBE, C.A. BANCO UNIVERSAL</field>
11 <field search="[('code','=','VE')]" model='res.country' name='country'/>
12 <field name="code">0114</field>
13 <field eval="500.0" name="max_lim"/>
14
15 <field eval="&quot;&quot;&quot;&lt;header&gt;
16 &lt;pageTemplate&gt;
17 &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;
18 &lt;pageGraphics&gt;
19 &lt;setFont name=&quot;Courier&quot; size=&quot;8&quot;/&gt;
20 &lt;!--cantidad--&gt;
21 &lt;place x=&quot;135.0mm&quot; y=&quot;74.0mm&quot; width=&quot;80.0mm&quot; height=&quot;5.0mm&quot;&gt;
22 &lt;para&gt;***[[ formatLang(get_monto() ) ]]***&lt;/para&gt;
23 &lt;/place&gt;
24 &lt;!--beneficiario--&gt;
25 &lt;place x=&quot;35.0mm&quot; y=&quot;57.0mm&quot; width=&quot;140.0mm&quot; height=&quot;10.0mm&quot;&gt;
26 &lt;para&gt;[[get_beneficiario(o.id)]]&lt;/para&gt;
27 &lt;/place&gt;
28 &lt;!--cantidad en letras--&gt;
29&lt;!-- &lt;place x=&quot;36.0mm&quot; y=&quot;50.0mm&quot; width=&quot;135.0mm&quot; height=&quot;10.0mm&quot;&gt;
30 &lt;para&gt;[[ obt_texto() ]]&lt;/para&gt;
31 &lt;/place&gt;--&gt;
32 &lt;!--fecha--&gt;
33 &lt;place x=&quot;30.0mm&quot; y=&quot;41.0mm&quot; width=&quot;60.0mm&quot; height=&quot;10.0mm&quot;&gt;
34 &lt;para&gt;[[ get_fecha()[0] ]]&lt;/para&gt;
35 &lt;/place&gt;
36 &lt;!--ano de endose--&gt;
37 &lt;place x=&quot;80.0mm&quot; y=&quot;41.0mm&quot; width=&quot;40.0mm&quot; height=&quot;10.0mm&quot;&gt;
38 &lt;para&gt;[[ get_fecha()[1] ]]&lt;/para&gt;
39 &lt;/place&gt;
40 &lt;!--tiempo de endose--&gt;
41 &lt;place x=&quot;89.0mm&quot; y=&quot;24.0mm&quot; width=&quot;80.0mm&quot; height=&quot;10.0mm&quot;&gt;
42 &lt;para&gt;CADUCA A LOS [[ company.expiry]] DÍAS / NO ENDOSABLE&lt;/para&gt;
43 &lt;/place&gt;
44 &lt;/pageGraphics&gt;
45 &lt;/pageTemplate&gt;
46&lt;/header&gt; &quot;&quot;&quot;" name="format_h"/>
47
48 <field eval="100.0" name="min_lim"/>
49 </record>
50 </data>
51
52
53
54
55</openerp>
56
57
058
=== added file 'bank_management/data/exterior_bank_data.xml'
--- bank_management/data/exterior_bank_data.xml 1970-01-01 00:00:00 +0000
+++ bank_management/data/exterior_bank_data.xml 2015-04-15 16:28:26 +0000
@@ -0,0 +1,58 @@
1<?xml version="1.0" ?>
2<openerp>
3
4<!--
5 res_bank
6-->
7
8 <data noupdate="1">
9 <record forcecreate="False" id="res_bank_exterior" model="res.bank">
10 <field name="name">BANCO EXTERIOR, C.A. BANCO UNIVERSAL</field>
11 <field search="[('code','=','VE')]" model='res.country' name='country'/>
12 <field name="code">0115</field>
13 <field eval="500.0" name="max_lim"/>
14
15 <field eval="&quot;&quot;&quot;&lt;header&gt;
16 &lt;pageTemplate&gt;
17 &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;
18 &lt;pageGraphics&gt;
19 &lt;setFont name=&quot;Courier&quot; size=&quot;8&quot;/&gt;
20 &lt;!--cantidad--&gt;
21 &lt;place x=&quot;135.0mm&quot; y=&quot;72.0mm&quot; width=&quot;80.0mm&quot; height=&quot;5.0mm&quot;&gt;
22 &lt;para&gt;***[[ formatLang(get_monto() ) ]]***&lt;/para&gt;
23 &lt;/place&gt;
24 &lt;!--beneficiario--&gt;
25 &lt;place x=&quot;35.0mm&quot; y=&quot;56.0mm&quot; width=&quot;140.0mm&quot; height=&quot;10.0mm&quot;&gt;
26 &lt;para&gt;[[get_beneficiario(o.id)]]&lt;/para&gt;
27 &lt;/place&gt;
28 &lt;!--cantidad en letras--&gt;
29&lt;!-- &lt;place x=&quot;36.0mm&quot; y=&quot;50.0mm&quot; width=&quot;135.0mm&quot; height=&quot;10.0mm&quot;&gt;
30 &lt;para&gt;[[ obt_texto() ]]&lt;/para&gt;
31 &lt;/place&gt;--&gt;
32 &lt;!--fecha--&gt;
33 &lt;place x=&quot;10.0mm&quot; y=&quot;40.0mm&quot; width=&quot;60.0mm&quot; height=&quot;10.0mm&quot;&gt;
34 &lt;para&gt;[[ get_fecha()[0] ]]&lt;/para&gt;
35 &lt;/place&gt;
36 &lt;!--ano de endose--&gt;
37 &lt;place x=&quot;70.0mm&quot; y=&quot;40.0mm&quot; width=&quot;40.0mm&quot; height=&quot;10.0mm&quot;&gt;
38 &lt;para&gt;[[ get_fecha()[1] ]]&lt;/para&gt;
39 &lt;/place&gt;
40 &lt;!--tiempo de endose--&gt;
41 &lt;place x=&quot;20.0mm&quot; y=&quot;21.0mm&quot; width=&quot;80.0mm&quot; height=&quot;10.0mm&quot;&gt;
42 &lt;para&gt;CADUCA A LOS [[ company.expiry]] DÍAS / NO ENDOSABLE&lt;/para&gt;
43 &lt;/place&gt;
44 &lt;/pageGraphics&gt;
45 &lt;/pageTemplate&gt;
46&lt;/header&gt; &quot;&quot;&quot;" name="format_h"/>
47
48
49 <field eval="100.0" name="min_lim"/>
50 </record>
51 </data>
52
53
54
55
56</openerp>
57
58
059
=== added file 'bank_management/data/fondo_comun_bank_data.xml'
--- bank_management/data/fondo_comun_bank_data.xml 1970-01-01 00:00:00 +0000
+++ bank_management/data/fondo_comun_bank_data.xml 2015-04-15 16:28:26 +0000
@@ -0,0 +1,58 @@
1<?xml version="1.0" ?>
2<openerp>
3
4<!--
5 res_bank
6-->
7
8 <data noupdate="1">
9 <record forcecreate="False" id="res_bank_fondo_comun" model="res.bank">
10 <field name="name">BFC BANCO FONDO COMUN C.A. BANCO UNIVERSAL</field>
11 <field search="[('code','=','VE')]" model='res.country' name='country'/>
12 <field name="code">0151</field>
13 <field eval="500.0" name="max_lim"/>
14
15 <field eval="&quot;&quot;&quot;&lt;header&gt;
16 &lt;pageTemplate&gt;
17 &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;
18 &lt;pageGraphics&gt;
19 &lt;setFont name=&quot;Courier&quot; size=&quot;8&quot;/&gt;
20 &lt;!--cantidad--&gt;
21 &lt;place x=&quot;135.0mm&quot; y=&quot;74.0mm&quot; width=&quot;80.0mm&quot; height=&quot;5.0mm&quot;&gt;
22 &lt;para&gt;***[[ formatLang(get_monto() ) ]]***&lt;/para&gt;
23 &lt;/place&gt;
24 &lt;!--beneficiario--&gt;
25 &lt;place x=&quot;35.0mm&quot; y=&quot;55.0mm&quot; width=&quot;140.0mm&quot; height=&quot;10.0mm&quot;&gt;
26 &lt;para&gt;[[get_beneficiario(o.id)]]&lt;/para&gt;
27 &lt;/place&gt;
28 &lt;!--cantidad en letras--&gt;
29&lt;!-- &lt;place x=&quot;36.0mm&quot; y=&quot;50.0mm&quot; width=&quot;135.0mm&quot; height=&quot;10.0mm&quot;&gt;
30 &lt;para&gt;[[ obt_texto() ]]&lt;/para&gt;
31 &lt;/place&gt;--&gt;
32 &lt;!--fecha--&gt;
33 &lt;place x=&quot;18.0mm&quot; y=&quot;40.0mm&quot; width=&quot;60.0mm&quot; height=&quot;10.0mm&quot;&gt;
34 &lt;para&gt;[[ get_fecha()[0] ]]&lt;/para&gt;
35 &lt;/place&gt;
36 &lt;!--ano de endose--&gt;
37 &lt;place x=&quot;84.0mm&quot; y=&quot;40.0mm&quot; width=&quot;40.0mm&quot; height=&quot;10.0mm&quot;&gt;
38 &lt;para&gt;[[ get_fecha()[1] ]]&lt;/para&gt;
39 &lt;/place&gt;
40 &lt;!--tiempo de endose--&gt;
41 &lt;place x=&quot;20.0mm&quot; y=&quot;20.0mm&quot; width=&quot;80.0mm&quot; height=&quot;10.0mm&quot;&gt;
42 &lt;para&gt;CADUCA A LOS [[ company.expiry]] DÍAS / NO ENDOSABLE&lt;/para&gt;
43 &lt;/place&gt;
44 &lt;/pageGraphics&gt;
45 &lt;/pageTemplate&gt;
46&lt;/header&gt; &quot;&quot;&quot;" name="format_h"/>
47
48
49 <field eval="100.0" name="min_lim"/>
50 </record>
51 </data>
52
53
54
55
56</openerp>
57
58
059
=== added file 'bank_management/data/industrial_data.xml'
--- bank_management/data/industrial_data.xml 1970-01-01 00:00:00 +0000
+++ bank_management/data/industrial_data.xml 2015-04-15 16:28:26 +0000
@@ -0,0 +1,60 @@
1<?xml version="1.0" ?>
2<openerp>
3
4<!--
5 res_bank
6-->
7
8 <data noupdate="1">
9 <record forcecreate="False" id="res_bank_Industrial" model="res.bank">
10 <field name="name">BANCO INDUSTRIAL DE VENEZUELA, C.A.</field>
11 <field search="[('code','=','VE')]" model='res.country' name='country'/>
12 <field name="code">0003</field>
13 <field eval="500.0" name="max_lim"/>
14
15 <field eval="&quot;&quot;&quot;&lt;header&gt;
16 &lt;pageTemplate&gt;
17 &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;
18 &lt;pageGraphics&gt;
19 &lt;setFont name=&quot;Courier&quot; size=&quot;8&quot;/&gt;
20 &lt;!--cantidad--&gt;
21 &lt;place x=&quot;125.0mm&quot; y=&quot;74.0mm&quot; width=&quot;80.0mm&quot; height=&quot;5.0mm&quot;&gt;
22 &lt;para&gt;***[[ formatLang(get_monto() ) ]]***&lt;/para&gt;
23 &lt;/place&gt;
24 &lt;!--beneficiario--&gt;
25 &lt;place x=&quot;35.0mm&quot; y=&quot;56.0mm&quot; width=&quot;140.0mm&quot; height=&quot;10.0mm&quot;&gt;
26 &lt;para&gt;[[get_beneficiario(o.id)]]&lt;/para&gt;
27 &lt;/place&gt;
28 &lt;!--cantidad en letras--&gt;
29&lt;!-- &lt;place x=&quot;36.0mm&quot; y=&quot;50.0mm&quot; width=&quot;135.0mm&quot; height=&quot;10.0mm&quot;&gt;
30 &lt;para&gt;[[ obt_texto() ]]&lt;/para&gt;
31 &lt;/place&gt;--&gt;
32 &lt;!--fecha--&gt;
33 &lt;place x=&quot;10.0mm&quot; y=&quot;42.0mm&quot; width=&quot;60.0mm&quot; height=&quot;10.0mm&quot;&gt;
34 &lt;para&gt;[[ get_fecha()[0] ]]&lt;/para&gt;
35 &lt;/place&gt;
36 &lt;!--ano de endose--&gt;
37 &lt;place x=&quot;75.0mm&quot; y=&quot;42.0mm&quot; width=&quot;40.0mm&quot; height=&quot;10.0mm&quot;&gt;
38 &lt;para&gt;[[ get_fecha()[1] ]]&lt;/para&gt;
39 &lt;/place&gt;
40 &lt;!--tiempo de endose--&gt;
41 &lt;place x=&quot;30.0mm&quot; y=&quot;21.0mm&quot; width=&quot;80.0mm&quot; height=&quot;10.0mm&quot;&gt;
42 &lt;para&gt;CADUCA A LOS [[ company.expiry]] DÍAS / NO ENDOSABLE&lt;/para&gt;
43 &lt;/place&gt;
44 &lt;/pageGraphics&gt;
45 &lt;/pageTemplate&gt;
46&lt;/header&gt; &quot;&quot;&quot;" name="format_h"/>
47
48
49 <field eval="100.0" name="min_lim"/>
50
51
52 </record>
53 </data>
54
55
56
57
58</openerp>
59
60
061
=== added file 'bank_management/data/mercantil_bank_data.xml'
--- bank_management/data/mercantil_bank_data.xml 1970-01-01 00:00:00 +0000
+++ bank_management/data/mercantil_bank_data.xml 2015-04-15 16:28:26 +0000
@@ -0,0 +1,58 @@
1<?xml version="1.0" ?>
2<openerp>
3
4<!--
5 res_bank
6-->
7
8 <data noupdate="1">
9 <record forcecreate="False" id="res_bank_mercantil" model="res.bank">
10 <field name="name">BANCO MERCANTIL, C.A. S.A.C.A. BANCO UNIVERSAL</field>
11 <field search="[('code','=','VE')]" model='res.country' name='country'/>
12 <field name="code">0105</field>
13 <field eval="500.0" name="max_lim"/>
14
15 <field eval="&quot;&quot;&quot;&lt;header&gt;
16 &lt;pageTemplate&gt;
17 &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;
18 &lt;pageGraphics&gt;
19 &lt;setFont name=&quot;Courier&quot; size=&quot;8&quot;/&gt;
20 &lt;!--cantidad--&gt;
21 &lt;place x=&quot;135.0mm&quot; y=&quot;73.0mm&quot; width=&quot;80.0mm&quot; height=&quot;5.0mm&quot;&gt;
22 &lt;para&gt;***[[ formatLang(get_monto() ) ]]***&lt;/para&gt;
23 &lt;/place&gt;
24 &lt;!--beneficiario--&gt;
25 &lt;place x=&quot;35.0mm&quot; y=&quot;56.0mm&quot; width=&quot;140.0mm&quot; height=&quot;10.0mm&quot;&gt;
26 &lt;para&gt;[[get_beneficiario(o.id)]]&lt;/para&gt;
27 &lt;/place&gt;
28 &lt;!--cantidad en letras--&gt;
29&lt;!-- &lt;place x=&quot;36.0mm&quot; y=&quot;50.0mm&quot; width=&quot;135.0mm&quot; height=&quot;10.0mm&quot;&gt;
30 &lt;para&gt;[[ obt_texto() ]]&lt;/para&gt;
31 &lt;/place&gt;--&gt;
32 &lt;!--fecha--&gt;
33 &lt;place x=&quot;30.0mm&quot; y=&quot;41.0mm&quot; width=&quot;60.0mm&quot; height=&quot;10.0mm&quot;&gt;
34 &lt;para&gt;[[ get_fecha()[0] ]]&lt;/para&gt;
35 &lt;/place&gt;
36 &lt;!--ano de endose--&gt;
37 &lt;place x=&quot;80.0mm&quot; y=&quot;41.0mm&quot; width=&quot;40.0mm&quot; height=&quot;10.0mm&quot;&gt;
38 &lt;para&gt;[[ get_fecha()[1] ]]&lt;/para&gt;
39 &lt;/place&gt;
40 &lt;!--tiempo de endose--&gt;
41 &lt;place x=&quot;89.0mm&quot; y=&quot;22.0mm&quot; width=&quot;80.0mm&quot; height=&quot;10.0mm&quot;&gt;
42 &lt;para&gt;CADUCA A LOS [[ company.expiry]] DÍAS / NO ENDOSABLE&lt;/para&gt;
43 &lt;/place&gt;
44 &lt;/pageGraphics&gt;
45 &lt;/pageTemplate&gt;
46&lt;/header&gt; &quot;&quot;&quot;" name="format_h"/>
47
48
49 <field eval="100.0" name="min_lim"/>
50 </record>
51 </data>
52
53
54
55
56</openerp>
57
58
059
=== added file 'bank_management/data/res.bank.xml'
--- bank_management/data/res.bank.xml 1970-01-01 00:00:00 +0000
+++ bank_management/data/res.bank.xml 2015-04-15 16:28:26 +0000
@@ -0,0 +1,216 @@
1<?xml version="1.0" encoding="utf-8"?>
2<openerp>
3 <data noupdate="1">
4 <record id="bank1" model="res.bank">
5 <field name="name">BANCO PROVINCIAL, S.A. BANCO UNIVERSAL</field>
6 <field search="[('code','=','VE')]" model='res.country' name='country'/>
7 <field name="code">0108</field>
8 <field name="min_lim">0.0</field>
9 <field name="max_lim">0.0</field>
10 </record>
11 <record id="bank2" model="res.bank">
12 <field name="name">BANCO OCCIDENTAL DE DESCUENTO BANCO UNIVERSAL, C.A. S.A.C.A</field>
13 <field search="[('code','=','VE')]" model='res.country' name='country'/>
14 <field name="code">0116</field>
15 <field name="min_lim">0.0</field>
16 <field name="max_lim">0.0</field>
17 </record>
18 <record id="bank3" model="res.bank">
19 <field name="name">VENEZOLANO DE CREDITO, S.A. BANCO UNIVERSAL</field>
20 <field search="[('code','=','VE')]" model='res.country' name='country'/>
21 <field name="code">0104</field>
22 <field name="min_lim">0.0</field>
23 <field name="max_lim">0.0</field>
24 </record>
25 <record id="bank4" model="res.bank">
26 <field name="name">BANCO FEDERAL, C.A.</field>
27 <field search="[('code','=','VE')]" model='res.country' name='country'/>
28 <field name="code">0133</field>
29 <field name="min_lim">0.0</field>
30 <field name="max_lim">0.0</field>
31 </record>
32 <record id="bank5" model="res.bank">
33 <field name="name">BANCO PLAZA, C.A.</field>
34 <field search="[('code','=','VE')]" model='res.country' name='country'/>
35 <field name="code">0138</field>
36 <field name="min_lim">0.0</field>
37 <field name="max_lim">0.0</field>
38 </record>
39 <record id="bank6" model="res.bank">
40 <field name="name">BANCO CENTRAL DE VENEZUELA</field>
41 <field search="[('code','=','VE')]" model='res.country' name='country'/>
42 <field name="code">0001</field>
43 <field name="min_lim">0.0</field>
44 <field name="max_lim">0.0</field>
45 </record>
46 <record id="bank7" model="res.bank">
47 <field name="name">Banco de Comercio Exterior – Venezuela</field>
48 <field search="[('code','=','VE')]" model='res.country' name='country'/>
49 <field name="code">BCE</field>
50 <field name="min_lim">0.0</field>
51 <field name="max_lim">0.0</field>
52 </record>
53 <record id="bank8" model="res.bank">
54 <field name="name">BANCO CORO, C.A.</field>
55 <field search="[('code','=','VE')]" model='res.country' name='country'/>
56 <field name="code">0006</field>
57 <field name="min_lim">0.0</field>
58 <field name="max_lim">0.0</field>
59 </record>
60 <record id="bank9" model="res.bank">
61 <field name="name">BANCO GUAYANA, C.A.</field>
62 <field search="[('code','=','VE')]" model='res.country' name='country'/>
63 <field name="code">0008</field>
64 <field name="min_lim">0.0</field>
65 <field name="max_lim">0.0</field>
66 </record>
67 <record id="bank10" model="res.bank">
68 <field name="name">CORP BANCA 0 C.A. BANCO UNIVERSAL</field>
69 <field search="[('code','=','VE')]" model='res.country' name='country'/>
70 <field name="code">0121</field>
71 <field name="min_lim">0.0</field>
72 <field name="max_lim">0.0</field>
73 </record>
74 <record id="bank11" model="res.bank">
75 <field name="name">BANCO CARONI, C.A. BANCO UNIVERSAL</field>
76 <field search="[('code','=','VE')]" model='res.country' name='country'/>
77 <field name="code">0128</field>
78 <field name="min_lim">0.0</field>
79 <field name="max_lim">0.0</field>
80 </record>
81 <record id="bank12" model="res.bank">
82 <field name="name">BANCO SOFITASA BANCO UNIVERSAL, C.A.</field>
83 <field search="[('code','=','VE')]" model='res.country' name='country'/>
84 <field name="code">0137</field>
85 <field name="min_lim">0.0</field>
86 <field name="max_lim">0.0</field>
87 </record>
88 <record id="bank13" model="res.bank">
89 <field name="name">BANCO DE LA GENTE EMPRENDEDORA BANGENTE, C.A.</field>
90 <field search="[('code','=','VE')]" model='res.country' name='country'/>
91 <field name="code">0146</field>
92 <field name="min_lim">0.0</field>
93 <field name="max_lim">0.0</field>
94 </record>
95 <record id="bank14" model="res.bank">
96 <field name="name">TOTAL BANK, C.A. BANCO UNIVERSAL</field>
97 <field search="[('code','=','VE')]" model='res.country' name='country'/>
98 <field name="code">0148</field>
99 <field name="min_lim">0.0</field>
100 <field name="max_lim">0.0</field>
101 </record>
102 <record id="bank15" model="res.bank">
103 <field name="name">100% BANCO, BANCO COMERCIAL, C.A.</field>
104 <field search="[('code','=','VE')]" model='res.country' name='country'/>
105 <field name="code">0156</field>
106 <field name="min_lim">0.0</field>
107 <field name="max_lim">0.0</field>
108 </record>
109 <record id="bank16" model="res.bank">
110 <field name="name">DEL SUR BANCO UNIVERSAL, C.A.</field>
111 <field search="[('code','=','VE')]" model='res.country' name='country'/>
112 <field name="code">0157</field>
113 <field name="min_lim">0.0</field>
114 <field name="max_lim">0.0</field>
115 </record>
116 <record id="bank17" model="res.bank">
117 <field name="name">BANVALOR BANCO COMERCIAL, C.A.</field>
118 <field search="[('code','=','VE')]" model='res.country' name='country'/>
119 <field name="code">0162</field>
120 <field name="min_lim">0.0</field>
121 <field name="max_lim">0.0</field>
122 </record>
123 <record id="bank18" model="res.bank">
124 <field name="name">BANCO DEL TESORO, C.A. BANCO UNIVERSAL</field>
125 <field search="[('code','=','VE')]" model='res.country' name='country'/>
126 <field name="code">0163</field>
127 <field name="min_lim">0.0</field>
128 <field name="max_lim">0.0</field>
129 </record>
130 <record id="bank19" model="res.bank">
131 <field name="name">BANCO AGRICOLA DE VENEZUELA, C.A. BANCO UNIVERSAL</field>
132 <field search="[('code','=','VE')]" model='res.country' name='country'/>
133 <field name="code">0166</field>
134 <field name="min_lim">0.0</field>
135 <field name="max_lim">0.0</field>
136 </record>
137 <record id="bank20" model="res.bank">
138 <field name="name">BANCRECER S.A. BANCO DE DESARROLLO</field>
139 <field search="[('code','=','VE')]" model='res.country' name='country'/>
140 <field name="code">0168</field>
141 <field name="min_lim">0.0</field>
142 <field name="max_lim">0.0</field>
143 </record>
144 <record id="bank21" model="res.bank">
145 <field name="name">MI BANCO, BANCO DE DESARROLLO, C.A.</field>
146 <field search="[('code','=','VE')]" model='res.country' name='country'/>
147 <field name="code">0169</field>
148 <field name="min_lim">0.0</field>
149 <field name="max_lim">0.0</field>
150 </record>
151 <record id="bank22" model="res.bank">
152 <field name="name">BANCO ACTIVO, C.A. BANCO COMERCIAL</field>
153 <field search="[('code','=','VE')]" model='res.country' name='country'/>
154 <field name="code">0171</field>
155 <field name="min_lim">0.0</field>
156 <field name="max_lim">0.0</field>
157 </record>
158 <record id="bank23" model="res.bank">
159 <field name="name">BANCO INTERNACIONAL DE DESARROLLO, C.A.</field>
160 <field search="[('code','=','VE')]" model='res.country' name='country'/>
161 <field name="code">0173</field>
162 <field name="min_lim">0.0</field>
163 <field name="max_lim">0.0</field>
164 </record>
165 <record id="bank24" model="res.bank">
166 <field name="name">BANPLUS BANCO COMERCIAL, C.A.</field>
167 <field search="[('code','=','VE')]" model='res.country' name='country'/>
168 <field name="code">0174</field>
169 <field name="min_lim">0.0</field>
170 <field name="max_lim">0.0</field>
171 </record>
172 <record id="bank25" model="res.bank">
173 <field name="name">CITIBANK N.A.</field>
174 <field search="[('code','=','VE')]" model='res.country' name='country'/>
175 <field name="code">0190</field>
176 <field name="min_lim">0.0</field>
177 <field name="max_lim">0.0</field>
178 </record>
179 <record id="bank26" model="res.bank">
180 <field name="name">BANCO NACIONAL CREDITO, C.A. BANCO UNIVERSAL</field>
181 <field search="[('code','=','VE')]" model='res.country' name='country'/>
182 <field name="code">0191</field>
183 <field name="min_lim">0.0</field>
184 <field name="max_lim">0.0</field>
185 </record>
186 <record id="bank27" model="res.bank">
187 <field name="name">HELM BANK DE VENEZUELA, S.A. BANCO COMERCIAL REGIONAL</field>
188 <field search="[('code','=','VE')]" model='res.country' name='country'/>
189 <field name="code">0194</field>
190 <field name="min_lim">0.0</field>
191 <field name="max_lim">0.0</field>
192 </record>
193 <record id="bank28" model="res.bank">
194 <field name="name">ABN-AMRO BANK N.V.</field>
195 <field search="[('code','=','VE')]" model='res.country' name='country'/>
196 <field name="code">0196</field>
197 <field name="min_lim">0.0</field>
198 <field name="max_lim">0.0</field>
199 </record>
200 <record id="bank29" model="res.bank">
201 <field name="name">CASA PROPIA E.A.P.</field>
202 <field search="[('code','=','VE')]" model='res.country' name='country'/>
203 <field name="code">0410</field>
204 <field name="min_lim">0.0</field>
205 <field name="max_lim">0.0</field>
206 </record>
207 <record id="bank30" model="res.bank">
208 <field name="name">INSTITUTO MUNICIPAL DE CREDITO POPULAR</field>
209 <field search="[('code','=','VE')]" model='res.country' name='country'/>
210 <field name="code">0601</field>
211 <field name="min_lim">0.0</field>
212 <field name="max_lim">0.0</field>
213 </record>
214 </data>
215</openerp>
216
0217
=== added file 'bank_management/data/venezuela_bank_data.xml'
--- bank_management/data/venezuela_bank_data.xml 1970-01-01 00:00:00 +0000
+++ bank_management/data/venezuela_bank_data.xml 2015-04-15 16:28:26 +0000
@@ -0,0 +1,59 @@
1<?xml version="1.0" ?>
2<openerp>
3
4<!--
5 res_bank
6-->
7
8 <data noupdate="1">
9 <record forcecreate="False" id="res_bank_venezuela" model="res.bank">
10 <field name="name">BANCO DE VENEZUELA S.A.C.A. BANCO UNIVERSAL</field>
11 <field search="[('code','=','VE')]" model='res.country' name='country'/>
12 <field name="code">0102</field>
13 <field eval="500.0" name="max_lim"/>
14
15
16 <field eval="&quot;&quot;&quot;&lt;header&gt;
17 &lt;pageTemplate&gt;
18 &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;
19 &lt;pageGraphics&gt;
20 &lt;setFont name=&quot;Courier&quot; size=&quot;8&quot;/&gt;
21 &lt;!--cantidad--&gt;
22 &lt;place x=&quot;135.0mm&quot; y=&quot;75.0mm&quot; width=&quot;80.0mm&quot; height=&quot;5.0mm&quot;&gt;
23 &lt;para&gt;***[[ formatLang(get_monto() ) ]]***&lt;/para&gt;
24 &lt;/place&gt;
25 &lt;!--beneficiario--&gt;
26 &lt;place x=&quot;35.0mm&quot; y=&quot;54.0mm&quot; width=&quot;140.0mm&quot; height=&quot;10.0mm&quot;&gt;
27 &lt;para&gt;[[get_beneficiario(o.id)]]&lt;/para&gt;
28 &lt;/place&gt;
29 &lt;!--cantidad en letras--&gt;
30&lt;!-- &lt;place x=&quot;36.0mm&quot; y=&quot;50.0mm&quot; width=&quot;135.0mm&quot; height=&quot;10.0mm&quot;&gt;
31 &lt;para&gt;[[ obt_texto() ]]&lt;/para&gt;
32 &lt;/place&gt;--&gt;
33 &lt;!--fecha--&gt;
34 &lt;place x=&quot;20.0mm&quot; y=&quot;38.0mm&quot; width=&quot;60.0mm&quot; height=&quot;10.0mm&quot;&gt;
35 &lt;para&gt;[[ get_fecha()[0] ]]&lt;/para&gt;
36 &lt;/place&gt;
37 &lt;!--ano de endose--&gt;
38 &lt;place x=&quot;79.0mm&quot; y=&quot;38.0mm&quot; width=&quot;40.0mm&quot; height=&quot;10.0mm&quot;&gt;
39 &lt;para&gt;[[ get_fecha()[1] ]]&lt;/para&gt;
40 &lt;/place&gt;
41 &lt;!--tiempo de endose--&gt;
42 &lt;place x=&quot;89.0mm&quot; y=&quot;14.0mm&quot; width=&quot;80.0mm&quot; height=&quot;10.0mm&quot;&gt;
43 &lt;para&gt;CADUCA A LOS [[ company.expiry]] DÍAS / NO ENDOSABLE&lt;/para&gt;
44 &lt;/place&gt;
45 &lt;/pageGraphics&gt;
46 &lt;/pageTemplate&gt;
47&lt;/header&gt; &quot;&quot;&quot;" name="format_h"/>
48
49
50 <field eval="100.0" name="min_lim"/>
51 </record>
52 </data>
53
54
55
56
57</openerp>
58
59
060
=== added directory 'bank_management/demo'
=== added file 'bank_management/demo/demo.xml'
--- bank_management/demo/demo.xml 1970-01-01 00:00:00 +0000
+++ bank_management/demo/demo.xml 2015-04-15 16:28:26 +0000
@@ -0,0 +1,14 @@
1<?xml version="1.0" ?>
2<openerp>
3 <data noupdate="1">
4 <record id="res_partner_bank_0" model="res.partner.bank">
5 <field model="account.account" name="trans_account_id" search="[('name', '=', u'Bank Current Account')]"/>
6 <field model="account.journal" name="journal_id" search="[('name', '=', u'Bank Journal ')]"/>
7 <field name="state">bank</field>
8 <field name="partner_id" ref="base.main_partner"/>
9 <field model="account.account" name="bank_account_id" search="[('name', '=', u'Bank Current Account')]"/>
10 <field name="bank" ref="res_bank_mercantil"/>
11 <field name="acc_number">1057542233</field>
12 </record>
13 </data>
14</openerp>
015
=== added directory 'bank_management/i18n'
=== added file 'bank_management/i18n/es.po'
--- bank_management/i18n/es.po 1970-01-01 00:00:00 +0000
+++ bank_management/i18n/es.po 2015-04-15 16:28:26 +0000
@@ -0,0 +1,2541 @@
1# Translation of OpenERP Server.
2# This file contains the translation of the following modules:
3# * bank_management
4#
5msgid ""
6msgstr ""
7"Project-Id-Version: OpenERP Server 6.0.3\n"
8"Report-Msgid-Bugs-To: support@openerp.com\n"
9"POT-Creation-Date: 2012-01-09 16:14+0000\n"
10"PO-Revision-Date: 2012-01-09 16:14+0000\n"
11"Last-Translator: <>\n"
12"Language-Team: \n"
13"MIME-Version: 1.0\n"
14"Content-Type: text/plain; charset=UTF-8\n"
15"Content-Transfer-Encoding: \n"
16"Plural-Forms: \n"
17
18#. module: bank_management
19#: view:account.voucher:0
20msgid "Payment Ref"
21msgstr "Ref. pago"
22
23#. module: bank_management
24#: report:chk.book.request:0
25msgid "Dear Sirs:"
26msgstr "Estimados Señores:"
27
28#. module: bank_management
29#: field:account.voucher,one_partner:0
30msgid "One Supplier or Customer ?"
31msgstr "¿Un solo proveedor o Cliente?"
32
33#. module: bank_management
34#: field:cancel.voucher.pay.support,name:0
35msgid "Nombre"
36msgstr "Nombre"
37
38#. module: bank_management
39#: model:ir.model,name:bank_management.model_print_model_reports
40msgid "Class used for introduce the report to print and this features."
41msgstr "Class used for introduce the report to print and this features."
42
43#. module: bank_management
44#: model:ir.model,name:bank_management.model_ir_print
45msgid " "
46msgstr " "
47
48#. module: bank_management
49#: view:gral.check.book:0
50#: model:ir.actions.report.xml,name:bank_management.report_check_book
51msgid "Check Book Report"
52msgstr "Reporte de chequera"
53
54#. module: bank_management
55#: code:addons/bank_management/check/check_book.py:397
56#: code:addons/bank_management/check/check_book.py:399
57#: code:addons/bank_management/check/check_note.py:104
58#: code:addons/bank_management/check/check_note.py:106
59#, python-format
60msgid "Enter the Reason for Cancellation in other information field"
61msgstr "Introduzca los motivos de anulación en el campo de otra información"
62
63#. module: bank_management
64#: view:account.voucher:0
65msgid "Residual"
66msgstr "Residual"
67
68#. module: bank_management
69#: view:voucher.pay.support.wizard:0
70msgid "The check is printed correctly?"
71msgstr "The check is printed correctly?"
72
73#. module: bank_management
74#: model:ir.model,name:bank_management.model_check_book
75msgid "check.book"
76msgstr "check.book"
77
78#. module: bank_management
79#: help:check.book,qty_active:0
80msgid "Check note quantity on state active"
81msgstr "Cantidad de cheques en estado activo"
82
83#. module: bank_management
84#: field:cancel.voucher.pay.support,amount:0
85msgid "Total a Pagar"
86msgstr "Total a Pagar"
87
88#. module: bank_management
89#: report:chk.book.request:0
90msgid "By:"
91msgstr "Por:"
92
93#. module: bank_management
94#: model:ir.actions.report.xml,name:bank_management.report_gral_chk_book
95msgid "Check Book General Report"
96msgstr "Reporte general de chequera"
97
98#. module: bank_management
99#: constraint:check.book:0
100msgid "Error ! Check number must be greater than zero\"."
101msgstr "Error ! Número del cheque debe ser mayor a cero\"."
102
103#. module: bank_management
104#: model:ir.actions.act_window,help:bank_management.action_check_note
105msgid "With Check Book you can create and manage Check Note."
106msgstr "Con chequeras puedes crear y administrar cheques."
107
108#. module: bank_management
109#: field:voucher.pay.support,amount:0
110msgid "Amount"
111msgstr "Monto"
112
113#. module: bank_management
114#: field:res.partner.bank,bank_account_id:0
115msgid "Accounting Account"
116msgstr "Cuenta Contable"
117
118#. module: bank_management
119#: selection:cancel.voucher.pay.support,cancel_check_note:0
120msgid "Dano fisico"
121msgstr "Dano fisico"
122
123#. module: bank_management
124#: help:print.model.reports,python_code:0
125msgid "Set the python code to use"
126msgstr "Set the python code to use"
127
128#. module: bank_management
129#: model:ir.actions.act_window,help:bank_management.action_sol_check_book
130msgid "With Check Book Request you can create and manage Check Book."
131msgstr "Con las solicitudes de chequeras podras crear y administrar chequeras."
132
133#. module: bank_management
134#: report:cash_amount.3:0
135#: report:cash_receipt.drcr.3:0
136msgid "No."
137msgstr "No."
138
139#. module: bank_management
140#: field:check.note,suffix:0
141msgid "Suffix"
142msgstr "Sufijo"
143
144#. module: bank_management
145#: selection:check.book.wizard,tiempo:0
146msgid "Fiscal Period"
147msgstr "Período Fiscal"
148
149#. module: bank_management
150#: field:print.model.reports,check_note_use:0
151msgid "Use to print Check?"
152msgstr "Use to print Check?"
153
154#. module: bank_management
155#: field:gral.check.book,desde:0
156msgid "Starting Date"
157msgstr "Fecha de Inicio"
158
159#. module: bank_management
160#: field:print.model.reports,gs_option_id:0
161msgid "Ghostscript Options"
162msgstr "Ghostscript Options"
163
164#. module: bank_management
165#: model:ir.model,name:bank_management.model_check_book_wizard
166msgid "check.book.wizard"
167msgstr "check.book.wizard"
168
169#. module: bank_management
170#: selection:check.book.wizard,state_check_note:0
171#: selection:gral.check.book,state_check_note:0
172msgid "Issued"
173msgstr "Issued"
174
175#. module: bank_management
176#: view:account.voucher:0
177msgid "Paid Amount"
178msgstr "Importe pagado"
179
180#. module: bank_management
181#: code:addons/bank_management/check/check_note.py:130
182#, python-format
183msgid "You can not duplicate this document!!!"
184msgstr "Ud no puede duplicar este documento!!!"
185
186#. module: bank_management
187#: field:res.bank,max_lim:0
188msgid "Max. Limit"
189msgstr "Limite Max."
190
191#. module: bank_management
192#: field:check.book,cancel_check:0
193#: field:check.note,cancel_check_note:0
194#: field:voucher.pay.support,cancel_check_note:0
195#: field:voucher.pay.support.wizard,cancel_check_note:0
196msgid "Reason for Cancellation"
197msgstr "Motivos para anular"
198
199#. module: bank_management
200#: view:check.book:0
201#: field:check.book,state:0
202#: view:check.book.request:0
203#: field:check.book.request,state:0
204#: view:check.note:0
205#: field:check.note,state:0
206#: view:voucher.pay.support:0
207#: field:voucher.pay.support,state:0
208#: field:voucher.pay.support.wizard,state:0
209msgid "State"
210msgstr "Estado"
211
212#. module: bank_management
213#: code:addons/bank_management/check/account_voucher_payment.py:116
214#, python-format
215msgid "Please verify the Amount of Payment !\n"
216" The Paid Amount no match the computed total"
217msgstr "!Por favor revise el monto del pago !\n"
218" El monto a pagar no es igual al monto calculado"
219
220#. module: bank_management
221#: selection:cancel.voucher.pay.support,cancel_check_note:0
222msgid "Cheque Devuelto"
223msgstr "Cheque Devuelto"
224
225#. module: bank_management
226#: view:voucher.pay.support.wizard:0
227msgid "Select Bank Account"
228msgstr "Selecciones Cuenta Bancaria"
229
230#. module: bank_management
231#: field:account.journal,default_payment_credit_account_id:0
232msgid "Write-Off Credit Account"
233msgstr "Cuenta de ajuste acreditar"
234
235#. module: bank_management
236#: report:chk.book.request:0
237msgid "Authorized Signature(s)"
238msgstr "Firma(s) Autorizada(s)"
239
240#. module: bank_management
241#: field:account.journal,default_payment_debit_account_id:0
242msgid "Write-Off Debit account"
243msgstr "Cuenta de ajuste a debitar"
244
245#. module: bank_management
246#: help:check.book,date_active:0
247msgid "Date on which the check book status change to active"
248msgstr "Fecha en la cual la chequera cambia su estado a activo"
249
250#. module: bank_management
251#: code:addons/bank_management/check/account_voucher_payment.py:116
252#, python-format
253msgid "Bad Total !"
254msgstr "!Total incorrecto!"
255
256#. module: bank_management
257#: view:account.voucher:0
258#: view:check.book:0
259#: view:check.note:0
260msgid "Other Information"
261msgstr "Otra información"
262
263#. module: bank_management
264#: code:addons/bank_management/check/report/reporte_check_book.py:122
265#: code:addons/bank_management/check/report/reporte_wizard_general.py:197
266#, python-format
267msgid "Cancel Check book"
268msgstr "Cancelar Chequera"
269
270#. module: bank_management
271#: selection:print.gs.option,device:0
272msgid " Epson-compatible 9-pin, triple resolutio"
273msgstr " Epson-compatible 9-pin, triple resolutio"
274
275#. module: bank_management
276#: model:ir.ui.menu,name:bank_management.id_check_management
277msgid "Check Management"
278msgstr "Administración Bancaria"
279
280#. module: bank_management
281#: field:check.book.request,code:0
282msgid "Request Number"
283msgstr "Número de solicitud"
284
285#. module: bank_management
286#: selection:check.book,qty_check_selection:0
287msgid "100"
288msgstr "100"
289
290#. module: bank_management
291#: view:account.voucher:0
292msgid "Pay Order"
293msgstr "Pay Order"
294
295#. module: bank_management
296#: report:cash_amount.3:0
297msgid "Pagos Anteriores"
298msgstr "Pagos Anteriores"
299
300#. module: bank_management
301#: field:res.company,header_report:0
302msgid "Report Header"
303msgstr "Report Header"
304
305#. module: bank_management
306#: field:account.voucher,payee_id:0
307#: view:voucher.pay.support:0
308#: field:voucher.pay.support,payee_id:0
309#: field:voucher.pay.support.wizard,payee_id:0
310msgid "Beneficiary"
311msgstr "Beneficiario"
312
313#. module: bank_management
314#: report:cash_amount.3:0
315msgid "Retenciones IVA"
316msgstr "Retenciones IVA"
317
318#. module: bank_management
319#: field:res.partner.bank,virtual_balance:0
320msgid "Virtual Balance"
321msgstr "Balance Virtual"
322
323#. module: bank_management
324#: selection:cancel.voucher.pay.support,cancel_check_note:0
325msgid "Pago no realizado"
326msgstr "Pago no realizado"
327
328#. module: bank_management
329#: help:print.lpr.option,fit_to_page:0
330msgid "Specifies that the document should be scaled to fit on the page"
331msgstr "Specifies that the document should be scaled to fit on the page"
332
333#. module: bank_management
334#: field:check.book,date_done:0
335msgid "Closing Date"
336msgstr "Fecha de cierre"
337
338#. module: bank_management
339#: help:check.book,accounting_bank_id:0
340msgid "bank account to which belong the check book"
341msgstr "Cuenta bancaria a la cual pertenece la chequera"
342
343#. module: bank_management
344#: field:cancel.voucher.pay.support,partner_id:0
345#: view:voucher.pay.support:0
346#: field:voucher.pay.support,partner_id:0
347#: field:voucher.pay.support.wizard,partner_id:0
348msgid "Contrapartida"
349msgstr "Contrapartida"
350
351#. module: bank_management
352#: help:voucher.pay.support,state:0
353msgid "State Voucher Check Note"
354msgstr "Estado del cheque en el voucher"
355
356#. module: bank_management
357#: report:cash_amount.3:0
358#: report:cash_receipt.drcr.3:0
359msgid "Por Concepto de :"
360msgstr "Por Concepto de :"
361
362#. module: bank_management
363#: model:ir.model,name:bank_management.model_cancel_voucher_pay_support
364msgid "cancel.voucher.pay.support"
365msgstr "cancel.voucher.pay.support"
366
367#. module: bank_management
368#: code:addons/bank_management/check/wizard/voucher_pay_support_wizard_pay_order.py:110
369#, python-format
370msgid "There are not check in this account, enter another one!!!"
371msgstr "No existen cheques en esta cuenta, ingrese otra!!!"
372
373#. module: bank_management
374#: field:check.book.wizard,tiempo:0
375#: field:gral.check.book,tiempo:0
376msgid "Time"
377msgstr "Período"
378
379#. module: bank_management
380#: report:chk.book.request:0
381msgid "Agency:"
382msgstr "Agencia:"
383
384#. module: bank_management
385#: view:voucher.pay.support.wizard:0
386msgid "Agree"
387msgstr "De acuerdo"
388
389#. module: bank_management
390#: selection:print.lpr.option,orientation_requested:0
391msgid "Landscape (90 degrees)"
392msgstr "Landscape (90 degrees)"
393
394#. module: bank_management
395#: field:check.book.wizard,mes:0
396#: view:gral.check.book:0
397#: field:gral.check.book,mes:0
398#: selection:gral.check.book,tiempo:0
399msgid "Period"
400msgstr "Período"
401
402#. module: bank_management
403#: view:check.note:0
404msgid "Search Check Note"
405msgstr "Busqueda de cheque"
406
407#. module: bank_management
408#: field:cancel.voucher.pay.support,accounting_bank_id:0
409msgid "Cuenta Bancaria"
410msgstr "Cuenta Bancaria"
411
412#. module: bank_management
413#: report:cash_amount.3:0
414#: report:cash_receipt.drcr.3:0
415msgid "Cancelado"
416msgstr "Cancelado"
417
418#. module: bank_management
419#: code:addons/bank_management/check/voucher_pay_support.py:135
420#, python-format
421msgid "Remove the reason for cancellation"
422msgstr "Borre los motivos para anulación"
423
424#. module: bank_management
425#: model:ir.actions.report.xml,name:bank_management.check_fmt_report
426#: view:voucher.pay.support.wizard:0
427msgid "Print Check"
428msgstr "Imprimir Cheque"
429
430#. module: bank_management
431#: view:voucher.pay.support:0
432msgid "Search Voucher Pay Support"
433msgstr "Busqueda soporte de pago"
434
435#. module: bank_management
436#: help:res.bank,format_h:0
437msgid "Print format of check"
438msgstr "Formato de impresión el cheque"
439
440#. module: bank_management
441#: field:print.lpr.option,media:0
442msgid "Media"
443msgstr "Media"
444
445#. module: bank_management
446#: field:check.book,check_book_request_id:0
447#: view:check.book.request:0
448#: report:chk.book.request:0
449#: model:ir.actions.act_window,name:bank_management.action_sol_check_book
450#: model:ir.ui.menu,name:bank_management.menu_check_book_solicitud
451msgid "Check Book Request"
452msgstr "Solicitud de chequera"
453
454#. module: bank_management
455#: help:check.book,bank_id:0
456#: help:check.book.request,bank_id:0
457msgid "The bank entity name must be load when saved it"
458msgstr "El nombre de la entidad bancaria es obligatorio"
459
460#. module: bank_management
461#: view:check.book:0
462msgid "Reactive"
463msgstr "Reactivar"
464
465#. module: bank_management
466#: view:check.book.request:0
467#: field:check.book.request,agen_id:0
468msgid "Bank Agency"
469msgstr "Agencia Bancaria"
470
471#. module: bank_management
472#: report:chk.book:0
473#: report:wizard.general.book:0
474msgid "DATE"
475msgstr "FECHA"
476
477#. module: bank_management
478#: report:chk.book:0
479#: report:wizard.general.book:0
480msgid "AMOUNT COMMITTED"
481msgstr "MONTO COMPROMETIDO"
482
483#. module: bank_management
484#: report:chk.book.request:0
485msgid "Sirs:"
486msgstr "Señores:"
487
488#. module: bank_management
489#: model:ir.actions.act_window,name:bank_management.action_wiz_gral_check_book
490#: model:ir.ui.menu,name:bank_management.menu_action_wiz_gral_check_book
491msgid "General Check Book Report"
492msgstr "Reporte general de chequera"
493
494#. module: bank_management
495#: selection:print.gs.option,device:0
496msgid " Epson-compatible dot matrix printer (9 or 24 pi"
497msgstr " Epson-compatible dot matrix printer (9 or 24 pi"
498
499#. module: bank_management
500#: report:chk.book.request:0
501msgid ", bearer of Identity Card No."
502msgstr ", portador de la Cédula de Identidad No."
503
504#. module: bank_management
505#: help:check.book.request,state:0
506msgid "Request check book state"
507msgstr "Estado en que se encuentra la solicitud"
508
509#. module: bank_management
510#: model:ir.model,name:bank_management.model_account_journal
511#: field:res.partner.bank,journal_id:0
512msgid "Journal"
513msgstr "Diario"
514
515#. module: bank_management
516#: view:res.partner.bank:0
517msgid "Bank account"
518msgstr "Cuenta bancaria"
519
520#. module: bank_management
521#: report:chk.book:0
522#: report:wizard.general.book:0
523msgid "AMOUNT"
524msgstr "MONTO"
525
526#. module: bank_management
527#: view:check.note:0
528#: model:ir.actions.act_window,name:bank_management.action_check_note
529#: model:ir.ui.menu,name:bank_management.menu_check_note
530#: field:voucher.pay.support,check_note_id:0
531#: view:voucher.pay.support.wizard:0
532msgid "Check Note"
533msgstr "Cheque"
534
535#. module: bank_management
536#: code:addons/bank_management/check/report/reporte_check_book.py:76
537#: code:addons/bank_management/check/report/reporte_wizard_general.py:82
538#: selection:check.note,cancel_check_note:0
539#: selection:voucher.pay.support,cancel_check_note:0
540#: selection:voucher.pay.support.wizard,cancel_check_note:0
541#, python-format
542msgid "Expired"
543msgstr "Caducidad"
544
545#. module: bank_management
546#: view:account.voucher:0
547msgid "Payment"
548msgstr "Pago"
549
550#. module: bank_management
551#: view:check.book:0
552msgid "Search Check Book"
553msgstr "Busqueda Chequeras"
554
555#. module: bank_management
556#: field:cancel.voucher.pay.support,expiry:0
557msgid "Dias de Caducidad"
558msgstr "Dias de Caducidad"
559
560#. module: bank_management
561#: view:check.book:0
562#: selection:check.book,state:0
563#: view:check.book.request:0
564#: view:check.note:0
565msgid "Request"
566msgstr "Solicitud"
567
568#. module: bank_management
569#: model:ir.actions.act_window,name:bank_management.action_pay_order_contrapartida
570#: model:ir.actions.act_window,name:bank_management.action_rec_order_contrapartida
571#: model:ir.ui.menu,name:bank_management.menu_contrapartida
572#: model:ir.ui.menu,name:bank_management.menu_rec_contrapartida
573msgid "Orden de Pago Contrapartida"
574msgstr "Orden de Pago Contrapartida"
575
576#. module: bank_management
577#: report:cash_amount.3:0
578msgid "Número"
579msgstr "Número"
580
581#. module: bank_management
582#: field:account.voucher,pay_bank:0
583msgid "Pay check ?"
584msgstr "¿Pago con cheque?"
585
586#. module: bank_management
587#: field:print.model.reports,model_id:0
588msgid "Model"
589msgstr "Model"
590
591#. module: bank_management
592#: report:cash_amount.3:0
593#: report:cash_receipt.drcr.3:0
594msgid "Recibe:"
595msgstr "Recibe:"
596
597#. module: bank_management
598#: selection:print.lpr.option,media:0
599msgid "Half Letter"
600msgstr "Half Letter"
601
602#. module: bank_management
603#: field:voucher.pay.support,return_voucher_id:0
604msgid "Cancellation Voucher"
605msgstr "Comprobante Devuelto"
606
607#. module: bank_management
608#: field:check.book,date_draft:0
609msgid "Date Received"
610msgstr "Fecha de recepción"
611
612#. module: bank_management
613#: model:ir.model,name:bank_management.model_gral_check_book
614msgid "gral.check.book"
615msgstr "gral.check.book"
616
617#. module: bank_management
618#: code:addons/bank_management/check/report/reporte_check_book.py:74
619#: code:addons/bank_management/check/report/reporte_wizard_general.py:80
620#: selection:check.book,cancel_check:0
621#: selection:check.note,cancel_check_note:0
622#: selection:voucher.pay.support,cancel_check_note:0
623#: selection:voucher.pay.support.wizard,cancel_check_note:0
624#, python-format
625msgid "Physical damage"
626msgstr "Daño físico"
627
628#. module: bank_management
629#: report:chk.book:0
630#: report:wizard.general.book:0
631msgid "THIS DOCUMENT IS NOT INTENDED TO BE USED AS FINAL DOCUMENT"
632msgstr "ESTE DOCUMENTO NO ESTA DESTINADO A SER UTILIZADO COMO DOCUMENTO FINAL"
633
634#. module: bank_management
635#: code:addons/bank_management/check/check_book.py:399
636#, python-format
637msgid "warning !"
638msgstr "advertencia !"
639
640#. module: bank_management
641#: help:print.model.reports,gs_use:0
642msgid "Checking this field will allow to print Ghostscript options"
643msgstr "Checking this field will allow to print Ghostscript options"
644
645#. module: bank_management
646#: field:cancel.voucher.pay.support,cancel_check_note:0
647msgid "Motivo de Cancelacion"
648msgstr "Motivo de Cancelacion"
649
650#. module: bank_management
651#: view:check.book:0
652#: field:check.book,name:0
653#: view:check.book.request:0
654#: field:check.book.wizard,check_book_id:0
655#: view:check.note:0
656#: field:check.note,check_book_id:0
657#: field:gral.check.book,check_book_id:0
658#: model:ir.actions.act_window,name:bank_management.action_check_book
659#: model:ir.ui.menu,name:bank_management.menu_check_book
660msgid "Check Book"
661msgstr "Chequera"
662
663#. module: bank_management
664#: field:print.model.reports,depend_state:0
665msgid "Depends State"
666msgstr "Depends State"
667
668#. module: bank_management
669#: selection:gral.check.book,state_check_note:0
670msgid "Unfiltered"
671msgstr "Sin filtro"
672
673#. module: bank_management
674#: view:account.voucher:0
675msgid "Supplier"
676msgstr "Proveedor"
677
678#. module: bank_management
679#: selection:check.book,qty_check_selection:0
680msgid "25"
681msgstr "25"
682
683#. module: bank_management
684#: selection:cancel.voucher.pay.support,cancel_check_note:0
685msgid "Perdida o extravio"
686msgstr "Perdida o extravio"
687
688#. module: bank_management
689#: report:chk.book:0
690#: report:wizard.general.book:0
691msgid "AMOUNT PAID"
692msgstr "MONTO PAGADO"
693
694#. module: bank_management
695#: help:res.partner.bank,bank_account_id:0
696msgid "Acountig account associated to the bank account, it journal entries will be made"
697msgstr "Cuenta contable asociada a la cuenta bancaria, en donde se realizarán los asientos"
698
699#. module: bank_management
700#: code:addons/bank_management/check/check_book.py:397
701#: code:addons/bank_management/check/check_book_request.py:137
702#: code:addons/bank_management/check/check_note.py:130
703#, python-format
704msgid "Warning !"
705msgstr "Advertencia !"
706
707#. module: bank_management
708#: model:ir.actions.act_window,help:bank_management.action_res_partner_bank
709msgid "With Bank Account you can create and manage Bank Account."
710msgstr "Con cuentas bancarias Ud. puede crear y administrar cuentas bancarias."
711
712#. module: bank_management
713#: field:cancel.voucher.pay.support,date:0
714#: report:cash_amount.3:0
715msgid "Fecha"
716msgstr "Fecha"
717
718#. module: bank_management
719#: view:check.book.request:0
720#: selection:check.book.request,state:0
721msgid "Received"
722msgstr "Recibido"
723
724#. module: bank_management
725#: view:res.bank:0
726#: field:res.bank,format_h:0
727msgid "Format Check"
728msgstr "Formato de Cheque"
729
730#. module: bank_management
731#: help:print.gs.option,name:0
732msgid "Set the name for this Ghostscript"
733msgstr "Set the name for this Ghostscript"
734
735#. module: bank_management
736#: field:voucher.pay.support,date:0
737msgid "Issued Date"
738msgstr "Fecha de emisión"
739
740#. module: bank_management
741#: model:ir.model,name:bank_management.model_voucher_pay_support
742msgid "voucher_pay_support"
743msgstr "voucher_pay_support"
744
745#. module: bank_management
746#: view:account.voucher:0
747msgid "Payment Options"
748msgstr "Opciones de pago"
749
750#. module: bank_management
751#: field:print.gs.option,device:0
752msgid "Device Driver"
753msgstr "Device Driver"
754
755#. module: bank_management
756#: model:ir.model,name:bank_management.model_check_note
757msgid "check.note"
758msgstr "check.note"
759
760#. module: bank_management
761#: view:account.voucher:0
762msgid "Unreconcile"
763msgstr "Romper conciliación"
764
765#. module: bank_management
766#: code:addons/bank_management/check/check_note.py:104
767#: code:addons/bank_management/check/check_note.py:106
768#: code:addons/bank_management/check/voucher_pay_support.py:135
769#: code:addons/bank_management/check/voucher_pay_support.py:140
770#: code:addons/bank_management/check/voucher_pay_support.py:157
771#: code:addons/bank_management/check/wizard/voucher_pay_support_wizard_pay_order.py:110
772#: code:addons/bank_management/check/wizard/voucher_pay_support_wizard_pay_order.py:167
773#: code:addons/bank_management/check/wizard/voucher_pay_support_wizard_pay_order.py:215
774#, python-format
775msgid "Alert !"
776msgstr "Atención !"
777
778#. module: bank_management
779#: model:ir.actions.act_window,name:bank_management.action_pay_order
780#: model:ir.actions.act_window,name:bank_management.action_rec_order
781#: model:ir.ui.menu,name:bank_management.menu_pay_order_general
782#: model:ir.ui.menu,name:bank_management.menu_rec_order_general
783msgid "Orden de Pago"
784msgstr "Orden de Pago"
785
786#. module: bank_management
787#: view:voucher.pay.support.wizard:0
788msgid "_Cancel"
789msgstr "_Cancelar"
790
791#. module: bank_management
792#: view:account.voucher:0
793msgid "Payment Information"
794msgstr "Información de pago"
795
796#. module: bank_management
797#: field:check.book,qty_check:0
798#: view:voucher.pay.support:0
799#: selection:voucher.pay.support.wizard,type:0
800msgid "Check"
801msgstr "Cheque"
802
803#. module: bank_management
804#: help:check.book.request,agen_id:0
805msgid "The Bank Agency name must be load when saved it"
806msgstr "El nombre de la agencia bancaria es obligatorio"
807
808#. module: bank_management
809#: field:check.book.wizard,desde:0
810msgid "From"
811msgstr "Desde"
812
813#. module: bank_management
814#: model:ir.actions.act_window,help:bank_management.action_check_book
815msgid "With Check Book you can create and manage Check Book."
816msgstr "Con chequeras Ud. puede crear y administrar chequeras."
817
818#. module: bank_management
819#: selection:print.lpr.option,media:0
820msgid "Legal"
821msgstr "Legal"
822
823#. module: bank_management
824#: view:voucher.pay.support.wizard:0
825msgid "Next"
826msgstr "Siguiente"
827
828#. module: bank_management
829#: report:cash_receipt.drcr.3:0
830msgid "Detalles"
831msgstr "Detalles"
832
833#. module: bank_management
834#: field:voucher.pay.support,expiry:0
835msgid "Expiry Days"
836msgstr "Días de caducidad"
837
838#. module: bank_management
839#: view:check.book.request:0
840#: field:check.book.request,partner_id:0
841msgid "Authorized"
842msgstr "Autorizado"
843
844#. module: bank_management
845#: view:check.book.request:0
846msgid "Print"
847msgstr "Imprimir"
848
849#. module: bank_management
850#: view:cancel.voucher.pay.support:0
851msgid "Reason of Cancellation"
852msgstr "Reason of Cancellation"
853
854#. module: bank_management
855#: field:voucher.pay.support.wizard,bool_sure:0
856msgid "Are you sure?"
857msgstr "¿Esta seguro?"
858
859#. module: bank_management
860#: code:addons/bank_management/check/report/reporte_check_book.py:61
861#: code:addons/bank_management/check/report/reporte_wizard_general.py:67
862#: view:check.book:0
863#: selection:check.book,state:0
864#: selection:check.note,state:0
865#, python-format
866msgid "Hibernate"
867msgstr "Hibernar"
868
869#. module: bank_management
870#: field:cancel.voucher.pay.support,type:0
871#: field:voucher.pay.support,type:0
872#: field:voucher.pay.support.wizard,type:0
873msgid "Type"
874msgstr "Tipo"
875
876#. module: bank_management
877#: field:ir.print,report_id:0
878#: field:print.model.reports,report_id:0
879msgid "Report"
880msgstr "Report"
881
882#. module: bank_management
883#: field:voucher.pay.support,max_lim:0
884msgid "Max Limit"
885msgstr "Limite Max"
886
887#. module: bank_management
888#: code:addons/bank_management/check/check_book.py:243
889#: code:addons/bank_management/check/wizard/cancel_voucher_pay_support.py:154
890#, python-format
891msgid "Atencion !"
892msgstr "Atencion !"
893
894#. module: bank_management
895#: view:check.book.request:0
896msgid "Receive"
897msgstr "Recibido"
898
899#. module: bank_management
900#: report:chk.book.request:0
901msgid "Please to make delivery of"
902msgstr "Sirvase en hacer entrega de"
903
904#. module: bank_management
905#: report:cash_amount.3:0
906#: report:cash_receipt.drcr.3:0
907msgid "Fecha:"
908msgstr "Fecha:"
909
910#. module: bank_management
911#: view:res.partner.bank:0
912msgid "Partner"
913msgstr "Empresa"
914
915#. module: bank_management
916#: help:print.model.reports,allow_repeat:0
917msgid "Checking this field will allow you to print more than once this report"
918msgstr "Checking this field will allow you to print more than once this report"
919
920#. module: bank_management
921#: view:check.book:0
922msgid "Load Checks"
923msgstr "Cargar Cheques"
924
925#. module: bank_management
926#: report:chk.book.request:0
927msgid ") checkbook stubs of:"
928msgstr ") talonario(s) de chequera(s) de:"
929
930#. module: bank_management
931#: field:check.book,date_active:0
932msgid "Activation Date"
933msgstr "Fecha de activación"
934
935#. module: bank_management
936#: field:ir.print,create_date:0
937msgid "Date Created"
938msgstr "Date Created"
939
940#. module: bank_management
941#: help:check.book,fixed_prefix:0
942msgid "If the prefix of the number of checks is constant check this option"
943msgstr "Sí el prefijo del número de cheques es constante marque esta opción"
944
945#. module: bank_management
946#: view:account.voucher:0
947msgid "Generar Pago"
948msgstr "Generar Pago"
949
950#. module: bank_management
951#: code:addons/bank_management/check/report/reporte_check_book.py:59
952#: code:addons/bank_management/check/report/reporte_wizard_general.py:65
953#: view:check.book:0
954#: selection:check.book,state:0
955#: view:check.note:0
956#: selection:check.note,state:0
957#, python-format
958msgid "Review"
959msgstr "Revisar"
960
961#. module: bank_management
962#: field:check.book.wizard,state_check_note:0
963#: help:check.note,state:0
964#: field:gral.check.book,state_check_note:0
965msgid "Check Note State"
966msgstr "Estado actual del cheque"
967
968#. module: bank_management
969#: model:ir.actions.act_window,name:bank_management.wiz_pay_support_cancel
970msgid "Cancel Voucher Payment"
971msgstr "Anular Voucher de pago"
972
973#. module: bank_management
974#: help:print.lpr.option,cpi:0
975msgid "Sets the number of characters per inch"
976msgstr "Sets the number of characters per inch"
977
978#. module: bank_management
979#: help:check.book,prefix:0
980msgid "The check note number format is prefix + suffix, \n"
981" if Fixed Prefix is true this number will be load to all check note"
982msgstr "El formato del nro de cheque es prefijo + sufijo, \n"
983" Si es Prefijo fijo este nro. será cargado a todos los cheques"
984
985#. module: bank_management
986#: code:addons/bank_management/check/wizard/voucher_pay_support_wizard_pay_order.py:167
987#, python-format
988msgid "Enter at least one choice!!!"
989msgstr "Ingrese al menos una opción!!!"
990
991#. module: bank_management
992#: field:print.model.reports,allow_repeat:0
993msgid "Allow print again"
994msgstr "Allow print again"
995
996#. module: bank_management
997#: report:cash_amount.3:0
998msgid "Notas de Debito / Credito"
999msgstr "Notas de Debito / Credito"
1000
1001#. module: bank_management
1002#: field:voucher.pay.support,account_voucher_id:0
1003msgid "Origin Voucher"
1004msgstr "Comprobante de origen"
1005
1006#. module: bank_management
1007#: field:voucher.pay.support.wizard,amount:0
1008msgid "Payment Amount"
1009msgstr "Monto a pagar"
1010
1011#. module: bank_management
1012#: code:addons/bank_management/check/report/reporte_check_book.py:73
1013#: code:addons/bank_management/check/report/reporte_wizard_general.py:79
1014#: selection:check.note,cancel_check_note:0
1015#: selection:voucher.pay.support,cancel_check_note:0
1016#: selection:voucher.pay.support.wizard,cancel_check_note:0
1017#, python-format
1018msgid "Loss or misplacement"
1019msgstr "Perdida o extravío"
1020
1021#. module: bank_management
1022#: field:check.book,to_suffix:0
1023msgid "To Suffix"
1024msgstr "Hasta sufijo"
1025
1026#. module: bank_management
1027#: field:print.model,model:0
1028msgid "Modelo"
1029msgstr "Modelo"
1030
1031#. module: bank_management
1032#: report:chk.book.request:0
1033msgid "BANK"
1034msgstr "Banco"
1035
1036#. module: bank_management
1037#: view:account.voucher:0
1038msgid "Are you sure to unreconcile this record ?"
1039msgstr "¿Seguro que desea romper la conciliación de este registro?"
1040
1041#. module: bank_management
1042#: selection:check.book.wizard,tiempo:0
1043#: selection:gral.check.book,tiempo:0
1044#: field:voucher.pay.support.wizard,date:0
1045msgid "Date"
1046msgstr "Fecha"
1047
1048#. module: bank_management
1049#: field:cancel.voucher.pay.support,state:0
1050msgid "Estado"
1051msgstr "Estado"
1052
1053#. module: bank_management
1054#: report:chk.book.request:0
1055msgid "checks for the account cited above."
1056msgstr "cheques correspondientes a la cuenta antes citada."
1057
1058#. module: bank_management
1059#: model:ir.model,name:bank_management.model_res_company
1060msgid "Companies"
1061msgstr "Compañías"
1062
1063#. module: bank_management
1064#: field:voucher.pay.support.wizard,min_lim:0
1065msgid "Min. Limit (Bs.)"
1066msgstr "Limit Min. (Bs.)"
1067
1068#. module: bank_management
1069#: view:res.company:0
1070#: field:res.company,transitory:0
1071#: field:res.partner.bank,trans_account_id:0
1072msgid "Transitory Account"
1073msgstr "Cuenta transitoria"
1074
1075#. module: bank_management
1076#: report:chk.book.request:0
1077msgid "No.:"
1078msgstr "No.:"
1079
1080#. module: bank_management
1081#: view:account.voucher:0
1082msgid "Invoices and outstanding transactions"
1083msgstr "Facturas y transacciones de salida"
1084
1085#. module: bank_management
1086#: help:res.partner.bank,balance:0
1087msgid "return the balance of accounting account"
1088msgstr "devuelve el balance de la cuenta contable"
1089
1090#. module: bank_management
1091#: help:check.book.request,accounting_bank_id:0
1092msgid "Bank account to which belong the check book"
1093msgstr "Cuenta bancaria a la cual pertenece la chequera"
1094
1095#. module: bank_management
1096#: help:check.book,cancel_check:0
1097msgid "Grounds for cancellation"
1098msgstr "Causas que provocarón la anulación"
1099
1100#. module: bank_management
1101#: field:ir.print,create_uid:0
1102msgid "Creator"
1103msgstr "Creator"
1104
1105#. module: bank_management
1106#: help:cancel.voucher.pay.support,state:0
1107msgid "Estado del Cheque Voucher"
1108msgstr "Estado del Cheque Voucher"
1109
1110#. module: bank_management
1111#: field:print.model.reports,python_code:0
1112msgid "Python Code"
1113msgstr "Python Code"
1114
1115#. module: bank_management
1116#: field:print.lpr.option,orientation_requested:0
1117msgid "Orientation Requested"
1118msgstr "Orientation Requested"
1119
1120#. module: bank_management
1121#: view:account.voucher:0
1122#: code:addons/bank_management/check/report/reporte_check_book.py:62
1123#: code:addons/bank_management/check/report/reporte_wizard_general.py:68
1124#: selection:cancel.voucher.pay.support,state:0
1125#: view:check.book:0
1126#: selection:check.book,state:0
1127#: view:check.book.request:0
1128#: selection:check.book.request,state:0
1129#: view:check.note:0
1130#: selection:check.note,state:0
1131#: view:voucher.pay.support:0
1132#: selection:voucher.pay.support,state:0
1133#: selection:voucher.pay.support.wizard,state:0
1134#, python-format
1135msgid "Cancel"
1136msgstr "Cancelar"
1137
1138#. module: bank_management
1139#: field:cancel.voucher.pay.support,payee_id:0
1140msgid "Beneficiario"
1141msgstr "Beneficiario"
1142
1143#. module: bank_management
1144#: field:account.voucher,voucher_pay_support_id:0
1145msgid "Payment Order"
1146msgstr "Orden de pago"
1147
1148#. module: bank_management
1149#: field:res.company,expiry:0
1150msgid "Expiration Days"
1151msgstr "Días de caducidad"
1152
1153#. module: bank_management
1154#: selection:check.book,cancel_check:0
1155#: selection:check.note,cancel_check_note:0
1156#: selection:voucher.pay.support,cancel_check_note:0
1157msgid "Other"
1158msgstr "Otro"
1159
1160#. module: bank_management
1161#: code:addons/bank_management/check/check_book.py:343
1162#, python-format
1163msgid "Need all prefix check"
1164msgstr "Need all prefix check"
1165
1166#. module: bank_management
1167#: field:print.lpr.option,fit_to_page:0
1168msgid "Fit to page"
1169msgstr "Fit to page"
1170
1171#. module: bank_management
1172#: view:res.company:0
1173msgid "Expiry Date"
1174msgstr "Días de caducidad"
1175
1176#. module: bank_management
1177#: view:voucher.pay.support.wizard:0
1178msgid "Select Payment Type"
1179msgstr "Seleccione el tipo de pago"
1180
1181#. module: bank_management
1182#: report:cash_amount.3:0
1183#: report:cash_receipt.drcr.3:0
1184msgid "-"
1185msgstr "-"
1186
1187#. module: bank_management
1188#: report:cash_amount.3:0
1189#: report:cash_receipt.drcr.3:0
1190msgid "Credito"
1191msgstr "Credito"
1192
1193#. module: bank_management
1194#: field:check.book,qty_active:0
1195msgid "Available Checks"
1196msgstr "Cheques disponibles"
1197
1198
1199#. module: bank_management
1200#: field:check.book.request,accounting_bank_id:0
1201msgid "Account Bank"
1202msgstr "Cuenta Bancaria"
1203
1204#. module: bank_management
1205#: field:check.book,qty_check_selection:0
1206msgid "Check Qty"
1207msgstr "Cant. cheques"
1208
1209#. module: bank_management
1210#: view:check.book:0
1211#: field:check.book,bank_id:0
1212#: view:check.book.request:0
1213#: field:check.book.request,bank_id:0
1214#: view:check.note:0
1215#: field:check.note,bank_id:0
1216#: model:ir.model,name:bank_management.model_res_bank
1217#: model:ir.ui.menu,name:bank_management.menu_configuration_bank
1218#: view:res.partner.bank:0
1219#: view:voucher.pay.support:0
1220#: field:voucher.pay.support,bank_id:0
1221#: field:voucher.pay.support.wizard,bank_id:0
1222msgid "Bank"
1223msgstr "Banco"
1224
1225#. module: bank_management
1226#: field:print.gs.option,name:0
1227#: field:print.lpr.option,name:0
1228#: field:voucher.pay.support.wizard,name:0
1229msgid "Name"
1230msgstr "Nombre"
1231
1232#. module: bank_management
1233#: code:addons/bank_management/check/report/reporte_check_book.py:123
1234#: code:addons/bank_management/check/report/reporte_wizard_general.py:198
1235#, python-format
1236msgid "Done Check book"
1237msgstr "Chequera Usada"
1238
1239#. module: bank_management
1240#: field:check.book,fixed_prefix:0
1241msgid "Fixed Prefix?"
1242msgstr "¿Prefijo fijo?"
1243
1244#. module: bank_management
1245#: selection:check.book,qty_check_selection:0
1246msgid "75"
1247msgstr "75"
1248
1249#. module: bank_management
1250#: help:res.partner.bank,virtual_balance:0
1251msgid "Proposed Balance=Sum transitory money more balance closed or balance account"
1252msgstr "Balance propuesto=Sum dinero en transito mas balance cerrado o balance de la cuenta"
1253
1254#. module: bank_management
1255#: help:print.lpr.option,orientation_requested:0
1256msgid "The orientation-requested option rotates the page depending on the value of N:\n"
1257"3 - portrait orientation (no rotation)\n"
1258"4 - landscape orientation (90 degrees)\n"
1259"5 - reverse landscape or seascape orientation (270 degrees)\n"
1260"6 - reverse portrait or upside-down orientation (180 degrees)"
1261msgstr "The orientation-requested option rotates the page depending on the value of N:\n"
1262"3 - portrait orientation (no rotation)\n"
1263"4 - landscape orientation (90 degrees)\n"
1264"5 - reverse landscape or seascape orientation (270 degrees)\n"
1265"6 - reverse portrait or upside-down orientation (180 degrees)"
1266
1267#. module: bank_management
1268#: help:check.book,from_suffix:0
1269msgid "the check note number format is prefix + suffix\n"
1270" beginning of the suffix"
1271msgstr "El formato del nro de cheque es prefijo + sufijo\n"
1272" comienzo del sufijo"
1273
1274#. module: bank_management
1275#: sql_constraint:account.journal:0
1276msgid "The name of the journal must be unique per company !"
1277msgstr "¡El nombre del diaro debe ser único por compañía!"
1278
1279#. module: bank_management
1280#: help:print.model.reports,check_note_use:0
1281msgid "Checking this field when allow you to take different headers to print"
1282msgstr "Checking this field when allow you to take different headers to print"
1283
1284#. module: bank_management
1285#: report:chk.book:0
1286#: report:wizard.general.book:0
1287msgid "NOTA:"
1288msgstr "NOTA:"
1289
1290#. module: bank_management
1291#: report:cash_amount.3:0
1292msgid "Recibido (en palabras) :"
1293msgstr "Recibido (en palabras) :"
1294
1295#. module: bank_management
1296#: field:cancel.voucher.pay.support,bank_id:0
1297#: report:cash_amount.3:0
1298msgid "Banco"
1299msgstr "Banco"
1300
1301#. module: bank_management
1302#: report:cash_amount.3:0
1303#: report:cash_receipt.drcr.3:0
1304msgid "Comprobante de Cobro Bancario"
1305msgstr "Comprobante de Cobro Bancario"
1306
1307#. module: bank_management
1308#: report:chk.book:0
1309#: report:wizard.general.book:0
1310msgid "CLOSING DATE:"
1311msgstr "FECHA DE CIERRE:"
1312
1313#. module: bank_management
1314#: field:print.lpr.option,cpi:0
1315msgid "Number of Characters Per Inch"
1316msgstr "Number of Characters Per Inch"
1317
1318#. module: bank_management
1319#: view:check.book:0
1320#: view:check.book.request:0
1321#: view:check.note:0
1322#: view:res.partner.bank:0
1323#: view:voucher.pay.support:0
1324msgid "Group By..."
1325msgstr "Agrupar por..."
1326
1327#. module: bank_management
1328#: report:cash_amount.3:0
1329#: report:cash_receipt.drcr.3:0
1330msgid "Estado:"
1331msgstr "Estado:"
1332
1333#. module: bank_management
1334#: report:cash_amount.3:0
1335#: report:cash_receipt.drcr.3:0
1336msgid "Banco:"
1337msgstr "Banco:"
1338
1339#. module: bank_management
1340#: help:print.model,model:0
1341msgid "Introduzca en este campo el modelo que sera enviado directamente a la impresora"
1342msgstr "Introduzca en este campo el modelo que sera enviado directamente a la impresora"
1343
1344#. module: bank_management
1345#: field:ir.print,model_id:0
1346msgid "Document"
1347msgstr "Document"
1348
1349#. module: bank_management
1350#: view:account.voucher:0
1351msgid "Bill Payment"
1352msgstr "Pago factura"
1353
1354#. module: bank_management
1355#: field:check.book,rate_user:0
1356msgid "Use Rate"
1357msgstr "Tasa de uso"
1358
1359#. module: bank_management
1360#: report:chk.book.request:0
1361msgid "("
1362msgstr "("
1363
1364#. module: bank_management
1365#: view:account.voucher:0
1366msgid "Set to Draft"
1367msgstr "Cambiar a borrador"
1368
1369#. module: bank_management
1370#: selection:print.lpr.option,orientation_requested:0
1371msgid "Reverse landscape (270 degrees)"
1372msgstr "Reverse landscape (270 degrees)"
1373
1374#. module: bank_management
1375#: selection:voucher.pay.support.wizard,cancel_check_note:0
1376msgid "Others"
1377msgstr "Otros"
1378
1379#. module: bank_management
1380#: model:ir.model,name:bank_management.model_print_gs_option
1381msgid " ftp://mirror.switch.ch/mirror/ghost/gs5man_e.pdf "
1382msgstr " ftp://mirror.switch.ch/mirror/ghost/gs5man_e.pdf "
1383
1384#. module: bank_management
1385#: help:check.book,rate_user:0
1386msgid "percent used a checkbook"
1387msgstr "percent used a checkbook"
1388
1389#. module: bank_management
1390#: selection:check.book.wizard,state_check_note:0
1391msgid "Without Filter"
1392msgstr "Without Filter"
1393
1394#. module: bank_management
1395#: report:chk.book:0
1396#: report:wizard.general.book:0
1397msgid "CHECK BOOK REPORT"
1398msgstr "REPORTE DE CHEQUERAS"
1399
1400#. module: bank_management
1401#: code:addons/bank_management/check/voucher_pay_support.py:140
1402#, python-format
1403msgid "Enter the acknowledgment"
1404msgstr "Ingrese el Acuse de Recibido"
1405
1406#. module: bank_management
1407#: constraint:res.bank:0
1408msgid "Error ! Specified bank name already exists for any other registered bank. "
1409msgstr "Error ! El nombre del banco ya esta siendo usado. "
1410
1411#. module: bank_management
1412#: view:voucher.pay.support.wizard:0
1413msgid "print confirmation"
1414msgstr "Confirmar impresión"
1415
1416#. module: bank_management
1417#: report:cash_amount.3:0
1418#: report:cash_receipt.drcr.3:0
1419msgid "Debito"
1420msgstr "Debito"
1421
1422#. module: bank_management
1423#: view:voucher.pay.support:0
1424msgid "See Voucher Payment Summary"
1425msgstr "Ver comprobante de pago resumido"
1426
1427#. module: bank_management
1428#: constraint:voucher.pay.support:0
1429msgid "Warning ! You can not duplicate this document"
1430msgstr "Advertencia ! Ud no puede duplicar este documento"
1431
1432#. module: bank_management
1433#: help:res.bank,min_lim:0
1434msgid "Minimum amount for check"
1435msgstr "Monto mínimo para los cheques"
1436
1437#. module: bank_management
1438#: help:res.partner.bank,journal_id:0
1439msgid "In which journal the entries will be made"
1440msgstr "Diario contable en donde se realizaran los asientos"
1441
1442#. module: bank_management
1443#: selection:cancel.voucher.pay.support,cancel_check_note:0
1444msgid "Error de Impresion"
1445msgstr "Error de Impresion"
1446
1447#. module: bank_management
1448#: report:chk.book:0
1449#: report:wizard.general.book:0
1450msgid "CHECK NOTE NRO."
1451msgstr "NRO. DE CHEQUE"
1452
1453#. module: bank_management
1454#: field:cancel.voucher.pay.support,max_lim:0
1455msgid "Limite maximo (Bs.)"
1456msgstr "Limite maximo (Bs.)"
1457
1458#. module: bank_management
1459#: view:check.book.request:0
1460#: selection:check.book.request,state:0
1461msgid "Send"
1462msgstr "Enviado"
1463
1464#. module: bank_management
1465#: field:print.model.reports,gs_use:0
1466msgid "Use Ghostscript?"
1467msgstr "Use Ghostscript?"
1468
1469#. module: bank_management
1470#: help:res.company,expiry:0
1471msgid "Number of the days on which the check could be cashed"
1472msgstr "Number of the days on which the check could be cashed"
1473
1474#. module: bank_management
1475#: view:res.partner.bank:0
1476msgid "Bank Account Owner"
1477msgstr "Propietario cuenta bancaria"
1478
1479#. module: bank_management
1480#: selection:print.lpr.option,orientation_requested:0
1481msgid "Reverse portrait (180 degrees)"
1482msgstr "Reverse portrait (180 degrees)"
1483
1484#. module: bank_management
1485#: report:chk.book:0
1486#: report:wizard.general.book:0
1487msgid "CHECKS AVAILABLE:"
1488msgstr "CHEQUES DISPONIBLES:"
1489
1490#. module: bank_management
1491#: field:voucher.pay.support,name:0
1492msgid "Acknowledgment of receipt"
1493msgstr "Acuse de recibo"
1494
1495#. module: bank_management
1496#: model:ir.actions.report.xml,name:bank_management.report_account_voucher_amt3
1497msgid "Voucher Payment Detailed"
1498msgstr "Comprobante de pago detallado"
1499
1500#. module: bank_management
1501#: code:addons/bank_management/check/report/reporte_check_book.py:119
1502#: code:addons/bank_management/check/report/reporte_wizard_general.py:194
1503#, python-format
1504msgid "Review Check book"
1505msgstr "Revisar chequera"
1506
1507#. module: bank_management
1508#: report:cash_amount.3:0
1509#: report:cash_receipt.drcr.3:0
1510msgid "Pagado"
1511msgstr "Pagado"
1512
1513#. module: bank_management
1514#: help:check.book,qty_check:0
1515msgid "Check note quantity of check book"
1516msgstr "Check note quantity of check book"
1517
1518#. module: bank_management
1519#: help:check.book,qty_check_selection:0
1520msgid "Quantity of check note will have the check book"
1521msgstr "Cantidad de cheques que poseera la chequera"
1522
1523#. module: bank_management
1524#: field:voucher.pay.support.wizard,bool_good:0
1525msgid "Printed"
1526msgstr "Printed"
1527
1528#. module: bank_management
1529#: report:chk.book:0
1530#: report:wizard.general.book:0
1531msgid "THIS DOCUMENT MAY HAVE STILL MISSING INFORMATION"
1532msgstr "ESTE DOCUMENTO TODAVIA PUEDE TENER INFORMACION FALTANTE"
1533
1534#. module: bank_management
1535#: field:check.book,from_suffix:0
1536msgid "From Suffix"
1537msgstr "Desde Sufijo"
1538
1539#. module: bank_management
1540#: report:cash_amount.3:0
1541msgid "Particulares"
1542msgstr "Particulares"
1543
1544#. module: bank_management
1545#: help:check.book.request,partner_id:0
1546msgid "Person authorized to withdraw the checkbook"
1547msgstr "Persona autorizda a retirar la chequera"
1548
1549#. module: bank_management
1550#: field:voucher.pay.support.wizard,check_note_id:0
1551msgid "Check No"
1552msgstr "Cheque No"
1553
1554#. module: bank_management
1555#: view:voucher.pay.support:0
1556msgid "Payment Made"
1557msgstr "Pagado"
1558
1559#. module: bank_management
1560#: report:cash_amount.3:0
1561msgid "Monto"
1562msgstr "Monto"
1563
1564#. module: bank_management
1565#: help:print.model.reports,num_copies:0
1566msgid "Set the number of copies to print"
1567msgstr "Set the number of copies to print"
1568
1569#. module: bank_management
1570#: view:res.partner.bank:0
1571msgid "Journal Entries"
1572msgstr "Asientos"
1573
1574#. module: bank_management
1575#: report:cash_amount.3:0
1576#: report:cash_receipt.drcr.3:0
1577msgid "Código de Cuenta:"
1578msgstr "Código de Cuenta:"
1579
1580#. module: bank_management
1581#: view:gral.check.book:0
1582msgid "Filter by Period"
1583msgstr "Filtrado por periodo"
1584
1585#. module: bank_management
1586#: report:wizard.general.book:0
1587msgid "TOTAL AMOUNT PAID"
1588msgstr "TOTAL AMOUNT PAID"
1589
1590#. module: bank_management
1591#: field:cancel.voucher.pay.support,notes:0
1592msgid "Motivo"
1593msgstr "Motivo"
1594
1595#. module: bank_management
1596#: help:print.model.reports,printer:0
1597msgid "Select the printer that will be used for print the report"
1598msgstr "Select the printer that will be used for print the report"
1599
1600#. module: bank_management
1601#: selection:print.lpr.option,media:0
1602msgid "DL"
1603msgstr "DL"
1604
1605#. module: bank_management
1606#: report:chk.book:0
1607#: report:wizard.general.book:0
1608msgid "BENEFICIARY"
1609msgstr "BENEFICIARIO"
1610
1611#. module: bank_management
1612#: view:voucher.pay.support:0
1613msgid "Checks Drawn"
1614msgstr "Cheque Retirado"
1615
1616#. module: bank_management
1617#: view:voucher.pay.support.wizard:0
1618msgid "Nota"
1619msgstr "Nota"
1620
1621#. module: bank_management
1622#: view:voucher.pay.support.wizard:0
1623msgid "Grounds for Annulment"
1624msgstr "Grounds for Annulment"
1625
1626#. module: bank_management
1627#: field:account.voucher,check_note_ids:0
1628#: view:check.book:0
1629#: field:check.book,check_note_ids:0
1630#: view:check.note:0
1631msgid "Checks"
1632msgstr "Cheques"
1633
1634#. module: bank_management
1635#: code:addons/bank_management/check/voucher_pay_support.py:157
1636#, python-format
1637msgid "You must enter Account Bank Transitional: %s"
1638msgstr "Debe introducir una cuenta bancaria transitoria: %s"
1639
1640#. module: bank_management
1641#: code:addons/bank_management/check/report/reporte_check_book.py:121
1642#: code:addons/bank_management/check/report/reporte_wizard_general.py:196
1643#, python-format
1644msgid "Hibernate Check book"
1645msgstr "Hibernar chequera"
1646
1647#. module: bank_management
1648#: selection:cancel.voucher.pay.support,type:0
1649#: selection:voucher.pay.support,type:0
1650#: view:voucher.pay.support.wizard:0
1651msgid "Cheque"
1652msgstr "Cheque"
1653
1654#. module: bank_management
1655#: code:addons/bank_management/check/report/reporte_check_book.py:60
1656#: code:addons/bank_management/check/report/reporte_wizard_general.py:66
1657#: view:check.book:0
1658#: selection:check.book,state:0
1659#: view:check.note:0
1660#: selection:check.note,state:0
1661#, python-format
1662msgid "Active"
1663msgstr "Activo"
1664
1665#. module: bank_management
1666#: view:check.book:0
1667msgid "Checks Note"
1668msgstr "Cheques"
1669
1670#. module: bank_management
1671#: field:print.model.reports,num_copies:0
1672msgid "Number of Copies"
1673msgstr "Number of Copies"
1674
1675#. module: bank_management
1676#: help:res.bank,max_lim:0
1677msgid "Maximum amount for check"
1678msgstr "Monto maximo para los cheques"
1679
1680#. module: bank_management
1681#: selection:cancel.voucher.pay.support,type:0
1682#: field:cancel.voucher.pay.support,wire:0
1683#: selection:voucher.pay.support,type:0
1684msgid "Transferencia"
1685msgstr "Transferencia"
1686
1687#. module: bank_management
1688#: report:cash_amount.3:0
1689msgid "Detalle de Pago:"
1690msgstr "Detalle de Pago:"
1691
1692#. module: bank_management
1693#: report:chk.book:0
1694#: report:wizard.general.book:0
1695msgid "STATE"
1696msgstr "ESTADO"
1697
1698#. module: bank_management
1699#: field:res.partner.bank,transitory_money:0
1700msgid "Transitory Money"
1701msgstr "Dinero en transito"
1702
1703#. module: bank_management
1704#: report:chk.book:0
1705#: report:wizard.general.book:0
1706msgid "ACTIVATION DATE:"
1707msgstr "FECHA DE ACTIVACION:"
1708
1709#. module: bank_management
1710#: model:ir.model,name:bank_management.model_voucher_pay_support_wizard
1711msgid "voucher.pay.support.wizard"
1712msgstr "voucher.pay.support.wizard"
1713
1714#. module: bank_management
1715#: field:check.book.wizard,hasta:0
1716msgid "To"
1717msgstr "Hasta"
1718
1719#. module: bank_management
1720#: view:voucher.pay.support.wizard:0
1721msgid "Process"
1722msgstr "Procesar"
1723
1724#. module: bank_management
1725#: field:cancel.voucher.pay.support,period_id:0
1726msgid "Periodo"
1727msgstr "Periodo"
1728
1729#. module: bank_management
1730#: model:ir.model,name:bank_management.model_account_voucher
1731msgid "Accounting Voucher"
1732msgstr "Comprobantes contables"
1733
1734#. module: bank_management
1735#: code:addons/bank_management/check/report/reporte_check_book.py:63
1736#: code:addons/bank_management/check/report/reporte_wizard_general.py:69
1737#: selection:check.note,state:0
1738#, python-format
1739msgid "Assigned"
1740msgstr "Asignado"
1741
1742#. module: bank_management
1743#: help:print.gs.option,device:0
1744msgid "Sets the device driver"
1745msgstr "Sets the device driver"
1746
1747#. module: bank_management
1748#: code:addons/bank_management/check/report/reporte_check_book.py:64
1749#: code:addons/bank_management/check/report/reporte_wizard_general.py:70
1750#: selection:cancel.voucher.pay.support,state:0
1751#: view:check.book:0
1752#: selection:check.book,state:0
1753#: selection:check.note,state:0
1754#: view:voucher.pay.support:0
1755#: selection:voucher.pay.support,state:0
1756#: selection:voucher.pay.support.wizard,state:0
1757#, python-format
1758msgid "Done"
1759msgstr "Hecho"
1760
1761#. module: bank_management
1762#: report:wizard.general.book:0
1763msgid "TOTAL AMOUNT COMMITTED"
1764msgstr "TOTAL AMOUNT COMMITTED"
1765
1766#. module: bank_management
1767#: selection:cancel.voucher.pay.support,state:0
1768#: view:voucher.pay.support:0
1769#: selection:voucher.pay.support,state:0
1770#: selection:voucher.pay.support.wizard,state:0
1771msgid "Open"
1772msgstr "Abierto"
1773
1774#. module: bank_management
1775#: view:account.voucher:0
1776msgid "Customer Payment"
1777msgstr "Pago cliente"
1778
1779#. module: bank_management
1780#: view:voucher.pay.support:0
1781#: field:voucher.pay.support,wire:0
1782#: view:voucher.pay.support.wizard:0
1783#: selection:voucher.pay.support.wizard,type:0
1784#: field:voucher.pay.support.wizard,wire:0
1785msgid "Transfer"
1786msgstr "Transferencia"
1787
1788#. module: bank_management
1789#: field:voucher.pay.support.wizard,expiry:0
1790msgid "expiration days"
1791msgstr "Días de caducidad"
1792
1793#. module: bank_management
1794#: help:check.book,date_draft:0
1795msgid "date of receipt of the checkbook"
1796msgstr "Fecha de recepción de la chequera"
1797
1798#. module: bank_management
1799#: field:voucher.pay.support.wizard,max_lim:0
1800msgid "Max Limit (Bs.)"
1801msgstr "Limite Max (Bs.)"
1802
1803#. module: bank_management
1804#: field:cancel.voucher.pay.support,bool_bad:0
1805msgid "No se imprimio"
1806msgstr "No se imprimio"
1807
1808#. module: bank_management
1809#: view:account.voucher:0
1810msgid "Payment Method"
1811msgstr "Método de pago"
1812
1813#. module: bank_management
1814#: report:chk.book.request:0
1815msgid "Attentively,"
1816msgstr "Atentamente,"
1817
1818#. module: bank_management
1819#: view:voucher.pay.support:0
1820msgid "Cancel Checks"
1821msgstr "Cheques cancelados"
1822
1823#. module: bank_management
1824#: selection:print.lpr.option,orientation_requested:0
1825msgid "Portrait (no rotation)"
1826msgstr "Portrait (no rotation)"
1827
1828#. module: bank_management
1829#: selection:check.book,cancel_check:0
1830msgid "Lost or misplaced"
1831msgstr "Perdida o extravío"
1832
1833#. module: bank_management
1834#: help:check.book,state:0
1835msgid "Check book state"
1836msgstr "Estado actual de la chequera"
1837
1838#. module: bank_management
1839#: help:print.model.reports,state:0
1840msgid "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"
1841msgstr "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"
1842
1843#. module: bank_management
1844#: code:addons/bank_management/check/check_book.py:243
1845#: code:addons/bank_management/check/check_book_request.py:137
1846#, python-format
1847msgid "you can not duplicate this document!!!"
1848msgstr "Ud. no puede duplicar este documento!!!"
1849
1850#. module: bank_management
1851#: selection:gral.check.book,state_check_note:0
1852msgid "Charged"
1853msgstr "Cobrado"
1854
1855#. module: bank_management
1856#: view:check.book.request:0
1857msgid "Request Letter"
1858msgstr "Carta de solicitud"
1859
1860#. module: bank_management
1861#: constraint:res.bank:0
1862msgid "Error ! Minimum limit must be less than maximun limit"
1863msgstr "Error ! El límite Mínimo debe ser menor que el límite máximo"
1864
1865#. module: bank_management
1866#: model:ir.actions.report.xml,name:bank_management.report_account_voucher3
1867msgid "Voucher Payment Summary"
1868msgstr "Comprobante de pago resumido"
1869
1870#. module: bank_management
1871#: model:ir.model,name:bank_management.model_print_lpr_option
1872msgid " http://www.cups.org/documentation.php/options.html "
1873msgstr " http://www.cups.org/documentation.php/options.html "
1874
1875#. module: bank_management
1876#: report:cash_amount.3:0
1877#: report:cash_receipt.drcr.3:0
1878msgid "Cash Receipt Voucher"
1879msgstr "Comprobante de cobro efectivo"
1880
1881#. module: bank_management
1882#: field:print.model.reports,state:0
1883msgid "States"
1884msgstr "States"
1885
1886#. module: bank_management
1887#: help:print.lpr.option,media:0
1888msgid "Sets the media size"
1889msgstr "Sets the media size"
1890
1891#. module: bank_management
1892#: view:account.voucher:0
1893msgid "Open Balance"
1894msgstr "Abrir balance"
1895
1896#. module: bank_management
1897#: selection:cancel.voucher.pay.support,cancel_check_note:0
1898msgid "Otros"
1899msgstr "Otros"
1900
1901#. module: bank_management
1902#: report:chk.book:0
1903#: report:wizard.general.book:0
1904msgid "CHECK BOOK:"
1905msgstr "CHEQUERA:"
1906
1907#. module: bank_management
1908#: code:addons/bank_management/check/wizard/voucher_pay_support_wizard_pay_order.py:215
1909#, python-format
1910msgid "You have to enter the transitory bank account: %s"
1911msgstr "Ud. debe introducir la cuenta bancaria transitoria: %s"
1912
1913#. module: bank_management
1914#: help:print.lpr.option,name:0
1915msgid "Set the name for this LPR Profile"
1916msgstr "Set the name for this LPR Profile"
1917
1918#. module: bank_management
1919#: model:ir.model,name:bank_management.model_check_book_request
1920msgid "check.book.request"
1921msgstr "check.book.request"
1922
1923#. module: bank_management
1924#: help:res.partner.bank,trans_account_id:0
1925msgid "Account which the money that has no been charged"
1926msgstr "Cuenta en la cual se encuentra el dinero no cobrado"
1927
1928#. module: bank_management
1929#: help:print.model.reports,depend_state:0
1930msgid "Checking this field to allow the printing by states filter"
1931msgstr "Checking this field to allow the printing by states filter"
1932
1933#. module: bank_management
1934#: view:account.voucher:0
1935msgid "Credits"
1936msgstr "Haber"
1937
1938#. module: bank_management
1939#: help:account.voucher,pay_bank:0
1940msgid "Check this box if you want to pay with check or transfer"
1941msgstr "Seleccione esta opción sí desea pagar con cheque"
1942
1943#. module: bank_management
1944#: field:cancel.voucher.pay.support,company_id:0
1945#: field:voucher.pay.support,company_id:0
1946#: field:voucher.pay.support.wizard,company_id:0
1947msgid "Company"
1948msgstr "Compañia"
1949
1950#. module: bank_management
1951#: field:print.model.reports,lpr_option_id:0
1952msgid "Lpr Options"
1953msgstr "Lpr Options"
1954
1955#. module: bank_management
1956#: model:ir.model,name:bank_management.model_print_model
1957msgid "Class to introduce the model to send to the printer"
1958msgstr "Class to introduce the model to send to the printer"
1959
1960#. module: bank_management
1961#: selection:voucher.pay.support.wizard,cancel_check_note:0
1962msgid "Print error"
1963msgstr "Error de impresión"
1964
1965#. module: bank_management
1966#: field:voucher.pay.support.wizard,notes:0
1967msgid "Reason"
1968msgstr "Motivo"
1969
1970#. module: bank_management
1971#: code:addons/bank_management/check/report/reporte_check_book.py:77
1972#: code:addons/bank_management/check/report/reporte_wizard_general.py:83
1973#: selection:check.note,cancel_check_note:0
1974#: selection:voucher.pay.support,cancel_check_note:0
1975#: selection:voucher.pay.support.wizard,cancel_check_note:0
1976#, python-format
1977msgid "Returned check"
1978msgstr "Cheque devuelto"
1979
1980#. module: bank_management
1981#: view:check.book.request:0
1982msgid "Chequeras"
1983msgstr "Chequeras"
1984
1985#. module: bank_management
1986#: view:cancel.voucher.pay.support:0
1987msgid "Cancellation Voucher Payment"
1988msgstr "Cancellation Voucher Payment"
1989
1990#. module: bank_management
1991#: report:chk.book.request:0
1992msgid "to receive on our behalf stubs requested."
1993msgstr "para que reciba en nuestro nombre los talonarios solicitados."
1994
1995#. module: bank_management
1996#: report:chk.book:0
1997#: report:wizard.general.book:0
1998msgid "VOIDED CHECK:"
1999msgstr "CHEQUES ANULADOS:"
2000
2001#. module: bank_management
2002#: help:gral.check.book,state_check_note:0
2003msgid "Check note state on voucher"
2004msgstr "Estado del cheque en el comprobante"
2005
2006#. module: bank_management
2007#: model:ir.module.module,shortdesc:bank_management.module_meta_information
2008msgid "Bank Management"
2009msgstr "Bank Management"
2010
2011#. module: bank_management
2012#: view:voucher.pay.support:0
2013msgid "See Voucher Payment"
2014msgstr "Ver comprobante de pago"
2015
2016#. module: bank_management
2017#: code:addons/bank_management/check/report/reporte_check_book.py:75
2018#: code:addons/bank_management/check/report/reporte_wizard_general.py:81
2019#: selection:check.note,cancel_check_note:0
2020#: selection:voucher.pay.support,cancel_check_note:0
2021#: selection:voucher.pay.support.wizard,cancel_check_note:0
2022#, python-format
2023msgid "Payment is not made"
2024msgstr "Pago sin realizar"
2025
2026#. module: bank_management
2027#: model:ir.actions.act_window,help:bank_management.action_voucher_pay_support
2028msgid "With voucher pay support you can support delivery and check transactions."
2029msgstr "Con soporte de pago Ud. puede enviar revisar transacciones."
2030
2031#. module: bank_management
2032#: field:check.book,notes:0
2033#: field:check.note,notes:0
2034#: field:voucher.pay.support,notes:0
2035msgid "Note"
2036msgstr "Nota"
2037
2038#. module: bank_management
2039#: field:gral.check.book,hasta:0
2040msgid "Ending Date"
2041msgstr "Fecha Final"
2042
2043#. module: bank_management
2044#: selection:check.book,qty_check_selection:0
2045msgid "50"
2046msgstr "50"
2047
2048#. module: bank_management
2049#: field:res.partner.bank,balance:0
2050msgid "Account Balance"
2051msgstr "Balance contable"
2052
2053#. module: bank_management
2054#: selection:print.gs.option,device:0
2055msgid "Epson-compatible 9-pin, intermediate resolution"
2056msgstr "Epson-compatible 9-pin, intermediate resolution"
2057
2058#. module: bank_management
2059#: help:gral.check.book,tiempo:0
2060msgid "period in which to generate the report"
2061msgstr "period in which to generate the report"
2062
2063#. module: bank_management
2064#: sql_constraint:account.journal:0
2065msgid "The code of the journal must be unique per company !"
2066msgstr "¡El código del diario debe ser único por compañía!"
2067
2068#. module: bank_management
2069#: view:cancel.voucher.pay.support:0
2070msgid "Execute Cancellation"
2071msgstr "Ejecutar Cancelación"
2072
2073#. module: bank_management
2074#: help:print.model.reports,report_id:0
2075msgid "Set in this field, the model to send directing to the printer"
2076msgstr "Set in this field, the model to send directing to the printer"
2077
2078#. module: bank_management
2079#: model:ir.actions.act_window,name:bank_management.action_pay_order_wizard_soporte
2080#: model:ir.actions.act_window,name:bank_management.action_voucher_pay_support
2081#: model:ir.ui.menu,name:bank_management.menu_voucher_pay_support
2082#: view:voucher.pay.support:0
2083msgid "Paid Support"
2084msgstr "Soporte de pago"
2085
2086#. module: bank_management
2087#: report:chk.book:0
2088#: report:wizard.general.book:0
2089msgid "BANKING ENTITY:"
2090msgstr "ENTIDAD BANCARIA:"
2091
2092#. module: bank_management
2093#: code:addons/bank_management/check/report/reporte_check_book.py:120
2094#: code:addons/bank_management/check/report/reporte_wizard_general.py:195
2095#, python-format
2096msgid "Active Check book"
2097msgstr "Chequera activa"
2098
2099#. module: bank_management
2100#: view:res.partner.bank:0
2101msgid "Search Account Bank"
2102msgstr "Busqueda cuenta bancaria"
2103
2104#. module: bank_management
2105#: constraint:res.company:0
2106msgid "Error! You can not create recursive companies."
2107msgstr "¡Error! No puede crear compañías recursivas."
2108
2109#. module: bank_management
2110#: view:check.note:0
2111#: field:check.note,date_done:0
2112msgid "Collection Date"
2113msgstr "Fecha de cobro"
2114
2115#. module: bank_management
2116#: field:print.model.reports,printer:0
2117msgid "Printers"
2118msgstr "Printers"
2119
2120#. module: bank_management
2121#: help:res.company,transitory:0
2122msgid "Apply transitory account"
2123msgstr "Apply transitory account"
2124
2125#. module: bank_management
2126#: report:cash_amount.3:0
2127#: report:cash_receipt.drcr.3:0
2128msgid "Comprobante de Pago Bancario"
2129msgstr "Comprobante de Pago Bancario"
2130
2131#. module: bank_management
2132#: view:gral.check.book:0
2133msgid "General Report Checkbooks"
2134msgstr "Reporte General de Chequeras"
2135
2136#. module: bank_management
2137#: help:account.voucher,one_partner:0
2138msgid "Check this box if there only one supplier or customer for this voucher"
2139msgstr "Marque esta caja si solo hay un proveedor o cliente en este comprobante"
2140
2141#. module: bank_management
2142#: field:print.model,model_report_ids:0
2143msgid "Modelo Reports"
2144msgstr "Modelo Reports"
2145
2146#. module: bank_management
2147#: code:addons/bank_management/check/report/reporte_check_book.py:118
2148#: code:addons/bank_management/check/report/reporte_wizard_general.py:193
2149#, python-format
2150msgid "Draft Check book"
2151msgstr "Chequeras en borrador"
2152
2153#. module: bank_management
2154#: report:chk.book.request:0
2155msgid "Authorizing"
2156msgstr "Autorizado"
2157
2158#. module: bank_management
2159#: report:chk.book.request:0
2160msgid "And we thank you in advance of you."
2161msgstr "Agradecemos de antemano y quedamos de Uds."
2162
2163#. module: bank_management
2164#: view:res.company:0
2165msgid "Configuration"
2166msgstr "Configuración"
2167
2168#. module: bank_management
2169#: report:cash_amount.3:0
2170#: report:cash_receipt.drcr.3:0
2171msgid "Número de Cheque"
2172msgstr "Número de Cheque"
2173
2174#. module: bank_management
2175#: model:ir.module.module,description:bank_management.module_meta_information
2176msgid "\n"
2177" - Management of check book, check note\n"
2178" - Print format of venezuelan check note\n"
2179" - Traceability of check note throught paid support\n"
2180" - Account voucher payment \n"
2181"---------------------------------------------------------\n"
2182" 1.- Create bank account\n"
2183" 2.- Create check book request\n"
2184" 3.- Load check note\n"
2185" 4.- Make supplier invoice\n"
2186" 5.- Create one supplier payment\n"
2187" 6.- Create support (click button)\n"
2188" "
2189msgstr "\n"
2190" - Administración de chequeras, cheques\n"
2191" - Impresión de cheques con formatos Venezolanos\n"
2192" - Trazabilidad de cheques a través de soportes de pago\n"
2193" - Comprobante de pago \n"
2194"---------------------------------------------------------\n"
2195" 1.- Crear cuentas bancarias\n"
2196" 2.- Crear solicitud de chequeras\n"
2197" 3.- Cargar cheques\n"
2198" 4.- Realizar factura de proveedor\n"
2199" 5.- Crear pago un solo proveedor\n"
2200" 6.- Crear soporte (click button)\n"
2201" "
2202
2203#. module: bank_management
2204#: field:print.lpr.option,lpi:0
2205msgid "Number of Lines Per Inch"
2206msgstr "Number of Lines Per Inch"
2207
2208#. module: bank_management
2209#: view:cancel.voucher.pay.support:0
2210msgid "Abort Cancellation"
2211msgstr "Suspender Cancelación"
2212
2213#. module: bank_management
2214#: field:cancel.voucher.pay.support,bool_good:0
2215msgid "Si se imprimio"
2216msgstr "Si se imprimio"
2217
2218#. module: bank_management
2219#: model:ir.model,name:bank_management.model_account_voucher_line
2220msgid "Voucher Lines"
2221msgstr "Líneas de comprobante"
2222
2223#. module: bank_management
2224#: report:chk.book:0
2225#: report:wizard.general.book:0
2226msgid "CHECKS NUMBER:"
2227msgstr "NUMERO DE CHEQUES:"
2228
2229#. module: bank_management
2230#: view:voucher.pay.support.wizard:0
2231msgid "check generation"
2232msgstr "Generación de cheque"
2233
2234#. module: bank_management
2235#: help:res.company,header_report:0
2236msgid "Set the header to place the report when it is not suitable for print"
2237msgstr "Set the header to place the report when it is not suitable for print"
2238
2239#. module: bank_management
2240#: view:voucher.pay.support.wizard:0
2241msgid "In progress..."
2242msgstr "En progreso..."
2243
2244#. module: bank_management
2245#: code:addons/bank_management/check/report/reporte_check_book.py:58
2246#: code:addons/bank_management/check/report/reporte_wizard_general.py:64
2247#: selection:cancel.voucher.pay.support,state:0
2248#: view:check.book:0
2249#: selection:check.book,state:0
2250#: view:check.book.request:0
2251#: selection:check.book.request,state:0
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches