=== removed directory 'account_balance_reporting'
=== removed file 'account_balance_reporting/__init__.py'
--- account_balance_reporting/__init__.py	2012-12-11 10:06:23 +0000
+++ account_balance_reporting/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,34 +0,0 @@
-# -*- coding: utf-8 -*-
-# -*- encoding: utf-8 -*-
-##############################################################################
-#
-#    OpenERP - Account balance reporting engine
-#    Copyright (C) 2009 Pexego Sistemas Informáticos. All Rights Reserved
-#    AvanzOSC, Avanzed Open Source Consulting 
-#    Copyright (C) 2011-2012 Iker Coranti (www.avanzosc.com). All Rights Reserved
-#    $Id$
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU General Public License for more details.
-#
-#    You should have received a copy of the GNU General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-##############################################################################
-
-"""
-Account balance reporting engine
-"""
-__author__ = "Borja López Soilán (Pexego) - borjals@pexego.es"
-
-import account_balance_reporting_template
-import account_balance_reporting
-import report
-import wizard

=== removed file 'account_balance_reporting/__openerp__.py'
--- account_balance_reporting/__openerp__.py	2012-12-11 10:06:23 +0000
+++ account_balance_reporting/__openerp__.py	1970-01-01 00:00:00 +0000
@@ -1,70 +0,0 @@
-# -*- coding: utf-8 -*-
-# -*- encoding: utf-8 -*-
-##############################################################################
-#
-#    OpenERP - Account balance reporting engine
-#    Copyright (C) 2009 Pexego Sistemas Informáticos. All Rights Reserved
-#    AvanzOSC, Avanzed Open Source Consulting 
-#    Copyright (C) 2011-2012 Iker Coranti (www.avanzosc.com). All Rights Reserved
-#    $Id$
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU General Public License for more details.
-#
-#    You should have received a copy of the GNU General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-##############################################################################
-
-{
-        "name" : "Account balance reporting engine",
-        "version" : "0.2",
-        "author" : "Pexego",
-        "website" : "http://www.pexego.es",
-        "category" : "Enterprise Specific Modules",
-        "description": """
-The module allows the user to create account balance reports and templates,
-comparing the values of 'accounting concepts' between two fiscal years
-or a set of fiscal periods.
-
-Accounting concepts values can be calculated as the sum of some account balances,
-the sum of its children, other account concepts or constant values.
-
-Generated reports are stored as objects on the server,
-so you can check them anytime later or edit them
-(to add notes for example) before printing.
-
-The module lets the user add new templates of the reports concepts,
-and associate them a specific "XML reports" (OpenERP RML files for example)
-with the design used when printing.
-So it is very easy to add predefined country-specific official reports.
-
-The user interface has been designed to be as much user-friendly as it can be.
-
-Note: It has been designed to meet Spanish/Spain localization needs,
-but it might be used as a generic accounting report engine.
-            """,
-        "depends" : [
-                'base',
-                'account',
-            ],
-        "init_xml" : [
-            ],
-        "demo_xml" : [ ],
-        "update_xml" : [
-                'security/ir.model.access.csv',
-                'account_balance_reporting_wizard.xml',
-                'account_balance_reporting_template_view.xml',
-                'account_balance_reporting_view.xml',
-                'account_balance_reporting_workflow.xml',
-                'account_balance_reporting_reports.xml',
-            ],
-        "installable": True
-}

=== removed file 'account_balance_reporting/account_balance_reporting.py'
--- account_balance_reporting/account_balance_reporting.py	2012-12-11 10:06:23 +0000
+++ account_balance_reporting/account_balance_reporting.py	1970-01-01 00:00:00 +0000
@@ -1,565 +0,0 @@
-# -*- coding: utf-8 -*-
-# -*- encoding: utf-8 -*-
-##############################################################################
-#
-#    OpenERP - Account balance reporting engine
-#    Copyright (C) 2009 Pexego Sistemas Informáticos. All Rights Reserved
-#    $Id$
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU General Public License for more details.
-#
-#    You should have received a copy of the GNU General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-##############################################################################
-
-"""
-Account balance report objects
-
-Generic account balance report document (with header and detail lines).
-Designed following the needs of the
-Spanish/Spain localization.
-"""
-__author__ = "Borja López Soilán (Pexego)"
-
-
-from osv import fields, osv
-import re
-import time
-from tools.translate import _
-import netsvc
-
-################################################################################
-# CSS classes for the account line templates
-################################################################################
-
-CSS_CLASSES = [('default','Default'),('l1', 'Level 1'), ('l2', 'Level 2'),
-                ('l3', 'Level 3'), ('l4', 'Level 4'), ('l5', 'Level 5')]
-
-################################################################################
-# Account balance report (document / header)
-################################################################################
-
-class account_balance_reporting(osv.osv):
-    """
-    Account balance report.
-    It stores the configuration/header fields of an account balance report,
-    and the linked lines of detail with the values of the accounting concepts
-    (values generated from the selected template lines of detail formulas).
-    """
-
-    #_inherit = "account.common.account.report"
-    _name = "account.balance.reporting"
-
-    _columns = {
-        # Name of this report
-        'name': fields.char('Name', size=64, required=True, select=True),
-        # Template used to calculate this report
-        'template_id': fields.many2one('account.balance.reporting.template', 'Template', ondelete='set null', required=True, select=True,
-                            states = {'calc_done': [('readonly', True)], 'done': [('readonly', True)]}),
-        # Date of the last calculation
-        'calc_date': fields.datetime("Calculation date"),
-        # State of the report
-        'state': fields.selection([('draft','Draft'),('calc','Processing'),('calc_done','Processed'),('done','Done'),('canceled','Canceled')], 'State'),
-        # Company
-        'company_id': fields.many2one('res.company', 'Company', ondelete='cascade', readonly=True, required=True),
-        #
-        # Current fiscal year and it's (selected) periods
-        #
-        'current_fiscalyear_id': fields.many2one('account.fiscalyear','Fiscal year 1', select=True, required=True,
-                            states = {'calc_done': [('readonly', True)], 'done': [('readonly', True)]}),
-        'current_period_ids': fields.many2many('account.period', 'account_balance_reporting_account_period_current_rel', 'account_balance_reporting_id', 'period_id', 'Fiscal year 1 periods',
-                            states = {'calc_done': [('readonly', True)], 'done': [('readonly', True)]}),
-        #
-        # Previous fiscal year and it's (selected) periods
-        #
-        'previous_fiscalyear_id': fields.many2one('account.fiscalyear','Fiscal year 2', select=True,
-                            states = {'calc_done': [('readonly', True)], 'done': [('readonly', True)]}),
-        'previous_period_ids': fields.many2many('account.period', 'account_balance_reporting_account_period_previous_rel', 'account_balance_reporting_id', 'period_id', 'Fiscal year 2 periods',
-                            states = {'calc_done': [('readonly', True)], 'done': [('readonly', True)]}),
-    }
-
-    _defaults = {
-        # Current company by default:
-        'company_id': lambda self, cr, uid, context: self.pool.get('res.users').browse(cr, uid, uid, context).company_id.id,
-        # Draft state by default:
-        'state': lambda *a: 'draft',
-    }
-
-    #
-    # Actions ##################################################################
-    #
-
-    def action_calculate(self, cr, uid, ids, context=None):
-        """
-        Called when the user presses the Calculate button.
-        It will use the report template to generate lines of detail for the
-        report with calculated values.
-        """
-        report_line_facade = self.pool.get('account.balance.reporting.line')
-
-        # Set the state to 'calculating'
-        self.write(cr, uid, ids, {
-                'state': 'calc',
-                'calc_date': time.strftime('%Y-%m-%d %H:%M:%S')
-            })
-
-        #
-        # Replace the lines of detail of the report with new lines from its template
-        #
-
-        reports = self.browse(cr, uid, ids, context)
-        for report in reports:
-            # Clear the report data (unlink the lines of detail)
-            report_line_facade.unlink(cr, uid, [line.id for line in report.line_ids])
-
-            #
-            # Fill the report with a 'copy' of the lines of its template (if it has one)
-            #
-            if report.template_id:
-                for template_line in report.template_id.line_ids:
-                    report_line_facade.create(cr, uid, {
-                            'code': template_line.code,
-                            'name': template_line.name,
-                            'report_id': report.id,
-                            'template_line_id': template_line.id,
-                            'parent_id': None,
-                            'current_value': None,
-                            'previous_value': None,
-                            'sequence': template_line.sequence,
-                            'css_class': template_line.css_class,
-                        }, context)
-
-        #
-        # Set the parents of the lines in the report
-        # Note: We reload the reports objects to refresh the lines of detail.
-        #
-        reports = self.browse(cr, uid, ids, context)
-        for report in reports:
-            if report.template_id:
-                #
-                # Establecemos los padres de las líneas (ahora que ya están creados)
-                #
-                for line in report.line_ids:
-                    if line.template_line_id and line.template_line_id.parent_id:
-                        parent_line_id = report_line_facade.search(cr, uid, [('report_id', '=', report.id), ('code', '=', line.template_line_id.parent_id.code)])
-                        report_line_facade.write(cr, uid, line.id, {
-                                'parent_id': len(parent_line_id) and parent_line_id[0] or None,
-                            }, context)
-
-        #
-        # Calculate the values of the lines
-        # Note: We reload the reports objects to refresh the lines of detail.
-        #
-        reports = self.browse(cr, uid, ids, context)
-        for report in reports:
-            if report.template_id:
-                # Refresh the report's lines values
-                for line in report.line_ids:
-                    line.refresh_values()
-
-                # Set the report as calculated
-                self.write(cr, uid, [report.id], {
-                        'state': 'calc_done'
-                    })
-            else:
-                # Ouch! no template: Going back to draft state.
-                self.write(cr, uid, [report.id], {'state': 'draft'})
-        return True
-
-
-    def action_confirm(self, cr, uid, ids, context=None):
-        """
-        Called when the user clicks the confirm button.
-        """
-        self.write(cr, uid, ids, {'state': 'done'})
-        return True
-
-
-    def action_cancel(self, cr, uid, ids, context=None):
-        """
-        Called when the user clicks the cancel button.
-        """
-        self.write(cr, uid, ids, {'state': 'canceled'})
-        return True
-
-    def action_recover(self, cr, uid, ids, context=None):
-        """
-        Called when the user clicks the draft button to create
-        a new workflow instance.
-        """
-        self.write(cr, uid, ids, {'state': 'draft', 'calc_date': None})
-        wf_service = netsvc.LocalService("workflow")
-        for item_id in ids:
-            wf_service.trg_create(uid, 'account.balance.reporting', item_id, cr)
-        return True
-
-    def calculate_action(self, cr, uid, ids, context):
-        """
-        Calculate the selected balance report data.
-        """
-        report_id = None
-        #if data.get('model') == 'account.balance.reporting':
-            #report_id = data.get('id')
-	report_id = ids
-        if report_id[0]:
-                #
-                # Send the calculate signal to the balance report
-                # to trigger action_calculate.
-                #
-                wf_service = netsvc.LocalService('workflow')
-                wf_service.trg_validate(uid, 'account.balance.reporting', report_id[0], 'calculate', cr)
-        return 'close'
-
-account_balance_reporting()
-
-
-
-################################################################################
-# Account balance report line of detail (accounting concept)
-################################################################################
-
-class account_balance_reporting_line(osv.osv):
-    """
-    Account balance report line / Accounting concept
-    One line of detail of the balance report representing an accounting
-    concept with its values.
-    The accounting concepts follow a parent-children hierarchy.
-    Its values (current and previous) are calculated based on the 'value'
-    formula of the linked template line.
-    """
-
-    _name = "account.balance.reporting.line"
-
-    _columns = {
-        # Parent report of this line
-        'report_id': fields.many2one('account.balance.reporting', 'Report', ondelete='cascade'),
-
-        # Concept official code (as specified by normalized models, will be used when printing)
-        'code': fields.char('Code', size=64, required=True, select=True),
-        # Concept official name (will be used when printing)
-        'name': fields.char('Name', size=256, required=True, select=True),
-        # Notes value (references to the notes)
-        'notes': fields.text('Notes'),
-        # Concept value in this fiscal year
-        'current_value': fields.float('Fiscal year 1', digits=(16,2)),
-        # Concept value on the previous fiscal year
-        'previous_value': fields.float('Fiscal year 2', digits=(16,2)),
-        # Date of the last calculation
-        'calc_date': fields.datetime("Calculation date"),
-        # Order sequence, it's also used for grouping into sections, that's why it is a char
-        'sequence': fields.char('Sequence', size=32, required=False),
-        # CSS class, used when printing to set the style of the line
-        'css_class': fields.selection(CSS_CLASSES, 'CSS Class', required=False),
-        # Linked template line used to calculate this line values
-        'template_line_id': fields.many2one('account.balance.reporting.template.line', 'Line template', ondelete='set null'),
-        # Parent accounting concept
-        'parent_id': fields.many2one('account.balance.reporting.line', 'Parent', ondelete='cascade'),
-        # Children accounting concepts
-        'child_ids': fields.one2many('account.balance.reporting.line', 'parent_id', 'Children'),
-    }
-
-    _defaults = {
-        # Use context report_id as the the parent report
-        'report_id': lambda self, cr, uid, context: context.get('report_id', None),
-        # Default css class (so we always have a class)
-        'css_class': lambda *a: 'default',
-    }
-
-    # Lines are sorted by its sequence and code
-    _order = "sequence, code"
-
-    # Don't let the user repeat codes in the report (the codes will be used to look up accounting concepts)
-    _sql_constraints = [
-        ('report_code_uniq', 'unique (report_id,code)', _("The code must be unique for this report!"))
-    ]
-
-
-
-    def name_get(self, cr, uid, ids, context=None):
-        """
-        Redefine the name_get method to show the code in the name ("[code] name").
-        """
-        if not len(ids):
-            return []
-        res=[]
-        for item in self.browse(cr,uid,ids):
-            res.append((item.id, "[%s] %s" % (item.code, item.name)))
-        return res
-
-
-    def name_search(self, cr, uid, name, args=[], operator='ilike', context={}, limit=80):
-        """
-        Redefine the name_search method to allow searching by code.
-        """
-        ids = []
-        if name:
-            ids = self.search(cr, uid, [('code','ilike',name)]+ args, limit=limit)
-        if not ids:
-            ids = self.search(cr, uid, [('name',operator,name)]+ args, limit=limit)
-        return self.name_get(cr, uid, ids, context=context)
-
-
-    def refresh_values(self, cr, uid, ids, context=None):
-        """
-        Recalculates the values of this report line using the
-        linked line template values formulas:
-
-        Depending on this formula the final value is calculated as follows:
-        - Empy template value: sum of (this concept) children values.
-        - Number with decimal point ("10.2"): that value (constant).
-        - Account numbers separated by commas ("430,431,(437)"): Sum of the account balances.
-            (The sign of the balance depends on the balance mode)
-        - Concept codes separated by "+" ("11000+12000"): Sum of those concepts values.
-        """
-        for line in self.browse(cr, uid, ids):
-            current_value = 0.0
-            previous_value = 0.0
-
-            #
-            # We use the same code to calculate both fiscal year values,
-            # just iterating over them.
-            #
-            for fyear in ('current', 'previous'):
-                value = 0
-                if fyear == 'current':
-                    template_value = line.template_line_id.current_value
-                elif fyear == 'previous':
-                    template_value = line.template_line_id.previous_value
-
-                # Remove characters after a ";" (we use ; for comments)
-                if template_value and len(template_value):
-                    template_value = template_value.split(';')[0]
-
-                if (fyear == 'current' and not line.report_id.current_fiscalyear_id) \
-                        or (fyear == 'previous' and not line.report_id.previous_fiscalyear_id):
-                    value = 0
-                else:
-                    #
-                    # Calculate the value
-                    #
-                    if not template_value or not len(template_value):
-                        #
-                        # Empy template value => sum of the children, of this concept, values.
-                        #
-                        for child in line.child_ids:
-                            if child.calc_date != child.report_id.calc_date:
-                                # Tell the child to refresh its values
-                                child.refresh_values()
-                                # Reload the child data
-                                child = self.browse(cr, uid, [child.id])[0]
-                            if fyear == 'current':
-                                value += float(child.current_value)
-                            elif fyear == 'previous':
-                                value += float(child.previous_value)
-
-                    elif re.match(r'^\-?[0-9]*\.[0-9]*$', template_value):
-                        #
-                        # Number with decimal points => that number value (constant).
-                        #
-                        value = float(template_value)
-
-                    elif re.match(r'^[0-9a-zA-Z,\(\)\*_]*$', template_value):
-                        #
-                        # Account numbers separated by commas => sum of the account balances.
-                        #
-                        # We will use the context to filter the accounts by fiscalyear
-                        # and periods.
-                        #
-                        if fyear == 'current':
-                            ctx = {
-                                'fiscalyear': line.report_id.current_fiscalyear_id.id,
-                                'periods': [p.id for p in line.report_id.current_period_ids],
-                            }
-                        elif fyear == 'previous':
-                            ctx = {
-                                'fiscalyear': line.report_id.previous_fiscalyear_id.id,
-                                'periods': [p.id for p in line.report_id.previous_period_ids],
-                            }
-
-                        # Get the mode of balance calculation from the template
-                        balance_mode = line.template_line_id.report_id.balance_mode
-
-                        # Get the balance
-                        value = line._get_account_balance(template_value, balance_mode, ctx)
-
-                    elif re.match(r'^[\+\-0-9a-zA-Z_\*]*$', template_value):
-                        #
-                        # Account concept codes separated by "+" => sum of the concept (report lines) values.
-                        #
-                        for line_code in re.findall(r'(-?\(?[0-9a-zA-Z_]*\)?)', template_value):
-                            # Check the sign of the code (substraction)
-                            if line_code.startswith('-') or line_code.startswith('('):
-                                sign = -1.0
-                            else:
-                                sign = 1.0
-                            line_code = line_code.strip('-()*')
-
-                            # Check if the code is valid (findall might return empty strings)
-                            if len(line_code) > 0:
-                                # Search for the line (perfect match)
-                                line_ids = self.search(cr, uid, [
-                                        ('report_id','=', line.report_id.id),
-                                        ('code', '=', line_code),
-                                    ])
-                                for child in self.browse(cr, uid, line_ids):
-                                    if child.calc_date != child.report_id.calc_date:
-                                        # Tell the child to refresh its values
-                                        child.refresh_values()
-                                        # Reload the child data
-                                        child = self.browse(cr, uid, [child.id])[0]
-                                    if fyear == 'current':
-                                        value += float(child.current_value) * sign
-                                    elif fyear == 'previous':
-                                        value += float(child.previous_value) * sign
-
-                #
-                # Negate the value if needed
-                #
-                if line.template_line_id.negate:
-                    value = -value
-
-                if fyear == 'current':
-                    current_value = value
-                elif fyear == 'previous':
-                    previous_value = value
-
-            # Write the values
-            self.write(cr, uid, [line.id], {
-                    'current_value': current_value,
-                    'previous_value': previous_value,
-                    'calc_date': line.report_id.calc_date
-                })
-        return True
-
-
-    def _get_account_balance(self, cr, uid, ids, code, balance_mode=0, context=None):
-        """
-        It returns the (debit, credit, balance*) tuple for a account with the
-        given code, or the sum of those values for a set of accounts
-        when the code is in the form "400,300,(323)"
-
-        Depending on the balance_mode, the balance is calculated as follows:
-          Mode 0: debit-credit for all accounts (default);
-          Mode 1: debit-credit, credit-debit for accounts in brackets;
-          Mode 2: credit-debit for all accounts;
-          Mode 3: credit-debit, debit-credit for accounts in brackets.
-
-        Also the user may specify to use only the debit or credit of the account
-        instead of the balance writing "debit(551)" or "credit(551)".
-        """
-        acc_facade = self.pool.get('account.account')
-        res = 0.0
-        line = self.browse(cr, uid, ids)[0]
-
-        assert balance_mode in ('0','1','2','3'), "balance_mode should be in [0..3]"
-
-        # We iterate over the accounts listed in "code", so code can be
-        # a string like "430+431+432-438"; accounts split by "+" will be added,
-        # accounts split by "-" will be substracted.
-        #
-        # We also take in consideration the balance_mode:
-        #   Mode 0: credit-debit for all accounts
-        #   Mode 1: debit-credit, credit-debit for accounts in brackets
-        #   Mode 2: credit-debit, debit-credit for accounts in brackets
-        #   Mode 3: credit-debit, debit-credit for accounts in brackets.
-        #
-        # And let the user get just the credit or debit if he specifies so.
-        #
-        for account_code in re.findall('(-?\w*\(?[0-9a-zA-Z_]*\)?)', code):
-            # Check if the code is valid (findall might return empty strings)
-            if len(account_code) > 0:
-                #
-                # Check the sign of the code (substraction)
-                #
-                if account_code.startswith('-'):
-                    sign = -1.0
-                    account_code = account_code[1:] # Strip the sign
-                else:
-                    sign = 1.0
-
-
-                if re.match(r'^debit\(.*\)$', account_code):
-                    # Use debit instead of balance
-                    mode = 'debit'
-                    account_code = account_code[6:-1] # Strip debit()
-                elif re.match(r'^credit\(.*\)$', account_code):
-                    # Use credit instead of balance
-                    mode = 'credit'
-                    account_code = account_code[7:-1] # Strip credit()
-                else:
-                    mode = 'balance'
-                    #
-                    # Calculate the balance, as given by the balance mode
-                    #
-                    if balance_mode == '1':
-                        # We use debit-credit as default balance,
-                        # but for accounts in brackets we use credit-debit
-                        if account_code.startswith('(') and account_code.endswith(')'):
-                            sign = -1.0 * sign
-                    elif balance_mode == '2':
-                        # We use credit-debit as the balance,
-                        sign = -1.0 * sign
-                    elif balance_mode == '3':
-                        # We use credit-debit as default balance,
-                        # but for accounts in brackets we use debit-credit
-                        if not account_code.startswith('(') and account_code.endswith(')'):
-                            sign = -1.0 * sign
-                    # Strip the brackets (if there are brackets)
-                    if account_code.startswith('(') and account_code.endswith(')'):
-                        account_code = account_code[1:-1]
-
-                # Search for the account (perfect match)
-                account_ids = acc_facade.search(cr, uid, [
-                        ('code', '=', account_code),
-                        ('company_id','=', line.report_id.company_id.id)
-                    ], context=context)
-                if not account_ids:
-                    # We didn't find the account, search for a subaccount ending with '0'
-                    account_ids = acc_facade.search(cr, uid, [
-                            ('code', '=like', '%s%%0' % account_code),
-                            ('company_id','=', line.report_id.company_id.id)
-                        ], context=context)
-
-                if len(account_ids) > 0:
-                    if mode == 'debit':
-                        res += acc_facade.browse(cr, uid, account_ids, context)[0].debit
-                    elif mode == 'credit':
-                        res += acc_facade.browse(cr, uid, account_ids, context)[0].credit
-                    else:
-                        res += acc_facade.browse(cr, uid, account_ids, context)[0].balance * sign
-                else:
-                    netsvc.Logger().notifyChannel('account_balance_reporting', netsvc.LOG_WARNING, "Account with code '%s' not found!" % account_code)
-
-        return res
-
-
-account_balance_reporting_line()
-
-
-class account_balance_reporting_withlines(osv.osv):
-    """
-    Extend the 'account balance report' to add a link to its
-    lines of detail.
-    """
-
-    _inherit = "account.balance.reporting"
-
-    _columns = {
-        'line_ids': fields.one2many('account.balance.reporting.line', 'report_id', 'Lines',
-                            states = {'done': [('readonly', True)]}),
-    }
-
-account_balance_reporting_withlines()
-
-
-
-

=== removed file 'account_balance_reporting/account_balance_reporting_reports.xml'
--- account_balance_reporting/account_balance_reporting_reports.xml	2012-12-11 10:06:23 +0000
+++ account_balance_reporting/account_balance_reporting_reports.xml	1970-01-01 00:00:00 +0000
@@ -1,52 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-#
-#    OpenERP - Account balance reporting engine
-#    Copyright (C) 2009 Pexego Sistemas Informáticos. All Rights Reserved
-#    $Id$
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU General Public License for more details.
-#
-#    You should have received a copy of the GNU General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
--->
-<!--
-Generic sample reports for the account balance reporting engine.
-
-Author: Borja López Soilán (Pexego) - borjals@pexego.es
--->
-<openerp>
-	<data>
-
-		<!-- Generic report -->
-		<report id="report_account_balance_reporting_generic"
-			string="Generic balance report"
-			model="account.balance.reporting"
-			name="report_account_balance_reporting.generic"
-			rml="addons/account_balance_reporting/report/generic_report.rml"
-			auto="True"
-			menu="False"
-			header="True" />
-
-		<!-- Generic report without zero lines -->
-		<report id="report_account_balance_reporting_default_non_zero"
-			string="Generic balance report (non zero lines)"
-			model="account.balance.reporting"
-			name="report_account_balance_reporting.generic_non_zero"
-			rml="addons/account_balance_reporting/report/generic_non_zero_report.rml"
-			auto="True"
-			menu="False"
-			header="True" />
-
-	</data>
-</openerp>
-	

=== removed file 'account_balance_reporting/account_balance_reporting_template.py'
--- account_balance_reporting/account_balance_reporting_template.py	2012-12-11 10:06:23 +0000
+++ account_balance_reporting/account_balance_reporting_template.py	1970-01-01 00:00:00 +0000
@@ -1,263 +0,0 @@
-# -*- coding: utf-8 -*-
-# -*- encoding: utf-8 -*-
-##############################################################################
-#
-#    OpenERP - Account balance reporting engine
-#    Copyright (C) 2009 Pexego Sistemas Informáticos. All Rights Reserved
-#    $Id$
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU General Public License for more details.
-#
-#    You should have received a copy of the GNU General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-##############################################################################
-
-"""
-Account balance report templates
-
-Generic account balance report template that will be used to define
-accounting concepts with formulas to calculate its values/balance.
-Designed following the needs of the Spanish/Spain localization.
-"""
-__author__ = "Borja López Soilán (Pexego) - borjals@pexego.es"
-
-
-from osv import fields, osv
-import re
-import time
-from tools.translate import _
-
-_BALANCE_MODE_HELP = """Formula calculation mode: Depending on it, the balance is calculated as follows:
-  Mode 0: debit-credit (default);
-  Mode 1: debit-credit, credit-debit for accounts in brackets;
-  Mode 2: credit-debit;
-  Mode 3: credit-debit, debit-credit for accounts in brackets."""
-
-_VALUE_FORMULA_HELP = """Value calculation formula: Depending on this formula the final value is calculated as follows:
-  Empy template value: sum of (this concept) children values.
-  Number with decimal point ("10.2"): that value (constant).
-  Account numbers separated by commas ("430,431,(437)"): Sum of the account balances
-    (the sign of the balance depends on the balance mode).
-  Concept codes separated by "+" ("11000+12000"): Sum of those concepts values.
-"""
-
-################################################################################
-# CSS classes for the account lines
-################################################################################
-
-CSS_CLASSES = [('default','Default'),
-               ('l1', 'Level 1'), 
-               ('l2', 'Level 2'),
-               ('l3', 'Level 3'), 
-               ('l4', 'Level 4'), 
-               ('l5', 'Level 5')]
-
-################################################################################
-# Account balance report template (document/header)
-################################################################################
-
-class account_balance_reporting_template(osv.osv):
-    """
-    Account balance report template.
-    It stores the header fields of an account balance report template,
-    and the linked lines of detail with the formulas to calculate
-    the accounting concepts of the report.
-    """
-
-    _name = "account.balance.reporting.template"
-
-    _columns = {
-        # Report template name
-        'name': fields.char('Name', size=64, required=True, select=True),
-        # Type (system = not editable by the user [updated from XML files])
-        'type': fields.selection([('system','System'),('user','User')], 'Type'),
-        # Report design
-        'report_xml_id': fields.many2one('ir.actions.report.xml', 'Report design', ondelete='set null'),
-        # Description
-        'description': fields.text('Description'),
-        # Balance mode
-        'balance_mode': fields.selection([('0','Debit-Credit'),('1','Debit-Credit, reversed with brakets'),('2','Credit-Debit'),('3','Credit-Debit, reversed with brakets')], 'Balance mode', help=_BALANCE_MODE_HELP),
-    }
-
-    _defaults = {
-        # New templates are 'user' editable by default
-        'type': lambda *a: 'user',
-        # Use mode 0 by default
-        'balance_mode': lambda *a: '0',
-    }
-
-    def copy(self, cr, uid, id, default=None, context=None):
-        """
-        Redefine the copy method to perform it correctly as the line
-        structure is a graph.
-        """
-        line_facade = self.pool.get('account.balance.reporting.template.line')
-
-        # Read the current item data:
-        template = self.browse(cr, uid, id)
-
-        # Create the template
-        new_id = self.create(cr, uid, {
-                    'name': '%s*' % template.name, # We change the name to identify the copy
-                    'type': 'user', # Copies are always user templates
-                    'report_xml_id': template.report_xml_id.id,
-                    'description': template.description,
-                    'balance_mode': template.balance_mode,
-                    'line_ids': None,
-                }, context)
-
-        #
-        # Now create the lines (without parents)
-        #
-        for line in template.line_ids:
-            line_facade.create(cr, uid, {
-                    'report_id': new_id,
-                    'sequence': line.sequence,
-                    'css_class': line.css_class,
-                    'code': line.code,
-                    'name': line.name,
-                    'current_value': line.current_value,
-                    'previous_value': line.previous_value,
-                    'negate': line.negate,
-                    'parent_id': None,
-                    'child_ids': None,
-                }, context)
-
-        #
-        # Now set the (lines) parents
-        #
-        for line in template.line_ids:
-            if line.parent_id:
-                # Search for the copied line
-                new_line_id = line_facade.search(cr, uid, [
-                        ('report_id', '=', new_id),
-                        ('code', '=', line.code),
-                    ])[0]
-                # Search for the copied parent line
-                new_parent_id = line_facade.search(cr, uid, [
-                        ('report_id', '=', new_id),
-                        ('code', '=', line.parent_id.code),
-                    ])[0]
-                # Set the parent
-                line_facade.write(cr, uid, new_line_id, {
-                        'parent_id': new_parent_id,
-                    })
-
-        return new_id
-
-account_balance_reporting_template()
-
-
-
-################################################################################
-# Account balance report template line of detail (accounting concept template)
-################################################################################
-
-class account_balance_reporting_template_line(osv.osv):
-    """
-    Account balance report template line / Accounting concept template
-    One line of detail of the balance report representing an accounting
-    concept with the formulas to calculate its values.
-    The accounting concepts follow a parent-children hierarchy.
-    """
-
-    _name = "account.balance.reporting.template.line"
-
-    _columns = {
-        # Parent report of this line
-        'report_id': fields.many2one('account.balance.reporting.template', 'Template', ondelete='cascade'),
-
-        # Order sequence, it's also used for grouping into sections, that's why it is a char
-        'sequence': fields.char('Sequence', size=32, required=False, help="Lines will be sorted/grouped by this field"),
-        # CSS class, used when printing to set the style of the line
-        'css_class': fields.selection(CSS_CLASSES, 'CSS Class', required=False, help="Style-sheet class"),
-
-        # Concept official code (as specified by normalized models, will be used when printing)
-        'code': fields.char('Code', size=64, required=True, select=True, help="Concept code, may be used on formulas to reference this line"),
-        # Concept official name (will be used when printing)
-        'name': fields.char('Name', size=256, required=True, select=True, help="Concept name/description"),
-        # Concept value formula in this fiscal year
-        'current_value': fields.text('Fiscal year 1 formula', help=_VALUE_FORMULA_HELP),
-        # Concept value on the previous fiscal year
-        'previous_value': fields.text('Fiscal year 2 formula', help=_VALUE_FORMULA_HELP),
-        # Negate the value?
-        'negate': fields.boolean('Negate', help="Negate the value (change the sign of the balance)"),
-
-        # Parent accounting concept
-        'parent_id': fields.many2one('account.balance.reporting.template.line', 'Parent', ondelete='cascade'),
-        # Children accounting concepts
-        'child_ids': fields.one2many('account.balance.reporting.template.line', 'parent_id', 'Children'),
-    }
-
-    _defaults = {
-        # Use context report_id as the the parent report
-        'report_id': lambda self, cr, uid, context: context.get('report_id', None),
-        # Don't negate by default
-        'negate': lambda *a: False,
-        # Default css class (so we always have a class)
-        'css_class': lambda *a: 'default',
-    }
-
-    # Lines are sorted by its sequence and code
-    _order = "sequence, code"
-
-    # Don't let the user repeat codes in the report (the codes will be used to look up accounting concepts)
-    _sql_constraints = [
-        ('report_code_uniq', 'unique (report_id,code)', _("The code must be unique for this report!"))
-    ]
-
-
-
-    def name_get(self, cr, uid, ids, context=None):
-        """
-        Redefine the name_get method to show the code in the name ("[code] name").
-        """
-        if not len(ids):
-            return []
-        res=[]
-        for item in self.browse(cr,uid,ids):
-            res.append((item.id, "[%s] %s" % (item.code, item.name)))
-        return res
-
-
-    def name_search(self, cr, uid, name, args=[], operator='ilike', context={}, limit=80):
-        """
-        Redefine the name_search method to allow searching by code.
-        """
-        ids = []
-        if name:
-            ids = self.search(cr, uid, [('code','ilike',name)]+ args, limit=limit)
-        if not ids:
-            ids = self.search(cr, uid, [('name',operator,name)]+ args, limit=limit)
-        return self.name_get(cr, uid, ids, context=context)
-
-
-account_balance_reporting_template_line()
-
-
-class account_balance_reporting_template_withlines(osv.osv):
-    """
-    Extend the 'account balance report template' to add a link to its
-    lines of detail.
-    """
-
-    _inherit = "account.balance.reporting.template"
-
-    _columns = {
-        'line_ids': fields.one2many('account.balance.reporting.template.line', 'report_id', 'Lines'),
-    }
-
-account_balance_reporting_template_withlines()
-
-
-
-

=== removed file 'account_balance_reporting/account_balance_reporting_template_view.xml'
--- account_balance_reporting/account_balance_reporting_template_view.xml	2012-12-11 10:06:23 +0000
+++ account_balance_reporting/account_balance_reporting_template_view.xml	1970-01-01 00:00:00 +0000
@@ -1,170 +0,0 @@
-<?xml version="1.0"?>
-<!--
-#
-#    OpenERP - Account balance reporting engine
-#    Copyright (C) 2009 Pexego Sistemas Informáticos. All Rights Reserved
-#    $Id$
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU General Public License for more details.
-#
-#    You should have received a copy of the GNU General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
--->
-<!--
-Views for the account balance reporting templates and its lines.
-
-Author: Borja López Soilán (Pexego) - borjals@pexego.es
--->
-<openerp>
-    <data>
-
-        <!--**** Template views *********************************************-->
-
-        <!-- Template form view -->
-        <record model="ir.ui.view" id="view_account_balance_reporting_template_form">
-            <field name="name">account.balance.reporting.template.form</field>
-            <field name="model">account.balance.reporting.template</field>
-            <field name="type">form</field>
-            <field name="arch" type="xml">
-                <form string="Account balance report template">
-                    <group colspan="4">
-                        <field name="name" select="1"/>
-                        <field name="type" select="1" readonly="1"/>
-                        <field name="report_xml_id" select="2" domain="[('model','=','account.balance.reporting')]"/>
-                        <field name="balance_mode" select="2"/>
-                    </group>
-                    <notebook colspan="4">
-                        <page string="Information">
-                            <field name="description" colspan="4" nolabel="1"/>
-                        </page>
-                        <page string="Lines">
-                            <field name="line_ids" nolabel="1" context="{'report_id':active_id}">
-                                <tree string="Template lines" editable="bottom"
-                                        colors="blue:css_class in ('l1')">
-                                    <field name="code" select="1" colspan="1"/>
-                                    <field name="name" select="1" colspan="2"/>
-                                    <field name="current_value" colspan="2"/>
-                                    <field name="previous_value" colspan="2"/>
-                                    <field name="negate" select="2" colspan="1"/>
-                                    <field name="report_id" invisible="1"/>
-                                    <field name="parent_id" select="1" colspan="1" domain="[('report_id','=',report_id)]"/>
-                                    <field name="sequence" select="1" colspan="1"/>
-                                    <field name="css_class" select="1" colspan="1"/>
-                                </tree>
-                                <form string="Template line">
-                                    <group colspan="4">
-                                        <field name="code" select="1" colspan="1"/>
-                                        <field name="name" select="1" colspan="3"/>
-                                    </group>
-                                    <group colspan="4">
-                                        <field name="report_id" select="1" readonly="1"/>
-                                        <field name="parent_id" select="1" domain="[('report_id','=',report_id)]"/>
-                                    </group>
-                                    <group string="Values" colspan="4">
-                                        <field name="current_value"/>
-                                        <field name="previous_value"/>
-                                        <field name="negate" select="2" colspan="1"/>
-                                    </group>
-                                    <group string="Style" colspan="4">
-                                        <field name="sequence"/>
-                                        <field name="css_class"/>
-                                    </group>
-                                </form>
-                            </field>
-                        </page>
-                    </notebook>
-                </form>
-            </field>
-        </record>
-
-        <!-- Template tree view -->
-        <record model="ir.ui.view" id="view_account_balance_reporting_template_tree">
-            <field name="name">account.balance.reporting.template.tree</field>
-            <field name="model">account.balance.reporting.template</field>
-            <field name="type">tree</field>
-            <field name="arch" type="xml">
-                <tree string="Account balance report templates">
-                    <field name="name" select="1"/>
-                    <field name="type" select="1"/>
-                </tree>
-            </field>
-        </record>
-
-
-        <!--*** Template lines views ****************************************-->
-
-        <!-- Template line form view -->
-        <record model="ir.ui.view" id="view_account_balance_reporting_template_line_form">
-            <field name="name">account.balance.reporting.template.line.form</field>
-            <field name="model">account.balance.reporting.template.line</field>
-            <field name="type">form</field>
-            <field name="arch" type="xml">
-                <form string="Account balance report template line">
-                    <group colspan="4">
-                        <field name="code" select="1" colspan="1"/>
-                        <field name="name" select="1" colspan="3"/>
-                    </group>
-                    <group colspan="4">
-                        <field name="report_id" select="1"/>
-                        <field name="parent_id" select="1"/>
-                    </group>
-                    <group string="Values" colspan="4">
-                        <field name="current_value" colspan="2"/>
-                        <field name="previous_value" colspan="2"/>
-                    </group>
-                    <group string="Style" colspan="4">
-                        <field name="sequence" colspan="1"/>
-                        <field name="css_class" colspan="1"/>
-                    </group>
-                </form>
-            </field>
-        </record>
-
-        <!-- Template line tree view -->
-        <record model="ir.ui.view" id="view_account_balance_reporting_template_line_tree">
-            <field name="name">account.balance.reporting.template.line.tree</field>
-            <field name="model">account.balance.reporting.template.line</field>
-            <field name="type">tree</field>
-            <field name="arch" type="xml">
-                <tree string="Account balance report template lines">
-                    <field name="code" select="1"/>
-                    <field name="name" select="1"/>
-                    <field name="report_id" select="1"/>
-                    <field name="parent_id" select="1"/>
-                    <field name="sequence" select="1" colspan="1"/>
-                    <field name="css_class" select="1" colspan="1"/>
-                </tree>
-            </field>
-        </record>
-
-
-        <!--*** Menus and windows *******************************************-->
-
-        <record model="ir.actions.act_window" id="action_view_account_balance_reporting_template">
-            <field name="name">Account balance templates</field>
-            <field name="type">ir.actions.act_window</field>
-            <field name="res_model">account.balance.reporting.template</field>
-            <field name="view_type">form</field>
-			<field name="view_mode">tree,form</field>
-            <field name="view_id" ref="view_account_balance_reporting_template_tree"/>
-        </record>
-
-        <menuitem id="menu_account_balance_reporting"
-                name="Account balance reports"
-                parent="account.menu_finance_legal_statement"/>
-
-        <menuitem id="menu_account_balance_reporting_templates"
-                name="Templates"
-                parent="menu_account_balance_reporting"
-                action="action_view_account_balance_reporting_template"/>
-    </data>
-</openerp>

=== removed file 'account_balance_reporting/account_balance_reporting_view.xml'
--- account_balance_reporting/account_balance_reporting_view.xml	2012-12-11 10:06:23 +0000
+++ account_balance_reporting/account_balance_reporting_view.xml	1970-01-01 00:00:00 +0000
@@ -1,201 +0,0 @@
-<?xml version="1.0"?>
-<!--
-#
-#    OpenERP - Account balance reporting engine
-#    Copyright (C) 2009 Pexego Sistemas Informáticos. All Rights Reserved
-#    $Id$
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU General Public License for more details.
-#
-#    You should have received a copy of the GNU General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
--->
-<!--
-Views for the account balance reports and its lines.
-
-Author: Borja López Soilán (Pexego) - borjals@pexego.es
--->
-<openerp>
-    <data>
-
-
-        <!--**** Report views ***********************************************-->
-
-        <!-- Report form view -->
-        <record model="ir.ui.view" id="view_account_balance_reporting_form">
-            <field name="name">account.balance.reporting.form</field>
-            <field name="model">account.balance.reporting</field>
-            <field name="type">form</field>
-            <field name="arch" type="xml">
-                <form string="Account balance report">
-                    <field name="name" select="1" />
-                    <newline/>
-                    <notebook>
-                        <page string="Configuration">
-                            <group string="Parameters" colspan="4">
-                                <group colspan="4">
-                                    <field name="company_id" select="1"/>
-                                    <field name="template_id" select="1"/>
-                                </group>
-                                <group colspan="4">
-                                    <group string="Fiscal year 1" colspan="2">
-                                        <field name="current_fiscalyear_id" select="2" colspan="4" nolabel="1"/>
-                                        <field name="current_period_ids" colspan="4" nolabel="1" domain="[('fiscalyear_id','=',current_fiscalyear_id)]"/>
-                                    </group>
-                                    <group string="Fiscal year 2" colspan="2">
-                                        <field name="previous_fiscalyear_id" colspan="4" nolabel="1"/>
-                                        <field name="previous_period_ids" colspan="4" nolabel="1" domain="[('fiscalyear_id','=',previous_fiscalyear_id)]"/>
-                                    </group>
-                                </group>
-                            </group>
-                            <group string="State" colspan="4">
-                                <field name="state" select="2" readonly="1"/>
-                                <field name="calc_date" select="2" readonly="1"/>
-                            </group>
-                            <group colspan="4">
-                                <button name="calculate_action" type="object" string="Calculate" states="draft"/>
-                                <!--
-				<button name="%(wiz_account_balance_reporting_calculate)d" type="action" string="Calculate" states="draft" icon="gtk-execute"/>
-				-->
-                                <button name="confirm" string="Confirm" states="calc_done" icon="gtk-apply"/>
-                                <button name="cancel" string="Cancel" states="calc_done,done" icon="gtk-cancel"/>
-								<button name="action_recover" string="Draft" type="object" states="canceled" icon="gtk-undo"/>
-                            </group>
-                        </page>
-                        <page string="Lines">
-                            <field name="line_ids" nolabel="1" context="{'report_id':active_id}">
-                                <tree string="Report lines" editable="bottom"
-                                        colors="blue:css_class in ('l1')">
-                                    <field name="code" select="1" colspan="1"/>
-                                    <field name="name" select="1" colspan="2"/>
-                                    <field name="notes" colspan="4"/>
-                                    <field name="current_value" colspan="2"/>
-                                    <field name="previous_value" colspan="2"/>
-                                    <field name="report_id" invisible="1"/>
-                                    <field name="parent_id" select="1" colspan="1" domain="[('report_id','=',report_id)]"/>
-                                    <field name="sequence" select="1" colspan="1"/>
-                                    <field name="css_class" select="1" colspan="1"/>
-                                </tree>
-                                <form string="Report line">
-                                    <group colspan="4">
-                                        <field name="code" select="1" colspan="1"/>
-                                        <field name="name" select="1" colspan="3"/>
-                                    </group>
-                                    <group colspan="4">
-                                        <field name="report_id" select="1"/>
-                                        <field name="parent_id" select="1" domain="[('report_id','=',report_id)]"/>
-                                    </group>
-                                    <group string="Values" colspan="4">
-                                        <field name="notes" colspan="4"/>
-                                        <field name="current_value" colspan="2"/>
-                                        <field name="previous_value" colspan="2"/>
-                                    </group>
-                                    <group string="Style" colspan="4">
-                                        <field name="sequence" colspan="1"/>
-                                        <field name="css_class" colspan="1"/>
-                                    </group>
-                                </form>
-                            </field>
-                        </page>
-                    </notebook>
-                </form>
-            </field>
-        </record>
-
-        <!-- Report tree view -->
-        <record model="ir.ui.view" id="view_account_balance_reporting_tree">
-            <field name="name">account.balance.reporting.tree</field>
-            <field name="model">account.balance.reporting</field>
-            <field name="type">tree</field>
-            <field name="arch" type="xml">
-                <tree string="Account balance reports">
-                    <field name="name" select="1"/>
-                    <field name="company_id" select="1"/>
-                    <field name="template_id" select="2" colspan="4"/>
-                    <field name="current_fiscalyear_id" select="1"/>
-                    <field name="previous_fiscalyear_id" select="2"/>
-                    <field name="state" colspan="4" select="2"/>
-                </tree>
-            </field>
-        </record>
-
-
-        <!--*** Report lines views ******************************************-->
-
-        <!-- Report line form view -->
-        <record model="ir.ui.view" id="view_account_balance_reporting_line_form">
-            <field name="name">account.balance.reporting.line.form</field>
-            <field name="model">account.balance.reporting.line</field>
-            <field name="type">form</field>
-            <field name="arch" type="xml">
-                <form string="Account balance report line">
-                    <group colspan="4">
-                        <field name="code" select="1" colspan="1"/>
-                        <field name="name" select="1" colspan="3"/>
-                    </group>
-                    <group colspan="4">
-                        <field name="report_id" select="1"/>
-                        <field name="parent_id" select="1"/>
-                    </group>
-                    <group string="Values" colspan="4">
-                        <field name="current_value" colspan="2"/>
-                        <field name="previous_value" colspan="2"/>
-                    </group>
-                    <group string="Style" colspan="4">
-                        <field name="sequence" colspan="1"/>
-                        <field name="css_class" colspan="1"/>
-                    </group>
-                </form>
-            </field>
-        </record>
-
-        <!-- Line tree view -->
-        <record model="ir.ui.view" id="view_account_balance_reporting_line_tree">
-            <field name="name">account.balance.reporting.line.tree</field>
-            <field name="model">account.balance.reporting.line</field>
-            <field name="type">tree</field>
-            <field name="arch" type="xml">
-                <tree string="Account balance report lines">
-                    <field name="sequence" select="1" colspan="1"/>
-                    <field name="code" select="1"/>
-                    <field name="name" select="1"/>
-                    <field name="report_id" select="1"/>
-                    <field name="parent_id" select="1"/>
-                    <field name="sequence" select="1" colspan="1"/>
-                    <field name="css_class" select="1" colspan="1"/>
-                </tree>
-            </field>
-        </record>
-
-
-        <!--*** Menus and windows *******************************************-->
-
-        <record model="ir.actions.act_window" id="action_view_account_balance_reporting">
-            <field name="name">Account balance reports</field>
-            <field name="type">ir.actions.act_window</field>
-            <field name="res_model">account.balance.reporting</field>
-            <field name="view_type">form</field>
-			<field name="view_mode">tree,form</field>
-            <field name="view_id" ref="view_account_balance_reporting_tree"/>
-        </record>
-
-        <menuitem id="menu_account_balance_reporting"
-                name="Account balance reports"
-                parent="account.menu_finance_legal_statement"/>
-        
-        <menuitem id="menu_account_balance_reporting_reports"
-                name="Reports"
-                parent="menu_account_balance_reporting"
-                action="action_view_account_balance_reporting"/>
-
-    </data>
-</openerp>

=== removed file 'account_balance_reporting/account_balance_reporting_wizard.xml'
--- account_balance_reporting/account_balance_reporting_wizard.xml	2012-12-11 10:06:23 +0000
+++ account_balance_reporting/account_balance_reporting_wizard.xml	1970-01-01 00:00:00 +0000
@@ -1,61 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-#
-#    OpenERP - Account balance reporting engine
-#    Copyright (C) 2009 Pexego Sistemas Informáticos. All Rights Reserved
-#    $Id$
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU General Public License for more details.
-#
-#    You should have received a copy of the GNU General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
--->
-<!--
-Wizards for the account balance reports.
-
-Author: Borja López Soilán (Pexego) - borjals@pexego.es
--->
-<openerp>
-    <data>
-
-        <!-- Print wizard (osv.osv_memory) -->
-        <record id="wizard_account_balance_reporting_print" model="ir.ui.view">
-            <field name="name">account.balance.reporting.print.wizard.form</field>
-            <field name="model">account.balance.reporting.print.wizard</field>
-            <field name="type">form</field>
-            <field name="arch" type="xml">
-                <form string="Print report">
-                    <field string="Report" name="report_id" required="True" colspan="4" />
-                    <newline />
-                    <field string="Design" name="report_xml_id" required="True" domain="[('model','=','account.balance.reporting')]" colspan="4" />
-                    <group colspan="4">
-                        <button icon="gtk-cancel" special="cancel" string="Cancel"/>
-                        <button icon="gtk-print" name="print_report" string="Print" type="object"/>
-                    </group>
-                </form>
-            </field>
-        </record>
-        <act_window name="Print report"
-            res_model="account.balance.reporting.print.wizard"
-            src_model="account.balance.reporting"
-            view_mode="form"
-            target="new"
-            id="account_balance_reporting_print_wizard_act_window" />
-
-        <!-- Calculate wizard -->
-        <wizard id="wiz_account_balance_reporting_calculate"
-                model="account.balance.reporting"
-                string="Calculate report"
-                name="account_balance_reporting.calculate_wizard"
-                menu="False"/>
-    </data>
-</openerp>

=== removed file 'account_balance_reporting/account_balance_reporting_workflow.xml'
--- account_balance_reporting/account_balance_reporting_workflow.xml	2012-12-11 10:06:23 +0000
+++ account_balance_reporting/account_balance_reporting_workflow.xml	1970-01-01 00:00:00 +0000
@@ -1,94 +0,0 @@
-<?xml version="1.0"?>
-<!--
-#
-#    OpenERP - Account balance reporting engine
-#    Copyright (C) 2009 Pexego Sistemas Informáticos. All Rights Reserved
-#    $Id$
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU General Public License for more details.
-#
-#    You should have received a copy of the GNU General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
--->
-<!--
-Account balance report workflow.
-
-Author: Borja López Soilán (Pexego) - borjals@pexego.es
--->
-<openerp>
-    <data>
-        <!-- *** Nodes ***************************************************** -->
-
-        <record model="workflow" id="wkf_account_balance_reporting">
-            <field name="name">Account balance report workflow</field>
-            <field name="osv">account.balance.reporting</field>
-            <field name="on_create">True</field>
-        </record>
-
-
-        <record model="workflow.activity" id="act_draft">
-            <field name="wkf_id" ref="wkf_account_balance_reporting"/>
-            <field name="flow_start">True</field>
-            <field name="name">draft</field>
-        </record>
-
-        <record model="workflow.activity" id="act_calculate">
-            <field name="wkf_id" ref="wkf_account_balance_reporting"/>
-            <field name="name">calculated</field>
-            <field name="action">action_calculate()</field>
-            <field name="kind">function</field>
-        </record>
-
-        <record model="workflow.activity" id="act_confirm">
-            <field name="wkf_id" ref="wkf_account_balance_reporting"/>
-            <field name="name">confirmed</field>
-            <field name="action">action_confirm()</field>
-            <field name="kind">function</field>
-        </record>
-
-        <record model="workflow.activity" id="act_cancel">
-            <field name="wkf_id" ref="wkf_account_balance_reporting"/>
-            <field name="name">canceled</field>
-            <field name="flow_stop">True</field>
-            <field name="action">action_cancel()</field>
-            <field name="kind">function</field>
-        </record>
-
-
-        <!-- *** Transitions *********************************************** -->
-		
-        <record model="workflow.transition" id="trans_draft_calculate">
-            <field name="act_from" ref="act_draft"/>
-            <field name="act_to" ref="act_calculate"/>
-            <field name="signal">calculate</field>
-        </record>
-
-        <record model="workflow.transition" id="trans_calculate_confirm">
-            <field name="act_from" ref="act_calculate"/>
-            <field name="act_to" ref="act_confirm"/>
-            <field name="signal">confirm</field>
-        </record>
-
-        <record model="workflow.transition" id="trans_calculate_draft">
-            <field name="act_from" ref="act_calculate"/>
-            <field name="act_to" ref="act_cancel"/>
-            <field name="signal">cancel</field>
-        </record>
-
-        <record model="workflow.transition" id="trans_confirm_cancel">
-            <field name="act_from" ref="act_confirm"/>
-            <field name="act_to" ref="act_cancel"/>
-            <field name="signal">cancel</field>
-        </record>
-
-    </data>
-</openerp>

=== removed directory 'account_balance_reporting/i18n'
=== removed file 'account_balance_reporting/i18n/account_balance_reporting.pot'
--- account_balance_reporting/i18n/account_balance_reporting.pot	2012-12-11 10:06:23 +0000
+++ account_balance_reporting/i18n/account_balance_reporting.pot	1970-01-01 00:00:00 +0000
@@ -1,538 +0,0 @@
-# Translation of OpenERP Server.
-# This file contains the translation of the following modules:
-#	* account_balance_reporting
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: OpenERP Server 5.0.5-bzr\n"
-"Report-Msgid-Bugs-To: support@openerp.com\n"
-"POT-Creation-Date: 2009-09-27 08:18:06+0000\n"
-"PO-Revision-Date: 2009-09-22 16:49+0100\n"
-"Last-Translator: Borja López Soilán (Pexego) <borjals@pexego.es>\n"
-"Language-Team: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: \n"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,current_period_ids:0
-msgid "Fiscal year 1 periods"
-msgstr ""
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,css_class:0
-msgid "Style-sheet class"
-msgstr ""
-
-#. module: account_balance_reporting
-#: constraint:ir.actions.act_window:0
-msgid "Invalid model name in the action definition."
-msgstr ""
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,balance_mode:0
-msgid "Debit-Credit"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,parent_id:0
-#: field:account.balance.reporting.template.line,parent_id:0
-msgid "Parent"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,company_id:0
-msgid "Company"
-msgstr ""
-
-#. module: account_balance_reporting
-#: model:ir.actions.act_window,name:account_balance_reporting.action_view_account_balance_reporting_template
-msgid "Account balance templates"
-msgstr ""
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,balance_mode:0
-msgid "Credit-Debit"
-msgstr ""
-
-#. module: account_balance_reporting
-#: model:ir.actions.wizard,name:account_balance_reporting.wiz_account_balance_reporting_calculate
-msgid "Calculate report"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,notes:0
-msgid "Notes"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: model:ir.actions.act_window,name:account_balance_reporting.action_view_account_balance_reporting
-#: model:ir.ui.menu,name:account_balance_reporting.menu_account_balance_reporting
-msgid "Account balance reports"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template:0
-msgid "Template lines"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: field:account.balance.reporting,current_fiscalyear_id:0
-#: field:account.balance.reporting.line,current_value:0
-msgid "Fiscal year 1"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: field:account.balance.reporting,previous_fiscalyear_id:0
-#: field:account.balance.reporting.line,previous_value:0
-msgid "Fiscal year 2"
-msgstr ""
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,balance_mode:0
-msgid "Debit-Credit, reversed with brakets"
-msgstr ""
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,code:0
-msgid "Concept code, may be used on formulas to reference this line"
-msgstr ""
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,sequence:0
-msgid "Lines will be sorted/grouped by this field"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template.line,negate:0
-msgid "Negate"
-msgstr ""
-
-#. module: account_balance_reporting
-#: model:ir.model,name:account_balance_reporting.model_account_balance_reporting_template_line
-msgid "account.balance.reporting.template.line"
-msgstr ""
-
-#. module: account_balance_reporting
-#: rml:report_account_balance_reporting.generic:0
-#: rml:report_account_balance_reporting.generic_non_zero:0
-msgid "CODE"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,template_id:0
-#: field:account.balance.reporting.template.line,report_id:0
-msgid "Template"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Parameters"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Confirm"
-msgstr ""
-
-#. module: account_balance_reporting
-#: rml:report_account_balance_reporting.generic:0
-#: rml:report_account_balance_reporting.generic_non_zero:0
-msgid "NOTES"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template.line:0
-msgid "Account balance report template lines"
-msgstr ""
-
-#. module: account_balance_reporting
-#: wizard_view:account_balance_reporting.print_wizard,init:0
-msgid "Report data"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: field:account.balance.reporting,state:0
-msgid "State"
-msgstr ""
-
-#. module: account_balance_reporting
-#: wizard_button:account_balance_reporting.print_wizard,init,print:0
-msgid "Print"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template,type:0
-msgid "Type"
-msgstr ""
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template,balance_mode:0
-msgid "Formula calculation mode: Depending on it, the balance is calculated as follows:\n"
-"  Mode 0: debit-credit (default);\n"
-"  Mode 1: debit-credit, credit-debit for accounts in brackets;\n"
-"  Mode 2: credit-debit;\n"
-"  Mode 3: credit-debit, debit-credit for accounts in brackets."
-msgstr ""
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,negate:0
-msgid "Negate the value (change the sign of the balance)"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Report line"
-msgstr ""
-
-#. module: account_balance_reporting
-#: model:ir.module.module,description:account_balance_reporting.module_meta_information
-msgid "\n"
-"The module allows the user to create account balance reports and templates,\n"
-"comparing the values of 'accounting concepts' between two fiscal years\n"
-"or a set of fiscal periods.\n"
-"\n"
-"Accounting concepts values can be calculated as the sum of some account balances,\n"
-"the sum of its children, other account concepts or constant values.\n"
-"\n"
-"Generated reports are stored as objects on the server,\n"
-"so you can check them anytime later or edit them\n"
-"(to add notes for example) before printing.\n"
-"\n"
-"The module lets the user add new templates of the reports concepts,\n"
-"and associate them a specific \"XML reports\" (OpenERP RML files for example)\n"
-"with the design used when printing.\n"
-"So it is very easy to add predefined country-specific official reports.\n"
-"\n"
-"The user interface has been designed to be as much user-friendly as it can be.\n"
-"\n"
-"Note: It has been designed to meet Spanish/Spain localization needs,\n"
-"but it might be used as a generic accounting report engine.\n"
-"            "
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,report_id:0
-msgid "Report"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Configuration"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,css_class:0
-#: field:account.balance.reporting.template.line,css_class:0
-msgid "CSS Class"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template,report_xml_id:0
-#: wizard_view:account_balance_reporting.print_wizard,init:0
-msgid "Report design"
-msgstr ""
-
-#. module: account_balance_reporting
-#: constraint:ir.ui.view:0
-msgid "Invalid XML for View Architecture!"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template:0
-msgid "Account balance report template"
-msgstr ""
-
-#. module: account_balance_reporting
-#: model:ir.actions.report.xml,name:account_balance_reporting.report_account_balance_reporting_default_non_zero
-msgid "Generic balance report (non zero lines)"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,calc_date:0
-#: field:account.balance.reporting.line,calc_date:0
-msgid "Calculation date"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,previous_period_ids:0
-msgid "Fiscal year 2 periods"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template:0
-msgid "Template line"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: view:account.balance.reporting.line:0
-#: view:account.balance.reporting.template:0
-#: view:account.balance.reporting.template.line:0
-msgid "Style"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Calculate"
-msgstr ""
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Level 4"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: selection:account.balance.reporting,state:0
-msgid "Draft"
-msgstr ""
-
-#. module: account_balance_reporting
-#: constraint:ir.model:0
-msgid "The Object name must start with x_ and not contain any special character !"
-msgstr ""
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,name:0
-msgid "Concept name/description"
-msgstr ""
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting,state:0
-msgid "Processing"
-msgstr ""
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,type:0
-msgid "User"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template.line,current_value:0
-msgid "Fiscal year 1 formula"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,template_line_id:0
-msgid "Line template"
-msgstr ""
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,balance_mode:0
-msgid "Credit-Debit, reversed with brakets"
-msgstr ""
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Default"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template.line,previous_value:0
-msgid "Fiscal year 2 formula"
-msgstr ""
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,type:0
-msgid "System"
-msgstr ""
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting,state:0
-msgid "Processed"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.line:0
-msgid "Account balance report lines"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template,balance_mode:0
-msgid "Balance mode"
-msgstr ""
-
-#. module: account_balance_reporting
-#: model:ir.model,name:account_balance_reporting.model_account_balance_reporting_line
-msgid "account.balance.reporting.line"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,code:0
-#: field:account.balance.reporting.template.line,code:0
-msgid "Code"
-msgstr ""
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting,state:0
-msgid "Done"
-msgstr ""
-
-#. module: account_balance_reporting
-#: model:ir.model,name:account_balance_reporting.model_account_balance_reporting
-msgid "account.balance.reporting"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: wizard_button:account_balance_reporting.print_wizard,init,end:0
-msgid "Cancel"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Report lines"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,child_ids:0
-#: field:account.balance.reporting.template.line,child_ids:0
-msgid "Children"
-msgstr ""
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Level 5"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template:0
-msgid "Information"
-msgstr ""
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Level 1"
-msgstr ""
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Level 3"
-msgstr ""
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Level 2"
-msgstr ""
-
-#. module: account_balance_reporting
-#: model:ir.actions.report.xml,name:account_balance_reporting.report_account_balance_reporting_generic
-msgid "Generic balance report"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template:0
-msgid "Account balance report templates"
-msgstr ""
-
-#. module: account_balance_reporting
-#: model:ir.ui.menu,name:account_balance_reporting.menu_account_balance_reporting_templates
-msgid "Templates"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template,description:0
-msgid "Description"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template.line:0
-msgid "Account balance report template line"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,name:0
-#: field:account.balance.reporting.line,name:0
-#: field:account.balance.reporting.template,name:0
-#: field:account.balance.reporting.template.line,name:0
-msgid "Name"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: field:account.balance.reporting,line_ids:0
-#: view:account.balance.reporting.template:0
-#: field:account.balance.reporting.template,line_ids:0
-msgid "Lines"
-msgstr ""
-
-#. module: account_balance_reporting
-#: model:ir.ui.menu,name:account_balance_reporting.menu_account_balance_reporting_reports
-msgid "Reports"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: view:account.balance.reporting.line:0
-#: view:account.balance.reporting.template:0
-#: view:account.balance.reporting.template.line:0
-msgid "Values"
-msgstr ""
-
-#. module: account_balance_reporting
-#: model:ir.model,name:account_balance_reporting.model_account_balance_reporting_template
-msgid "account.balance.reporting.template"
-msgstr ""
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,current_value:0
-#: help:account.balance.reporting.template.line,previous_value:0
-msgid "Value calculation formula: Depending on this formula the final value is calculated as follows:\n"
-"  Empy template value: sum of (this concept) children values.\n"
-"  Number with decimal point (\"10.2\"): that value (constant).\n"
-"  Account numbers separated by commas (\"430,431,(437)\"): Sum of the account balances\n"
-"    (the sign of the balance depends on the balance mode).\n"
-"  Concept codes separated by \"+\" (\"11000+12000\"): Sum of those concepts values.\n"
-""
-msgstr ""
-
-#. module: account_balance_reporting
-#: rml:report_account_balance_reporting.generic:0
-#: rml:report_account_balance_reporting.generic_non_zero:0
-msgid "CONCEPT"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.line:0
-msgid "Account balance report line"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,sequence:0
-#: field:account.balance.reporting.template.line,sequence:0
-msgid "Sequence"
-msgstr ""
-
-#. module: account_balance_reporting
-#: wizard_view:account_balance_reporting.print_wizard,init:0
-#: model:ir.actions.wizard,name:account_balance_reporting.wiz_account_balance_reporting_print
-msgid "Print report"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Account balance report"
-msgstr ""
-
-#. module: account_balance_reporting
-#: model:ir.module.module,shortdesc:account_balance_reporting.module_meta_information
-msgid "Account balance reporting engine"
-msgstr ""
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting,state:0
-msgid "Canceled"
-msgstr ""
-

=== removed file 'account_balance_reporting/i18n/ca.po'
--- account_balance_reporting/i18n/ca.po	2012-12-11 10:06:23 +0000
+++ account_balance_reporting/i18n/ca.po	1970-01-01 00:00:00 +0000
@@ -1,607 +0,0 @@
-# Translation of OpenERP Server.
-# This file contains the translation of the following modules:
-# 	* account_balance_reporting
-#
-# Albert Cervera i Areny <albert@nan-tic.com>, 2009.
-msgid ""
-msgstr ""
-"Project-Id-Version: OpenERP Server 5.0.6\n"
-"Report-Msgid-Bugs-To: support@openerp.com\n"
-"POT-Creation-Date: 2009-09-27 08:18+0000\n"
-"PO-Revision-Date: 2010-12-13 22:27+0000\n"
-"Last-Translator: Jordi Esteve (www.zikzakmedia.com) "
-"<jesteve@zikzakmedia.com>\n"
-"Language-Team: Catalan <kde-i18n-ca@kde.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-05-24 11:38+0000\n"
-"X-Generator: Launchpad (build 15288)\n"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,current_period_ids:0
-msgid "Fiscal year 1 periods"
-msgstr "Períodes exercici fiscal 1"
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,css_class:0
-msgid "Style-sheet class"
-msgstr "Classe de full d'estils"
-
-#. module: account_balance_reporting
-#: constraint:ir.actions.act_window:0
-msgid "Invalid model name in the action definition."
-msgstr "Nom de model no vàlid en la definició de l'acció."
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,balance_mode:0
-msgid "Debit-Credit"
-msgstr "Deure-Haver"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,parent_id:0
-#: field:account.balance.reporting.template.line,parent_id:0
-msgid "Parent"
-msgstr "Pare"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,company_id:0
-msgid "Company"
-msgstr "Companyia"
-
-#. module: account_balance_reporting
-#: model:ir.actions.act_window,name:account_balance_reporting.action_view_account_balance_reporting_template
-msgid "Account balance templates"
-msgstr "Plantilles de balanç de comptes"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,balance_mode:0
-msgid "Credit-Debit"
-msgstr "Haver-Deure"
-
-#. module: account_balance_reporting
-#: model:ir.actions.wizard,name:account_balance_reporting.wiz_account_balance_reporting_calculate
-msgid "Calculate report"
-msgstr "Calcula informe"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,notes:0
-msgid "Notes"
-msgstr "Notes"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: model:ir.actions.act_window,name:account_balance_reporting.action_view_account_balance_reporting
-#: model:ir.ui.menu,name:account_balance_reporting.menu_account_balance_reporting
-msgid "Account balance reports"
-msgstr "Informes de balanç de comptes"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template:0
-msgid "Template lines"
-msgstr "Línies de plantilla"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: field:account.balance.reporting,current_fiscalyear_id:0
-#: field:account.balance.reporting.line,current_value:0
-msgid "Fiscal year 1"
-msgstr "Exercici fiscal 1"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: field:account.balance.reporting,previous_fiscalyear_id:0
-#: field:account.balance.reporting.line,previous_value:0
-msgid "Fiscal year 2"
-msgstr "Exercici fiscal 2"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,balance_mode:0
-msgid "Debit-Credit, reversed with brakets"
-msgstr "Deure-Haver, invers amb parèntesis"
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,code:0
-msgid "Concept code, may be used on formulas to reference this line"
-msgstr ""
-"Codi de concepte, pot ser usat en les fórmules per fer referència a aquesta "
-"línia."
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,sequence:0
-msgid "Lines will be sorted/grouped by this field"
-msgstr "Les línies seran ordenades/agrupades per aquest camp."
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template.line,negate:0
-msgid "Negate"
-msgstr "Nega"
-
-#. module: account_balance_reporting
-#: model:ir.model,name:account_balance_reporting.model_account_balance_reporting_template_line
-msgid "account.balance.reporting.template.line"
-msgstr "account.balance.reporting.template.line"
-
-#. module: account_balance_reporting
-#: rml:report_account_balance_reporting.generic:0
-#: rml:report_account_balance_reporting.generic_non_zero:0
-msgid "CODE"
-msgstr "CODI"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,template_id:0
-#: field:account.balance.reporting.template.line,report_id:0
-msgid "Template"
-msgstr "Plantilla"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Parameters"
-msgstr "Paràmetres"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Confirm"
-msgstr "Confirma"
-
-#. module: account_balance_reporting
-#: rml:report_account_balance_reporting.generic:0
-#: rml:report_account_balance_reporting.generic_non_zero:0
-msgid "NOTES"
-msgstr "NOTES"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template.line:0
-msgid "Account balance report template lines"
-msgstr "Línies de la plantilla del balanç de comptes"
-
-#. module: account_balance_reporting
-#: wizard_view:account_balance_reporting.print_wizard,init:0
-msgid "Report data"
-msgstr "Dades d'informe"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: field:account.balance.reporting,state:0
-msgid "State"
-msgstr "Estat"
-
-#. module: account_balance_reporting
-#: wizard_button:account_balance_reporting.print_wizard,init,print:0
-msgid "Print"
-msgstr "Imprimeix"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template,type:0
-msgid "Type"
-msgstr "Tipus"
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template,balance_mode:0
-msgid ""
-"Formula calculation mode: Depending on it, the balance is calculated as "
-"follows:\n"
-"  Mode 0: debit-credit (default);\n"
-"  Mode 1: debit-credit, credit-debit for accounts in brackets;\n"
-"  Mode 2: credit-debit;\n"
-"  Mode 3: credit-debit, debit-credit for accounts in brackets."
-msgstr ""
-"Mode de càlcul de la fórmula: Depenent del mode, el saldo es calcula com "
-"segueix:\n"
-"  Mode 0: deure-haver (per defecte);\n"
-"  Mode 1: deure-haver, haver-deure pels comptes amb parèntesis;\n"
-"  Mode 2: haver-deure;\n"
-"  Mode 3: haver-deure, deure-haver pels comptes amb parèntesis."
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,negate:0
-msgid "Negate the value (change the sign of the balance)"
-msgstr "Nega el valor (canvia el signe del saldo)."
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Report line"
-msgstr "Línia d'informe"
-
-#. module: account_balance_reporting
-#: model:ir.module.module,description:account_balance_reporting.module_meta_information
-msgid ""
-"\n"
-"The module allows the user to create account balance reports and templates,\n"
-"comparing the values of 'accounting concepts' between two fiscal years\n"
-"or a set of fiscal periods.\n"
-"\n"
-"Accounting concepts values can be calculated as the sum of some account "
-"balances,\n"
-"the sum of its children, other account concepts or constant values.\n"
-"\n"
-"Generated reports are stored as objects on the server,\n"
-"so you can check them anytime later or edit them\n"
-"(to add notes for example) before printing.\n"
-"\n"
-"The module lets the user add new templates of the reports concepts,\n"
-"and associate them a specific \"XML reports\" (OpenERP RML files for "
-"example)\n"
-"with the design used when printing.\n"
-"So it is very easy to add predefined country-specific official reports.\n"
-"\n"
-"The user interface has been designed to be as much user-friendly as it can "
-"be.\n"
-"\n"
-"Note: It has been designed to meet Spanish/Spain localization needs,\n"
-"but it might be used as a generic accounting report engine.\n"
-"            "
-msgstr ""
-"\n"
-"El mòdul permet a l'usuari crear informes de balanços de comptes i "
-"plantilles,\n"
-"comparant els valors 'conceptes comptables' entre dos exercicis fiscals\n"
-"o un conjunt de períodes fiscals.\n"
-"\n"
-"Els valors dels conceptes comptables es poden calcular com la suma dels "
-"balanços d'alguns comptes,\n"
-"la suma dels seus fills, altres conceptes de comptes o valors constants.\n"
-"\n"
-"Els informes generats s'emmagatzemen com a objectes en el servidor,\n"
-"de forma que posteriorment els poden comprovar o modificar\n"
-"(per afegir notes, per exemple) abans d'imprimir.\n"
-"\n"
-"El mòdul permet a l'usuari afegir noves plantilles de conceptes d'informes,\n"
-"i associar-los a \"informes XML\" específics (fitxers RML d'OpenERP, per "
-"exemple)\n"
-"amb el disseny utilitzat a l'imprimir.\n"
-"Per tant és senzill afegir informes oficials específics per cada país.\n"
-"\n"
-"La interfície d'usuari s'ha dissenyat per ser el més amigable possible.\n"
-"\n"
-"Nota: S'ha dissenyat per complir les necessitats de la localització "
-"espanyola,\n"
-"però pot ser utilitzat com a un motor genèric d'informes de comptabilitat.\n"
-"            "
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,report_id:0
-msgid "Report"
-msgstr "Informe"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Configuration"
-msgstr "Configuració"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,css_class:0
-#: field:account.balance.reporting.template.line,css_class:0
-msgid "CSS Class"
-msgstr "Classe CSS"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template,report_xml_id:0
-#: wizard_view:account_balance_reporting.print_wizard,init:0
-msgid "Report design"
-msgstr "Disseny de l'informe"
-
-#. module: account_balance_reporting
-#: constraint:ir.ui.view:0
-msgid "Invalid XML for View Architecture!"
-msgstr "﻿XML no vàlid per a la definició de la vista!"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template:0
-msgid "Account balance report template"
-msgstr "Plantilla d'informe de balanç de comptes"
-
-#. module: account_balance_reporting
-#: model:ir.actions.report.xml,name:account_balance_reporting.report_account_balance_reporting_default_non_zero
-msgid "Generic balance report (non zero lines)"
-msgstr "Informe de balanç genèric (línies diferents de zero)"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,calc_date:0
-#: field:account.balance.reporting.line,calc_date:0
-msgid "Calculation date"
-msgstr "Data de càlcul"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,previous_period_ids:0
-msgid "Fiscal year 2 periods"
-msgstr "Períodes exercici fiscal 2"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template:0
-msgid "Template line"
-msgstr "Plantilla de línia"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: view:account.balance.reporting.line:0
-#: view:account.balance.reporting.template:0
-#: view:account.balance.reporting.template.line:0
-msgid "Style"
-msgstr "Estil"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Calculate"
-msgstr "Calcula"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Level 4"
-msgstr "Nivell 4"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: selection:account.balance.reporting,state:0
-msgid "Draft"
-msgstr "Esborrany"
-
-#. module: account_balance_reporting
-#: constraint:ir.model:0
-msgid ""
-"The Object name must start with x_ and not contain any special character !"
-msgstr ""
-"El nom de l'objecte ha de començar amb x_ i no contenir cap caràcter "
-"especial!"
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,name:0
-msgid "Concept name/description"
-msgstr "Nom del concepte/descripció"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting,state:0
-msgid "Processing"
-msgstr "S'està processant"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,type:0
-msgid "User"
-msgstr "Usuari"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template.line,current_value:0
-msgid "Fiscal year 1 formula"
-msgstr "Fórmula exercici fiscal 1"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,template_line_id:0
-msgid "Line template"
-msgstr "Línia de plantilla"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,balance_mode:0
-msgid "Credit-Debit, reversed with brakets"
-msgstr "Haver-Deure, invers amb parèntesis"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Default"
-msgstr "Per defecte"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template.line,previous_value:0
-msgid "Fiscal year 2 formula"
-msgstr "Fórmula exercici fiscal 2"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,type:0
-msgid "System"
-msgstr "Sistema"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting,state:0
-msgid "Processed"
-msgstr "Processat"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.line:0
-msgid "Account balance report lines"
-msgstr "Línies d'informe del balanç de comptes"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template,balance_mode:0
-msgid "Balance mode"
-msgstr "Mode de saldo"
-
-#. module: account_balance_reporting
-#: model:ir.model,name:account_balance_reporting.model_account_balance_reporting_line
-msgid "account.balance.reporting.line"
-msgstr "account.balance.reporting.line"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,code:0
-#: field:account.balance.reporting.template.line,code:0
-msgid "Code"
-msgstr "Codi"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting,state:0
-msgid "Done"
-msgstr "Realitzat"
-
-#. module: account_balance_reporting
-#: model:ir.model,name:account_balance_reporting.model_account_balance_reporting
-msgid "account.balance.reporting"
-msgstr "account.balance.reporting"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: wizard_button:account_balance_reporting.print_wizard,init,end:0
-msgid "Cancel"
-msgstr "Cancel·la"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Report lines"
-msgstr "Línies d'informe"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,child_ids:0
-#: field:account.balance.reporting.template.line,child_ids:0
-msgid "Children"
-msgstr "Fills"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Level 5"
-msgstr "Nivell 5"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template:0
-msgid "Information"
-msgstr "Informació"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Level 1"
-msgstr "Nivell 1"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Level 3"
-msgstr "Nivell 3"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Level 2"
-msgstr "Nivell 2"
-
-#. module: account_balance_reporting
-#: model:ir.actions.report.xml,name:account_balance_reporting.report_account_balance_reporting_generic
-msgid "Generic balance report"
-msgstr "Informe de balanç genèric"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template:0
-msgid "Account balance report templates"
-msgstr "Plantilles d'informe de balanç comptable"
-
-#. module: account_balance_reporting
-#: model:ir.ui.menu,name:account_balance_reporting.menu_account_balance_reporting_templates
-msgid "Templates"
-msgstr "Plantilles"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template,description:0
-msgid "Description"
-msgstr "Descripció"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template.line:0
-msgid "Account balance report template line"
-msgstr "Línia de plantilla d'informe de balanç de comptes"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,name:0
-#: field:account.balance.reporting.line,name:0
-#: field:account.balance.reporting.template,name:0
-#: field:account.balance.reporting.template.line,name:0
-msgid "Name"
-msgstr "Nom"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: field:account.balance.reporting,line_ids:0
-#: view:account.balance.reporting.template:0
-#: field:account.balance.reporting.template,line_ids:0
-msgid "Lines"
-msgstr "Línies"
-
-#. module: account_balance_reporting
-#: model:ir.ui.menu,name:account_balance_reporting.menu_account_balance_reporting_reports
-msgid "Reports"
-msgstr "Informes"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: view:account.balance.reporting.line:0
-#: view:account.balance.reporting.template:0
-#: view:account.balance.reporting.template.line:0
-msgid "Values"
-msgstr "Valors"
-
-#. module: account_balance_reporting
-#: model:ir.model,name:account_balance_reporting.model_account_balance_reporting_template
-msgid "account.balance.reporting.template"
-msgstr "account.balance.reporting.template"
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,current_value:0
-#: help:account.balance.reporting.template.line,previous_value:0
-msgid ""
-"Value calculation formula: Depending on this formula the final value is "
-"calculated as follows:\n"
-"  Empy template value: sum of (this concept) children values.\n"
-"  Number with decimal point (\"10.2\"): that value (constant).\n"
-"  Account numbers separated by commas (\"430,431,(437)\"): Sum of the "
-"account balances\n"
-"    (the sign of the balance depends on the balance mode).\n"
-"  Concept codes separated by \"+\" (\"11000+12000\"): Sum of those concepts "
-"values.\n"
-msgstr ""
-"Fórmula pel càlcul del valor: Depenent d'aquesta fórmula el valor final es "
-"calcula com segueix:\n"
-"  Valor buit: Suma dels valors dels fills (d'aquest concepte).\n"
-"  Número amb punt decimal (\"10.2\"): Aquest número (constant).\n"
-"  Números de comptes separats per comes (\"430,431,(437)\"): Suma dels "
-"saldos dels comptes\n"
-"    (el signe del saldo depèn del mode de saldo).\n"
-"  Codis de conceptes separats per \"+\" (\"11000+12000\"): Suma dels valors "
-"d'aquests conceptes.\n"
-
-#. module: account_balance_reporting
-#: rml:report_account_balance_reporting.generic:0
-#: rml:report_account_balance_reporting.generic_non_zero:0
-msgid "CONCEPT"
-msgstr "CONCEPTE"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.line:0
-msgid "Account balance report line"
-msgstr "Línia d'informe de balanç de comptes"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,sequence:0
-#: field:account.balance.reporting.template.line,sequence:0
-msgid "Sequence"
-msgstr "Seqüència"
-
-#. module: account_balance_reporting
-#: wizard_view:account_balance_reporting.print_wizard,init:0
-#: model:ir.actions.wizard,name:account_balance_reporting.wiz_account_balance_reporting_print
-msgid "Print report"
-msgstr "Imprimeix informe"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Account balance report"
-msgstr "Informe de balanç de comptes"
-
-#. module: account_balance_reporting
-#: model:ir.module.module,shortdesc:account_balance_reporting.module_meta_information
-msgid "Account balance reporting engine"
-msgstr "Motor d'informes de balanços de comptes"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting,state:0
-msgid "Canceled"
-msgstr "Cancel·lat"
-
-#~ msgid "account.balance.report"
-#~ msgstr "account.balance.report"
-
-#~ msgid "account.balance.report.template.line"
-#~ msgstr "account.balance.report.template.line"
-
-#~ msgid "account.balance.report.line"
-#~ msgstr "account.balance.report.line"
-
-#~ msgid "account.balance.report.template"
-#~ msgstr "account.balance.report.template"

=== removed file 'account_balance_reporting/i18n/es.po'
--- account_balance_reporting/i18n/es.po	2012-12-11 10:06:23 +0000
+++ account_balance_reporting/i18n/es.po	1970-01-01 00:00:00 +0000
@@ -1,610 +0,0 @@
-# Translation of OpenERP Server.
-# This file contains the translation of the following modules:
-#	* account_balance_reporting
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: OpenERP Server 5.0.6\n"
-"Report-Msgid-Bugs-To: support@openerp.com\n"
-"POT-Creation-Date: 2009-09-27 08:18+0000\n"
-"PO-Revision-Date: 2010-12-13 22:27+0000\n"
-"Last-Translator: Jordi Esteve (www.zikzakmedia.com) "
-"<jesteve@zikzakmedia.com>\n"
-"Language-Team: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-05-24 11:38+0000\n"
-"X-Generator: Launchpad (build 15288)\n"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,current_period_ids:0
-msgid "Fiscal year 1 periods"
-msgstr "Periodos ejercicio fiscal 1"
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,css_class:0
-msgid "Style-sheet class"
-msgstr "Clase de hoja de estilos"
-
-#. module: account_balance_reporting
-#: constraint:ir.actions.act_window:0
-msgid "Invalid model name in the action definition."
-msgstr "Nombre de modelo no válido en la definición de la acción."
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,balance_mode:0
-msgid "Debit-Credit"
-msgstr "Debe-Haber"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,parent_id:0
-#: field:account.balance.reporting.template.line,parent_id:0
-msgid "Parent"
-msgstr "Padre"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,company_id:0
-msgid "Company"
-msgstr "Compañía"
-
-#. module: account_balance_reporting
-#: model:ir.actions.act_window,name:account_balance_reporting.action_view_account_balance_reporting_template
-msgid "Account balance templates"
-msgstr "Plantillas de cuentas anuales"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,balance_mode:0
-msgid "Credit-Debit"
-msgstr "Haber-Debe"
-
-#. module: account_balance_reporting
-#: model:ir.actions.wizard,name:account_balance_reporting.wiz_account_balance_reporting_calculate
-msgid "Calculate report"
-msgstr "Calcular informe"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,notes:0
-msgid "Notes"
-msgstr "Notas"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: model:ir.actions.act_window,name:account_balance_reporting.action_view_account_balance_reporting
-#: model:ir.ui.menu,name:account_balance_reporting.menu_account_balance_reporting
-msgid "Account balance reports"
-msgstr "Informes de cuentas anuales"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template:0
-msgid "Template lines"
-msgstr "Líneas de plantilla"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: field:account.balance.reporting,current_fiscalyear_id:0
-#: field:account.balance.reporting.line,current_value:0
-msgid "Fiscal year 1"
-msgstr "Ejercicio fiscal 1"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: field:account.balance.reporting,previous_fiscalyear_id:0
-#: field:account.balance.reporting.line,previous_value:0
-msgid "Fiscal year 2"
-msgstr "Ejercicio fiscal 2"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,balance_mode:0
-msgid "Debit-Credit, reversed with brakets"
-msgstr "Debe-Haber, inverso con paréntesis"
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,code:0
-msgid "Concept code, may be used on formulas to reference this line"
-msgstr ""
-"Código de concepto, puede ser usado en las fórmulas para referenciar esta "
-"línea."
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,sequence:0
-msgid "Lines will be sorted/grouped by this field"
-msgstr "Las líneas serán ordenadas/agrupadas por este campo."
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template.line,negate:0
-msgid "Negate"
-msgstr "Negar"
-
-#. module: account_balance_reporting
-#: model:ir.model,name:account_balance_reporting.model_account_balance_reporting_template_line
-msgid "account.balance.reporting.template.line"
-msgstr "account.balance.reporting.template.line"
-
-#. module: account_balance_reporting
-#: rml:report_account_balance_reporting.generic:0
-#: rml:report_account_balance_reporting.generic_non_zero:0
-msgid "CODE"
-msgstr "CÓDIGO"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,template_id:0
-#: field:account.balance.reporting.template.line,report_id:0
-msgid "Template"
-msgstr "Plantilla"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Parameters"
-msgstr "Parámetros"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Confirm"
-msgstr "Confirmar"
-
-#. module: account_balance_reporting
-#: rml:report_account_balance_reporting.generic:0
-#: rml:report_account_balance_reporting.generic_non_zero:0
-msgid "NOTES"
-msgstr "NOTAS"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template.line:0
-msgid "Account balance report template lines"
-msgstr "Líneas plantilla informe cuentas anuales"
-
-#. module: account_balance_reporting
-#: wizard_view:account_balance_reporting.print_wizard,init:0
-msgid "Report data"
-msgstr "Datos del informe"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: field:account.balance.reporting,state:0
-msgid "State"
-msgstr "Estado"
-
-#. module: account_balance_reporting
-#: wizard_button:account_balance_reporting.print_wizard,init,print:0
-msgid "Print"
-msgstr "Imprimir"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template,type:0
-msgid "Type"
-msgstr "Tipo"
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template,balance_mode:0
-msgid ""
-"Formula calculation mode: Depending on it, the balance is calculated as "
-"follows:\n"
-"  Mode 0: debit-credit (default);\n"
-"  Mode 1: debit-credit, credit-debit for accounts in brackets;\n"
-"  Mode 2: credit-debit;\n"
-"  Mode 3: credit-debit, debit-credit for accounts in brackets."
-msgstr ""
-"Modo de cálculo de la fórmula: Dependiendo de éste, el saldo se calcula como "
-"sigue:\n"
-"  Modo 0: debe-haber (por defecto);\n"
-"  Modo 1: debe-haber, haber-debe para las cuentas con paréntesis;\n"
-"  Modo 2: haber-debe;\n"
-"  Modo 3: haber-debe, debe-haber para las cuentas con paréntesis."
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,negate:0
-msgid "Negate the value (change the sign of the balance)"
-msgstr "Negar el valor (cambiar el signo del saldo)."
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Report line"
-msgstr "Línea de informe"
-
-#. module: account_balance_reporting
-#: model:ir.module.module,description:account_balance_reporting.module_meta_information
-msgid ""
-"\n"
-"The module allows the user to create account balance reports and templates,\n"
-"comparing the values of 'accounting concepts' between two fiscal years\n"
-"or a set of fiscal periods.\n"
-"\n"
-"Accounting concepts values can be calculated as the sum of some account "
-"balances,\n"
-"the sum of its children, other account concepts or constant values.\n"
-"\n"
-"Generated reports are stored as objects on the server,\n"
-"so you can check them anytime later or edit them\n"
-"(to add notes for example) before printing.\n"
-"\n"
-"The module lets the user add new templates of the reports concepts,\n"
-"and associate them a specific \"XML reports\" (OpenERP RML files for "
-"example)\n"
-"with the design used when printing.\n"
-"So it is very easy to add predefined country-specific official reports.\n"
-"\n"
-"The user interface has been designed to be as much user-friendly as it can "
-"be.\n"
-"\n"
-"Note: It has been designed to meet Spanish/Spain localization needs,\n"
-"but it might be used as a generic accounting report engine.\n"
-"            "
-msgstr ""
-"\n"
-"El módulo permite al usuario crear informes y plantillas de balances "
-"contables,\n"
-"comparando los valores de 'conceptos contables' entre dos ejercicios "
-"fiscales\n"
-"o un conjunto de periodos fiscales.\n"
-"\n"
-"Los valores de los conceptos contables pueden ser calculados como la suma de "
-"los saldos de algunas cuentas,\n"
-"la suma de sus hijos, otros conceptos contables o valores constantes.\n"
-"\n"
-"Los informes generados se almacenan como objetos en el servidor,\n"
-"así que se pueden consultar más tarde o editar\n"
-"(para añadir notas por ejemplo) antes de imprimir.\n"
-"\n"
-"El módulo permite al usuario añadir nuevas plantillas de conceptos "
-"fiscales,\n"
-"y asociarles \"informes XML\" (archivos RML de OpenERP por ejemplo) "
-"específicos\n"
-"con el diseño a usar en la impresión.\n"
-"Así que es muy fácil añadir informes oficiales predefinidos específicos de "
-"un país.\n"
-"\n"
-"La interfaz de usuario ha sido diseñada para ser tan amigable como es "
-"posible.\n"
-"\n"
-"Nota: Ha sido diseñado para cubrir las necesidades de la localización "
-"Española/España,\n"
-"pero puede ser usado como un motor de informes contables genérico.\n"
-"            "
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,report_id:0
-msgid "Report"
-msgstr "Informe"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Configuration"
-msgstr "Configuración"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,css_class:0
-#: field:account.balance.reporting.template.line,css_class:0
-msgid "CSS Class"
-msgstr "Clase CSS"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template,report_xml_id:0
-#: wizard_view:account_balance_reporting.print_wizard,init:0
-msgid "Report design"
-msgstr "Diseño del informe"
-
-#. module: account_balance_reporting
-#: constraint:ir.ui.view:0
-msgid "Invalid XML for View Architecture!"
-msgstr "¡XML no válido para la definición de la vista!"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template:0
-msgid "Account balance report template"
-msgstr "Plantilla informe cuentas anuales"
-
-#. module: account_balance_reporting
-#: model:ir.actions.report.xml,name:account_balance_reporting.report_account_balance_reporting_default_non_zero
-msgid "Generic balance report (non zero lines)"
-msgstr "Informe balance genérico (sin líneas a cero)"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,calc_date:0
-#: field:account.balance.reporting.line,calc_date:0
-msgid "Calculation date"
-msgstr "Fecha cálculo"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,previous_period_ids:0
-msgid "Fiscal year 2 periods"
-msgstr "Periodos ejercicio fiscal 2"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template:0
-msgid "Template line"
-msgstr "Línea de plantilla"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: view:account.balance.reporting.line:0
-#: view:account.balance.reporting.template:0
-#: view:account.balance.reporting.template.line:0
-msgid "Style"
-msgstr "Estilo"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Calculate"
-msgstr "Calcular"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Level 4"
-msgstr "Nivel 4"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: selection:account.balance.reporting,state:0
-msgid "Draft"
-msgstr "Borrador"
-
-#. module: account_balance_reporting
-#: constraint:ir.model:0
-msgid ""
-"The Object name must start with x_ and not contain any special character !"
-msgstr ""
-"¡El nombre del objeto debe empezar con x_ y no contener ningún carácter "
-"especial!"
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,name:0
-msgid "Concept name/description"
-msgstr "Nombre del concepto/descripción"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting,state:0
-msgid "Processing"
-msgstr "Procesando"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,type:0
-msgid "User"
-msgstr "Usuario"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template.line,current_value:0
-msgid "Fiscal year 1 formula"
-msgstr "Fórmula ejercicio fiscal 1"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,template_line_id:0
-msgid "Line template"
-msgstr "Plantilla de línea"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,balance_mode:0
-msgid "Credit-Debit, reversed with brakets"
-msgstr "Haber-Debe, inverso con paréntesis"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Default"
-msgstr "Por defecto"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template.line,previous_value:0
-msgid "Fiscal year 2 formula"
-msgstr "Fórmula ejercicio fiscal 2"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,type:0
-msgid "System"
-msgstr "Sistema"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting,state:0
-msgid "Processed"
-msgstr "Procesado"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.line:0
-msgid "Account balance report lines"
-msgstr "Líneas informe cuentas anuales"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template,balance_mode:0
-msgid "Balance mode"
-msgstr "Modo de saldo"
-
-#. module: account_balance_reporting
-#: model:ir.model,name:account_balance_reporting.model_account_balance_reporting_line
-msgid "account.balance.reporting.line"
-msgstr "account.balance.reporting.line"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,code:0
-#: field:account.balance.reporting.template.line,code:0
-msgid "Code"
-msgstr "Código"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting,state:0
-msgid "Done"
-msgstr "Realizado"
-
-#. module: account_balance_reporting
-#: model:ir.model,name:account_balance_reporting.model_account_balance_reporting
-msgid "account.balance.reporting"
-msgstr "account.balance.reporting"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: wizard_button:account_balance_reporting.print_wizard,init,end:0
-msgid "Cancel"
-msgstr "Cancelar"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Report lines"
-msgstr "Líneas del informe"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,child_ids:0
-#: field:account.balance.reporting.template.line,child_ids:0
-msgid "Children"
-msgstr "Hijos"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Level 5"
-msgstr "Nivel 5"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template:0
-msgid "Information"
-msgstr "Información"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Level 1"
-msgstr "Nivel 1"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Level 3"
-msgstr "Nivel 3"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Level 2"
-msgstr "Nivel 2"
-
-#. module: account_balance_reporting
-#: model:ir.actions.report.xml,name:account_balance_reporting.report_account_balance_reporting_generic
-msgid "Generic balance report"
-msgstr "Informe balance genérico"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template:0
-msgid "Account balance report templates"
-msgstr "Plantillas informe cuentas anuales"
-
-#. module: account_balance_reporting
-#: model:ir.ui.menu,name:account_balance_reporting.menu_account_balance_reporting_templates
-msgid "Templates"
-msgstr "Plantillas"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template,description:0
-msgid "Description"
-msgstr "Descripción"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template.line:0
-msgid "Account balance report template line"
-msgstr "Línea plantilla informe cuentas anuales"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,name:0
-#: field:account.balance.reporting.line,name:0
-#: field:account.balance.reporting.template,name:0
-#: field:account.balance.reporting.template.line,name:0
-msgid "Name"
-msgstr "Nombre"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: field:account.balance.reporting,line_ids:0
-#: view:account.balance.reporting.template:0
-#: field:account.balance.reporting.template,line_ids:0
-msgid "Lines"
-msgstr "Líneas"
-
-#. module: account_balance_reporting
-#: model:ir.ui.menu,name:account_balance_reporting.menu_account_balance_reporting_reports
-msgid "Reports"
-msgstr "Informes"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: view:account.balance.reporting.line:0
-#: view:account.balance.reporting.template:0
-#: view:account.balance.reporting.template.line:0
-msgid "Values"
-msgstr "Valores"
-
-#. module: account_balance_reporting
-#: model:ir.model,name:account_balance_reporting.model_account_balance_reporting_template
-msgid "account.balance.reporting.template"
-msgstr "account.balance.reporting.template"
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,current_value:0
-#: help:account.balance.reporting.template.line,previous_value:0
-msgid ""
-"Value calculation formula: Depending on this formula the final value is "
-"calculated as follows:\n"
-"  Empy template value: sum of (this concept) children values.\n"
-"  Number with decimal point (\"10.2\"): that value (constant).\n"
-"  Account numbers separated by commas (\"430,431,(437)\"): Sum of the "
-"account balances\n"
-"    (the sign of the balance depends on the balance mode).\n"
-"  Concept codes separated by \"+\" (\"11000+12000\"): Sum of those concepts "
-"values.\n"
-msgstr ""
-"Fórmula de cálculo del valor: Dependiendo de esta fórmula el valor final se "
-"calcula como sigue:\n"
-"  Valor vacío: suma de los valores de los hijos (de este concepto).\n"
-"  Número con punto decimal (\"10.2\"): ese número (constante).\n"
-"  Números de cuentas separados por comas (\"430,431,(437)\"): Suma de los "
-"saldos de las cuentas\n"
-"    (el signo del saldo depende del modo de saldo).\n"
-"  Códigos de conceptos separados por \"+\" (\"11000+12000\"): Suma de los "
-"valores de dichos conceptos.\n"
-
-#. module: account_balance_reporting
-#: rml:report_account_balance_reporting.generic:0
-#: rml:report_account_balance_reporting.generic_non_zero:0
-msgid "CONCEPT"
-msgstr "CONCEPTO"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.line:0
-msgid "Account balance report line"
-msgstr "Línea informe cuentas anuales"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,sequence:0
-#: field:account.balance.reporting.template.line,sequence:0
-msgid "Sequence"
-msgstr "Orden"
-
-#. module: account_balance_reporting
-#: wizard_view:account_balance_reporting.print_wizard,init:0
-#: model:ir.actions.wizard,name:account_balance_reporting.wiz_account_balance_reporting_print
-msgid "Print report"
-msgstr "Imprimir informe"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Account balance report"
-msgstr "Informe cuentas anuales"
-
-#. module: account_balance_reporting
-#: model:ir.module.module,shortdesc:account_balance_reporting.module_meta_information
-msgid "Account balance reporting engine"
-msgstr "Motor de informes de balances contables"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting,state:0
-msgid "Canceled"
-msgstr "Cancelado"
-
-#~ msgid "account.balance.report.template.line"
-#~ msgstr "account.balance.report.template.line"
-
-#~ msgid "account.balance.report.line"
-#~ msgstr "account.balance.report.line"
-
-#~ msgid "account.balance.report"
-#~ msgstr "account.balance.report"
-
-#~ msgid "account.balance.report.template"
-#~ msgstr "account.balance.report.template"

=== removed file 'account_balance_reporting/i18n/gl.po'
--- account_balance_reporting/i18n/gl.po	2012-12-11 10:06:23 +0000
+++ account_balance_reporting/i18n/gl.po	1970-01-01 00:00:00 +0000
@@ -1,605 +0,0 @@
-# Galician translation for openobject-addons
-# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2009-09-27 08:18+0000\n"
-"PO-Revision-Date: 2010-04-28 15:19+0000\n"
-"Last-Translator: Borja López Soilán (Pexego) <Unknown>\n"
-"Language-Team: Galician <gl@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-05-24 11:38+0000\n"
-"X-Generator: Launchpad (build 15288)\n"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,current_period_ids:0
-msgid "Fiscal year 1 periods"
-msgstr "Períodos exercicio fiscal 1"
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,css_class:0
-msgid "Style-sheet class"
-msgstr "Clase de folla de estilos"
-
-#. module: account_balance_reporting
-#: constraint:ir.actions.act_window:0
-msgid "Invalid model name in the action definition."
-msgstr "Nome do modelo incorrecto na definición da acción."
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,balance_mode:0
-msgid "Debit-Credit"
-msgstr "Debe-Haber"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,parent_id:0
-#: field:account.balance.reporting.template.line,parent_id:0
-msgid "Parent"
-msgstr "Pai"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,company_id:0
-msgid "Company"
-msgstr "Compañía"
-
-#. module: account_balance_reporting
-#: model:ir.actions.act_window,name:account_balance_reporting.action_view_account_balance_reporting_template
-msgid "Account balance templates"
-msgstr "Modelo de contas anuais"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,balance_mode:0
-msgid "Credit-Debit"
-msgstr "Haber-Debe"
-
-#. module: account_balance_reporting
-#: model:ir.actions.wizard,name:account_balance_reporting.wiz_account_balance_reporting_calculate
-msgid "Calculate report"
-msgstr "Calcular reporte"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,notes:0
-msgid "Notes"
-msgstr "Anotacións"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: model:ir.actions.act_window,name:account_balance_reporting.action_view_account_balance_reporting
-#: model:ir.ui.menu,name:account_balance_reporting.menu_account_balance_reporting
-msgid "Account balance reports"
-msgstr "Informe de contas anuais"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template:0
-msgid "Template lines"
-msgstr "Liñas do modelo"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: field:account.balance.reporting,current_fiscalyear_id:0
-#: field:account.balance.reporting.line,current_value:0
-msgid "Fiscal year 1"
-msgstr "Exercicio fiscal 1"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: field:account.balance.reporting,previous_fiscalyear_id:0
-#: field:account.balance.reporting.line,previous_value:0
-msgid "Fiscal year 2"
-msgstr "Exercicio fiscal 2"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,balance_mode:0
-msgid "Debit-Credit, reversed with brakets"
-msgstr "Debe-Haber, inverso con parénteses"
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,code:0
-msgid "Concept code, may be used on formulas to reference this line"
-msgstr ""
-"Código de concepto, pode ser usado nas fórmulas para referenciar esta liña"
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,sequence:0
-msgid "Lines will be sorted/grouped by this field"
-msgstr "As liñas serán ordenadas/agrupadas por este campo"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template.line,negate:0
-msgid "Negate"
-msgstr "Negar"
-
-#. module: account_balance_reporting
-#: model:ir.model,name:account_balance_reporting.model_account_balance_reporting_template_line
-msgid "account.balance.reporting.template.line"
-msgstr "account.balance.reporting.template.line"
-
-#. module: account_balance_reporting
-#: rml:report_account_balance_reporting.generic:0
-#: rml:report_account_balance_reporting.generic_non_zero:0
-msgid "CODE"
-msgstr "CÓDIGO"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,template_id:0
-#: field:account.balance.reporting.template.line,report_id:0
-msgid "Template"
-msgstr "Modelo"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Parameters"
-msgstr "Parámetros"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Confirm"
-msgstr "Confirmar"
-
-#. module: account_balance_reporting
-#: rml:report_account_balance_reporting.generic:0
-#: rml:report_account_balance_reporting.generic_non_zero:0
-msgid "NOTES"
-msgstr "NOTAS"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template.line:0
-msgid "Account balance report template lines"
-msgstr "Liñas modelo informe contas anuais"
-
-#. module: account_balance_reporting
-#: wizard_view:account_balance_reporting.print_wizard,init:0
-msgid "Report data"
-msgstr "Datos do reporte"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: field:account.balance.reporting,state:0
-msgid "State"
-msgstr "Estado"
-
-#. module: account_balance_reporting
-#: wizard_button:account_balance_reporting.print_wizard,init,print:0
-msgid "Print"
-msgstr "Imprimir"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template,type:0
-msgid "Type"
-msgstr "Tipo"
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template,balance_mode:0
-msgid ""
-"Formula calculation mode: Depending on it, the balance is calculated as "
-"follows:\n"
-"  Mode 0: debit-credit (default);\n"
-"  Mode 1: debit-credit, credit-debit for accounts in brackets;\n"
-"  Mode 2: credit-debit;\n"
-"  Mode 3: credit-debit, debit-credit for accounts in brackets."
-msgstr ""
-"Modo de cálculo da fórmula: Dependendo deste, o saldo calcúlase como segue:\n"
-"  Modo 0: debe-haber (por defecto);\n"
-"  Modo 1: debe-haber, haber-debe para as contas con parénteses;\n"
-"  Modo 2: haber-debe;\n"
-"  Modo 3: haber-debe, debe-haber para as contas con parénteses."
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,negate:0
-msgid "Negate the value (change the sign of the balance)"
-msgstr "Negar o valor (cambialo signo do saldo)"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Report line"
-msgstr "Liña de reporte"
-
-#. module: account_balance_reporting
-#: model:ir.module.module,description:account_balance_reporting.module_meta_information
-msgid ""
-"\n"
-"The module allows the user to create account balance reports and templates,\n"
-"comparing the values of 'accounting concepts' between two fiscal years\n"
-"or a set of fiscal periods.\n"
-"\n"
-"Accounting concepts values can be calculated as the sum of some account "
-"balances,\n"
-"the sum of its children, other account concepts or constant values.\n"
-"\n"
-"Generated reports are stored as objects on the server,\n"
-"so you can check them anytime later or edit them\n"
-"(to add notes for example) before printing.\n"
-"\n"
-"The module lets the user add new templates of the reports concepts,\n"
-"and associate them a specific \"XML reports\" (OpenERP RML files for "
-"example)\n"
-"with the design used when printing.\n"
-"So it is very easy to add predefined country-specific official reports.\n"
-"\n"
-"The user interface has been designed to be as much user-friendly as it can "
-"be.\n"
-"\n"
-"Note: It has been designed to meet Spanish/Spain localization needs,\n"
-"but it might be used as a generic accounting report engine.\n"
-"            "
-msgstr ""
-"\n"
-"O modulo permítelle ó usuario crear informes e modelos de balances "
-"contables,\n"
-"comparando os valores de 'conceptos fiscais' entre dous exercicios fiscais\n"
-"ou un conxunto de períodos fiscais.\n"
-"\n"
-"Os valores dos conceptos contables poden ser calculados como a suma dos "
-"saldos dalgunhas contas,\n"
-"a suma dos seus fillos, outros conceptos contables ou valores constantes.\n"
-"\n"
-"Los informes xerados almacénanse como obxetos no servidor,\n"
-"así que se pódense consultar máis tarde ou editar\n"
-"(para engadir notas por exemplo) antes de imprimir.\n"
-"\n"
-"O módulo permítelle ó usuario engadir novos modelos de conceptos fiscais,\n"
-"e asociarlles \"reportes XML\" (ficheiros RML de OpenERP por exemplo) "
-"específicos\n"
-"co deseño a usares na impresión.\n"
-"Así que é moi fácil engadir informes oficiais predefinidos específicos dun "
-"país.\n"
-"\n"
-"A interface de usuario foi deseñada para ser tan amigable como é posible.\n"
-"\n"
-"Nota: Foi deseñado para cubrir as necesidades da localización "
-"Española/España,\n"
-"pero pode ser usado como un motor de informes contables xenérico.\n"
-"            "
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,report_id:0
-msgid "Report"
-msgstr "Reporte"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Configuration"
-msgstr "Configuración"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,css_class:0
-#: field:account.balance.reporting.template.line,css_class:0
-msgid "CSS Class"
-msgstr "Clase CSS"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template,report_xml_id:0
-#: wizard_view:account_balance_reporting.print_wizard,init:0
-msgid "Report design"
-msgstr "Deseño do reporte"
-
-#. module: account_balance_reporting
-#: constraint:ir.ui.view:0
-msgid "Invalid XML for View Architecture!"
-msgstr "¡XML non válido para a definición da vista!"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template:0
-msgid "Account balance report template"
-msgstr "Modelo informe contas anuais"
-
-#. module: account_balance_reporting
-#: model:ir.actions.report.xml,name:account_balance_reporting.report_account_balance_reporting_default_non_zero
-msgid "Generic balance report (non zero lines)"
-msgstr "Informe balance xenérico (sen liñas a cero)"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,calc_date:0
-#: field:account.balance.reporting.line,calc_date:0
-msgid "Calculation date"
-msgstr "Data cálculo"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,previous_period_ids:0
-msgid "Fiscal year 2 periods"
-msgstr "Períodos exercicio fiscal 2"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template:0
-msgid "Template line"
-msgstr "Liña de modelo"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: view:account.balance.reporting.line:0
-#: view:account.balance.reporting.template:0
-#: view:account.balance.reporting.template.line:0
-msgid "Style"
-msgstr "Estilo"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Calculate"
-msgstr "Calcular"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Level 4"
-msgstr "Nivel 4"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: selection:account.balance.reporting,state:0
-msgid "Draft"
-msgstr "Esbozo"
-
-#. module: account_balance_reporting
-#: constraint:ir.model:0
-msgid ""
-"The Object name must start with x_ and not contain any special character !"
-msgstr ""
-"¡O nome do obxecto debe comezar con x_ y e non conter ningún carácter "
-"especial!"
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,name:0
-msgid "Concept name/description"
-msgstr "Nome do concepto/descrición"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting,state:0
-msgid "Processing"
-msgstr "Procesando"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,type:0
-msgid "User"
-msgstr "Usuario"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template.line,current_value:0
-msgid "Fiscal year 1 formula"
-msgstr "Fórmula exercicio fiscal 1"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,template_line_id:0
-msgid "Line template"
-msgstr "Modelo de liña"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,balance_mode:0
-msgid "Credit-Debit, reversed with brakets"
-msgstr "Haber-Debe, inverso con parénteses"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Default"
-msgstr "Por omisión"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template.line,previous_value:0
-msgid "Fiscal year 2 formula"
-msgstr "Fórmula exercicio fiscal 2"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,type:0
-msgid "System"
-msgstr "Sistema"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting,state:0
-msgid "Processed"
-msgstr "Procesada"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.line:0
-msgid "Account balance report lines"
-msgstr "Liñas informe contas anuais"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template,balance_mode:0
-msgid "Balance mode"
-msgstr "Modo de saldo"
-
-#. module: account_balance_reporting
-#: model:ir.model,name:account_balance_reporting.model_account_balance_reporting_line
-msgid "account.balance.reporting.line"
-msgstr "account.balance.reporting.line"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,code:0
-#: field:account.balance.reporting.template.line,code:0
-msgid "Code"
-msgstr "Código"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting,state:0
-msgid "Done"
-msgstr "Feito"
-
-#. module: account_balance_reporting
-#: model:ir.model,name:account_balance_reporting.model_account_balance_reporting
-msgid "account.balance.reporting"
-msgstr "account.balance.reporting"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: wizard_button:account_balance_reporting.print_wizard,init,end:0
-msgid "Cancel"
-msgstr "Cancelar"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Report lines"
-msgstr "Liñas do informe"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,child_ids:0
-#: field:account.balance.reporting.template.line,child_ids:0
-msgid "Children"
-msgstr "Fillos"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Level 5"
-msgstr "Nivel 5"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template:0
-msgid "Information"
-msgstr "Información"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Level 1"
-msgstr "Nivel 1"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Level 3"
-msgstr "Nivel 3"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Level 2"
-msgstr "Nivel 2"
-
-#. module: account_balance_reporting
-#: model:ir.actions.report.xml,name:account_balance_reporting.report_account_balance_reporting_generic
-msgid "Generic balance report"
-msgstr "Informe balance xenérico"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template:0
-msgid "Account balance report templates"
-msgstr "Modelo informe contas anuais"
-
-#. module: account_balance_reporting
-#: model:ir.ui.menu,name:account_balance_reporting.menu_account_balance_reporting_templates
-msgid "Templates"
-msgstr "Modelos"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template,description:0
-msgid "Description"
-msgstr "Descrición"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template.line:0
-msgid "Account balance report template line"
-msgstr "Liña modelo informe contas anuais"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,name:0
-#: field:account.balance.reporting.line,name:0
-#: field:account.balance.reporting.template,name:0
-#: field:account.balance.reporting.template.line,name:0
-msgid "Name"
-msgstr "Nome"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: field:account.balance.reporting,line_ids:0
-#: view:account.balance.reporting.template:0
-#: field:account.balance.reporting.template,line_ids:0
-msgid "Lines"
-msgstr "Liñas"
-
-#. module: account_balance_reporting
-#: model:ir.ui.menu,name:account_balance_reporting.menu_account_balance_reporting_reports
-msgid "Reports"
-msgstr "Informes"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: view:account.balance.reporting.line:0
-#: view:account.balance.reporting.template:0
-#: view:account.balance.reporting.template.line:0
-msgid "Values"
-msgstr "Valores"
-
-#. module: account_balance_reporting
-#: model:ir.model,name:account_balance_reporting.model_account_balance_reporting_template
-msgid "account.balance.reporting.template"
-msgstr "account.balance.reporting.template"
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,current_value:0
-#: help:account.balance.reporting.template.line,previous_value:0
-msgid ""
-"Value calculation formula: Depending on this formula the final value is "
-"calculated as follows:\n"
-"  Empy template value: sum of (this concept) children values.\n"
-"  Number with decimal point (\"10.2\"): that value (constant).\n"
-"  Account numbers separated by commas (\"430,431,(437)\"): Sum of the "
-"account balances\n"
-"    (the sign of the balance depends on the balance mode).\n"
-"  Concept codes separated by \"+\" (\"11000+12000\"): Sum of those concepts "
-"values.\n"
-msgstr ""
-"Fórmula de cálculo do valor: Dependendo desta fórmula o valor final "
-"calculase como segue:\n"
-"  Valor valeiro: suma dos valores dos fillos (deste concepto).\n"
-"  Número con punto decimal (\"10.2\"): ese número (constante).\n"
-"  Números de contas separados por comas (\"430,431,(437)\"): Suma dos saldos "
-"das contas\n"
-"    (o signo do saldo depende do modo de saldo).\n"
-"  Códigos de conceptos separados por \"+\" (\"11000+12000\"): Suma dos "
-"valores de ditos conceptos.\n"
-
-#. module: account_balance_reporting
-#: rml:report_account_balance_reporting.generic:0
-#: rml:report_account_balance_reporting.generic_non_zero:0
-msgid "CONCEPT"
-msgstr "CONCEPTO"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.line:0
-msgid "Account balance report line"
-msgstr "Liña informe contas anuais"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,sequence:0
-#: field:account.balance.reporting.template.line,sequence:0
-msgid "Sequence"
-msgstr "Secuencia"
-
-#. module: account_balance_reporting
-#: wizard_view:account_balance_reporting.print_wizard,init:0
-#: model:ir.actions.wizard,name:account_balance_reporting.wiz_account_balance_reporting_print
-msgid "Print report"
-msgstr "Imprimir reporte"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Account balance report"
-msgstr "Informe contas anuais"
-
-#. module: account_balance_reporting
-#: model:ir.module.module,shortdesc:account_balance_reporting.module_meta_information
-msgid "Account balance reporting engine"
-msgstr "Motor de informes de balances contables"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting,state:0
-msgid "Canceled"
-msgstr "Cancelado"
-
-#~ msgid "account.balance.report.template.line"
-#~ msgstr "account.balance.report.template.line"
-
-#~ msgid "account.balance.report"
-#~ msgstr "account.balance.report"
-
-#~ msgid "account.balance.report.line"
-#~ msgstr "account.balance.report.line"
-
-#~ msgid "account.balance.report.template"
-#~ msgstr "account.balance.report.template"

=== removed file 'account_balance_reporting/i18n/pl.po'
--- account_balance_reporting/i18n/pl.po	2012-12-11 10:06:23 +0000
+++ account_balance_reporting/i18n/pl.po	1970-01-01 00:00:00 +0000
@@ -1,558 +0,0 @@
-# Polish translation for openobject-addons
-# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2009-09-27 08:18+0000\n"
-"PO-Revision-Date: 2010-08-22 06:07+0000\n"
-"Last-Translator: OpenERP Administrators <Unknown>\n"
-"Language-Team: Polish <pl@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-05-24 11:38+0000\n"
-"X-Generator: Launchpad (build 15288)\n"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,current_period_ids:0
-msgid "Fiscal year 1 periods"
-msgstr "Okresy roku podatkowego 1"
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,css_class:0
-msgid "Style-sheet class"
-msgstr ""
-
-#. module: account_balance_reporting
-#: constraint:ir.actions.act_window:0
-msgid "Invalid model name in the action definition."
-msgstr "Nieprawidłowa nazwa modelu w definicji akcji."
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,balance_mode:0
-msgid "Debit-Credit"
-msgstr "Winien - Ma"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,parent_id:0
-#: field:account.balance.reporting.template.line,parent_id:0
-msgid "Parent"
-msgstr "Nadrzędne"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,company_id:0
-msgid "Company"
-msgstr "Firma"
-
-#. module: account_balance_reporting
-#: model:ir.actions.act_window,name:account_balance_reporting.action_view_account_balance_reporting_template
-msgid "Account balance templates"
-msgstr "Szblony bilansu"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,balance_mode:0
-msgid "Credit-Debit"
-msgstr "Ma - Winien"
-
-#. module: account_balance_reporting
-#: model:ir.actions.wizard,name:account_balance_reporting.wiz_account_balance_reporting_calculate
-msgid "Calculate report"
-msgstr "Przelicz raport"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,notes:0
-msgid "Notes"
-msgstr "Notatki"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: model:ir.actions.act_window,name:account_balance_reporting.action_view_account_balance_reporting
-#: model:ir.ui.menu,name:account_balance_reporting.menu_account_balance_reporting
-msgid "Account balance reports"
-msgstr "Raporty bilansu"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template:0
-msgid "Template lines"
-msgstr "Pozycje szablonu"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: field:account.balance.reporting,current_fiscalyear_id:0
-#: field:account.balance.reporting.line,current_value:0
-msgid "Fiscal year 1"
-msgstr "Rok podatkowy 1"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: field:account.balance.reporting,previous_fiscalyear_id:0
-#: field:account.balance.reporting.line,previous_value:0
-msgid "Fiscal year 2"
-msgstr "Rok podatkowy 2"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,balance_mode:0
-msgid "Debit-Credit, reversed with brakets"
-msgstr "Winien-Ma, odwrócone w nawiasach"
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,code:0
-msgid "Concept code, may be used on formulas to reference this line"
-msgstr ""
-"Kod koncepcji, może być stosowany w wyrażeniach do odwołania się do tej "
-"pozycji"
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,sequence:0
-msgid "Lines will be sorted/grouped by this field"
-msgstr "Pozycje będą sortowane/grupowane wg tego pola"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template.line,negate:0
-msgid "Negate"
-msgstr "Zaneguj"
-
-#. module: account_balance_reporting
-#: model:ir.model,name:account_balance_reporting.model_account_balance_reporting_template_line
-msgid "account.balance.reporting.template.line"
-msgstr ""
-
-#. module: account_balance_reporting
-#: rml:report_account_balance_reporting.generic:0
-#: rml:report_account_balance_reporting.generic_non_zero:0
-msgid "CODE"
-msgstr "KOD"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,template_id:0
-#: field:account.balance.reporting.template.line,report_id:0
-msgid "Template"
-msgstr "Szablon"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Parameters"
-msgstr "Parametry"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Confirm"
-msgstr "Potwierdź"
-
-#. module: account_balance_reporting
-#: rml:report_account_balance_reporting.generic:0
-#: rml:report_account_balance_reporting.generic_non_zero:0
-msgid "NOTES"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template.line:0
-msgid "Account balance report template lines"
-msgstr "Pozycje szablonu raportu bilansu"
-
-#. module: account_balance_reporting
-#: wizard_view:account_balance_reporting.print_wizard,init:0
-msgid "Report data"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: field:account.balance.reporting,state:0
-msgid "State"
-msgstr "Stan"
-
-#. module: account_balance_reporting
-#: wizard_button:account_balance_reporting.print_wizard,init,print:0
-msgid "Print"
-msgstr "Drukuj"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template,type:0
-msgid "Type"
-msgstr "Typ"
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template,balance_mode:0
-msgid ""
-"Formula calculation mode: Depending on it, the balance is calculated as "
-"follows:\n"
-"  Mode 0: debit-credit (default);\n"
-"  Mode 1: debit-credit, credit-debit for accounts in brackets;\n"
-"  Mode 2: credit-debit;\n"
-"  Mode 3: credit-debit, debit-credit for accounts in brackets."
-msgstr ""
-"Tryb obliczania: w zależności od sposobu bilans jest obliczany następująco:\n"
-"  Tryb 0: Winien - Ma (domyślnie);\n"
-"  Tryb 1: Winien - Ma, Ma - Winien dla kont w nawiasie;\n"
-"  Tryb 2: Ma - Winien;\n"
-"  Tryb 3: Ma - Winien, Winien - Ma dla kont w nawiasie."
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,negate:0
-msgid "Negate the value (change the sign of the balance)"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Report line"
-msgstr ""
-
-#. module: account_balance_reporting
-#: model:ir.module.module,description:account_balance_reporting.module_meta_information
-msgid ""
-"\n"
-"The module allows the user to create account balance reports and templates,\n"
-"comparing the values of 'accounting concepts' between two fiscal years\n"
-"or a set of fiscal periods.\n"
-"\n"
-"Accounting concepts values can be calculated as the sum of some account "
-"balances,\n"
-"the sum of its children, other account concepts or constant values.\n"
-"\n"
-"Generated reports are stored as objects on the server,\n"
-"so you can check them anytime later or edit them\n"
-"(to add notes for example) before printing.\n"
-"\n"
-"The module lets the user add new templates of the reports concepts,\n"
-"and associate them a specific \"XML reports\" (OpenERP RML files for "
-"example)\n"
-"with the design used when printing.\n"
-"So it is very easy to add predefined country-specific official reports.\n"
-"\n"
-"The user interface has been designed to be as much user-friendly as it can "
-"be.\n"
-"\n"
-"Note: It has been designed to meet Spanish/Spain localization needs,\n"
-"but it might be used as a generic accounting report engine.\n"
-"            "
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,report_id:0
-msgid "Report"
-msgstr "Raport"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Configuration"
-msgstr "Konfiguracja"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,css_class:0
-#: field:account.balance.reporting.template.line,css_class:0
-msgid "CSS Class"
-msgstr "Klasa CSS"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template,report_xml_id:0
-#: wizard_view:account_balance_reporting.print_wizard,init:0
-msgid "Report design"
-msgstr ""
-
-#. module: account_balance_reporting
-#: constraint:ir.ui.view:0
-msgid "Invalid XML for View Architecture!"
-msgstr "Niewłaściwy XML dla architektury widoku!"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template:0
-msgid "Account balance report template"
-msgstr ""
-
-#. module: account_balance_reporting
-#: model:ir.actions.report.xml,name:account_balance_reporting.report_account_balance_reporting_default_non_zero
-msgid "Generic balance report (non zero lines)"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,calc_date:0
-#: field:account.balance.reporting.line,calc_date:0
-msgid "Calculation date"
-msgstr "Data obliczeń"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,previous_period_ids:0
-msgid "Fiscal year 2 periods"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template:0
-msgid "Template line"
-msgstr "Pozycja szablonu"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: view:account.balance.reporting.line:0
-#: view:account.balance.reporting.template:0
-#: view:account.balance.reporting.template.line:0
-msgid "Style"
-msgstr "Styl"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Calculate"
-msgstr "Oblicz"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Level 4"
-msgstr "Poziom 4"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: selection:account.balance.reporting,state:0
-msgid "Draft"
-msgstr "Projekt"
-
-#. module: account_balance_reporting
-#: constraint:ir.model:0
-msgid ""
-"The Object name must start with x_ and not contain any special character !"
-msgstr ""
-"Nazwa obiektu musi zaczynać się od x_ oraz nie może zawierać znaków "
-"specjalnych !"
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,name:0
-msgid "Concept name/description"
-msgstr ""
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting,state:0
-msgid "Processing"
-msgstr "Przetwarzanie"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,type:0
-msgid "User"
-msgstr "Użytkownik"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template.line,current_value:0
-msgid "Fiscal year 1 formula"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,template_line_id:0
-msgid "Line template"
-msgstr ""
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,balance_mode:0
-msgid "Credit-Debit, reversed with brakets"
-msgstr "Ma - Winien, odwrotnie w nawiasie"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Default"
-msgstr "Domyślne"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template.line,previous_value:0
-msgid "Fiscal year 2 formula"
-msgstr ""
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,type:0
-msgid "System"
-msgstr "System"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting,state:0
-msgid "Processed"
-msgstr "Przetworzony"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.line:0
-msgid "Account balance report lines"
-msgstr "Pozycje raportu bilansu"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template,balance_mode:0
-msgid "Balance mode"
-msgstr "Tryb bilansu"
-
-#. module: account_balance_reporting
-#: model:ir.model,name:account_balance_reporting.model_account_balance_reporting_line
-msgid "account.balance.reporting.line"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,code:0
-#: field:account.balance.reporting.template.line,code:0
-msgid "Code"
-msgstr "Kod"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting,state:0
-msgid "Done"
-msgstr "Wykonano"
-
-#. module: account_balance_reporting
-#: model:ir.model,name:account_balance_reporting.model_account_balance_reporting
-msgid "account.balance.reporting"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: wizard_button:account_balance_reporting.print_wizard,init,end:0
-msgid "Cancel"
-msgstr "Anuluj"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Report lines"
-msgstr "Pozycje raportu"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,child_ids:0
-#: field:account.balance.reporting.template.line,child_ids:0
-msgid "Children"
-msgstr "Podrzędne"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Level 5"
-msgstr "Poziom 5"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template:0
-msgid "Information"
-msgstr "Informacja"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Level 1"
-msgstr "Poziom 1"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Level 3"
-msgstr "Poziom 3"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Level 2"
-msgstr "Poziom 2"
-
-#. module: account_balance_reporting
-#: model:ir.actions.report.xml,name:account_balance_reporting.report_account_balance_reporting_generic
-msgid "Generic balance report"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template:0
-msgid "Account balance report templates"
-msgstr "Szablony bilansu"
-
-#. module: account_balance_reporting
-#: model:ir.ui.menu,name:account_balance_reporting.menu_account_balance_reporting_templates
-msgid "Templates"
-msgstr "Szablony"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template,description:0
-msgid "Description"
-msgstr "Opis"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template.line:0
-msgid "Account balance report template line"
-msgstr "Pozycja szablonu bilansu"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,name:0
-#: field:account.balance.reporting.line,name:0
-#: field:account.balance.reporting.template,name:0
-#: field:account.balance.reporting.template.line,name:0
-msgid "Name"
-msgstr "Nazwa"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: field:account.balance.reporting,line_ids:0
-#: view:account.balance.reporting.template:0
-#: field:account.balance.reporting.template,line_ids:0
-msgid "Lines"
-msgstr "Pozycje"
-
-#. module: account_balance_reporting
-#: model:ir.ui.menu,name:account_balance_reporting.menu_account_balance_reporting_reports
-msgid "Reports"
-msgstr "Raporty"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: view:account.balance.reporting.line:0
-#: view:account.balance.reporting.template:0
-#: view:account.balance.reporting.template.line:0
-msgid "Values"
-msgstr "Wartości"
-
-#. module: account_balance_reporting
-#: model:ir.model,name:account_balance_reporting.model_account_balance_reporting_template
-msgid "account.balance.reporting.template"
-msgstr ""
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,current_value:0
-#: help:account.balance.reporting.template.line,previous_value:0
-msgid ""
-"Value calculation formula: Depending on this formula the final value is "
-"calculated as follows:\n"
-"  Empy template value: sum of (this concept) children values.\n"
-"  Number with decimal point (\"10.2\"): that value (constant).\n"
-"  Account numbers separated by commas (\"430,431,(437)\"): Sum of the "
-"account balances\n"
-"    (the sign of the balance depends on the balance mode).\n"
-"  Concept codes separated by \"+\" (\"11000+12000\"): Sum of those concepts "
-"values.\n"
-msgstr ""
-
-#. module: account_balance_reporting
-#: rml:report_account_balance_reporting.generic:0
-#: rml:report_account_balance_reporting.generic_non_zero:0
-msgid "CONCEPT"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.line:0
-msgid "Account balance report line"
-msgstr "Pozycja bilansu"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,sequence:0
-#: field:account.balance.reporting.template.line,sequence:0
-msgid "Sequence"
-msgstr "Numeracja"
-
-#. module: account_balance_reporting
-#: wizard_view:account_balance_reporting.print_wizard,init:0
-#: model:ir.actions.wizard,name:account_balance_reporting.wiz_account_balance_reporting_print
-msgid "Print report"
-msgstr "Drukuj raport"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Account balance report"
-msgstr "Bilans"
-
-#. module: account_balance_reporting
-#: model:ir.module.module,shortdesc:account_balance_reporting.module_meta_information
-msgid "Account balance reporting engine"
-msgstr ""
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting,state:0
-msgid "Canceled"
-msgstr "Anulowano"

=== removed file 'account_balance_reporting/i18n/pt.po'
--- account_balance_reporting/i18n/pt.po	2012-12-11 10:06:23 +0000
+++ account_balance_reporting/i18n/pt.po	1970-01-01 00:00:00 +0000
@@ -1,598 +0,0 @@
-# Portuguese translation for openobject-addons
-# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2009-09-27 08:18+0000\n"
-"PO-Revision-Date: 2010-11-29 16:35+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Portuguese <pt@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-05-24 11:38+0000\n"
-"X-Generator: Launchpad (build 15288)\n"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,current_period_ids:0
-msgid "Fiscal year 1 periods"
-msgstr "Ano Fiscal 1º periodos"
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,css_class:0
-msgid "Style-sheet class"
-msgstr "Classe do estilo-folha"
-
-#. module: account_balance_reporting
-#: constraint:ir.actions.act_window:0
-msgid "Invalid model name in the action definition."
-msgstr "Nome do modelo inválido na definição da acção."
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,balance_mode:0
-msgid "Debit-Credit"
-msgstr "Débito - Crédito"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,parent_id:0
-#: field:account.balance.reporting.template.line,parent_id:0
-msgid "Parent"
-msgstr "Ascendente"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,company_id:0
-msgid "Company"
-msgstr "Empresa"
-
-#. module: account_balance_reporting
-#: model:ir.actions.act_window,name:account_balance_reporting.action_view_account_balance_reporting_template
-msgid "Account balance templates"
-msgstr "Modelos da Conta saldo"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,balance_mode:0
-msgid "Credit-Debit"
-msgstr "Crédito - Débito"
-
-#. module: account_balance_reporting
-#: model:ir.actions.wizard,name:account_balance_reporting.wiz_account_balance_reporting_calculate
-msgid "Calculate report"
-msgstr "Relatório calculado"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,notes:0
-msgid "Notes"
-msgstr "Notas"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: model:ir.actions.act_window,name:account_balance_reporting.action_view_account_balance_reporting
-#: model:ir.ui.menu,name:account_balance_reporting.menu_account_balance_reporting
-msgid "Account balance reports"
-msgstr "Relatório de conta saldo"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template:0
-msgid "Template lines"
-msgstr "Linhas de modelo"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: field:account.balance.reporting,current_fiscalyear_id:0
-#: field:account.balance.reporting.line,current_value:0
-msgid "Fiscal year 1"
-msgstr "Ano fiscal 1"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: field:account.balance.reporting,previous_fiscalyear_id:0
-#: field:account.balance.reporting.line,previous_value:0
-msgid "Fiscal year 2"
-msgstr "Ano fiscal 2"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,balance_mode:0
-msgid "Debit-Credit, reversed with brakets"
-msgstr "Débito - Crédito, invertida com suportes"
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,code:0
-msgid "Concept code, may be used on formulas to reference this line"
-msgstr ""
-"Código de concepção,podem ser utilizadas com formulas  para linhas de "
-"refência."
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,sequence:0
-msgid "Lines will be sorted/grouped by this field"
-msgstr "As linhas serão classificados/agrupados por este campo"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template.line,negate:0
-msgid "Negate"
-msgstr "Negar"
-
-#. module: account_balance_reporting
-#: model:ir.model,name:account_balance_reporting.model_account_balance_reporting_template_line
-msgid "account.balance.reporting.template.line"
-msgstr ""
-
-#. module: account_balance_reporting
-#: rml:report_account_balance_reporting.generic:0
-#: rml:report_account_balance_reporting.generic_non_zero:0
-msgid "CODE"
-msgstr "CÓDIGO"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,template_id:0
-#: field:account.balance.reporting.template.line,report_id:0
-msgid "Template"
-msgstr "Modelo"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Parameters"
-msgstr "Parâmetros"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Confirm"
-msgstr "Confirmar"
-
-#. module: account_balance_reporting
-#: rml:report_account_balance_reporting.generic:0
-#: rml:report_account_balance_reporting.generic_non_zero:0
-msgid "NOTES"
-msgstr "NOTAS"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template.line:0
-msgid "Account balance report template lines"
-msgstr "Modelo de linhas de contas relatório de saldo"
-
-#. module: account_balance_reporting
-#: wizard_view:account_balance_reporting.print_wizard,init:0
-msgid "Report data"
-msgstr "Data do relatório"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: field:account.balance.reporting,state:0
-msgid "State"
-msgstr "Estado"
-
-#. module: account_balance_reporting
-#: wizard_button:account_balance_reporting.print_wizard,init,print:0
-msgid "Print"
-msgstr "Imprimir"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template,type:0
-msgid "Type"
-msgstr "Tipo"
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template,balance_mode:0
-msgid ""
-"Formula calculation mode: Depending on it, the balance is calculated as "
-"follows:\n"
-"  Mode 0: debit-credit (default);\n"
-"  Mode 1: debit-credit, credit-debit for accounts in brackets;\n"
-"  Mode 2: credit-debit;\n"
-"  Mode 3: credit-debit, debit-credit for accounts in brackets."
-msgstr ""
-"Fórmula do método de calculo: Dependendo do que, o saldo é calculado da "
-"seguinte forma:\n"
-"    Modo 0: crédito, débito (padrão);\n"
-"  Modo 1: crédito, débito, de débito-crédito para as contas entre "
-"parênteses;\n"
-"  Modo 2: débito-crédito;\n"
-"  Modo 3: débito-crédito, crédito, débito para contas entre parênteses."
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,negate:0
-msgid "Negate the value (change the sign of the balance)"
-msgstr "Negue o valor (trocar o sinal do saldo)"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Report line"
-msgstr "Linha do relatório"
-
-#. module: account_balance_reporting
-#: model:ir.module.module,description:account_balance_reporting.module_meta_information
-msgid ""
-"\n"
-"The module allows the user to create account balance reports and templates,\n"
-"comparing the values of 'accounting concepts' between two fiscal years\n"
-"or a set of fiscal periods.\n"
-"\n"
-"Accounting concepts values can be calculated as the sum of some account "
-"balances,\n"
-"the sum of its children, other account concepts or constant values.\n"
-"\n"
-"Generated reports are stored as objects on the server,\n"
-"so you can check them anytime later or edit them\n"
-"(to add notes for example) before printing.\n"
-"\n"
-"The module lets the user add new templates of the reports concepts,\n"
-"and associate them a specific \"XML reports\" (OpenERP RML files for "
-"example)\n"
-"with the design used when printing.\n"
-"So it is very easy to add predefined country-specific official reports.\n"
-"\n"
-"The user interface has been designed to be as much user-friendly as it can "
-"be.\n"
-"\n"
-"Note: It has been designed to meet Spanish/Spain localization needs,\n"
-"but it might be used as a generic accounting report engine.\n"
-"            "
-msgstr ""
-"\n"
-"O módulo permite ao utilizador criar relatórios de saldo de conta e "
-"modelos,\n"
-"comparando os valores de \"conceitos de contabilidade\" entre dois anos "
-"fiscais\n"
-"ou um conjunto de exercícios fiscais.\n"
-"\n"
-"valores conceitos de contabilidade pode ser calculada como a soma de alguns "
-"saldos de contas,\n"
-"a soma dos seus filhos, conta outros conceitos ou valores constantes.\\n\n"
-"Os relatórios gerados são armazenados como objetos no servidor,\n"
-"para que você possa vê-los a qualquer momento posterior, ou editá-los\n"
-" (Para adicionar notas, por exemplo) antes de imprimir.\n"
-"\n"
-"O módulo permite ao usuário adicionar novos modelos dos conceitos de "
-"relatórios\n"
-"e associá-los um específico \"relatórios XML\" (ficheiros OpenERP RML, por "
-"exemplo)\n"
-"com um projeto utilizado na impressão.\n"
-" Assim é muito fácil adicionar predefinidos relatórios oficiais específicos "
-"de cada país.\n"
-"\n"
-"A interface do utilizador foi concebido para ser tão conviviais quanto "
-"possível.\n"
-"\n"
-"Nota: Ele foi projetado para atender Espanhol / Espanha necessidades de "
-"localização,\n"
-"mas pode ser usado como um mecanismo genérico de relatório contabilístico.\n"
-"            "
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,report_id:0
-msgid "Report"
-msgstr "Relatório"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Configuration"
-msgstr "Configuração"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,css_class:0
-#: field:account.balance.reporting.template.line,css_class:0
-msgid "CSS Class"
-msgstr "Classe CSS"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template,report_xml_id:0
-#: wizard_view:account_balance_reporting.print_wizard,init:0
-msgid "Report design"
-msgstr "Design do relatório"
-
-#. module: account_balance_reporting
-#: constraint:ir.ui.view:0
-msgid "Invalid XML for View Architecture!"
-msgstr "XML Inválido para a Arquitectura de Vista!"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template:0
-msgid "Account balance report template"
-msgstr "Modelo do relatório saldo da conta"
-
-#. module: account_balance_reporting
-#: model:ir.actions.report.xml,name:account_balance_reporting.report_account_balance_reporting_default_non_zero
-msgid "Generic balance report (non zero lines)"
-msgstr "Relatório genérico de saldo  (não nulos)"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,calc_date:0
-#: field:account.balance.reporting.line,calc_date:0
-msgid "Calculation date"
-msgstr "Data processada"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,previous_period_ids:0
-msgid "Fiscal year 2 periods"
-msgstr "Ano fiscal 2º periodo"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template:0
-msgid "Template line"
-msgstr "Linha de modelo"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: view:account.balance.reporting.line:0
-#: view:account.balance.reporting.template:0
-#: view:account.balance.reporting.template.line:0
-msgid "Style"
-msgstr "Estilo"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Calculate"
-msgstr "Calculado"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Level 4"
-msgstr "Nível 4"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: selection:account.balance.reporting,state:0
-msgid "Draft"
-msgstr "Rascunho"
-
-#. module: account_balance_reporting
-#: constraint:ir.model:0
-msgid ""
-"The Object name must start with x_ and not contain any special character !"
-msgstr ""
-"O nome do Objecto deve começar com x_ e não pode conter nenhum caracter "
-"especial !"
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,name:0
-msgid "Concept name/description"
-msgstr "Nome da concepção/descrição"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting,state:0
-msgid "Processing"
-msgstr "Processamento"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,type:0
-msgid "User"
-msgstr "Utilizador"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template.line,current_value:0
-msgid "Fiscal year 1 formula"
-msgstr "Ano Fiscal 1 fórmula"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,template_line_id:0
-msgid "Line template"
-msgstr "Modelo de linha"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,balance_mode:0
-msgid "Credit-Debit, reversed with brakets"
-msgstr "Débito - Crédito, invertida com suportes"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Default"
-msgstr "Padrão"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template.line,previous_value:0
-msgid "Fiscal year 2 formula"
-msgstr "Ano Fiscal 2 formula"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,type:0
-msgid "System"
-msgstr "Sistema"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting,state:0
-msgid "Processed"
-msgstr "Processado"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.line:0
-msgid "Account balance report lines"
-msgstr "Relatório de linhas de contas relatório de saldo"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template,balance_mode:0
-msgid "Balance mode"
-msgstr "Modo saldo"
-
-#. module: account_balance_reporting
-#: model:ir.model,name:account_balance_reporting.model_account_balance_reporting_line
-msgid "account.balance.reporting.line"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,code:0
-#: field:account.balance.reporting.template.line,code:0
-msgid "Code"
-msgstr "Código"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting,state:0
-msgid "Done"
-msgstr "Concluído"
-
-#. module: account_balance_reporting
-#: model:ir.model,name:account_balance_reporting.model_account_balance_reporting
-msgid "account.balance.reporting"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: wizard_button:account_balance_reporting.print_wizard,init,end:0
-msgid "Cancel"
-msgstr "Cancelar"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Report lines"
-msgstr "Linhas de relatório"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,child_ids:0
-#: field:account.balance.reporting.template.line,child_ids:0
-msgid "Children"
-msgstr "Descendentes"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Level 5"
-msgstr "Nível 5"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template:0
-msgid "Information"
-msgstr "Informação"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Level 1"
-msgstr "Nível 1"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Level 3"
-msgstr "Nível 3"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Level 2"
-msgstr "Nível 2"
-
-#. module: account_balance_reporting
-#: model:ir.actions.report.xml,name:account_balance_reporting.report_account_balance_reporting_generic
-msgid "Generic balance report"
-msgstr "Relatório Genérico de saldo"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template:0
-msgid "Account balance report templates"
-msgstr "Modelos da Conta relatório de saldo"
-
-#. module: account_balance_reporting
-#: model:ir.ui.menu,name:account_balance_reporting.menu_account_balance_reporting_templates
-msgid "Templates"
-msgstr "Modelos"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template,description:0
-msgid "Description"
-msgstr "Descrição"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template.line:0
-msgid "Account balance report template line"
-msgstr "Modelo de linha de conta relatório de saldo"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,name:0
-#: field:account.balance.reporting.line,name:0
-#: field:account.balance.reporting.template,name:0
-#: field:account.balance.reporting.template.line,name:0
-msgid "Name"
-msgstr "Nome"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: field:account.balance.reporting,line_ids:0
-#: view:account.balance.reporting.template:0
-#: field:account.balance.reporting.template,line_ids:0
-msgid "Lines"
-msgstr "Linhas"
-
-#. module: account_balance_reporting
-#: model:ir.ui.menu,name:account_balance_reporting.menu_account_balance_reporting_reports
-msgid "Reports"
-msgstr "Relatórios"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: view:account.balance.reporting.line:0
-#: view:account.balance.reporting.template:0
-#: view:account.balance.reporting.template.line:0
-msgid "Values"
-msgstr "Valores"
-
-#. module: account_balance_reporting
-#: model:ir.model,name:account_balance_reporting.model_account_balance_reporting_template
-msgid "account.balance.reporting.template"
-msgstr ""
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,current_value:0
-#: help:account.balance.reporting.template.line,previous_value:0
-msgid ""
-"Value calculation formula: Depending on this formula the final value is "
-"calculated as follows:\n"
-"  Empy template value: sum of (this concept) children values.\n"
-"  Number with decimal point (\"10.2\"): that value (constant).\n"
-"  Account numbers separated by commas (\"430,431,(437)\"): Sum of the "
-"account balances\n"
-"    (the sign of the balance depends on the balance mode).\n"
-"  Concept codes separated by \"+\" (\"11000+12000\"): Sum of those concepts "
-"values.\n"
-msgstr ""
-"Fórmula de valor calculado: Dependendo esta fórmula o valor final é "
-"calculado da seguinte forma:\n"
-"  Valor do modelo vazio: soma (deste conceito) dos valores dependentes.\n"
-"  Número com ponto decimal (\"10,2 \"): este valor (constante).\n"
-"  Os números de contas separados por vírgulas (\"430,431,(437)\"): Soma dos "
-"saldos das contas\n"
-"   (O sinal do saldo depende do modo de saldo).\n"
-"  Conceito códigos separados por \"+\" (\"11000+12000\"): Soma dos valores "
-"de conceitos.\n"
-
-#. module: account_balance_reporting
-#: rml:report_account_balance_reporting.generic:0
-#: rml:report_account_balance_reporting.generic_non_zero:0
-msgid "CONCEPT"
-msgstr "CONCEITO"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.line:0
-msgid "Account balance report line"
-msgstr "Linha de conta relatório de saldo"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,sequence:0
-#: field:account.balance.reporting.template.line,sequence:0
-msgid "Sequence"
-msgstr "Sequência"
-
-#. module: account_balance_reporting
-#: wizard_view:account_balance_reporting.print_wizard,init:0
-#: model:ir.actions.wizard,name:account_balance_reporting.wiz_account_balance_reporting_print
-msgid "Print report"
-msgstr "Relatório de Impressão"
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Account balance report"
-msgstr "Relatório de conta saldo"
-
-#. module: account_balance_reporting
-#: model:ir.module.module,shortdesc:account_balance_reporting.module_meta_information
-msgid "Account balance reporting engine"
-msgstr "Saldo da conta mecanismo de relatórios"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting,state:0
-msgid "Canceled"
-msgstr "Cancelado"

=== removed file 'account_balance_reporting/i18n/sv.po'
--- account_balance_reporting/i18n/sv.po	2012-12-11 10:06:23 +0000
+++ account_balance_reporting/i18n/sv.po	1970-01-01 00:00:00 +0000
@@ -1,548 +0,0 @@
-# Translation of OpenERP Server.
-# This file contains the translation of the following modules:
-#	* account_balance_reporting
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: OpenERP Server 5.0.14\n"
-"Report-Msgid-Bugs-To: support@openerp.com\n"
-"POT-Creation-Date: 2009-09-27 08:18+0000\n"
-"PO-Revision-Date: 2010-11-23 00:13+0000\n"
-"Last-Translator: Olivier Dony (OpenERP) <Unknown>\n"
-"Language-Team: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-05-24 11:38+0000\n"
-"X-Generator: Launchpad (build 15288)\n"
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,current_period_ids:0
-msgid "Fiscal year 1 periods"
-msgstr ""
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,css_class:0
-msgid "Style-sheet class"
-msgstr ""
-
-#. module: account_balance_reporting
-#: constraint:ir.actions.act_window:0
-msgid "Invalid model name in the action definition."
-msgstr ""
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,balance_mode:0
-msgid "Debit-Credit"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,parent_id:0
-#: field:account.balance.reporting.template.line,parent_id:0
-msgid "Parent"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,company_id:0
-msgid "Company"
-msgstr ""
-
-#. module: account_balance_reporting
-#: model:ir.actions.act_window,name:account_balance_reporting.action_view_account_balance_reporting_template
-msgid "Account balance templates"
-msgstr ""
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,balance_mode:0
-msgid "Credit-Debit"
-msgstr ""
-
-#. module: account_balance_reporting
-#: model:ir.actions.wizard,name:account_balance_reporting.wiz_account_balance_reporting_calculate
-msgid "Calculate report"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,notes:0
-msgid "Notes"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: model:ir.actions.act_window,name:account_balance_reporting.action_view_account_balance_reporting
-#: model:ir.ui.menu,name:account_balance_reporting.menu_account_balance_reporting
-msgid "Account balance reports"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template:0
-msgid "Template lines"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: field:account.balance.reporting,current_fiscalyear_id:0
-#: field:account.balance.reporting.line,current_value:0
-msgid "Fiscal year 1"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: field:account.balance.reporting,previous_fiscalyear_id:0
-#: field:account.balance.reporting.line,previous_value:0
-msgid "Fiscal year 2"
-msgstr ""
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,balance_mode:0
-msgid "Debit-Credit, reversed with brakets"
-msgstr ""
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,code:0
-msgid "Concept code, may be used on formulas to reference this line"
-msgstr ""
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,sequence:0
-msgid "Lines will be sorted/grouped by this field"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template.line,negate:0
-msgid "Negate"
-msgstr ""
-
-#. module: account_balance_reporting
-#: model:ir.model,name:account_balance_reporting.model_account_balance_reporting_template_line
-msgid "account.balance.reporting.template.line"
-msgstr ""
-
-#. module: account_balance_reporting
-#: rml:report_account_balance_reporting.generic:0
-#: rml:report_account_balance_reporting.generic_non_zero:0
-msgid "CODE"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,template_id:0
-#: field:account.balance.reporting.template.line,report_id:0
-msgid "Template"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Parameters"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Confirm"
-msgstr ""
-
-#. module: account_balance_reporting
-#: rml:report_account_balance_reporting.generic:0
-#: rml:report_account_balance_reporting.generic_non_zero:0
-msgid "NOTES"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template.line:0
-msgid "Account balance report template lines"
-msgstr ""
-
-#. module: account_balance_reporting
-#: wizard_view:account_balance_reporting.print_wizard,init:0
-msgid "Report data"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: field:account.balance.reporting,state:0
-msgid "State"
-msgstr ""
-
-#. module: account_balance_reporting
-#: wizard_button:account_balance_reporting.print_wizard,init,print:0
-msgid "Print"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template,type:0
-msgid "Type"
-msgstr ""
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template,balance_mode:0
-msgid ""
-"Formula calculation mode: Depending on it, the balance is calculated as "
-"follows:\n"
-"  Mode 0: debit-credit (default);\n"
-"  Mode 1: debit-credit, credit-debit for accounts in brackets;\n"
-"  Mode 2: credit-debit;\n"
-"  Mode 3: credit-debit, debit-credit for accounts in brackets."
-msgstr ""
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,negate:0
-msgid "Negate the value (change the sign of the balance)"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Report line"
-msgstr ""
-
-#. module: account_balance_reporting
-#: model:ir.module.module,description:account_balance_reporting.module_meta_information
-msgid ""
-"\n"
-"The module allows the user to create account balance reports and templates,\n"
-"comparing the values of 'accounting concepts' between two fiscal years\n"
-"or a set of fiscal periods.\n"
-"\n"
-"Accounting concepts values can be calculated as the sum of some account "
-"balances,\n"
-"the sum of its children, other account concepts or constant values.\n"
-"\n"
-"Generated reports are stored as objects on the server,\n"
-"so you can check them anytime later or edit them\n"
-"(to add notes for example) before printing.\n"
-"\n"
-"The module lets the user add new templates of the reports concepts,\n"
-"and associate them a specific \"XML reports\" (OpenERP RML files for "
-"example)\n"
-"with the design used when printing.\n"
-"So it is very easy to add predefined country-specific official reports.\n"
-"\n"
-"The user interface has been designed to be as much user-friendly as it can "
-"be.\n"
-"\n"
-"Note: It has been designed to meet Spanish/Spain localization needs,\n"
-"but it might be used as a generic accounting report engine.\n"
-"            "
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,report_id:0
-msgid "Report"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Configuration"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,css_class:0
-#: field:account.balance.reporting.template.line,css_class:0
-msgid "CSS Class"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template,report_xml_id:0
-#: wizard_view:account_balance_reporting.print_wizard,init:0
-msgid "Report design"
-msgstr ""
-
-#. module: account_balance_reporting
-#: constraint:ir.ui.view:0
-msgid "Invalid XML for View Architecture!"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template:0
-msgid "Account balance report template"
-msgstr ""
-
-#. module: account_balance_reporting
-#: model:ir.actions.report.xml,name:account_balance_reporting.report_account_balance_reporting_default_non_zero
-msgid "Generic balance report (non zero lines)"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,calc_date:0
-#: field:account.balance.reporting.line,calc_date:0
-msgid "Calculation date"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,previous_period_ids:0
-msgid "Fiscal year 2 periods"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template:0
-msgid "Template line"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: view:account.balance.reporting.line:0
-#: view:account.balance.reporting.template:0
-#: view:account.balance.reporting.template.line:0
-msgid "Style"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Calculate"
-msgstr ""
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Level 4"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: selection:account.balance.reporting,state:0
-msgid "Draft"
-msgstr ""
-
-#. module: account_balance_reporting
-#: constraint:ir.model:0
-msgid ""
-"The Object name must start with x_ and not contain any special character !"
-msgstr ""
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,name:0
-msgid "Concept name/description"
-msgstr ""
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting,state:0
-msgid "Processing"
-msgstr ""
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,type:0
-msgid "User"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template.line,current_value:0
-msgid "Fiscal year 1 formula"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,template_line_id:0
-msgid "Line template"
-msgstr ""
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,balance_mode:0
-msgid "Credit-Debit, reversed with brakets"
-msgstr ""
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Default"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template.line,previous_value:0
-msgid "Fiscal year 2 formula"
-msgstr ""
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.template,type:0
-msgid "System"
-msgstr ""
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting,state:0
-msgid "Processed"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.line:0
-msgid "Account balance report lines"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template,balance_mode:0
-msgid "Balance mode"
-msgstr ""
-
-#. module: account_balance_reporting
-#: model:ir.model,name:account_balance_reporting.model_account_balance_reporting_line
-msgid "account.balance.reporting.line"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,code:0
-#: field:account.balance.reporting.template.line,code:0
-msgid "Code"
-msgstr ""
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting,state:0
-msgid "Done"
-msgstr ""
-
-#. module: account_balance_reporting
-#: model:ir.model,name:account_balance_reporting.model_account_balance_reporting
-msgid "account.balance.reporting"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: wizard_button:account_balance_reporting.print_wizard,init,end:0
-msgid "Cancel"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Report lines"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,child_ids:0
-#: field:account.balance.reporting.template.line,child_ids:0
-msgid "Children"
-msgstr ""
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Level 5"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template:0
-msgid "Information"
-msgstr ""
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Level 1"
-msgstr ""
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Level 3"
-msgstr ""
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting.line,css_class:0
-#: selection:account.balance.reporting.template.line,css_class:0
-msgid "Level 2"
-msgstr ""
-
-#. module: account_balance_reporting
-#: model:ir.actions.report.xml,name:account_balance_reporting.report_account_balance_reporting_generic
-msgid "Generic balance report"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template:0
-msgid "Account balance report templates"
-msgstr ""
-
-#. module: account_balance_reporting
-#: model:ir.ui.menu,name:account_balance_reporting.menu_account_balance_reporting_templates
-msgid "Templates"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.template,description:0
-msgid "Description"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.template.line:0
-msgid "Account balance report template line"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting,name:0
-#: field:account.balance.reporting.line,name:0
-#: field:account.balance.reporting.template,name:0
-#: field:account.balance.reporting.template.line,name:0
-msgid "Name"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: field:account.balance.reporting,line_ids:0
-#: view:account.balance.reporting.template:0
-#: field:account.balance.reporting.template,line_ids:0
-msgid "Lines"
-msgstr ""
-
-#. module: account_balance_reporting
-#: model:ir.ui.menu,name:account_balance_reporting.menu_account_balance_reporting_reports
-msgid "Reports"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-#: view:account.balance.reporting.line:0
-#: view:account.balance.reporting.template:0
-#: view:account.balance.reporting.template.line:0
-msgid "Values"
-msgstr ""
-
-#. module: account_balance_reporting
-#: model:ir.model,name:account_balance_reporting.model_account_balance_reporting_template
-msgid "account.balance.reporting.template"
-msgstr ""
-
-#. module: account_balance_reporting
-#: help:account.balance.reporting.template.line,current_value:0
-#: help:account.balance.reporting.template.line,previous_value:0
-msgid ""
-"Value calculation formula: Depending on this formula the final value is "
-"calculated as follows:\n"
-"  Empy template value: sum of (this concept) children values.\n"
-"  Number with decimal point (\"10.2\"): that value (constant).\n"
-"  Account numbers separated by commas (\"430,431,(437)\"): Sum of the "
-"account balances\n"
-"    (the sign of the balance depends on the balance mode).\n"
-"  Concept codes separated by \"+\" (\"11000+12000\"): Sum of those concepts "
-"values.\n"
-msgstr ""
-
-#. module: account_balance_reporting
-#: rml:report_account_balance_reporting.generic:0
-#: rml:report_account_balance_reporting.generic_non_zero:0
-msgid "CONCEPT"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting.line:0
-msgid "Account balance report line"
-msgstr ""
-
-#. module: account_balance_reporting
-#: field:account.balance.reporting.line,sequence:0
-#: field:account.balance.reporting.template.line,sequence:0
-msgid "Sequence"
-msgstr ""
-
-#. module: account_balance_reporting
-#: wizard_view:account_balance_reporting.print_wizard,init:0
-#: model:ir.actions.wizard,name:account_balance_reporting.wiz_account_balance_reporting_print
-msgid "Print report"
-msgstr ""
-
-#. module: account_balance_reporting
-#: view:account.balance.reporting:0
-msgid "Account balance report"
-msgstr ""
-
-#. module: account_balance_reporting
-#: model:ir.module.module,shortdesc:account_balance_reporting.module_meta_information
-msgid "Account balance reporting engine"
-msgstr "Account balance reporting engine"
-
-#. module: account_balance_reporting
-#: selection:account.balance.reporting,state:0
-msgid "Canceled"
-msgstr ""

=== removed directory 'account_balance_reporting/migrations'
=== removed directory 'account_balance_reporting/migrations/0.2'
=== removed file 'account_balance_reporting/migrations/0.2/post-01-update-model-balance_reporting-in-ir_module_data.py'
--- account_balance_reporting/migrations/0.2/post-01-update-model-balance_reporting-in-ir_module_data.py	2012-12-11 10:06:23 +0000
+++ account_balance_reporting/migrations/0.2/post-01-update-model-balance_reporting-in-ir_module_data.py	1970-01-01 00:00:00 +0000
@@ -1,44 +0,0 @@
-# -*- coding: utf-8 -*-
-##############################################################################
-#
-#    account_balance_reporting module for OpenERP,
-
-
-#    Copyright (C) 2011 SYLEAM Info Services (<http://www.syleam.fr/>)
-#              Jean-Sébastien SUZANNE <jean-sebastien.suzanne@syleam.fr>
-#
-#    This file is a part of account_balance_reporting
-#
-#    account_balance_reporting is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
-#
-#    account_balance_reporting is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU General Public License for more details.
-#
-#    You should have received a copy of the GNU General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-##############################################################################
-
-import netsvc
-logger = netsvc.Logger()
-
-def migrate(cr, v):
-    """
-    a new model for account.balance.reporting was created
-    we must link it with ir.model.data
-    """
-    # affect good ir.model in ir.model.data
-    logger.notifyChannel('account_balance_reporting', netsvc.LOG_INFO, 'put ir.model(account.balance.reporting).id in ir.model.data(model_account_balance_reporting).res_id')
-    cr.execute("UPDATE ir_model_data SET res_id=(SELECT id FROM ir_model WHERE name='account.balance.reporting') WHERE module='account_balance_reporting' AND name='model_account_balance_reporting'")
-
-
-    cr.commit()
-    logger.notifyChannel('account_balance_reporting', netsvc.LOG_INFO, 'All tables was renamed')
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed file 'account_balance_reporting/migrations/0.2/pre-01-change-table-name.py'
--- account_balance_reporting/migrations/0.2/pre-01-change-table-name.py	2012-12-11 10:06:23 +0000
+++ account_balance_reporting/migrations/0.2/pre-01-change-table-name.py	1970-01-01 00:00:00 +0000
@@ -1,77 +0,0 @@
-# -*- coding: utf-8 -*-
-##############################################################################
-#
-#    account_balance_reporting module for OpenERP,
-
-
-#    Copyright (C) 2011 SYLEAM Info Services (<http://www.syleam.fr/>)
-#              Jean-Sébastien SUZANNE <jean-sebastien.suzanne@syleam.fr>
-#
-#    This file is a part of account_balance_reporting
-#
-#    account_balance_reporting is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
-#
-#    account_balance_reporting is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU General Public License for more details.
-#
-#    You should have received a copy of the GNU General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-##############################################################################
-
-import netsvc
-logger = netsvc.Logger()
-
-def migrate(cr, v):
-    """
-    old name of balance report is account.balance.report
-    or this name is also use by a osv_memory in v6.0
-    we have replaced the name by the name of the module account.balance.reporting
-    change also the name in ir.model.data and ir.model
-    """
-    # change name of the table
-    logger.notifyChannel('account_balance_reporting', netsvc.LOG_INFO, 'change name of table account_balance_report => account_balance_reporting')
-    cr.execute('ALTER TABLE account_balance_report RENAME TO account_balance_reporting')
-    cr.execute('ALTER TABLE account_balance_report_id_seq  RENAME TO account_balance_reporting_id_seq')
-    logger.notifyChannel('account_balance_reporting', netsvc.LOG_INFO, 'change name of table account_balance_report_line => account_balance_reporting_line')
-    cr.execute('ALTER TABLE account_balance_report_line RENAME TO account_balance_reporting_line')
-    cr.execute('ALTER TABLE account_balance_report_line_id_seq  RENAME TO account_balance_reporting_line_id_seq')
-    logger.notifyChannel('account_balance_reporting', netsvc.LOG_INFO, 'change name of table account_balance_report_template => account_balance_reporting_template')
-    cr.execute('ALTER TABLE account_balance_report_template RENAME TO account_balance_reporting_template')
-    cr.execute('ALTER TABLE account_balance_report_template_id_seq  RENAME TO account_balance_reporting_template_id_seq')
-    logger.notifyChannel('account_balance_reporting', netsvc.LOG_INFO, 'change name of table account_balance_report_template_line => account_balance_reporting_template_line')
-    cr.execute('ALTER TABLE account_balance_report_template_line RENAME TO account_balance_reporting_template_line')
-    cr.execute('ALTER TABLE account_balance_report_template_line_id_seq  RENAME TO account_balance_reporting_template_line_id_seq')
-    logger.notifyChannel('account_balance_reporting', netsvc.LOG_INFO, 'change name of table account_balance_report_account_period_current_rel => account_balance_reporting_account_period_current_rel')
-    cr.execute('ALTER TABLE account_balance_report_account_period_current_rel RENAME TO account_balance_reporting_account_period_current_rel')
-    cr.execute('ALTER TABLE account_balance_reporting_account_period_current_rel RENAME COLUMN account_balance_report_id TO account_balance_reporting_id')
-    logger.notifyChannel('account_balance_reporting', netsvc.LOG_INFO, 'change name of table account_balance_report_account_period_previous_rel => account_balance_reporting_account_period_previous_rel ')
-    cr.execute('ALTER TABLE account_balance_report_account_period_previous_rel RENAME TO account_balance_reporting_account_period_previous_rel ')
-    cr.execute('ALTER TABLE account_balance_reporting_account_period_previous_rel RENAME COLUMN account_balance_report_id TO account_balance_reporting_id')
-    # change ir model data
-    logger.notifyChannel('account_balance_reporting', netsvc.LOG_INFO, 'change name of model in ir.model.data account_balance_report => account_balance_reporting')
-    cr.execute("UPDATE ir_model_data SET name='model_account_balance_reporting' WHERE module='account_balance_reporting' AND name='model_account_balance_report'")
-    logger.notifyChannel('account_balance_reporting', netsvc.LOG_INFO, 'change name of model in ir.model.data account_balance_report_line => account_balance_reporting_line')
-    cr.execute("UPDATE ir_model_data SET name='model_account_balance_reporting_line' WHERE module='account_balance_reporting' AND name='model_account_balance_report_line'")
-    logger.notifyChannel('account_balance_reporting', netsvc.LOG_INFO, 'change name of model in ir.model.data account_balance_report_template => account_balance_reporting_template')
-    cr.execute("UPDATE ir_model_data SET name='model_account_balance_reporting_template' WHERE module='account_balance_reporting' AND name='model_account_balance_report_template'")
-    logger.notifyChannel('account_balance_reporting', netsvc.LOG_INFO, 'change name of model in ir.model.data account_balance_report_template_line => account_balance_reporting_template_line')
-    cr.execute("UPDATE ir_model_data SET name='model_account_balance_reporting_template_line' WHERE module='account_balance_reporting' AND name='model_account_balance_report_template_line'")
-    # change ir_model
-    logger.notifyChannel('account_balance_reporting', netsvc.LOG_INFO, 'change name of model in ir.model account_balance_report_line => account_balance_reporting_line')
-    cr.execute("UPDATE ir_model SET name='account.balance.reporting.line', model='account.balance.reporting.line' WHERE name='account.balance.report.line'")
-    logger.notifyChannel('account_balance_reporting', netsvc.LOG_INFO, 'change name of model in ir.model account_balance_report_template => account_balance_reporting_template')
-    cr.execute("UPDATE ir_model SET name='account.balance.reporting.template', model='account.balance.reporting.template' WHERE name='account.balance.report.template'")
-    logger.notifyChannel('account_balance_reporting', netsvc.LOG_INFO, 'change name of model in ir.model account_balance_report_template_line => account_balance_reporting_template_line')
-    cr.execute("UPDATE ir_model SET name='account.balance.reporting.template.line', model='account.balance.reporting.template.line' WHERE name='account.balance.report.template.line'")
-
-    cr.commit()
-    logger.notifyChannel('account_balance_reporting', netsvc.LOG_INFO, 'All tables was renamed')
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'account_balance_reporting/report'
=== removed file 'account_balance_reporting/report/__init__.py'
--- account_balance_reporting/report/__init__.py	2012-12-11 10:06:23 +0000
+++ account_balance_reporting/report/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,27 +0,0 @@
-# -*- coding: utf-8 -*-
-# -*- encoding: utf-8 -*-
-##############################################################################
-#
-#    OpenERP - Account balance reporting engine
-#    Copyright (C) 2009 Pexego Sistemas Informáticos. All Rights Reserved
-#    $Id$
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU General Public License for more details.
-#
-#    You should have received a copy of the GNU General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-##############################################################################
-
-"""
-Account balance reporting engine generic reports
-"""
-__author__ = "Borja López Soilán (Pexego) - borjals@pexego.es"
\ No newline at end of file

=== removed file 'account_balance_reporting/report/generic_non_zero_report.rml'
--- account_balance_reporting/report/generic_non_zero_report.rml	2012-12-11 10:06:23 +0000
+++ account_balance_reporting/report/generic_non_zero_report.rml	1970-01-01 00:00:00 +0000
@@ -1,175 +0,0 @@
-<?xml version="1.0"?>
-<document filename="test.pdf">
-  <template pageSize="(595.0,842.0)" title="Test" author="Martin Simon" allowSplitting="20">
-    <pageTemplate id="first">
-      <frame id="first" x1="42.0" y1="42.0" width="511" height="758"/>
-    </pageTemplate>
-  </template>
-  <stylesheet>
-    <blockTableStyle id="Standard_Outline">
-      <blockAlignment value="LEFT"/>
-      <blockValign value="TOP"/>
-    </blockTableStyle>
-    <blockTableStyle id="Tabla11">
-      <blockAlignment value="LEFT"/>
-      <blockValign value="TOP"/>
-      <lineStyle kind="LINEBEFORE" colorName="#000000" start="0,0" stop="0,-1"/>
-      <lineStyle kind="LINEAFTER" colorName="#000000" start="0,0" stop="0,-1"/>
-      <lineStyle kind="LINEABOVE" colorName="#000000" start="0,0" stop="0,0"/>
-      <blockBackground colorName="#e6e6ff" start="0,0" stop="0,-1"/>
-    </blockTableStyle>
-    <blockTableStyle id="Tabla10">
-      <blockAlignment value="LEFT"/>
-      <blockValign value="TOP"/>
-      <lineStyle kind="LINEBEFORE" colorName="#000000" start="0,0" stop="0,-1"/>
-      <lineStyle kind="LINEABOVE" colorName="#000000" start="0,0" stop="0,0"/>
-      <lineStyle kind="LINEBELOW" colorName="#000000" start="0,-1" stop="0,-1"/>
-      <lineStyle kind="LINEBEFORE" colorName="#000000" start="1,0" stop="1,-1"/>
-      <lineStyle kind="LINEABOVE" colorName="#000000" start="1,0" stop="1,0"/>
-      <lineStyle kind="LINEBELOW" colorName="#000000" start="1,-1" stop="1,-1"/>
-      <lineStyle kind="LINEBEFORE" colorName="#000000" start="2,0" stop="2,-1"/>
-      <lineStyle kind="LINEABOVE" colorName="#000000" start="2,0" stop="2,0"/>
-      <lineStyle kind="LINEBELOW" colorName="#000000" start="2,-1" stop="2,-1"/>
-      <lineStyle kind="LINEBEFORE" colorName="#000000" start="3,0" stop="3,-1"/>
-      <lineStyle kind="LINEABOVE" colorName="#000000" start="3,0" stop="3,0"/>
-      <lineStyle kind="LINEBELOW" colorName="#000000" start="3,-1" stop="3,-1"/>
-      <lineStyle kind="LINEBEFORE" colorName="#000000" start="4,0" stop="4,-1"/>
-      <lineStyle kind="LINEAFTER" colorName="#000000" start="4,0" stop="4,-1"/>
-      <lineStyle kind="LINEABOVE" colorName="#000000" start="4,0" stop="4,0"/>
-      <lineStyle kind="LINEBELOW" colorName="#000000" start="4,-1" stop="4,-1"/>
-      <blockBackground colorName="#e6e6ff" start="0,0" stop="0,-1"/>
-      <blockBackground colorName="#e6e6ff" start="1,0" stop="1,-1"/>
-      <blockBackground colorName="#e6e6ff" start="2,0" stop="2,-1"/>
-      <blockBackground colorName="#e6e6ff" start="3,0" stop="3,-1"/>
-      <blockBackground colorName="#e6e6ff" start="4,0" stop="4,-1"/>
-    </blockTableStyle>
-    <blockTableStyle id="Tabla9">
-      <blockAlignment value="LEFT"/>
-      <blockValign value="TOP"/>
-      <lineStyle kind="LINEBEFORE" colorName="#000000" start="0,0" stop="0,-1"/>
-      <lineStyle kind="LINEABOVE" colorName="#000000" start="0,0" stop="0,0"/>
-      <lineStyle kind="LINEBELOW" colorName="#000000" start="0,-1" stop="0,-1"/>
-      <lineStyle kind="LINEBEFORE" colorName="#000000" start="1,0" stop="1,-1"/>
-      <lineStyle kind="LINEABOVE" colorName="#000000" start="1,0" stop="1,0"/>
-      <lineStyle kind="LINEBELOW" colorName="#000000" start="1,-1" stop="1,-1"/>
-      <lineStyle kind="LINEBEFORE" colorName="#000000" start="2,0" stop="2,-1"/>
-      <lineStyle kind="LINEABOVE" colorName="#000000" start="2,0" stop="2,0"/>
-      <lineStyle kind="LINEBELOW" colorName="#000000" start="2,-1" stop="2,-1"/>
-      <lineStyle kind="LINEBEFORE" colorName="#000000" start="3,0" stop="3,-1"/>
-      <lineStyle kind="LINEABOVE" colorName="#000000" start="3,0" stop="3,0"/>
-      <lineStyle kind="LINEBELOW" colorName="#000000" start="3,-1" stop="3,-1"/>
-      <lineStyle kind="LINEBEFORE" colorName="#000000" start="4,0" stop="4,-1"/>
-      <lineStyle kind="LINEAFTER" colorName="#000000" start="4,0" stop="4,-1"/>
-      <lineStyle kind="LINEABOVE" colorName="#000000" start="4,0" stop="4,0"/>
-      <lineStyle kind="LINEBELOW" colorName="#000000" start="4,-1" stop="4,-1"/>
-    </blockTableStyle>
-    <initialize>
-      <paraStyle name="all" alignment="justify"/>
-    </initialize>
-    <paraStyle name="P1" fontName="Helvetica-Bold" fontSize="8.0" leading="10" alignment="CENTER"/>
-    <paraStyle name="P2" fontName="Helvetica" fontSize="8.0" leading="10" alignment="RIGHT"/>
-    <paraStyle name="P3" fontName="Helvetica-Bold" fontSize="8.0" leading="10" alignment="CENTER"/>
-    <paraStyle name="P4" fontName="Times-Roman"/>
-    <paraStyle name="P5" fontName="Helvetica-Bold" fontSize="12.0" leading="15" alignment="CENTER" spaceBefore="12.0" spaceAfter="6.0"/>
-    <paraStyle name="P6" fontName="Helvetica" fontSize="8.0" leading="10" alignment="CENTER"/>
-    <paraStyle name="P7" fontName="Helvetica" fontSize="8.0" leading="10" alignment="LEFT"/>
-    <paraStyle name="Standard" fontName="Times-Roman"/>
-    <paraStyle name="Heading" fontName="Helvetica" fontSize="14.0" leading="17" spaceBefore="12.0" spaceAfter="6.0"/>
-    <paraStyle name="Text_20_body" fontName="Times-Roman" spaceBefore="0.0" spaceAfter="6.0"/>
-    <paraStyle name="List" fontName="Times-Roman" spaceBefore="0.0" spaceAfter="6.0"/>
-    <paraStyle name="Caption" fontName="Times-Roman" fontSize="12.0" leading="15" spaceBefore="6.0" spaceAfter="6.0"/>
-    <paraStyle name="Index" fontName="Times-Roman"/>
-    <paraStyle name="Heading_20_1" fontName="Helvetica-Bold" fontSize="115%" leading="NaN" spaceBefore="12.0" spaceAfter="6.0"/>
-    <paraStyle name="Heading_20_2" fontName="Helvetica-BoldOblique" fontSize="14.0" leading="17" spaceBefore="12.0" spaceAfter="6.0"/>
-    <paraStyle name="Table_20_Contents" fontName="Times-Roman"/>
-    <paraStyle name="Table_20_Heading" fontName="Times-Roman" alignment="CENTER"/>
-    <paraStyle name="Bal1" fontName="Helvetica-Bold" fontSize="9.0" leading="11" alignment="LEFT"/>
-    <paraStyle name="Bal2" fontName="Helvetica-Bold" fontSize="8.0" leading="10" alignment="LEFT"/>
-    <paraStyle name="BalCabecera" fontName="Helvetica-Bold" fontSize="8.0" leading="10" alignment="CENTER"/>
-    <paraStyle name="BalCodigos" fontName="Helvetica-Bold" fontSize="8.0" leading="10" alignment="CENTER"/>
-    <paraStyle name="Bal3" fontName="Helvetica" fontSize="8.0" leading="10" alignment="LEFT"/>
-    <paraStyle name="Bal4" fontName="Helvetica" fontSize="8.0" leading="10" alignment="LEFT"/>
-    <paraStyle name="Bal5" fontName="Helvetica-Oblique" fontSize="8.0" leading="10" alignment="LEFT"/>
-  </stylesheet>
-  <images/>
-  <story>
-    <para style="Standard">[[repeatIn(objects,'report')]]</para>
-    <para style="Standard">[[setLang(user.context_lang)]]</para>
-    <para style="Standard">
-      <font color="white"> </font>
-    </para>
-    <para style="Standard">
-      <font color="white"> </font>
-    </para>
-    <blockTable colWidths="511.0" style="Tabla11">
-      <tr>
-        <td>
-          <para style="P5">[[report.name]]</para>
-        </td>
-      </tr>
-    </blockTable>
-    <blockTable colWidths="229.0,59.0,57.0,86.0,80.0" style="Tabla10">
-      <tr>
-        <td>
-          <para style="BalCabecera">CONCEPT</para>
-        </td>
-        <td>
-          <para style="BalCabecera">CODE</para>
-        </td>
-        <td>
-          <para style="P1">NOTES</para>
-        </td>
-        <td>
-          <para style="P1">[[report.current_fiscalyear_id.name]]</para>
-        </td>
-        <td>
-          <para style="P1">[[report.previous_fiscalyear_id.name]]</para>
-        </td>
-      </tr>
-    </blockTable>
-    
-    <blockTable colWidths="229.0,59.0,57.0,86.0,80.0" style="Tabla9">
-       
-        <tr>
-        [[repeatIn(report.line_ids,'line')]]
-        [[ line.current_value==0.0 and line.previous_value==0.0 and removeParentNode('tr')]]
-        <td>
-          <para style="Bal1">
-            <font face="Times-Bold" size="10.0">[[(line.css_class=='l1') and line.name or removeParentNode('font')]]</font>
-          </para>
-          <para style="Bal2">
-            <font face="Times-Bold" size="9.0">[[(line.css_class=='l2') and line.name or removeParentNode('font')]]</font>
-          </para>
-          <para style="Bal3">
-            <font face="Times-Bold" size="8.0">[[(line.css_class=='l3') and line.name or removeParentNode('font')]]</font>
-          </para>
-          <para style="Bal4">
-            <font face="Times-Roman">[[(line.css_class=='l4') and line.name or removeParentNode('font')]]</font>
-          </para>
-          <para style="Bal5">
-            <font face="Times-Roman">[[(line.css_class=='l5') and line.name or removeParentNode('font')]]</font>
-          </para>
-          <para style="Bal4">
-            <font face="Times-Roman">[[(line.css_class=='default') and line.name or removeParentNode('font')]]</font>
-          </para>
-        </td>
-        <td>
-          <para style="P3">[[line.code]]</para>
-        </td>
-        <td>
-          <para style="P6">[[line.notes]]</para>
-        </td>
-        <td>
-          <para style="P2">[[formatLang(line.current_value)]]</para>
-        </td>
-        <td>
-          <para style="P2">[[report.previous_fiscalyear_id and formatLang(line.previous_value)]]</para>
-        </td>
-      </tr>
-    </blockTable>
-    <para style="P4">
-      <font color="white"> </font>
-    </para>
-  </story>
-</document>
-

=== removed file 'account_balance_reporting/report/generic_report.odt'
Binary files account_balance_reporting/report/generic_report.odt	2012-12-11 10:06:23 +0000 and account_balance_reporting/report/generic_report.odt	1970-01-01 00:00:00 +0000 differ
=== removed file 'account_balance_reporting/report/generic_report.rml'
--- account_balance_reporting/report/generic_report.rml	2012-12-11 10:06:23 +0000
+++ account_balance_reporting/report/generic_report.rml	1970-01-01 00:00:00 +0000
@@ -1,173 +0,0 @@
-<?xml version="1.0"?>
-<document filename="test.pdf">
-  <template pageSize="(595.0,842.0)" title="Test" author="Martin Simon" allowSplitting="20">
-    <pageTemplate id="first">
-      <frame id="first" x1="42.0" y1="42.0" width="511" height="758"/>
-    </pageTemplate>
-  </template>
-  <stylesheet>
-    <blockTableStyle id="Standard_Outline">
-      <blockAlignment value="LEFT"/>
-      <blockValign value="TOP"/>
-    </blockTableStyle>
-    <blockTableStyle id="Tabla11">
-      <blockAlignment value="LEFT"/>
-      <blockValign value="TOP"/>
-      <lineStyle kind="LINEBEFORE" colorName="#000000" start="0,0" stop="0,-1"/>
-      <lineStyle kind="LINEAFTER" colorName="#000000" start="0,0" stop="0,-1"/>
-      <lineStyle kind="LINEABOVE" colorName="#000000" start="0,0" stop="0,0"/>
-      <blockBackground colorName="#e6e6ff" start="0,0" stop="0,-1"/>
-    </blockTableStyle>
-    <blockTableStyle id="Tabla10">
-      <blockAlignment value="LEFT"/>
-      <blockValign value="TOP"/>
-      <lineStyle kind="LINEBEFORE" colorName="#000000" start="0,0" stop="0,-1"/>
-      <lineStyle kind="LINEABOVE" colorName="#000000" start="0,0" stop="0,0"/>
-      <lineStyle kind="LINEBELOW" colorName="#000000" start="0,-1" stop="0,-1"/>
-      <lineStyle kind="LINEBEFORE" colorName="#000000" start="1,0" stop="1,-1"/>
-      <lineStyle kind="LINEABOVE" colorName="#000000" start="1,0" stop="1,0"/>
-      <lineStyle kind="LINEBELOW" colorName="#000000" start="1,-1" stop="1,-1"/>
-      <lineStyle kind="LINEBEFORE" colorName="#000000" start="2,0" stop="2,-1"/>
-      <lineStyle kind="LINEABOVE" colorName="#000000" start="2,0" stop="2,0"/>
-      <lineStyle kind="LINEBELOW" colorName="#000000" start="2,-1" stop="2,-1"/>
-      <lineStyle kind="LINEBEFORE" colorName="#000000" start="3,0" stop="3,-1"/>
-      <lineStyle kind="LINEABOVE" colorName="#000000" start="3,0" stop="3,0"/>
-      <lineStyle kind="LINEBELOW" colorName="#000000" start="3,-1" stop="3,-1"/>
-      <lineStyle kind="LINEBEFORE" colorName="#000000" start="4,0" stop="4,-1"/>
-      <lineStyle kind="LINEAFTER" colorName="#000000" start="4,0" stop="4,-1"/>
-      <lineStyle kind="LINEABOVE" colorName="#000000" start="4,0" stop="4,0"/>
-      <lineStyle kind="LINEBELOW" colorName="#000000" start="4,-1" stop="4,-1"/>
-      <blockBackground colorName="#e6e6ff" start="0,0" stop="0,-1"/>
-      <blockBackground colorName="#e6e6ff" start="1,0" stop="1,-1"/>
-      <blockBackground colorName="#e6e6ff" start="2,0" stop="2,-1"/>
-      <blockBackground colorName="#e6e6ff" start="3,0" stop="3,-1"/>
-      <blockBackground colorName="#e6e6ff" start="4,0" stop="4,-1"/>
-    </blockTableStyle>
-    <blockTableStyle id="Tabla9">
-      <blockAlignment value="LEFT"/>
-      <blockValign value="TOP"/>
-      <lineStyle kind="LINEBEFORE" colorName="#000000" start="0,0" stop="0,-1"/>
-      <lineStyle kind="LINEABOVE" colorName="#000000" start="0,0" stop="0,0"/>
-      <lineStyle kind="LINEBELOW" colorName="#000000" start="0,-1" stop="0,-1"/>
-      <lineStyle kind="LINEBEFORE" colorName="#000000" start="1,0" stop="1,-1"/>
-      <lineStyle kind="LINEABOVE" colorName="#000000" start="1,0" stop="1,0"/>
-      <lineStyle kind="LINEBELOW" colorName="#000000" start="1,-1" stop="1,-1"/>
-      <lineStyle kind="LINEBEFORE" colorName="#000000" start="2,0" stop="2,-1"/>
-      <lineStyle kind="LINEABOVE" colorName="#000000" start="2,0" stop="2,0"/>
-      <lineStyle kind="LINEBELOW" colorName="#000000" start="2,-1" stop="2,-1"/>
-      <lineStyle kind="LINEBEFORE" colorName="#000000" start="3,0" stop="3,-1"/>
-      <lineStyle kind="LINEABOVE" colorName="#000000" start="3,0" stop="3,0"/>
-      <lineStyle kind="LINEBELOW" colorName="#000000" start="3,-1" stop="3,-1"/>
-      <lineStyle kind="LINEBEFORE" colorName="#000000" start="4,0" stop="4,-1"/>
-      <lineStyle kind="LINEAFTER" colorName="#000000" start="4,0" stop="4,-1"/>
-      <lineStyle kind="LINEABOVE" colorName="#000000" start="4,0" stop="4,0"/>
-      <lineStyle kind="LINEBELOW" colorName="#000000" start="4,-1" stop="4,-1"/>
-    </blockTableStyle>
-    <initialize>
-      <paraStyle name="all" alignment="justify"/>
-    </initialize>
-    <paraStyle name="P1" fontName="Helvetica-Bold" fontSize="8.0" leading="10" alignment="CENTER"/>
-    <paraStyle name="P2" fontName="Helvetica" fontSize="8.0" leading="10" alignment="RIGHT"/>
-    <paraStyle name="P3" fontName="Helvetica-Bold" fontSize="8.0" leading="10" alignment="CENTER"/>
-    <paraStyle name="P4" fontName="Times-Roman"/>
-    <paraStyle name="P5" fontName="Helvetica-Bold" fontSize="12.0" leading="15" alignment="CENTER" spaceBefore="12.0" spaceAfter="6.0"/>
-    <paraStyle name="P6" fontName="Helvetica" fontSize="8.0" leading="10" alignment="CENTER"/>
-    <paraStyle name="P7" fontName="Helvetica" fontSize="8.0" leading="10" alignment="LEFT"/>
-    <paraStyle name="Standard" fontName="Times-Roman"/>
-    <paraStyle name="Heading" fontName="Helvetica" fontSize="14.0" leading="17" spaceBefore="12.0" spaceAfter="6.0"/>
-    <paraStyle name="Text_20_body" fontName="Times-Roman" spaceBefore="0.0" spaceAfter="6.0"/>
-    <paraStyle name="List" fontName="Times-Roman" spaceBefore="0.0" spaceAfter="6.0"/>
-    <paraStyle name="Caption" fontName="Times-Roman" fontSize="12.0" leading="15" spaceBefore="6.0" spaceAfter="6.0"/>
-    <paraStyle name="Index" fontName="Times-Roman"/>
-    <paraStyle name="Heading_20_1" fontName="Helvetica-Bold" fontSize="115%" leading="NaN" spaceBefore="12.0" spaceAfter="6.0"/>
-    <paraStyle name="Heading_20_2" fontName="Helvetica-BoldOblique" fontSize="14.0" leading="17" spaceBefore="12.0" spaceAfter="6.0"/>
-    <paraStyle name="Table_20_Contents" fontName="Times-Roman"/>
-    <paraStyle name="Table_20_Heading" fontName="Times-Roman" alignment="CENTER"/>
-    <paraStyle name="Bal1" fontName="Helvetica-Bold" fontSize="9.0" leading="11" alignment="LEFT"/>
-    <paraStyle name="Bal2" fontName="Helvetica-Bold" fontSize="8.0" leading="10" alignment="LEFT"/>
-    <paraStyle name="BalCabecera" fontName="Helvetica-Bold" fontSize="8.0" leading="10" alignment="CENTER"/>
-    <paraStyle name="BalCodigos" fontName="Helvetica-Bold" fontSize="8.0" leading="10" alignment="CENTER"/>
-    <paraStyle name="Bal3" fontName="Helvetica" fontSize="8.0" leading="10" alignment="LEFT"/>
-    <paraStyle name="Bal4" fontName="Helvetica" fontSize="8.0" leading="10" alignment="LEFT"/>
-    <paraStyle name="Bal5" fontName="Helvetica-Oblique" fontSize="8.0" leading="10" alignment="LEFT"/>
-  </stylesheet>
-  <images/>
-  <story>
-    <para style="Standard">[[repeatIn(objects,'report')]]</para>
-    <para style="Standard">[[setLang(user.context_lang)]]</para>
-    <para style="Standard">
-      <font color="white"> </font>
-    </para>
-    <para style="Standard">
-      <font color="white"> </font>
-    </para>
-    <blockTable colWidths="511.0" style="Tabla11">
-      <tr>
-        <td>
-          <para style="P5">[[report.name]]</para>
-        </td>
-      </tr>
-    </blockTable>
-    <blockTable colWidths="229.0,59.0,57.0,86.0,80.0" style="Tabla10">
-      <tr>
-        <td>
-          <para style="BalCabecera">CONCEPT</para>
-        </td>
-        <td>
-          <para style="BalCabecera">CODE</para>
-        </td>
-        <td>
-          <para style="P1">NOTES</para>
-        </td>
-        <td>
-          <para style="P1">[[report.current_fiscalyear_id.name]]</para>
-        </td>
-        <td>
-          <para style="P1">[[report.previous_fiscalyear_id.name]]</para>
-        </td>
-      </tr>
-    </blockTable>
-   
-    <blockTable colWidths="229.0,59.0,57.0,86.0,80.0" style="Tabla9">
-      <tr>
-      	 [[repeatIn(report.line_ids,'line')]]
-        <td>
-          <para style="Bal1">
-            <font face="Times-Bold" size="10.0">[[(line.css_class=='l1') and line.name or removeParentNode('font')]]</font>
-          </para>
-          <para style="Bal2">
-            <font face="Times-Bold" size="9.0">[[(line.css_class=='l2') and line.name or removeParentNode('font')]]</font>
-          </para>
-          <para style="Bal3">
-            <font face="Times-Bold" size="8.0">[[(line.css_class=='l3') and line.name or removeParentNode('font')]]</font>
-          </para>
-          <para style="Bal4">
-            <font face="Times-Roman">[[(line.css_class=='l4') and line.name or removeParentNode('font')]]</font>
-          </para>
-          <para style="Bal5">
-            <font face="Times-Roman">[[(line.css_class=='l5') and line.name or removeParentNode('font')]]</font>
-          </para>
-          <para style="Bal4">
-            <font face="Times-Roman">[[(line.css_class=='default') and line.name or removeParentNode('font')]]</font>
-          </para>
-        </td>
-        <td>
-          <para style="P3">[[line.code]]</para>
-        </td>
-        <td>
-          <para style="P6">[[line.notes]]</para>
-        </td>
-        <td>
-          <para style="P2">[[formatLang(line.current_value)]]</para>
-        </td>
-        <td>
-          <para style="P2">[[report.previous_fiscalyear_id and formatLang(line.previous_value)]]</para>
-        </td>
-      </tr>
-    </blockTable>
-    <para style="P4">
-      <font color="white"> </font>
-    </para>
-  </story>
-</document>
-

=== removed directory 'account_balance_reporting/security'
=== removed file 'account_balance_reporting/security/ir.model.access.csv'
--- account_balance_reporting/security/ir.model.access.csv	2012-12-11 10:06:23 +0000
+++ account_balance_reporting/security/ir.model.access.csv	1970-01-01 00:00:00 +0000
@@ -1,5 +0,0 @@
-"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink"
-"access_account_balance_reporting_report","Report manager","account_balance_reporting.model_account_balance_reporting","account.group_account_manager",1,1,1,1
-"access_account_balance_reporting_report_line","Report line manager","account_balance_reporting.model_account_balance_reporting_line","account.group_account_manager",1,1,1,1
-"access_account_balance_reporting_report_template","Report template manager","account_balance_reporting.model_account_balance_reporting_template","account.group_account_manager",1,1,1,1
-"access_account_balance_reporting_report_template_line","Report template line manager","account_balance_reporting.model_account_balance_reporting_template_line","account.group_account_manager",1,1,1,1

=== removed directory 'account_balance_reporting/wizard'
=== removed file 'account_balance_reporting/wizard/__init__.py'
--- account_balance_reporting/wizard/__init__.py	2012-12-11 10:06:23 +0000
+++ account_balance_reporting/wizard/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,31 +0,0 @@
-# -*- coding: utf-8 -*-
-# -*- encoding: utf-8 -*-
-##############################################################################
-#
-#    OpenERP - Account balance reporting engine
-#    Copyright (C) 2009 Pexego Sistemas Informáticos. All Rights Reserved
-#    $Id$
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU General Public License for more details.
-#
-#    You should have received a copy of the GNU General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-##############################################################################
-
-"""
-Account balance reporting engine wizards
-"""
-__author__ = "Borja López Soilán (Pexego) - borjals@pexego.es"
-
-
-import wizard_calculate
-import wizard_print

=== removed file 'account_balance_reporting/wizard/wizard_calculate.py'
--- account_balance_reporting/wizard/wizard_calculate.py	2012-12-11 10:06:23 +0000
+++ account_balance_reporting/wizard/wizard_calculate.py	1970-01-01 00:00:00 +0000
@@ -1,70 +0,0 @@
-# -*- coding: utf-8 -*-
-# -*- encoding: utf-8 -*-
-##############################################################################
-#
-#    OpenERP - Account balance reporting engine
-#    Copyright (C) 2009 Pexego Sistemas Informáticos. All Rights Reserved
-#    $Id$
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU General Public License for more details.
-#
-#    You should have received a copy of the GNU General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-##############################################################################
-
-"""
-Account balance report calculate wizard
-"""
-__author__ = "Borja López Soilán (Pexego)"
-
-
-import wizard
-import pooler
-import netsvc
-
-class wizard_calculate(wizard.interface):
-    """
-    Account balance report calculate wizard.
-    This wizard just acts as a wrapper around the action_calculate
-    of account_balance_reporting, so the user gets some feedback about the
-    processing taking long time.
-    """
-
-    def _calculate_action(self, cr, uid, data, context):
-        """
-        Calculate the selected balance report data.
-        """
-        report_id = None
-        if data.get('model') == 'account.balance.reporting':
-            report_id = data.get('id')
-            if report_id:
-                #
-                # Send the calculate signal to the balance report
-                # to trigger action_calculate.
-                #
-                wf_service = netsvc.LocalService('workflow')
-                wf_service.trg_validate(uid, 'account.balance.reporting', report_id, 'calculate', cr)
-        return 'close'
-
-
-    states = {
-        'init': {
-            'actions': [],
-            'result': {'type':'choice', 'next_state': _calculate_action}
-        },
-        'close': {
-            'actions': [],
-            'result': {'type': 'state', 'state':'end'}
-        }
-    }
-wizard_calculate('account_balance_reporting.calculate_wizard')
-

=== removed file 'account_balance_reporting/wizard/wizard_print.py'
--- account_balance_reporting/wizard/wizard_print.py	2012-12-11 10:06:23 +0000
+++ account_balance_reporting/wizard/wizard_print.py	1970-01-01 00:00:00 +0000
@@ -1,95 +0,0 @@
-# -*- coding: utf-8 -*-
-# -*- encoding: utf-8 -*-
-##############################################################################
-#
-#    OpenERP - Account balance reporting engine
-#    Copyright (C) 2009 Pexego Sistemas Informáticos. All Rights Reserved
-#    $Id$
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU General Public License for more details.
-#
-#    You should have received a copy of the GNU General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-##############################################################################
-
-"""
-Account balance report print wizard
-"""
-__author__ = "Borja López Soilán (Pexego)"
-
-
-from osv import fields, osv
-import pooler
-
-
-class print_wizard(osv.osv_memory):
-    _name='account.balance.reporting.print.wizard'
-    
-    def _get_current_report_id(self, cr, uid, ctx):   
-        rpt_facade = pooler.get_pool(cr.dbname).get('account.balance.reporting')
-        report_id = None
-        if ctx.get('active_model') == 'account.balance.reporting' and ctx.get('active_ids') and ctx.get('active_ids')[0]:
-            report_id = ctx.get('active_ids')[0]
-            report_ids = rpt_facade.search(cr, uid, [('id', '=', report_id)])
-            report_id = report_ids and report_ids[0] or None
-        return report_id
-
-    def _get_current_report_xml_id(self, cr, uid, ctx):
-        report_id = self._get_current_report_id(cr, uid, ctx)
-        rpt_facade = pooler.get_pool(cr.dbname).get('account.balance.reporting')
-        report = rpt_facade.browse(cr, uid, [report_id])[0]
-        report_xml_id = None
-        if report.template_id and report.template_id.report_xml_id:
-            report_xml_id = report.template_id.report_xml_id.id
-        return report_xml_id
-
-    def print_report(self, cr, uid, ids, context=None):
-        data = self.read(cr,uid,ids)[-1]
-        #rpt_facade_lines = pooler.get_pool(cr.dbname).get('account.balance.reporting.line')
-        #var = data.get('report_id') and data['report_id'][0] or None
-        #report_lines_ids = rpt_facade_lines.search(cr, uid, [('report_id', '=', var)])
-        #print data
-        #print str(data.get('report_id'))
-        #print str(data['report_id'][0])
-        datas ={
-                'ids': [data.get('report_id') and data['report_id'][0] or None],
-                'model':'account.balance.reporting',
-                'form': data
-                }
-        rpt_facade = pooler.get_pool(cr.dbname).get('ir.actions.report.xml')
-        report_xml = None
-        if data.get('report_xml_id'):
-            report_xml_id = data['report_xml_id']
-            report_xml_ids = rpt_facade.search(cr, uid, [('id', '=', report_xml_id[0])])
-            report_xml_id = report_xml_ids and report_xml_ids[0] or None
-            if report_xml_id:
-                report_xml = rpt_facade.browse(cr, uid, [report_xml_id])[0]
-            if report_xml:
-                return {
-                    'type' : 'ir.actions.report.xml',
-                    'report_name' : report_xml.report_name,
-                    'datas' : datas #{'ids': [data.get('report_id') and data['report_id'][0] or None]},
-                }
-        return { 'type': 'ir.actions.act_window_close' }
-        
-    _columns = {
-        'report_id' : fields.many2one('account.balance.reporting', "Report"),
-        'report_xml_id': fields.many2one('ir.actions.report.xml', "Design"),
-    }
-    
-    _defaults = {
-        'report_id': _get_current_report_id,
-        'report_xml_id': _get_current_report_xml_id
-    }
-
-print_wizard()
-

=== removed directory 'account_invoice_analytics'
=== removed file 'account_invoice_analytics/__init__.py'
--- account_invoice_analytics/__init__.py	2012-12-11 10:06:23 +0000
+++ account_invoice_analytics/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,26 +0,0 @@
-# -*- encoding: utf-8 -*-
-##############################################################################
-#
-#    Avanzosc - Avanced Open Source Consulting
-#    Copyright (C) 2011 - 2012 Avanzosc <http://www.avanzosc.com>
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see http://www.gnu.org/licenses/.
-#
-##############################################################################
-
-import product
-import sale
-import analytic
-import partner
-import wizard

=== removed file 'account_invoice_analytics/__openerp__.py'
--- account_invoice_analytics/__openerp__.py	2012-12-11 10:06:23 +0000
+++ account_invoice_analytics/__openerp__.py	1970-01-01 00:00:00 +0000
@@ -1,54 +0,0 @@
-# -*- encoding: utf-8 -*-
-##############################################################################
-#
-#    Avanzosc - Avanced Open Source Consulting
-#    Copyright (C) 2011 - 2012 Avanzosc <http://www.avanzosc.com>
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see http://www.gnu.org/licenses/.
-#
-##############################################################################
-{
-    "name" : "Invoice from Analytics",
-    "version" : "1.0",
-    "author" : "Avanzosc",
-    "description" : """Possibility to invoice everything from analytics. Changes sales workflow slightly and connects sales with account_invoicing module.
-    Features:
-    * Creates agreement automatically if the product is going to be invoiced recursively.
-    * Different payment deadlines for sale order lines.
-    * Changes the menu structure to include recurring invoices under "Accounting/Periodical Processing/Recurring Invoice" menu.
-    
-    Invoicing types:
-    * Invoice once
-    * Invoice once but with payment deadlines
-    * Invoice recursively
-    """,
-    "website" : "http://www.avanzosc.com",
-    "license" : "GPL-2",
-    "category" : "Generic Modules/Accounting",
-    "depends" : ["sale",
-                 "account_invoicing",
-                 "analytic",
-                 ],
-    "init_xml" : [],
-    "demo_xml" : [],
-    "update_xml" : ["product_view.xml",
-                    "sale_view.xml",
-                    "analytic_view.xml",
-                    "workflow.xml",
-                    "account_menu.xml",
-                    "partner_view.xml",
-                    "wizard/account_invoice_wiz.xml"],
-    "active":False,
-    "installable":True,
-}

=== removed file 'account_invoice_analytics/account_menu.xml'
--- account_invoice_analytics/account_menu.xml	2012-12-11 10:06:23 +0000
+++ account_invoice_analytics/account_menu.xml	1970-01-01 00:00:00 +0000
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<openerp>
-	<data>
-        <delete model="ir.ui.menu" id="account_invoicing.inv_main_menu"/>
-        <delete model="ir.ui.menu" id="account_invoicing.inv_config"/>
-        <delete model="ir.ui.menu" id="account_invoicing.agreement"/>
-        <delete model="ir.ui.menu" id="account_invoicing.methodology"/>
-        <delete model="ir.ui.menu" id="account_invoicing.service"/>
-        
-        <menuitem id="periodical_inv" name="Recurring Invoice" parent="account.menu_finance_periodical_processing"/>
-        <menuitem id="inv_config" name="Configuration" parent="periodical_inv" sequence="1"/>
-        <menuitem id="agreement" action="account_invoicing.inv_agreement_form" parent="periodical_inv"/>
-        
-        <menuitem id="methodology" action="account_invoicing.inv_config_method_form" parent="inv_config" />
-        <menuitem id="service" action="account_invoicing.inv_config_service_form" parent="inv_config" />
-	</data>
-</openerp>
\ No newline at end of file

=== removed file 'account_invoice_analytics/analytic.py'
--- account_invoice_analytics/analytic.py	2012-12-11 10:06:23 +0000
+++ account_invoice_analytics/analytic.py	1970-01-01 00:00:00 +0000
@@ -1,36 +0,0 @@
-# -*- encoding: utf-8 -*-
-##############################################################################
-#
-#    Avanzosc, OpenERP Professional Services   
-#    Copyright (C) 2010-2011 Avanzosc S.L (http://www.avanzosc.com)
-#    
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU General Public License for more details.
-#
-#    You should have received a copy of the GNU General Public License
-#    along with this program.  If not, see http://www.gnu.org/licenses/.
-#
-##############################################################################
-
-from osv import osv
-from osv import fields
-import decimal_precision as dp
-
-class account_analytic_line(osv.osv):
-    
-    _inherit = 'account.analytic.line'
-    
-    _columns = {
-                'sale_amount': fields.float('Sale amount',digits_compute=dp.get_precision('Account')),
-                'sale_id': fields.many2one('sale.order', 'Sale Order'),       
-    }
-    
-account_analytic_line()
\ No newline at end of file

=== removed file 'account_invoice_analytics/analytic_view.xml'
--- account_invoice_analytics/analytic_view.xml	2012-12-11 10:06:23 +0000
+++ account_invoice_analytics/analytic_view.xml	1970-01-01 00:00:00 +0000
@@ -1,33 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<openerp>
-<data>
-
-		<record id="account_analytic_line_inherit" model="ir.ui.view">
-            <field name="name">account.analytic.line.inh</field>
-            <field name="model">account.analytic.line</field>
-            <field name="type">form</field>
-            <field name="inherit_id" ref="account.view_account_analytic_line_form"/>
-            <field name="arch" type="xml">
-            	<field name="amount" position="after">
-            		<field name="sale_amount" colspan="4"/>
-            	</field>
-            </field>
-		</record>
-
-		
-		
-		<record id="account_analytic_line_tree_inherit" model="ir.ui.view">
-            <field name="name">account.analytic.line.tree.inh</field>
-            <field name="model">account.analytic.line</field>
-            <field name="type">tree</field>
-            <field name="inherit_id" ref="account.view_account_analytic_line_tree"/>
-            <field name="arch" type="xml">
-            	<field name="amount" position="after">
-            		<field name="sale_amount"/>
-            	</field>
-            </field>
-		</record>
-
-</data>
-</openerp>	
\ No newline at end of file

=== removed directory 'account_invoice_analytics/i18n'
=== removed file 'account_invoice_analytics/partner.py'
--- account_invoice_analytics/partner.py	2012-12-11 10:06:23 +0000
+++ account_invoice_analytics/partner.py	1970-01-01 00:00:00 +0000
@@ -1,31 +0,0 @@
-# -*- encoding: utf-8 -*-
-##############################################################################
-#
-#    Avanzosc - Avanced Open Source Consulting
-#    Copyright (C) 2010 - 2011 Avanzosc <http://www.avanzosc.com>
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see http://www.gnu.org/licenses/.
-#
-##############################################################################
-
-from osv import osv
-from osv import fields
-
-class res_partner(osv.osv):
-    _inherit = 'res.partner'
- 
-    _columns = {
-            'agreement_ids': fields.one2many('inv.agreement', 'partner_id', 'Agreements'),
-        }
-res_partner()
\ No newline at end of file

=== removed file 'account_invoice_analytics/partner_view.xml'
--- account_invoice_analytics/partner_view.xml	2012-12-11 10:06:23 +0000
+++ account_invoice_analytics/partner_view.xml	1970-01-01 00:00:00 +0000
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<openerp>
-	<data>
-	
-		<record model="ir.ui.view" id="res_partner_agreement_form_inherit_view">
-        	<field name="name">res.partner.agreement.form.inherit</field>
-            <field name="model">res.partner</field>
-            <field name="type">form</field>
-            <field name="inherit_id" ref="base.view_partner_form"/>
-            <field name="arch" type="xml">
-                <notebook position="inside">
-                	<page string="Agreements">
-                		<field name="agreement_ids" nolabel="1"/>
-                	</page>
-                </notebook>
-        	</field>
-        </record>
-	
-	</data>
-</openerp>
\ No newline at end of file

=== removed file 'account_invoice_analytics/product.py'
--- account_invoice_analytics/product.py	2012-12-11 10:06:23 +0000
+++ account_invoice_analytics/product.py	1970-01-01 00:00:00 +0000
@@ -1,41 +0,0 @@
-# -*- encoding: utf-8 -*-
-##############################################################################
-#
-#    Avanzosc - Avanced Open Source Consulting
-#    Copyright (C) 2011 - 2012 Avanzosc <http://www.avanzosc.com>
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see http://www.gnu.org/licenses/.
-#
-##############################################################################
-
-from osv import osv
-from osv import fields
-
-class product_product(osv.osv):
-    _inherit = 'product.product'
- 
-    _columns = {
-            'invoicing_mode': fields.selection([
-                ('once','Invoice Once'),
-                ('installments','Payment by Installments'),
-                ('recur','Invoice Recursively'),
-                ('no','Do not Invoice'),
-                ], 'Invoice type'),                
-            'recur_service': fields.many2one('inv.service', 'Agreement Service'),
-    }
-    
-    _defaults = {  
-        'invoicing_mode': lambda *a: 'once',
-        }
-product_product()

=== removed file 'account_invoice_analytics/product_view.xml'
--- account_invoice_analytics/product_view.xml	2012-12-11 10:06:23 +0000
+++ account_invoice_analytics/product_view.xml	1970-01-01 00:00:00 +0000
@@ -1,30 +0,0 @@
-<?xml version="1.0"?>
-<openerp>
-	<data>
-		<!--  
-		==========================================================
-		Product Form Inherit
-		==========================================================
-		-->
-		<record id="product_invoicing_form_view" model="ir.ui.view">
-        	<field name="name">product.product.form.inh</field>
-			<field name="model">product.product</field>
-			<field name="type">form</field>
-			<field name="inherit_id" ref="product.product_normal_form_view" />
-			<field name="arch" type="xml">
-			<data>
-				<group name="uos" position="after">
-					<group colspan="2" col="2" name="invoicing">
-	                	<separator string="Invoicing Type" colspan="2"/>
-	                    <field name="invoicing_mode"/>
-	                    <field name="recur_service" attrs="{'required': [('invoicing_mode','=', 'recur')], 'invisible': [('invoicing_mode','!=', 'recur')]}"/>
-	                </group>
-	            </group>
-	        </data>
-			</field>
-        </record>
-        
-        
-        
-	</data>
-</openerp>

=== removed file 'account_invoice_analytics/sale.py'
--- account_invoice_analytics/sale.py	2012-12-11 10:06:23 +0000
+++ account_invoice_analytics/sale.py	1970-01-01 00:00:00 +0000
@@ -1,216 +0,0 @@
-# -*- encoding: utf-8 -*-
-##############################################################################
-#
-#    Avanzosc - Avanced Open Source Consulting
-#    Copyright (C) 2011 - 2012 Avanzosc <http://www.avanzosc.com>
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see http://www.gnu.org/licenses/.
-#
-##############################################################################
-
-import time
-from mx import DateTime
-
-from osv import osv
-from osv import fields
-
-class sale_order_line(osv.osv):
-    _inherit = 'sale.order.line'
-    
-    def _check_installments(self, cr, uid, ids): 
-        for line in self.browse(cr, uid, ids):
-            if line.installments < 2:
-                return False
-        return True
- 
-    _columns = {
-        'invoice_mode':fields.related('product_id', 'invoicing_mode', type="selection", selection=[('once','Invoice Once'),
-                ('installments','Payment by Installments'),
-                ('recur','Invoice Recursively'),
-                ('no','Do not Invoice'),
-                ], string="Invoice Mode",store=True, readonly=True),
-        'installments':fields.integer('Installments'),
-        'installment_unit': fields.selection([
-            ('days','Days'),
-            ('weeks','Weeks'),
-            ('months','Months'),
-            ('years','Years'),
-            ], 'Unit'),
-        'analytic_created':fields.boolean("Analytic line created"),
-        'invoice_date': fields.date('First invoice date', required=False),
-        'expire_date': fields.date('Expire date'),
-        'partner_signed_date': fields.date('Signed on'),
-        'interval': fields.integer('Interval', help="Time before current validity expires to prolong the agreement for the next term."),
-        'interval_unit': fields.selection([
-            ('days','Days'),
-            ('weeks','Weeks'),
-            ('months','Months'),
-            ('years','Years'),
-            ], 'Unit'),
-        'period': fields.integer('Period', help="Period time to prolong the next agreement"),
-        'period_unit': fields.selection([
-            ('days','Days'),
-            ('weeks','Weeks'),
-            ('months','Months'),
-            ('years','Years'),
-            ], 'Unit'),
-        'payment': fields.selection([('start','In advance'),('end','After')], 'Payment'),
-    }
-    
-    _defaults = {
-        'invoice_date': lambda*a: time.strftime('%Y/%m/%d'),
-        'installments': lambda *a: 2,
-        'installment_unit': lambda *a: 'months',
-        'period': lambda *a: 1,
-        'period_unit': lambda *a: 'months',
-        'interval': lambda *a: 1,
-        'interval_unit': lambda *a: 'weeks',
-        'payment': lambda *a: 'start',
-    }
-    
-    _constraints = [(_check_installments, 'Error: Invalid Installment Quantity', ['Installments']), ]
-    
-    def product_id_change(self, cr, uid, ids, pricelist, product, qty=0,
-            uom=False, qty_uos=0, uos=False, name='', partner_id=False,
-            lang=False, update_tax=True, date_order=False, packaging=False, fiscal_position=False, flag=False, context=None):
-        
-        res = super(sale_order_line, self).product_id_change(cr, uid, ids, pricelist, product, qty,
-            uom, qty_uos, uos, name, partner_id,
-            lang, update_tax, date_order, packaging, fiscal_position, flag, context=context)
-        if product:
-            product_obj = self.pool.get('product.product').browse(cr, uid, product)
-            if product_obj.invoicing_mode:
-                res['value'].update({'invoice_mode': product_obj.invoicing_mode})
-        return res
-    
-sale_order_line()
-
-class sale_order(osv.osv):
-    _inherit = 'sale.order'
- 
-    _columns = {
-        'agreement': fields.many2one('inv.agreement', 'Agreement'),
-        'agreement_date': fields.date('Agreement Date'),
-        'order_policy': fields.selection([
-            ('prepaid', 'Payment Before Delivery'),
-            ('manual', 'Shipping & Manual Invoice'),
-            ('postpaid', 'Invoice On Order After Delivery'),
-            ('picking', 'Invoice From The Picking'),
-            ('analytic', 'Invoice From Analytics'),
-        ], 'Shipping Policy', required=True, readonly=True, states={'draft': [('readonly', False)]}),
-    }
-    
-#    def onchange_date_order(self, cr, uid, ids, date_order, context=None):
-#        res = {}
-#        if date_order:
-#            res = {
-#                'agreement_date': date_order,
-#            }
-#        return {'value': res}
-    
-    def change_date_agree(self, cr, uid, ids, context=None):
-        res = {}
-        lines = []
-        sale_line_obj = self.pool.get('sale.order.line')
-        for sale in self.browse(cr, uid, ids):
-            if sale.agreement_date:
-                for line in sale.order_line:
-                    sale_line_obj.write(cr, uid, [line.id], {'invoice_date': sale.agreement_date})
-            else:
-                for line in sale.order_line:
-                    sale_line_obj.write(cr, uid, [line.id], {'invoice_date': sale.date_order})
-        return True
-    
-    def action_create_analytic_lines(self, cr, uid, ids, context=None):
-        res = False
-        values = {}
-        obj_sale_order_line = self.pool.get('sale.order.line')
-        obj_account_analytic_line = self.pool.get('account.analytic.line')
-        obj_factor = self.pool.get('hr_timesheet_invoice.factor')
-        obj_agreement = self.pool.get('inv.agreement')
-        if context is None:
-            context = {}
-        for order in self.browse(cr, uid, ids, context=context):
-            analytic_account = order.project_id.id
-            factor = obj_factor.search(cr, uid, [('factor', '=', 0)])[0]
-            for line in order.order_line:
-                if not line.analytic_created:
-                    if line.product_id.property_account_income:
-                        general_account = line.product_id.property_account_income.id
-                    else:
-                        general_account = line.product_id.categ_id.property_account_income_categ.id
-                    if not line.invoice_date:
-                        raise osv.except_osv(_('User error'), _('Invoice Date not found for: %s') %(line.product_id.name))
-                    values = {
-                        'date': line.invoice_date,
-                        'account_id': analytic_account,
-                        'unit_amount': line.product_uom_qty,
-                        'name': line.name,
-                        'sale_amount':line.price_subtotal,
-                        'general_account_id': general_account,
-                        'product_id': line.product_id.id,
-                        'product_uom_id': line.product_id.uom_id.id,
-                        'ref': order.name,
-                        'to_invoice': factor,
-                        'journal_id': 1,
-                        'sale_id': order.id,
-                    }
-                    if line.invoice_mode == 'once':   
-                        values.update({
-                            'sale_amount': line.price_subtotal,
-                        })
-                        obj_account_analytic_line.create(cr,uid,values)
-                        obj_sale_order_line.write(cr, uid, [line.id], {'analytic_created': True})
-                    elif line.invoice_mode == 'installments':
-                        amount = line.price_subtotal / line.installments
-                        values.update({
-                            'sale_amount': amount,
-                        })
-                        if line.installment_unit == 'days':
-                            increment_size = DateTime.RelativeDateTime(days=1)
-                        elif line.installment_unit == 'weeks':
-                            increment_size = DateTime.RelativeDateTime(days=7)
-                        elif line.installment_unit == 'months':
-                            increment_size = DateTime.RelativeDateTime(months=1)
-                        elif line.installment_unit == 'years':
-                            increment_size = DateTime.RelativeDateTime(months=12)
-                        cont = line.installments
-                        while cont > 0:
-                            obj_account_analytic_line.create(cr,uid,values)
-                            next_date = DateTime.strptime(values['date'], '%Y-%m-%d') + increment_size
-                            values.update({
-                                'date': next_date.strftime('%Y-%m-%d'),
-                            })
-                            cont-=1
-                        obj_sale_order_line.write(cr, uid, [line.id], {'analytic_created': True})    
-                    elif line.invoice_mode == 'recur' and not order.agreement:
-                        values = {
-                            'partner_id': order.partner_id.id,
-                            'service': line.product_id.recur_service.id,
-                            'signed_date': line.invoice_date,
-                            'cur_effect_date': line.expire_date,
-                            'partner_signed_date': line.partner_signed_date or line.invoice_date,
-                            'analytic_account': analytic_account,
-                            'payment': line.payment,
-                            'recurr_unit_number': line.interval,
-                            'recurr_unit': line.interval_unit,
-                            'period_unit_number': line.period,
-                            'period_unit': line.period_unit,
-                        }
-                        id = obj_agreement.create(cr, uid, values)
-                        self.write(cr, uid, [order.id], {'agreement': id})
-                        obj_agreement.get_number(cr, uid, [id])
-                        obj_agreement.set_process(cr, uid, [id])
-        return res
-sale_order()

=== removed file 'account_invoice_analytics/sale_view.xml'
--- account_invoice_analytics/sale_view.xml	2012-12-11 10:06:23 +0000
+++ account_invoice_analytics/sale_view.xml	1970-01-01 00:00:00 +0000
@@ -1,118 +0,0 @@
-﻿<?xml version="1.0" encoding="UTF-8"?>
-<openerp>
-	<data>
-	
-		<!--
-		==========================================================
-		Sale Order Tree Inherit
-		==========================================================
-		-->
-		
-		<record model="ir.ui.view" id="sale_order_tree_invoicing_view">
-               <field name="name">sale.order.tree.invoicing</field>
-               <field name="model">sale.order</field>
-               <field name="type">tree</field>
-               <field name="inherit_id" ref="sale.view_order_tree"/>
-               <field name="arch" type="xml">
-                   <field name="date_order" position="after">
-                   		<field name="agreement_date" />
-                   </field>
-               </field>
-           </record>
-		
-		<!--
-		==========================================================
-		Sale Order Form Inherit
-		==========================================================
-		-->	
-	
-		<record id="sale_line_invoicing_form_view" model="ir.ui.view">
-        	<field name="name">sale.order.form.inh</field>
-			<field name="model">sale.order</field>
-			<field name="type">form</field>
-			<field name="inherit_id" ref="sale.view_order_form"/>
-			<field name="arch" type="xml">
-<!-- 				<field name="date_order" position="attributes"> -->
-<!-- 					<attribute name="on_change">onchange_date_order(date_order)</attribute> -->
-<!-- 				</field> -->
-				<field name="client_order_ref" position="replace">
-					<field name="agreement_date" />
-				</field>
-				<field name="order_line" position="attributes">
-					<attribute name="context">{'default_invoice_date': date_order}</attribute>
-				</field>
-				<field name="shipped" position="after">
-					<field name="client_order_ref"/>
-				</field>
-				<xpath expr="/form//form//field[@name='product_id']" position="replace">
-					<field colspan="4"
-                           context="partner_id=parent.partner_id,quantity=product_uom_qty,pricelist=parent.pricelist_id,shop=parent.shop_id,uom=product_uom"
-                           name="product_id"
-                           on_change="product_id_change(parent.pricelist_id,product_id,product_uom_qty,product_uom,product_uos_qty,product_uos,name,parent.partner_id, 'lang' in context and context['lang'], True, parent.date_order, product_packaging, parent.fiscal_position, False)"
-                    />
-				</xpath>
-				<xpath expr="/form/notebook/page/field/form/notebook/page/field[@name='delay']" position="after">
-					<group colspan="5" col="4" attrs="{'invisible': [('invoice_mode','=', 'no')]}">
-						<separator colspan="5" string="Invoice Details"/>
-						<field name="invoice_mode" colspan="5"/>
- 						<field name="invoice_date"/> 
- 						<field name="expire_date" attrs="{'invisible': [('invoice_mode','!=', 'recur')]}"/>
- 					</group>
-					<group colspan="5" col="6" attrs="{'invisible': [('invoice_mode','!=', 'installments')]}" >
-	 					<field name="installments"/>
-	 					<field name="installment_unit"/>
- 					</group> 
- 					<group colspan="5" col="4" attrs="{'invisible': [('invoice_mode','!=', 'recur')]}">
- 						<field name="partner_signed_date"/>
- 						<field name="payment"/>
- 						<field name="interval"/>
- 						<field name="interval_unit"/>
- 						<field name="period"/>
- 						<field name="period_unit"/>
- 					</group>
-				</xpath>
-				<group col="13" colspan="10" position="attributes">
-					<attribute name="col">14</attribute>
-				</group>
-				<button string="Advance Invoice" position="after">
-					<button name="change_date_agree" states="waiting_install" string="Change Date" type="object" icon="gtk-execute"/>
-				</button>
-			</field>
-        </record>
-        
-        <!--
-		==========================================================
-		Sale Order Search Inherit
-		==========================================================
-		-->
-		
-		<record id="sale_invoicing_search_view" model="ir.ui.view">
-        	<field name="name">sale.order.invoicing.search.inh</field>
-			<field name="model">sale.order</field>
-			<field name="type">search</field>
-			<field name="inherit_id" ref="sale.view_sales_order_filter"/>
-			<field name="arch" type="xml">
-				<field name="user_id" position="after">
-					<field name="agreement_date"/>
-				</field>
-				<filter string="Order Date" position="after">
-					<filter string="Agreement Date" icon="terp-go-month" domain="[]" context="{'group_by':'agreement_date'}" />
-				</filter>
-			</field>
-		</record>
-           
-        <!--
-		==========================================================
-		Sale Order to Analytic Accouts Shorcut
-		==========================================================
-		-->
-              
-        <act_window name="Analytic Accounts"
-			domain="[('sale_id', '=', active_id)]"
-			res_model="account.analytic.line"
-			src_model="sale.order"
-			groups="base.group_extended"
-			id="act_sale_order_to_analytic"/>
-        
-	</data>
-</openerp>

=== removed directory 'account_invoice_analytics/wizard'
=== removed file 'account_invoice_analytics/wizard/__init__.py'
--- account_invoice_analytics/wizard/__init__.py	2012-12-11 10:06:23 +0000
+++ account_invoice_analytics/wizard/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,22 +0,0 @@
-# -*- encoding: utf-8 -*-
-##############################################################################
-#
-#    Avanzosc - Avanced Open Source Consulting
-#    Copyright (C) 2011 - 2012 Avanzosc <http://www.avanzosc.com>
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see http://www.gnu.org/licenses/.
-#
-##############################################################################
-
-import account_find_analytic_entries

=== removed file 'account_invoice_analytics/wizard/account_find_analytic_entries.py'
--- account_invoice_analytics/wizard/account_find_analytic_entries.py	2012-12-11 10:06:23 +0000
+++ account_invoice_analytics/wizard/account_find_analytic_entries.py	1970-01-01 00:00:00 +0000
@@ -1,56 +0,0 @@
-# -*- encoding: utf-8 -*-
-##############################################################################
-#
-#    Avanzosc - Avanced Open Source Consulting
-#    Copyright (C) 2010 - 2011 Avanzosc <http://www.avanzosc.com>
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see http://www.gnu.org/licenses/.
-#
-##############################################################################
-
-from osv import osv
-from osv import fields
-
-class account_find_analytic_entries(osv.osv_memory):
-    _name = 'account.find.analytic.entries'
-    _description = 'Find Analytic Entries'
-    
-    def _get_default_invoice_type(self, cr, uid, context=None):
-        factor = self.pool.get('hr_timesheet_invoice.factor')
-        return factor.search(cr, uid, [])[0]
- 
-    _columns = {
-       'start_date': fields.date('Start Date', required=True),
-       'finish_date': fields.date('Finish Date', required=True),
-       'invoice_type': fields.many2one('hr_timesheet_invoice.factor','Invoice Type', required=True),
-    }
-    
-    _defaults = {
-        'invoice_type': lambda self, cr, uid, context: self._get_default_invoice_type(cr, uid, context),
-    }
-    
-    def action_find(self, cr, uid, ids, context=None):
-        for entri in self.browse(cr, uid, ids):
-            wizard = {
-                'type': 'ir.actions.act_window',
-                'res_model': 'account.analytic.line',
-                'view_type': 'form',
-                'view_mode': 'tree,form',
-                'domain': [('date', '>=', entri.start_date), ('date', '<=', entri.finish_date), ('to_invoice', '=', entri.invoice_type.id), ('invoice_id', '=', False)],
-                'context':context
-            }
-            return wizard
-        return False
-    
-account_find_analytic_entries()
\ No newline at end of file

=== removed file 'account_invoice_analytics/wizard/account_invoice_wiz.xml'
--- account_invoice_analytics/wizard/account_invoice_wiz.xml	2012-12-11 10:06:23 +0000
+++ account_invoice_analytics/wizard/account_invoice_wiz.xml	1970-01-01 00:00:00 +0000
@@ -1,40 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<openerp>
-    <data>
-
-        <record id="view_account_find_analytic_entries" model="ir.ui.view">
-            <field name="name">account.find.analytic.entries.form</field>
-            <field name="model">account.find.analytic.entries</field>
-            <field name="type">form</field>
-            <field name="arch" type="xml">
-                <form string="Compute Analytic Entries">
-                    <separator string="Find Entries:" colspan="4"/>
-                    <label string ="Automatically find entries based on what has been entered in the  system before a specific date." colspan="4" nolabel="1"/>
-                    <newline/>
-                    <field name="start_date"/>
-                    <field name="finish_date"/>
-                    <field name="invoice_type"/>
-                	<separator colspan="4" />
-                	<group colspan="4" col="6">
-                		<label string ="" colspan="2"/>
-                    	<button icon="gtk-cancel" special="cancel" string="Cancel" />
-                    	<button icon="gtk-execute" string="Find Entries"
-                    	name="action_find" type="object" />
-                	</group>
-               </form>
-            </field>
-        </record>
-
-        <record id="action_find_analytic_entries" model="ir.actions.act_window">
-            <field name="name">Find Analytic Entries</field>
-            <field name="res_model">account.find.analytic.entries</field>
-            <field name="view_type">form</field>
-            <field name="view_mode">tree,form</field>
-            <field name="view_id" ref="view_account_find_analytic_entries"/>
-            <field name="target">new</field>
-        </record>
-
-        <menuitem sequence="3" action="action_find_analytic_entries" id="find_analytic_entries" parent="periodical_inv" />
-
-    </data>
-</openerp>
\ No newline at end of file

=== removed file 'account_invoice_analytics/workflow.xml'
--- account_invoice_analytics/workflow.xml	2012-12-11 10:06:23 +0000
+++ account_invoice_analytics/workflow.xml	1970-01-01 00:00:00 +0000
@@ -1,33 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<openerp>
-    <data>
-    
-    	# -----------------------------------------------------------
-		# Activities
-		# -----------------------------------------------------------
-     
-     	<record id="act_analytic" model="workflow.activity">
-            <field name="wkf_id" ref="sale.wkf_sale"/>
-            <field name="name">analytic</field>
-            <field name="kind">function</field>
-            <field name="action">action_create_analytic_lines()</field>
-        </record>    
-        
-        # -----------------------------------------------------------
-		# Transitions
-		# ----------------------------------------------------------- 
-     
-     	<record id="trans_wait_invoice_analytic" model="workflow.transition">
-            <field name="act_from" ref="sale.act_wait_invoice"/>
-            <field name="act_to" ref="act_analytic"/>
-            <field name="condition">(order_policy=='analytic')</field>
-        </record>
-    
-    	<record id="trans_analytic_done" model="workflow.transition">
-            <field name="act_from" ref="act_analytic"/>
-            <field name="act_to" ref="sale.act_invoice_end"/>
-        </record>
-        
-        
-    </data>    
-</openerp>

=== removed directory 'account_payment_extension'
=== removed file 'account_payment_extension/__init__.py'
--- account_payment_extension/__init__.py	2012-12-11 10:06:23 +0000
+++ account_payment_extension/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,29 +0,0 @@
-# -*- encoding: utf-8 -*-
-##############################################################################
-#
-#    OpenERP, Open Source Management Solution
-#    Copyright (c) 2008 Zikzakmedia S.L. (http://zikzakmedia.com) All Rights Reserved.
-#                       Jordi Esteve <jesteve@zikzakmedia.com>
-#    AvanzOSC, Avanzed Open Source Consulting 
-#    Copyright (C) 2011-2012 Iker Coranti (www.avanzosc.com). All Rights Reserved
-#    $Id$
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-##############################################################################
-
-import payment
-import account_invoice
-import account_move_line
-import wizard

=== removed file 'account_payment_extension/__openerp__.py'
--- account_payment_extension/__openerp__.py	2012-12-11 10:06:23 +0000
+++ account_payment_extension/__openerp__.py	1970-01-01 00:00:00 +0000
@@ -1,64 +0,0 @@
-# -*- encoding: utf-8 -*-
-##############################################################################
-#
-#    OpenERP, Open Source Management Solution
-#    Copyright (c) 2008 Zikzakmedia S.L. (http://zikzakmedia.com) All Rights Reserved.
-#                       Jordi Esteve <jesteve@zikzakmedia.com>
-#    AvanzOSC, Avanzed Open Source Consulting
-#    Copyright (C) 2011-2012 Iker Coranti (www.avanzosc.com). All Rights Reserved
-#    $Id$
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-##############################################################################
-
-{
-    "name" : "Account Payment Extension",
-    "version" : "1.1",
-    "author" : "Zikzakmedia SL",
-    "category" : "Accounting & Finance",
-    "website" : "www.zikzakmedia.com",
-    "license" : "AGPL-3",
-    "description": """Account payment extension.
-
-This module extends the account_payment module with a lot of features:
-    * Definition of payment types (cash, bank transfer, automatical bank transfer, ...). The payment type has a translatable name and note that can be shown in the invoices.
-    * Two default payment types for partners (client and supplier).
-    * Automatic selection of payment type in invoices. Now an invoice can have a payment term (30 days, 30/60 days, ...) and a payment type (cash, bank transfer, ...).
-    * A default check field in partner bank accounts. The default partner bank accounts are selected in invoices and payments.
-    * New menu/tree/forms to see payments to receive and payments to pay.
-    * The payments show tree editable fields: Due date, bank account and a check field (for example to write down if a bank check in paper support has been received).
-    * Two types of payment orders: Payable payment orders (from supplier invoices) and receivable payment orders (from client invoices). So we can make payment orders to receive the payments of our client invoices. Each payment order type has its own sequence.
-    * The payment orders allow negative payment amounts. So we can have payment orders for supplier invoices (pay money) and refund supplier invoices (return or receive money). Or for client invoices (receive money) and refund client invoices (return or pay money).
-    * Payment orders: Selected invoices are filtered by payment type, the second message communication can be set at the same time for several invoices.
-Based on previous work of Pablo Rocandio & Zikzakmedia (version for 4.2).
-""",
-    "depends" : [
-        "base",
-        "account",
-        "account_payment",
-        ],
-    "init_xml" : [],
-    "demo_xml" : [],
-    "update_xml" : [
-                    "security/ir.model.access.csv",
-                    "payment_wizard.xml",
-                    "wizard/wizard_payment_order_view.xml",
-                    "wizard/wizard_populate_statement_view.xml",
-                    "payment_view.xml",
-                    "payment_sequence.xml",
-                    ],
-    "active": False,
-    "installable": True,
-}

=== removed file 'account_payment_extension/account_invoice.py'
--- account_payment_extension/account_invoice.py	2012-12-11 10:06:23 +0000
+++ account_payment_extension/account_invoice.py	1970-01-01 00:00:00 +0000
@@ -1,136 +0,0 @@
-# -*- encoding: utf-8 -*-
-##############################################################################
-#
-#    OpenERP, Open Source Management Solution
-#    Copyright (c) 2008 Zikzakmedia S.L. (http://zikzakmedia.com) All Rights Reserved.
-#                       Jordi Esteve <jesteve@zikzakmedia.com>
-#    AvanzOSC, Avanzed Open Source Consulting 
-#    Copyright (C) 2011-2012 Iker Coranti (www.avanzosc.com). All Rights Reserved
-#    $Id$
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-##############################################################################
-
-import netsvc
-from osv import fields, osv
-
-class account_invoice(osv.osv):
-    _inherit='account.invoice'
-    _columns={
-        'payment_type': fields.many2one('payment.type', 'Payment type'),
-    }
-
-    def onchange_partner_id(self, cr, uid, ids, type, partner_id, date_invoice=False, payment_term=False, partner_bank_id=False, company_id=False):
-        # Copy partner data to invoice, also the new field payment_type
-        result = super(account_invoice, self).onchange_partner_id(cr, uid, ids, type, partner_id, date_invoice, payment_term, partner_bank_id, company_id)
-        payment_type = False
-        if partner_id:
-            partner_line = self.pool.get('res.partner').browse(cr, uid, partner_id)
-            if partner_line:
-                if type=='in_invoice' or type=='in_refund':
-                    payment_type = partner_line.payment_type_supplier.id
-                else:
-                    payment_type = partner_line.payment_type_customer.id
-            if payment_type:
-                result['value']['payment_type'] = payment_type
-        return self.onchange_payment_type(cr, uid, ids, payment_type, partner_id, result)
-
-    def onchange_payment_type(self, cr, uid, ids, payment_type, partner_id, result = None):
-        if result is None:
-            result = {'value': {}}
-        if payment_type and partner_id:
-            bank_types = self.pool.get('payment.type').browse(cr, uid, payment_type).suitable_bank_types
-            if bank_types: # If the payment type is related with a bank account
-                bank_types = [bt.code for bt in bank_types]
-                partner_bank_obj = self.pool.get('res.partner.bank')
-                args = [('partner_id', '=', partner_id), ('default_bank', '=', 1), ('state', 'in', bank_types)]
-                bank_account_id = partner_bank_obj.search(cr, uid, args)
-                if bank_account_id:
-                    result['value']['partner_bank_id'] = bank_account_id[0]
-                    return result
-        result['value']['partner_bank_id'] = False
-        return result
-
-    def action_move_create(self, cr, uid, ids, *args):
-        ret = super(account_invoice, self).action_move_create(cr, uid, ids, *args)
-        if ret:
-            for inv in self.browse(cr, uid, ids):
-                move_line_ids = []
-                for move_line in inv.move_id.line_id:
-                    if (move_line.account_id.type == 'receivable' or move_line.account_id.type == 'payable') and move_line.state != 'reconciled' and not move_line.reconcile_id.id:
-                        move_line_ids.append(move_line.id)
-                if len(move_line_ids) and inv.partner_bank_id:
-                    aml_obj = self.pool.get("account.move.line")
-                    aml_obj.write(cr, uid, move_line_ids, {'partner_bank_id': inv.partner_bank_id.id})
-        return ret
-
-    def refund(self, cr, uid, ids, date=None, period_id=None, description=None, journal_id=None):
-        invoices = self.read(cr, uid, ids, ['name', 'type', 'number', 'reference', 'comment', 'date_due', 'partner_id', 'address_contact_id', 'address_invoice_id', 'partner_contact', 'partner_insite', 'partner_ref', 'payment_term', 'account_id', 'currency_id', 'invoice_line', 'tax_line', 'journal_id', 'payment_type'])
-        obj_invoice_line = self.pool.get('account.invoice.line')
-        obj_invoice_tax = self.pool.get('account.invoice.tax')
-        obj_journal = self.pool.get('account.journal')
-        new_ids = []
-        for invoice in invoices:
-            del invoice['id']
-
-            type_dict = {
-                'out_invoice': 'out_refund', # Customer Invoice
-                'in_invoice': 'in_refund',   # Supplier Invoice
-                'out_refund': 'out_invoice', # Customer Refund
-                'in_refund': 'in_invoice',   # Supplier Refund
-            }
-
-            invoice_lines = obj_invoice_line.read(cr, uid, invoice['invoice_line'])
-            invoice_lines = self._refund_cleanup_lines(cr, uid, invoice_lines)
-
-            tax_lines = obj_invoice_tax.read(cr, uid, invoice['tax_line'])
-            tax_lines = filter(lambda l: l['manual'], tax_lines)
-            tax_lines = self._refund_cleanup_lines(cr, uid, tax_lines)
-            if journal_id:
-                refund_journal_ids = [journal_id]
-            elif invoice['type'] == 'in_invoice':
-                refund_journal_ids = obj_journal.search(cr, uid, [('type','=','purchase_refund')])
-            else:
-                refund_journal_ids = obj_journal.search(cr, uid, [('type','=','sale_refund')])
-
-            if not date:
-                date = time.strftime('%Y-%m-%d')
-            invoice.update({
-                'type': type_dict[invoice['type']],
-                'date_invoice': date,
-                'state': 'draft',
-                'number': False,
-                'invoice_line': invoice_lines,
-                'tax_line': tax_lines,
-                'journal_id': refund_journal_ids
-            })
-            if period_id:
-                invoice.update({
-                    'period_id': period_id,
-                })
-            if description:
-                invoice.update({
-                    'name': description,
-                })
-            # take the id part of the tuple returned for many2one fields
-            for field in ('address_contact_id', 'address_invoice_id', 'partner_id',
-                    'account_id', 'currency_id', 'payment_term', 'journal_id', 'payment_type'):
-                invoice[field] = invoice[field] and invoice[field][0]
-            # create the new invoice
-            new_ids.append(self.create(cr, uid, invoice))
-
-        return new_ids
-
-account_invoice()

=== removed file 'account_payment_extension/account_move_line.py'
--- account_payment_extension/account_move_line.py	2012-12-11 10:06:23 +0000
+++ account_payment_extension/account_move_line.py	1970-01-01 00:00:00 +0000
@@ -1,193 +0,0 @@
-# -*- encoding: utf-8 -*-
-##############################################################################
-#
-#    OpenERP, Open Source Management Solution
-#    Copyright (c) 2008 Zikzakmedia S.L. (http://zikzakmedia.com) All Rights Reserved.
-#                       Jordi Esteve <jesteve@zikzakmedia.com>
-#    AvanzOSC, Avanzed Open Source Consulting 
-#    Copyright (C) 2011-2012 Iker Coranti (www.avanzosc.com). All Rights Reserved
-#    $Id$
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-##############################################################################
-
-import netsvc
-from osv import fields, osv
-
-class account_move_line(osv.osv):
-    _name = 'account.move.line'
-    _inherit = 'account.move.line'
-
-    def _invoice(self, cr, uid, ids, name, arg, context=None):
-        return super(account_move_line, self)._invoice(cr, uid, ids, name, arg, context)
-
-    def _invoice_search(self, cr, uid, obj, name, args, context={}):
-        """ Redefinition for searching account move lines without any invoice related ('invoice.id','=',False)"""
-        for x in args:
-            if (x[2] is False) and (x[1] == '=') and (x[0] == 'invoice'):
-                cr.execute('SELECT l.id FROM account_move_line l ' \
-                    'LEFT JOIN account_invoice i ON l.move_id = i.move_id ' \
-                    'WHERE i.id IS NULL', [])
-                res = cr.fetchall()
-                if not len(res):
-                    return [('id', '=', '0')]
-                return [('id', 'in', [x[0] for x in res])]
-        return super(account_move_line, self)._invoice_search(cr, uid, obj, name, args, context=context)
-
-    def amount_to_pay(self, cr, uid, ids, name, arg={}, context={}):
-        """
-        Return amount pending to be paid taking into account payment lines and the reconciliation.
-        Note that the amount to pay can be due to negative supplier refund invoices or customer invoices.
-        """
-
-        if not ids:
-            return {}
-        cr.execute("""SELECT ml.id,
-                    CASE WHEN ml.amount_currency < 0
-                        THEN - ml.amount_currency
-                        WHEN ml.amount_currency > 0
-                        THEN ml.amount_currency
-                        ELSE ml.credit - ml.debit
-                    END AS debt,
-                    (SELECT coalesce(sum(CASE WHEN pl.type='receivable' THEN -amount_currency ELSE amount_currency END),0)
-                        FROM payment_line pl
-                            INNER JOIN payment_order po
-                                ON (pl.order_id = po.id)
-                        WHERE 
-                            pl.move_line_id = ml.id AND
-                            pl.payment_move_id IS NULL AND 
-                            po.state != 'cancel'
-                    ) AS paid,
-                    (
-                        SELECT
-                            COALESCE( SUM(COALESCE(amrl.credit,0) - COALESCE(amrl.debit,0)), 0 )
-                        FROM
-                            account_move_reconcile amr,
-                            account_move_line amrl
-                        WHERE
-                            amr.id = amrl.reconcile_partial_id AND
-                            amr.id = ml.reconcile_partial_id
-                    ) AS unreconciled,
-                    reconcile_id
-                    FROM account_move_line ml
-                    WHERE id in (%s)""" % (",".join([str(int(x)) for x in ids])))
-        result = {}
-        for record in cr.fetchall():
-            id = record[0]
-            debt = record[1] or 0.0
-            paid = record[2]
-            unreconciled = record[3]
-            reconcile_id = record[4]
-            if reconcile_id:
-                debt = 0.0
-            else:
-                if not unreconciled:
-                    unreconciled = debt
-                if debt > 0:
-                    debt = min(debt - paid, max(0.0, unreconciled))
-                else:
-                    debt = max(debt - paid, min(0.0, unreconciled))
-            result[id] = debt
-        return result
-
-    def _to_pay_search(self, cr, uid, obj, name, args, context={}):
-        if not len(args):
-            return []
-        currency = self.pool.get('res.users').browse(cr, uid, uid, context).company_id.currency_id
-
-        # For searching we first discard reconciled moves because the filter is fast and discards most records
-        # quickly.
-        ids = self.pool.get('account.move.line').search(cr, uid, [('reconcile_id','=',False)], context=context)
-        records = self.pool.get('account.move.line').read(cr, uid, ids, ['id', 'amount_to_pay'], context)
-        ids = []
-        for record in records:
-            if not self.pool.get('res.currency').is_zero( cr, uid, currency, record['amount_to_pay'] ):
-                ids.append( record['id'] )
-        if not ids:
-            return [('id','=',False)]
-        return [('id','in',ids)]
-
-    def _payment_type_get(self, cr, uid, ids, field_name, arg, context={}):
-        result = {}
-        invoice_obj = self.pool.get('account.invoice')
-        for rec in self.browse(cr, uid, ids, context):
-            result[rec.id] = (0,0)
-            invoice_id = invoice_obj.search(cr, uid, [('move_id', '=', rec.move_id.id)], context=context)
-            if invoice_id:
-                inv = invoice_obj.browse(cr, uid, invoice_id[0], context)
-                if inv.payment_type:
-                    result[rec.id] = (inv.payment_type.id, self.pool.get('payment.type').browse(cr, uid, inv.payment_type.id, context).name)
-            else:
-                result[rec.id] = (0,0)
-        return result
-
-    def _payment_type_search(self, cr, uid, obj, name, args, context={}):
-        if not len(args):
-            return []
-        operator = args[0][1]
-        value = args[0][2]
-        if not value:
-            return []
-        if isinstance(value, int) or isinstance(value, long):
-            ids = [value]
-        elif isinstance(value, list):
-            ids = value 
-        else:
-            ids = self.pool.get('payment.type').search(cr,uid,[('name','ilike',value)], context=context)
-        if ids:
-            cr.execute('SELECT l.id ' \
-                'FROM account_move_line l, account_invoice i ' \
-                'WHERE l.move_id = i.move_id AND i.payment_type in (%s)' % (','.join(map(str, ids))))
-            res = cr.fetchall()
-            if len(res):
-                return [('id', 'in', [x[0] for x in res])]
-        return [('id','=','0')]
-
-    _columns = {
-        'invoice': fields.function(_invoice, method=True, string='Invoice',
-            type='many2one', relation='account.invoice', fnct_search=_invoice_search),
-        'received_check': fields.boolean('Received check', help="To write down that a check in paper support has been received, for example."),
-        'partner_bank_id': fields.many2one('res.partner.bank','Bank Account'),
-        'amount_to_pay' : fields.function(amount_to_pay, method=True, type='float', string='Amount to pay', fnct_search=_to_pay_search),
-        'ptype':fields.related('account_id', 'type', type='selection', selection=[('view', 'View'),('other', 'Regular'),('receivable', 'Receivable'),('payable', 'Payable'),('liquidity','Liquidity'),('consolidation', 'Consolidation'),('closed', 'Closed')], string='Type'),
-        'payment_type': fields.function(_payment_type_get, fnct_search=_payment_type_search, method=True, type="many2one", relation="payment.type", string="Payment type"),
-    }
-
-    def write(self, cr, uid, ids, vals, context=None, check=True, update_check=True):
-        for key in vals.keys():
-            if key not in ['received_check', 'partner_bank_id', 'date_maturity']:
-                return super(account_move_line, self).write(cr, uid, ids, vals, context, check, update_check)
-        return super(account_move_line, self).write(cr, uid, ids, vals, context, check, update_check=False)
-
-    def fields_view_get(self, cr, uid, view_id=None, view_type='form', context={}, toolbar=False, submenu=False):
-        menus = [
-            self.pool.get('ir.model.data').get_object_reference(cr, uid, 'account_payment_extension', 'menu_action_invoice_payments'),
-            self.pool.get('ir.model.data').get_object_reference(cr, uid, 'account_payment_extension', 'menu_action_done_payments'),
-        ]
-        menus = [m[1] for m in menus]
-        if 'active_id' in context and context['active_id'] in menus:
-            # Use standard views for account.move.line object
-            if view_type == 'search':
-                # Get a specific search view (bug in 6.0RC1, it does not give the search view defined in the action window)
-                view_id = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'account_payment_extension', 'view_payments_filter')[1]
-            result = super(osv.osv, self).fields_view_get(cr, uid, view_id, view_type, context, toolbar=toolbar, submenu=submenu)
-        else:
-            # Use special views for account.move.line object (for ex. tree view contains user defined fields)
-            result = super(account_move_line, self).fields_view_get(cr, uid, view_id, view_type, context, toolbar=toolbar, submenu=submenu)
-        return result
-
-account_move_line()
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'account_payment_extension/i18n'
=== removed file 'account_payment_extension/i18n/account_payment_extension.pot'
--- account_payment_extension/i18n/account_payment_extension.pot	2012-12-11 10:06:23 +0000
+++ account_payment_extension/i18n/account_payment_extension.pot	1970-01-01 00:00:00 +0000
@@ -1,466 +0,0 @@
-# Translation of OpenERP Server.
-# This file contains the translation of the following modules:
-#	* account_payment_extension
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
-"Report-Msgid-Bugs-To: support@openerp.com\n"
-"POT-Creation-Date: 2010-12-17 20:52:45+0000\n"
-"PO-Revision-Date: 2010-12-17 20:52:45+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Plural-Forms: \n"
-
-#. module: account_payment_extension
-#: selection:payment.order,type:0
-msgid "Receivable"
-msgstr "Receivable"
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_payment_type
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_payment_type
-#: view:payment.type:0
-#: help:payment.type,name:0
-msgid "Payment Type"
-msgstr "Payment Type"
-
-#. module: account_payment_extension
-#: selection:payment.order,create_account_moves:0
-msgid "Direct Payment"
-msgstr "Direct Payment"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid "Payment order should create account moves but line with amount %.2f for partner \"%s\" has no account assigned."
-msgstr "Payment order should create account moves but line with amount %.2f for partner \"%s\" has no account assigned."
-
-#. module: account_payment_extension
-#: constraint:ir.actions.act_window:0
-msgid "Invalid model name in the action definition."
-msgstr "Invalid model name in the action definition."
-
-#. module: account_payment_extension
-#: help:payment.type,code:0
-msgid "Specify the Code for Payment Type"
-msgstr "Specify the Code for Payment Type"
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Pay"
-msgstr "Pay"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid "You cannot delete payment order(s) which are already confirmed or done!"
-msgstr "You cannot delete payment order(s) which are already confirmed or done!"
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_payment_order
-msgid "Payment Order"
-msgstr "Payment Order"
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Receive"
-msgstr "Receive"
-
-#. module: account_payment_extension
-#: constraint:ir.ui.view:0
-msgid "Invalid XML for View Architecture!"
-msgstr "Invalid XML for View Architecture!"
-
-#. module: account_payment_extension
-#: field:payment.mode,require_bank_account:0
-msgid "Require Bank Account"
-msgstr "Require Bank Account"
-
-#. module: account_payment_extension
-#: model:ir.actions.wizard,name:account_payment_extension.wizard_populate_statement_ext
-msgid "Populate Statement with Payment lines"
-msgstr "Populate Statement with Payment lines"
-
-#. module: account_payment_extension
-#: wizard_field:populate_statement_ext,init,lines:0
-msgid "Payment Lines"
-msgstr "Payment Lines"
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_payment_line
-msgid "Payment Line"
-msgstr "Payment Line"
-
-#. module: account_payment_extension
-#: constraint:ir.ui.menu:0
-msgid "Error ! You can not create recursive Menu."
-msgstr "Error ! You can not create recursive Menu."
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_payment_mode
-msgid "Payment Mode"
-msgstr "Payment Mode"
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,search,communication2:0
-msgid "Communication 2"
-msgstr "Communication 2"
-
-#. module: account_payment_extension
-#: help:payment.type,note:0
-msgid "Description of the payment type that will be shown in the invoices"
-msgstr "Description of the payment type that will be shown in the invoices"
-
-#. module: account_payment_extension
-#: field:payment.order,type:0
-msgid "Type"
-msgstr "Type"
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Search Invoice Payments"
-msgstr "Search Invoice Payments"
-
-#. module: account_payment_extension
-#: view:payment.type:0
-msgid "Suitable Bank Types"
-msgstr "Suitable Bank Types"
-
-#. module: account_payment_extension
-#: wizard_button:populate_statement_ext,init,add:0
-msgid "_Add"
-msgstr "_Add"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid "Error !"
-msgstr "Error !"
-
-#. module: account_payment_extension
-#: view:payment.type:0
-#: field:payment.type,note:0
-msgid "Description"
-msgstr "Description"
-
-#. module: account_payment_extension
-#: field:payment.type,company_id:0
-msgid "Company"
-msgstr "Company"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid "Account move line \"%s\" is not valid"
-msgstr "Account move line \"%s\" is not valid"
-
-#. module: account_payment_extension
-#: wizard_button:populate_payment_ext,init,end:0
-#: wizard_button:populate_payment_ext,search,end:0
-#: wizard_button:populate_statement_ext,init,end:0
-msgid "_Cancel"
-msgstr "_Cancel"
-
-#. module: account_payment_extension
-#: field:payment.order,payment_type_name:0
-msgid "Payment type name"
-msgstr "Payment type name"
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_rec_payment_order_tree
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_rec_payment_order_form
-msgid "Rec. payment order"
-msgstr "Rec. payment order"
-
-#. module: account_payment_extension
-#: selection:payment.order,type:0
-msgid "Payable"
-msgstr "Payable"
-
-#. module: account_payment_extension
-#: model:ir.actions.wizard,name:account_payment_extension.wizard_populate_payment_ext
-msgid "Populate payment to pay"
-msgstr "Populate payment to pay"
-
-#. module: account_payment_extension
-#: field:res.partner,payment_type_customer:0
-msgid "Customer Payment Type"
-msgstr "Customer Payment Type"
-
-#. module: account_payment_extension
-#: help:populate_payment_ext,init,amount:0
-msgid "Next step will automatically select payments up to this amount."
-msgstr "Next step will automatically select payments up to this amount."
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,search,entries:0
-msgid "Entries"
-msgstr "Entries"
-
-#. module: account_payment_extension
-#: field:payment.type,active:0
-msgid "Active"
-msgstr "Active"
-
-#. module: account_payment_extension
-#: view:payment.order:0
-msgid "Select invoices to pay/receive payment"
-msgstr "Select invoices to pay/receive payment"
-
-#. module: account_payment_extension
-#: help:payment.line,payment_move_id:0
-msgid "Account move that pays this debt."
-msgstr "Account move that pays this debt."
-
-#. module: account_payment_extension
-#: help:populate_payment_ext,search,communication2:0
-msgid "The successor message of payment communication."
-msgstr "The successor message of payment communication."
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Payment"
-msgstr "Payment"
-
-#. module: account_payment_extension
-#: field:payment.order,create_account_moves:0
-msgid "Create Account Moves"
-msgstr "Create Account Moves"
-
-#. module: account_payment_extension
-#: field:payment.line,payment_move_id:0
-msgid "Payment Move"
-msgstr "Payment Move"
-
-#. module: account_payment_extension
-#: field:payment.line,account_id:0
-msgid "Account"
-msgstr "Account"
-
-#. module: account_payment_extension
-#: field:payment.type,suitable_bank_types:0
-msgid "Suitable bank types"
-msgstr "Suitable bank types"
-
-#. module: account_payment_extension
-#: help:payment.mode,require_bank_account:0
-msgid "Ensure all lines in the payment order have a bank account when proposing lines to be added in the payment order."
-msgstr "Ensure all lines in the payment order have a bank account when proposing lines to be added in the payment order."
-
-#. module: account_payment_extension
-#: field:payment.order,name:0
-#: field:payment.type,name:0
-msgid "Name"
-msgstr "Name"
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,init,duedate:0
-msgid "Due Date"
-msgstr "Due Date"
-
-#. module: account_payment_extension
-#: field:res.partner.bank,default_bank:0
-msgid "Default"
-msgstr "Default"
-
-#. module: account_payment_extension
-#: wizard_button:populate_payment_ext,init,search:0
-msgid "_Search"
-msgstr "_Search"
-
-#. module: account_payment_extension
-#: field:account.move.line,partner_bank_id:0
-msgid "Bank Account"
-msgstr "Bank Account"
-
-#. module: account_payment_extension
-#: wizard_button:populate_payment_ext,search,create:0
-msgid "_Add to payment order"
-msgstr "_Add to payment order"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid "Invalid action!"
-msgstr "Invalid action!"
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Unreconciled"
-msgstr "Unreconciled"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid "Error!"
-msgstr "Error!"
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,init,amount:0
-msgid "Amount"
-msgstr "Amount"
-
-#. module: account_payment_extension
-#: help:payment.mode,type:0
-msgid "Select the Payment Type for the Payment Mode."
-msgstr "Select the Payment Type for the Payment Mode."
-
-#. module: account_payment_extension
-#: view:account.bank.statement:0
-msgid "Import payment lines"
-msgstr "Import payment lines"
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Payments"
-msgstr "Payments"
-
-#. module: account_payment_extension
-#: field:res.partner,payment_type_supplier:0
-msgid "Supplier Payment Type"
-msgstr "Supplier Payment Type"
-
-#. module: account_payment_extension
-#: help:res.partner,payment_type_customer:0
-msgid "Payment type of the customer"
-msgstr "Payment type of the customer"
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_pay_payment_order_tree
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_pay_payment_order_form
-msgid "Pay. payment order"
-msgstr "Pay. payment order"
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_invoice_payments
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_invoice_payments
-msgid "Invoice payments"
-msgstr "Invoice payments"
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_done_payments
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_done_payments
-msgid "Done payments"
-msgstr "Done payments"
-
-#. module: account_payment_extension
-#: field:account.invoice,payment_type:0
-#: field:account.move.line,payment_type:0
-#: model:ir.model,name:account_payment_extension.model_payment_type
-#: field:payment.mode,type:0
-msgid "Payment type"
-msgstr "Payment type"
-
-#. module: account_payment_extension
-#: field:payment.type,code:0
-msgid "Code"
-msgstr "Code"
-
-#. module: account_payment_extension
-#: view:res.partner:0
-msgid "Bank Details"
-msgstr "Bank Details"
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_res_partner_bank
-msgid "Bank Accounts"
-msgstr "Bank Accounts"
-
-#. module: account_payment_extension
-#: field:payment.order,period_id:0
-msgid "Period"
-msgstr "Period"
-
-#. module: account_payment_extension
-#: selection:payment.order,create_account_moves:0
-msgid "Bank Statement"
-msgstr "Bank Statement"
-
-#. module: account_payment_extension
-#: help:res.partner,payment_type_supplier:0
-msgid "Payment type of the supplier"
-msgstr "Payment type of the supplier"
-
-#. module: account_payment_extension
-#: constraint:ir.model:0
-msgid "The Object name must start with x_ and not contain any special character !"
-msgstr "The Object name must start with x_ and not contain any special character !"
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_account_move_line
-msgid "Journal Items"
-msgstr "Journal Items"
-
-#. module: account_payment_extension
-#: help:account.move.line,received_check:0
-msgid "To write down that a check in paper support has been received, for example."
-msgstr "To write down that a check in paper support has been received, for example."
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_account_invoice
-msgid "Invoice"
-msgstr "Invoice"
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Narration"
-msgstr "Narration"
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_res_partner
-msgid "Partner"
-msgstr "Partner"
-
-#. module: account_payment_extension
-#: field:account.move.line,received_check:0
-msgid "Received check"
-msgstr "Received check"
-
-#. module: account_payment_extension
-#: wizard_view:populate_payment_ext,init:0
-msgid "Search Payment lines"
-msgstr "Search Payment lines"
-
-#. module: account_payment_extension
-#: sql_constraint:ir.model.fields:0
-msgid "Size of the field can never be less than 1 !"
-msgstr "Size of the field can never be less than 1 !"
-
-#. module: account_payment_extension
-#: help:payment.order,create_account_moves:0
-msgid "Indicates when account moves should be created for order payment lines. \"Bank Statement\" will wait until user introduces those payments in bank a bank statement. \"Direct Payment\" will mark all payment lines as payied once the order is done."
-msgstr "Indicates when account moves should be created for order payment lines. \"Bank Statement\" will wait until user introduces those payments in bank a bank statement. \"Direct Payment\" will mark all payment lines as payied once the order is done."
-
-#. module: account_payment_extension
-#: model:ir.module.module,description:account_payment_extension.module_meta_information
-msgid "Account payment extension.\n"
-"\n"
-"This module extends the account_payment module with a lot of features:\n"
-"    * Extension of payment types: The payment type has a translated name and note that can be shown in the invoices.\n"
-"    * Two default payment types for partners (client and supplier).\n"
-"    * Automatic selection of payment type in invoices. Now an invoice can have a payment term (30 days, 30/60 days, ...) and a payment type (cash, bank transfer, ...).\n"
-"    * A default check field in partner bank accounts. The default partner bank accounts are selected in invoices and payments.\n"
-"    * New menu/tree/forms to see payments to receive and payments to pay.\n"
-"    * The payments show tree editable fields: Due date, bank account and a check field (for example to write down if a bank check in paper support has been received).\n"
-"    * Two types of payment orders: Payable payment orders (from supplier invoices) and receivable payment orders (from client invoices). So we can make payment orders to receive the payments of our client invoices. Each payment order type has its own sequence.\n"
-"    * The payment orders allow negative payment amounts. So we can have payment orders for supplier invoices (pay money) and refund supplier invoices (return or receive money). Or for client invoices (receive money) and refund client invoices (return or pay money).\n"
-"    * Payment orders: Selected invoices are filtered by payment type, the second message communication can be set at the same time for several invoices.\n"
-"Based on previous work of Pablo Rocandio & Zikzakmedia (version for 4.2).\n"
-""
-msgstr ""
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,init,show_refunds:0
-msgid "Show Refunds"
-msgstr "Show Refunds"
-
-#. module: account_payment_extension
-#: help:populate_payment_ext,init,show_refunds:0
-msgid "Indicates if search should include refunds."
-msgstr "Indicates if search should include refunds."
-
-

=== removed file 'account_payment_extension/i18n/bg.po'
--- account_payment_extension/i18n/bg.po	2012-12-11 10:06:23 +0000
+++ account_payment_extension/i18n/bg.po	1970-01-01 00:00:00 +0000
@@ -1,492 +0,0 @@
-# Bulgarian translation for openobject-addons
-# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2010-12-17 20:52+0000\n"
-"PO-Revision-Date: 2011-03-30 07:21+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Bulgarian <bg@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-05-24 11:38+0000\n"
-"X-Generator: Launchpad (build 15288)\n"
-
-#. module: account_payment_extension
-#: selection:payment.order,type:0
-msgid "Receivable"
-msgstr "Приходен"
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_payment_type
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_payment_type
-#: view:payment.type:0
-#: help:payment.type,name:0
-msgid "Payment Type"
-msgstr "Вид на плащане"
-
-#. module: account_payment_extension
-#: selection:payment.order,create_account_moves:0
-msgid "Direct Payment"
-msgstr "Директно плащане"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid ""
-"Payment order should create account moves but line with amount %.2f for "
-"partner \"%s\" has no account assigned."
-msgstr ""
-
-#. module: account_payment_extension
-#: constraint:ir.actions.act_window:0
-msgid "Invalid model name in the action definition."
-msgstr "Невалидно име на модел при задаване на действие"
-
-#. module: account_payment_extension
-#: help:payment.type,code:0
-msgid "Specify the Code for Payment Type"
-msgstr ""
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Pay"
-msgstr "Плащане"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid ""
-"You cannot delete payment order(s) which are already confirmed or done!"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_payment_order
-msgid "Payment Order"
-msgstr "Платежно нареждане"
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Receive"
-msgstr "Приета"
-
-#. module: account_payment_extension
-#: constraint:ir.ui.view:0
-msgid "Invalid XML for View Architecture!"
-msgstr ""
-
-#. module: account_payment_extension
-#: field:payment.mode,require_bank_account:0
-msgid "Require Bank Account"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.actions.wizard,name:account_payment_extension.wizard_populate_statement_ext
-msgid "Populate Statement with Payment lines"
-msgstr ""
-
-#. module: account_payment_extension
-#: wizard_field:populate_statement_ext,init,lines:0
-msgid "Payment Lines"
-msgstr "Редове от плащане"
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_payment_line
-msgid "Payment Line"
-msgstr "Ред от плащане"
-
-#. module: account_payment_extension
-#: constraint:ir.ui.menu:0
-msgid "Error ! You can not create recursive Menu."
-msgstr "Грешка! Не можете да създавате рекурсивни менюта."
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_payment_mode
-msgid "Payment Mode"
-msgstr "Режим на плащане"
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,search,communication2:0
-msgid "Communication 2"
-msgstr ""
-
-#. module: account_payment_extension
-#: help:payment.type,note:0
-msgid "Description of the payment type that will be shown in the invoices"
-msgstr ""
-
-#. module: account_payment_extension
-#: field:payment.order,type:0
-msgid "Type"
-msgstr "Тип"
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Search Invoice Payments"
-msgstr ""
-
-#. module: account_payment_extension
-#: view:payment.type:0
-msgid "Suitable Bank Types"
-msgstr ""
-
-#. module: account_payment_extension
-#: wizard_button:populate_statement_ext,init,add:0
-msgid "_Add"
-msgstr "_Добавяне"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid "Error !"
-msgstr "Грешка!"
-
-#. module: account_payment_extension
-#: view:payment.type:0
-#: field:payment.type,note:0
-msgid "Description"
-msgstr "Описание"
-
-#. module: account_payment_extension
-#: field:payment.type,company_id:0
-msgid "Company"
-msgstr "Фирма"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid "Account move line \"%s\" is not valid"
-msgstr ""
-
-#. module: account_payment_extension
-#: wizard_button:populate_payment_ext,init,end:0
-#: wizard_button:populate_payment_ext,search,end:0
-#: wizard_button:populate_statement_ext,init,end:0
-msgid "_Cancel"
-msgstr "_Отказ"
-
-#. module: account_payment_extension
-#: field:payment.order,payment_type_name:0
-msgid "Payment type name"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_rec_payment_order_tree
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_rec_payment_order_form
-msgid "Rec. payment order"
-msgstr ""
-
-#. module: account_payment_extension
-#: selection:payment.order,type:0
-msgid "Payable"
-msgstr "Платим"
-
-#. module: account_payment_extension
-#: model:ir.actions.wizard,name:account_payment_extension.wizard_populate_payment_ext
-msgid "Populate payment to pay"
-msgstr ""
-
-#. module: account_payment_extension
-#: field:res.partner,payment_type_customer:0
-msgid "Customer Payment Type"
-msgstr ""
-
-#. module: account_payment_extension
-#: help:populate_payment_ext,init,amount:0
-msgid "Next step will automatically select payments up to this amount."
-msgstr ""
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,search,entries:0
-msgid "Entries"
-msgstr "Записи"
-
-#. module: account_payment_extension
-#: field:payment.type,active:0
-msgid "Active"
-msgstr "Активен"
-
-#. module: account_payment_extension
-#: view:payment.order:0
-msgid "Select invoices to pay/receive payment"
-msgstr ""
-
-#. module: account_payment_extension
-#: help:payment.line,payment_move_id:0
-msgid "Account move that pays this debt."
-msgstr ""
-
-#. module: account_payment_extension
-#: help:populate_payment_ext,search,communication2:0
-msgid "The successor message of payment communication."
-msgstr ""
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Payment"
-msgstr "Плащане"
-
-#. module: account_payment_extension
-#: field:payment.order,create_account_moves:0
-msgid "Create Account Moves"
-msgstr ""
-
-#. module: account_payment_extension
-#: field:payment.line,payment_move_id:0
-msgid "Payment Move"
-msgstr ""
-
-#. module: account_payment_extension
-#: field:payment.line,account_id:0
-msgid "Account"
-msgstr "Сметка"
-
-#. module: account_payment_extension
-#: field:payment.type,suitable_bank_types:0
-msgid "Suitable bank types"
-msgstr "Подходящи видове банки"
-
-#. module: account_payment_extension
-#: help:payment.mode,require_bank_account:0
-msgid ""
-"Ensure all lines in the payment order have a bank account when proposing "
-"lines to be added in the payment order."
-msgstr ""
-
-#. module: account_payment_extension
-#: field:payment.order,name:0
-#: field:payment.type,name:0
-msgid "Name"
-msgstr "Име"
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,init,duedate:0
-msgid "Due Date"
-msgstr "Дата на падеж"
-
-#. module: account_payment_extension
-#: field:res.partner.bank,default_bank:0
-msgid "Default"
-msgstr "По подразбиране"
-
-#. module: account_payment_extension
-#: wizard_button:populate_payment_ext,init,search:0
-msgid "_Search"
-msgstr "_Търсене"
-
-#. module: account_payment_extension
-#: field:account.move.line,partner_bank_id:0
-msgid "Bank Account"
-msgstr "Банкова сметка"
-
-#. module: account_payment_extension
-#: wizard_button:populate_payment_ext,search,create:0
-msgid "_Add to payment order"
-msgstr "_Добавяне към платежно нареждане"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid "Invalid action!"
-msgstr "Невалидно действие!"
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Unreconciled"
-msgstr "Неприравнен"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid "Error!"
-msgstr "Грешка!"
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,init,amount:0
-msgid "Amount"
-msgstr "Количество"
-
-#. module: account_payment_extension
-#: help:payment.mode,type:0
-msgid "Select the Payment Type for the Payment Mode."
-msgstr ""
-
-#. module: account_payment_extension
-#: view:account.bank.statement:0
-msgid "Import payment lines"
-msgstr ""
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Payments"
-msgstr "Плащания"
-
-#. module: account_payment_extension
-#: field:res.partner,payment_type_supplier:0
-msgid "Supplier Payment Type"
-msgstr ""
-
-#. module: account_payment_extension
-#: help:res.partner,payment_type_customer:0
-msgid "Payment type of the customer"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_pay_payment_order_tree
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_pay_payment_order_form
-msgid "Pay. payment order"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_invoice_payments
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_invoice_payments
-msgid "Invoice payments"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_done_payments
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_done_payments
-msgid "Done payments"
-msgstr ""
-
-#. module: account_payment_extension
-#: field:account.invoice,payment_type:0
-#: field:account.move.line,payment_type:0
-#: model:ir.model,name:account_payment_extension.model_payment_type
-#: field:payment.mode,type:0
-msgid "Payment type"
-msgstr ""
-
-#. module: account_payment_extension
-#: field:payment.type,code:0
-msgid "Code"
-msgstr "Код"
-
-#. module: account_payment_extension
-#: view:res.partner:0
-msgid "Bank Details"
-msgstr "Детайли за банката"
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_res_partner_bank
-msgid "Bank Accounts"
-msgstr "Банкови сметки"
-
-#. module: account_payment_extension
-#: field:payment.order,period_id:0
-msgid "Period"
-msgstr "Период"
-
-#. module: account_payment_extension
-#: selection:payment.order,create_account_moves:0
-msgid "Bank Statement"
-msgstr "Банково извлечение"
-
-#. module: account_payment_extension
-#: help:res.partner,payment_type_supplier:0
-msgid "Payment type of the supplier"
-msgstr ""
-
-#. module: account_payment_extension
-#: constraint:ir.model:0
-msgid ""
-"The Object name must start with x_ and not contain any special character !"
-msgstr ""
-"Името на обекта трябва да започва с x_ и не може да никакви специални знаци !"
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_account_move_line
-msgid "Journal Items"
-msgstr ""
-
-#. module: account_payment_extension
-#: help:account.move.line,received_check:0
-msgid ""
-"To write down that a check in paper support has been received, for example."
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_account_invoice
-msgid "Invoice"
-msgstr "Фактура"
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Narration"
-msgstr "Разказ"
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_res_partner
-msgid "Partner"
-msgstr "Контрагент"
-
-#. module: account_payment_extension
-#: field:account.move.line,received_check:0
-msgid "Received check"
-msgstr ""
-
-#. module: account_payment_extension
-#: wizard_view:populate_payment_ext,init:0
-msgid "Search Payment lines"
-msgstr ""
-
-#. module: account_payment_extension
-#: sql_constraint:ir.model.fields:0
-msgid "Size of the field can never be less than 1 !"
-msgstr "Рамерът на полето никога не може да бъде по-малко от 1!"
-
-#. module: account_payment_extension
-#: help:payment.order,create_account_moves:0
-msgid ""
-"Indicates when account moves should be created for order payment lines. "
-"\"Bank Statement\" will wait until user introduces those payments in bank a "
-"bank statement. \"Direct Payment\" will mark all payment lines as payied "
-"once the order is done."
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.module.module,description:account_payment_extension.module_meta_information
-msgid ""
-"Account payment extension.\n"
-"\n"
-"This module extends the account_payment module with a lot of features:\n"
-"    * Extension of payment types: The payment type has a translated name and "
-"note that can be shown in the invoices.\n"
-"    * Two default payment types for partners (client and supplier).\n"
-"    * Automatic selection of payment type in invoices. Now an invoice can "
-"have a payment term (30 days, 30/60 days, ...) and a payment type (cash, "
-"bank transfer, ...).\n"
-"    * A default check field in partner bank accounts. The default partner "
-"bank accounts are selected in invoices and payments.\n"
-"    * New menu/tree/forms to see payments to receive and payments to pay.\n"
-"    * The payments show tree editable fields: Due date, bank account and a "
-"check field (for example to write down if a bank check in paper support has "
-"been received).\n"
-"    * Two types of payment orders: Payable payment orders (from supplier "
-"invoices) and receivable payment orders (from client invoices). So we can "
-"make payment orders to receive the payments of our client invoices. Each "
-"payment order type has its own sequence.\n"
-"    * The payment orders allow negative payment amounts. So we can have "
-"payment orders for supplier invoices (pay money) and refund supplier "
-"invoices (return or receive money). Or for client invoices (receive money) "
-"and refund client invoices (return or pay money).\n"
-"    * Payment orders: Selected invoices are filtered by payment type, the "
-"second message communication can be set at the same time for several "
-"invoices.\n"
-"Based on previous work of Pablo Rocandio & Zikzakmedia (version for 4.2).\n"
-msgstr ""
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,init,show_refunds:0
-msgid "Show Refunds"
-msgstr ""
-
-#. module: account_payment_extension
-#: help:populate_payment_ext,init,show_refunds:0
-msgid "Indicates if search should include refunds."
-msgstr ""

=== removed file 'account_payment_extension/i18n/ca.po'
--- account_payment_extension/i18n/ca.po	2012-12-11 10:06:23 +0000
+++ account_payment_extension/i18n/ca.po	1970-01-01 00:00:00 +0000
@@ -1,617 +0,0 @@
-# Translation of OpenERP Server.
-# This file containt the translation of the following modules:
-# 	* account_payment_extension
-#
-# Albert Cervera i Areny <albert@nan-tic.com>, 2009, 2010.
-msgid ""
-msgstr ""
-"Project-Id-Version: OpenERP Server 5.0.0-rc1\n"
-"Report-Msgid-Bugs-To: support@openerp.com\n"
-"POT-Creation-Date: 2010-12-17 20:52+0000\n"
-"PO-Revision-Date: 2011-01-03 23:26+0000\n"
-"Last-Translator: Jordi Esteve (www.zikzakmedia.com) "
-"<jesteve@zikzakmedia.com>\n"
-"Language-Team: Catalan <kde-i18n-ca@kde.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-05-24 11:38+0000\n"
-"X-Generator: Launchpad (build 15288)\n"
-"Language: ca\n"
-
-#. module: account_payment_extension
-#: selection:payment.order,type:0
-msgid "Receivable"
-msgstr "A cobrar"
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_payment_type
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_payment_type
-#: view:payment.type:0
-#: help:payment.type,name:0
-msgid "Payment Type"
-msgstr "Tipus de pagament"
-
-#. module: account_payment_extension
-#: selection:payment.order,create_account_moves:0
-msgid "Direct Payment"
-msgstr "Per pagament directe"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid ""
-"Payment order should create account moves but line with amount %.2f for "
-"partner \"%s\" has no account assigned."
-msgstr ""
-"L'ordre de pagament hauria de crear els assentaments però la línia amb "
-"import %.2f i l'empresa \"%s\" no té cap compte comptable assignat."
-
-#. module: account_payment_extension
-#: constraint:ir.actions.act_window:0
-msgid "Invalid model name in the action definition."
-msgstr "Nom de model no vàlid en la definició de l'acció."
-
-#. module: account_payment_extension
-#: help:payment.type,code:0
-msgid "Specify the Code for Payment Type"
-msgstr "Specify the Code for Payment Type"
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Pay"
-msgstr "A pagar"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid ""
-"You cannot delete payment order(s) which are already confirmed or done!"
-msgstr "No podeu eliminar ordres de pagament confirmades ni realitzades!"
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_payment_order
-msgid "Payment Order"
-msgstr "Ordre de pagament"
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Receive"
-msgstr "A cobrar"
-
-#. module: account_payment_extension
-#: constraint:ir.ui.view:0
-msgid "Invalid XML for View Architecture!"
-msgstr "XML invàlid per a la definició de la vista!"
-
-#. module: account_payment_extension
-#: field:payment.mode,require_bank_account:0
-msgid "Require Bank Account"
-msgstr "Requereix compte bancari"
-
-#. module: account_payment_extension
-#: model:ir.actions.wizard,name:account_payment_extension.wizard_populate_statement_ext
-msgid "Populate Statement with Payment lines"
-msgstr "Emplena extracte amb línies de pagament"
-
-#. module: account_payment_extension
-#: wizard_field:populate_statement_ext,init,lines:0
-msgid "Payment Lines"
-msgstr "Pagaments"
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_payment_line
-msgid "Payment Line"
-msgstr "Línia de pagament"
-
-#. module: account_payment_extension
-#: constraint:ir.ui.menu:0
-msgid "Error ! You can not create recursive Menu."
-msgstr "Error! No podeu crear menús recursius."
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_payment_mode
-msgid "Payment Mode"
-msgstr "Mode de pagament"
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,search,communication2:0
-msgid "Communication 2"
-msgstr "Comunicació 2"
-
-#. module: account_payment_extension
-#: help:payment.type,note:0
-msgid "Description of the payment type that will be shown in the invoices"
-msgstr "Descripció del tipus de pagament que es mostrarà a les factures."
-
-#. module: account_payment_extension
-#: field:payment.order,type:0
-msgid "Type"
-msgstr "Tipus"
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Search Invoice Payments"
-msgstr "Cerca pagaments de factures"
-
-#. module: account_payment_extension
-#: view:payment.type:0
-msgid "Suitable Bank Types"
-msgstr "Tipus de banc adequats"
-
-#. module: account_payment_extension
-#: wizard_button:populate_statement_ext,init,add:0
-msgid "_Add"
-msgstr "_Afegeix"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid "Error !"
-msgstr "Error !"
-
-#. module: account_payment_extension
-#: view:payment.type:0
-#: field:payment.type,note:0
-msgid "Description"
-msgstr "Descripció"
-
-#. module: account_payment_extension
-#: field:payment.type,company_id:0
-msgid "Company"
-msgstr "Companyia"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid "Account move line \"%s\" is not valid"
-msgstr "L'apunt \"%s\" no és vàlid."
-
-#. module: account_payment_extension
-#: wizard_button:populate_payment_ext,init,end:0
-#: wizard_button:populate_payment_ext,search,end:0
-#: wizard_button:populate_statement_ext,init,end:0
-msgid "_Cancel"
-msgstr "_Cancel·la"
-
-#. module: account_payment_extension
-#: field:payment.order,payment_type_name:0
-msgid "Payment type name"
-msgstr "Nom tipus de pagament"
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_rec_payment_order_tree
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_rec_payment_order_form
-msgid "Rec. payment order"
-msgstr "Ordres de cobrament"
-
-#. module: account_payment_extension
-#: selection:payment.order,type:0
-msgid "Payable"
-msgstr "A pagar"
-
-#. module: account_payment_extension
-#: model:ir.actions.wizard,name:account_payment_extension.wizard_populate_payment_ext
-msgid "Populate payment to pay"
-msgstr "Cerca pagaments a pagar/cobrar"
-
-#. module: account_payment_extension
-#: field:res.partner,payment_type_customer:0
-msgid "Customer Payment Type"
-msgstr "Tipus de pagament client"
-
-#. module: account_payment_extension
-#: help:populate_payment_ext,init,amount:0
-msgid "Next step will automatically select payments up to this amount."
-msgstr ""
-"El següent pas seleccionarà automàticament pagaments fins a arribar a aquest "
-"import."
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,search,entries:0
-msgid "Entries"
-msgstr "Entrades"
-
-#. module: account_payment_extension
-#: field:payment.type,active:0
-msgid "Active"
-msgstr "Actiu"
-
-#. module: account_payment_extension
-#: view:payment.order:0
-msgid "Select invoices to pay/receive payment"
-msgstr "Selecciona factures a pagar/cobrar"
-
-#. module: account_payment_extension
-#: help:payment.line,payment_move_id:0
-msgid "Account move that pays this debt."
-msgstr "Assentament que paga aquest deute."
-
-#. module: account_payment_extension
-#: help:populate_payment_ext,search,communication2:0
-msgid "The successor message of payment communication."
-msgstr "El següent missatge del comunicat del pagament/cobrament."
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Payment"
-msgstr "Pagament"
-
-#. module: account_payment_extension
-#: field:payment.order,create_account_moves:0
-msgid "Create Account Moves"
-msgstr "Crea els assentaments"
-
-#. module: account_payment_extension
-#: field:payment.line,payment_move_id:0
-msgid "Payment Move"
-msgstr "Assentament del pagament"
-
-#. module: account_payment_extension
-#: field:payment.line,account_id:0
-msgid "Account"
-msgstr "Compte"
-
-#. module: account_payment_extension
-#: field:payment.type,suitable_bank_types:0
-msgid "Suitable bank types"
-msgstr "Tipus de banc adequats"
-
-#. module: account_payment_extension
-#: help:payment.mode,require_bank_account:0
-msgid ""
-"Ensure all lines in the payment order have a bank account when proposing "
-"lines to be added in the payment order."
-msgstr ""
-"Assegura que totes les línies tenen compte bancari quan proposa les línies "
-"de pagament per afegir."
-
-#. module: account_payment_extension
-#: field:payment.order,name:0
-#: field:payment.type,name:0
-msgid "Name"
-msgstr "Nom"
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,init,duedate:0
-msgid "Due Date"
-msgstr "Data venciment"
-
-#. module: account_payment_extension
-#: field:res.partner.bank,default_bank:0
-msgid "Default"
-msgstr "Per defecte"
-
-#. module: account_payment_extension
-#: wizard_button:populate_payment_ext,init,search:0
-msgid "_Search"
-msgstr "_Cerca"
-
-#. module: account_payment_extension
-#: field:account.move.line,partner_bank_id:0
-msgid "Bank Account"
-msgstr "Compte bancari"
-
-#. module: account_payment_extension
-#: wizard_button:populate_payment_ext,search,create:0
-msgid "_Add to payment order"
-msgstr "_Afegir a l'ordre de pagament"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid "Invalid action!"
-msgstr "Acció no vàlida!"
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Unreconciled"
-msgstr "No conciliat"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid "Error!"
-msgstr "Error!"
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,init,amount:0
-msgid "Amount"
-msgstr "Import"
-
-#. module: account_payment_extension
-#: help:payment.mode,type:0
-msgid "Select the Payment Type for the Payment Mode."
-msgstr "Seleccioneu el tipus de pagament pel mode de pagament."
-
-#. module: account_payment_extension
-#: view:account.bank.statement:0
-msgid "Import payment lines"
-msgstr "Importa línies de pagament"
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Payments"
-msgstr "Efectes"
-
-#. module: account_payment_extension
-#: field:res.partner,payment_type_supplier:0
-msgid "Supplier Payment Type"
-msgstr "Tipus de pagament proveïdor"
-
-#. module: account_payment_extension
-#: help:res.partner,payment_type_customer:0
-msgid "Payment type of the customer"
-msgstr "Tipus de pagament com a client."
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_pay_payment_order_tree
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_pay_payment_order_form
-msgid "Pay. payment order"
-msgstr "Ordres de pagament"
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_invoice_payments
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_invoice_payments
-msgid "Invoice payments"
-msgstr "Efectes"
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_done_payments
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_done_payments
-msgid "Done payments"
-msgstr "Pagaments/cobraments realitzats"
-
-#. module: account_payment_extension
-#: field:account.invoice,payment_type:0
-#: field:account.move.line,payment_type:0
-#: model:ir.model,name:account_payment_extension.model_payment_type
-#: field:payment.mode,type:0
-msgid "Payment type"
-msgstr "Tipus de pagament"
-
-#. module: account_payment_extension
-#: field:payment.type,code:0
-msgid "Code"
-msgstr "Codi"
-
-#. module: account_payment_extension
-#: view:res.partner:0
-msgid "Bank Details"
-msgstr "Detalls del banc"
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_res_partner_bank
-msgid "Bank Accounts"
-msgstr "Comptes bancaris"
-
-#. module: account_payment_extension
-#: field:payment.order,period_id:0
-msgid "Period"
-msgstr "Període"
-
-#. module: account_payment_extension
-#: selection:payment.order,create_account_moves:0
-msgid "Bank Statement"
-msgstr "Per l'extracte bancari"
-
-#. module: account_payment_extension
-#: help:res.partner,payment_type_supplier:0
-msgid "Payment type of the supplier"
-msgstr "Tipus de pagament com a proveïdor."
-
-#. module: account_payment_extension
-#: constraint:ir.model:0
-msgid ""
-"The Object name must start with x_ and not contain any special character !"
-msgstr ""
-"El nom de l'objecte ha de començar amb x_ i no contenir cap caràcter "
-"especial!"
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_account_move_line
-msgid "Journal Items"
-msgstr "Anotacions comptables"
-
-#. module: account_payment_extension
-#: help:account.move.line,received_check:0
-msgid ""
-"To write down that a check in paper support has been received, for example."
-msgstr ""
-"Serveix per indicar que s'ha rebut un xec en suport paper, per exemple."
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_account_invoice
-msgid "Invoice"
-msgstr "Factura"
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Narration"
-msgstr "Descripció"
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_res_partner
-msgid "Partner"
-msgstr "Empresa"
-
-#. module: account_payment_extension
-#: field:account.move.line,received_check:0
-msgid "Received check"
-msgstr "Xec rebut"
-
-#. module: account_payment_extension
-#: wizard_view:populate_payment_ext,init:0
-msgid "Search Payment lines"
-msgstr "Cerca línies de pagament"
-
-#. module: account_payment_extension
-#: sql_constraint:ir.model.fields:0
-msgid "Size of the field can never be less than 1 !"
-msgstr "La grandària del camp no pot ser menor que 1!"
-
-#. module: account_payment_extension
-#: help:payment.order,create_account_moves:0
-msgid ""
-"Indicates when account moves should be created for order payment lines. "
-"\"Bank Statement\" will wait until user introduces those payments in bank a "
-"bank statement. \"Direct Payment\" will mark all payment lines as payied "
-"once the order is done."
-msgstr ""
-"Indica quan s'haurien de crear els assentament comptables per les línies de "
-"pagament. \"Per l'extracte bancari\" esperarà fins que l'usuari introdueixi "
-"l'extracte bancari. \"Per pagament directe\" marcarà totes les línies com a "
-"pagades quan es realitzi aquesta ordre."
-
-#. module: account_payment_extension
-#: model:ir.module.module,description:account_payment_extension.module_meta_information
-msgid ""
-"Account payment extension.\n"
-"\n"
-"This module extends the account_payment module with a lot of features:\n"
-"    * Extension of payment types: The payment type has a translated name and "
-"note that can be shown in the invoices.\n"
-"    * Two default payment types for partners (client and supplier).\n"
-"    * Automatic selection of payment type in invoices. Now an invoice can "
-"have a payment term (30 days, 30/60 days, ...) and a payment type (cash, "
-"bank transfer, ...).\n"
-"    * A default check field in partner bank accounts. The default partner "
-"bank accounts are selected in invoices and payments.\n"
-"    * New menu/tree/forms to see payments to receive and payments to pay.\n"
-"    * The payments show tree editable fields: Due date, bank account and a "
-"check field (for example to write down if a bank check in paper support has "
-"been received).\n"
-"    * Two types of payment orders: Payable payment orders (from supplier "
-"invoices) and receivable payment orders (from client invoices). So we can "
-"make payment orders to receive the payments of our client invoices. Each "
-"payment order type has its own sequence.\n"
-"    * The payment orders allow negative payment amounts. So we can have "
-"payment orders for supplier invoices (pay money) and refund supplier "
-"invoices (return or receive money). Or for client invoices (receive money) "
-"and refund client invoices (return or pay money).\n"
-"    * Payment orders: Selected invoices are filtered by payment type, the "
-"second message communication can be set at the same time for several "
-"invoices.\n"
-"Based on previous work of Pablo Rocandio & Zikzakmedia (version for 4.2).\n"
-msgstr ""
-"Extensió de pagaments comptables (Tresoreria).\n"
-"\n"
-"Aquest mòdul estén el mòdul account_payment amb moltes característiques:\n"
-"    * Extensió dels tipus de pagament: El tipus de pagament té un nom i una "
-"descripció traduïbles per mostrar en les factures.\n"
-"    * Dos tipus de pagament per defecte per a les empreses (client i "
-"proveïdor).\n"
-"    * Selecció automàtica del tipus de pagament en les factures. Ara, una "
-"factura pot tenir un termini de pagament (30 dies, 30/60 dies, ...) i un "
-"tipus de pagament (efectiu, transferència bancària, ...).\n"
-"    * Un camp seleccionable per defecte en els comptes bancaris de les "
-"empreses. Es selecciona el compte bancari per defecte de l'empresa en les "
-"factures i els pagaments.\n"
-"    * Nous menús / llistes / formularis per consultar els pagaments "
-"(efectes) a cobrar i a pagar.\n"
-"    * Els pagaments mostren camps editables a la llista: Data de venciment, "
-"compte bancari i un camp de verificació (per exemple, per indicar que s'ha "
-"rebut un xec bancari en suport paper).\n"
-"    * Dos tipus d'ordres de pagament / cobrament: les ordres de pagament (a "
-"partir de les factures de proveïdor) i les ordres de cobrament (a partir de "
-"les factures de client). Ara es pot fer ordres de cobrament (remeses de "
-"rebuts) per rebre els pagaments de les factures dels nostres clients. Cada "
-"tipus d'ordre de pagament té la seva pròpia seqüència.\n"
-"    * Les ordres de pagament / cobrament permeten quantitats en negatiu. "
-"Podem incloure en les ordres de pagament factures de proveïdor (pagament de "
-"diners) i factures d'abonament de proveïdor (devolució o rebre diners). O "
-"les factures de client (recepció de diners) i les factures d'abonament de "
-"client (devolució o pagament de diners).\n"
-"    * A les ordres de pagament: Les factures seleccionades són filtrades per "
-"tipus de pagament. Es pot indicar el segon missatge de la comunicació de la "
-"remesa al mateix temps per a diverses factures.\n"
-"Basat en el treball anterior de Pablo Rocandio i Zikzakmedia (versió 4.2).\n"
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,init,show_refunds:0
-msgid "Show Refunds"
-msgstr "Mostra abonaments"
-
-#. module: account_payment_extension
-#: help:populate_payment_ext,init,show_refunds:0
-msgid "Indicates if search should include refunds."
-msgstr "Indica si la cerca ha d'incloure abonaments."
-
-#~ msgid "Invoice payments to pay"
-#~ msgstr "Efectes pendents de pagament"
-
-#~ msgid "Payable payment orders"
-#~ msgstr "Ordres de pagament"
-
-#~ msgid "Done payable payments unreconciled"
-#~ msgstr "Pagaments realitzats no conciliats"
-
-#~ msgid "Draft pay. payment order"
-#~ msgstr "Ordres de pagament esborrany"
-
-#~ msgid "Receivable invoice payments"
-#~ msgstr "Efectes de cobrament"
-
-#~ msgid "Rec. payment orders to validate"
-#~ msgstr "Ordres de cobrament per validar"
-
-#~ msgid "Pay. payment orders to validate"
-#~ msgstr "Ordres de pagament per validar"
-
-#~ msgid "New Pay. payment Order"
-#~ msgstr "Nova ordre de pagament"
-
-#~ msgid "Receivable payments unreconciled"
-#~ msgstr "Cobraments no conciliats"
-
-#~ msgid "All done payable payments"
-#~ msgstr "Tots els pagaments realitzats"
-
-#~ msgid "Receivable payment orders"
-#~ msgstr "Ordres de cobrament"
-
-#~ msgid "Done receivable payments unreconciled"
-#~ msgstr "Cobraments realitzats no conciliats"
-
-#~ msgid "Payable payments"
-#~ msgstr "Pagaments"
-
-#~ msgid "Account Payment Extension"
-#~ msgstr "Extensió de pagaments comptables (Tresoreria)"
-
-#~ msgid "All done receivable payments"
-#~ msgstr "Tots els cobraments realitzats"
-
-#~ msgid "Receivable payments"
-#~ msgstr "Cobraments"
-
-#~ msgid "Payable payments unreconciled"
-#~ msgstr "Pagaments no conciliats"
-
-#~ msgid "Draft rec. payment order"
-#~ msgstr "Ordres de cobrament esborrany"
-
-#~ msgid "New rec. payment order"
-#~ msgstr "Nova ordre de cobrament"
-
-#~ msgid "Payable invoice payments"
-#~ msgstr "Efectes de pagament"
-
-#~ msgid "All received and to receive invoice payments"
-#~ msgstr "Tots els efectes de cobrament"
-
-#~ msgid "All paid and to pay invoice payments"
-#~ msgstr "Tots els efectes de pagament"
-
-#~ msgid "Invoice payments to receive"
-#~ msgstr "Efectes pendents de cobrament"
-
-#~ msgid "Require bank account"
-#~ msgstr "Requereix compte bancari"
-
-#~ msgid ""
-#~ "If your bank allows you to send orders without the bank account info, you "
-#~ "may disable this option"
-#~ msgstr ""
-#~ "Si el vostre banc us permet enviar ordres sense la informació del compte "
-#~ "bancari podeu deshabilitar aquesta opció."

=== removed file 'account_payment_extension/i18n/es.po'
--- account_payment_extension/i18n/es.po	2012-12-11 10:06:23 +0000
+++ account_payment_extension/i18n/es.po	1970-01-01 00:00:00 +0000
@@ -1,619 +0,0 @@
-# Translation of OpenERP Server.
-# This file contains the translation of the following modules:
-# 	* account_payment_extension
-#
-# Albert Cervera i Areny <albert@nan-tic.com>, 2010.
-msgid ""
-msgstr ""
-"Project-Id-Version: OpenERP Server 5.0.10\n"
-"Report-Msgid-Bugs-To: support@openerp.com\n"
-"POT-Creation-Date: 2010-12-17 20:52+0000\n"
-"PO-Revision-Date: 2011-01-03 23:25+0000\n"
-"Last-Translator: Jordi Esteve (www.zikzakmedia.com) "
-"<jesteve@zikzakmedia.com>\n"
-"Language-Team: Catalan <kde-i18n-ca@kde.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-05-24 11:38+0000\n"
-"X-Generator: Launchpad (build 15288)\n"
-"Language: ca\n"
-
-#. module: account_payment_extension
-#: selection:payment.order,type:0
-msgid "Receivable"
-msgstr "A cobrar"
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_payment_type
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_payment_type
-#: view:payment.type:0
-#: help:payment.type,name:0
-msgid "Payment Type"
-msgstr "Tipo de pago"
-
-#. module: account_payment_extension
-#: selection:payment.order,create_account_moves:0
-msgid "Direct Payment"
-msgstr "Por pago directo"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid ""
-"Payment order should create account moves but line with amount %.2f for "
-"partner \"%s\" has no account assigned."
-msgstr ""
-"La orden de pago debe generar los asientos pero la línea con importe %.2f y "
-"empresa \"%s\" no tiene cuenta asignada."
-
-#. module: account_payment_extension
-#: constraint:ir.actions.act_window:0
-msgid "Invalid model name in the action definition."
-msgstr "Nombre de modelo no válido en la definición de la acción."
-
-#. module: account_payment_extension
-#: help:payment.type,code:0
-msgid "Specify the Code for Payment Type"
-msgstr "Indica el código del tipo de pago."
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Pay"
-msgstr "Efectos a pagar"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid ""
-"You cannot delete payment order(s) which are already confirmed or done!"
-msgstr "¡No puede borrar ordenes de pago ya confirmadas o realizadas!"
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_payment_order
-msgid "Payment Order"
-msgstr "Orden de pago"
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Receive"
-msgstr "A cobrar"
-
-#. module: account_payment_extension
-#: constraint:ir.ui.view:0
-msgid "Invalid XML for View Architecture!"
-msgstr "¡XML inválido para la definición de la vista!"
-
-#. module: account_payment_extension
-#: field:payment.mode,require_bank_account:0
-msgid "Require Bank Account"
-msgstr "Requerir cuenta bancaria"
-
-#. module: account_payment_extension
-#: model:ir.actions.wizard,name:account_payment_extension.wizard_populate_statement_ext
-msgid "Populate Statement with Payment lines"
-msgstr "Rellenar extracto con líneas de pago"
-
-#. module: account_payment_extension
-#: wizard_field:populate_statement_ext,init,lines:0
-msgid "Payment Lines"
-msgstr "Pagos"
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_payment_line
-msgid "Payment Line"
-msgstr "Línea de pago"
-
-#. module: account_payment_extension
-#: constraint:ir.ui.menu:0
-msgid "Error ! You can not create recursive Menu."
-msgstr "¡Error! No puede crear menús recursivos."
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_payment_mode
-msgid "Payment Mode"
-msgstr "Modo de pago"
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,search,communication2:0
-msgid "Communication 2"
-msgstr "Comunicación 2"
-
-#. module: account_payment_extension
-#: help:payment.type,note:0
-msgid "Description of the payment type that will be shown in the invoices"
-msgstr "Descripción del tipo de pago que se mostrará en las facturas."
-
-#. module: account_payment_extension
-#: field:payment.order,type:0
-msgid "Type"
-msgstr "Tipo"
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Search Invoice Payments"
-msgstr "Buscar pagos de facturas"
-
-#. module: account_payment_extension
-#: view:payment.type:0
-msgid "Suitable Bank Types"
-msgstr "Tipos de banco adecuados"
-
-#. module: account_payment_extension
-#: wizard_button:populate_statement_ext,init,add:0
-msgid "_Add"
-msgstr "_Añadir"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid "Error !"
-msgstr "¡ Error !"
-
-#. module: account_payment_extension
-#: view:payment.type:0
-#: field:payment.type,note:0
-msgid "Description"
-msgstr "Descripción"
-
-#. module: account_payment_extension
-#: field:payment.type,company_id:0
-msgid "Company"
-msgstr "Compañía"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid "Account move line \"%s\" is not valid"
-msgstr "El apunte \"%s\" no es válido."
-
-#. module: account_payment_extension
-#: wizard_button:populate_payment_ext,init,end:0
-#: wizard_button:populate_payment_ext,search,end:0
-#: wizard_button:populate_statement_ext,init,end:0
-msgid "_Cancel"
-msgstr "_Cancelar"
-
-#. module: account_payment_extension
-#: field:payment.order,payment_type_name:0
-msgid "Payment type name"
-msgstr "Nombre tipo de pago"
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_rec_payment_order_tree
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_rec_payment_order_form
-msgid "Rec. payment order"
-msgstr "Órdenes de cobro"
-
-#. module: account_payment_extension
-#: selection:payment.order,type:0
-msgid "Payable"
-msgstr "A pagar"
-
-#. module: account_payment_extension
-#: model:ir.actions.wizard,name:account_payment_extension.wizard_populate_payment_ext
-msgid "Populate payment to pay"
-msgstr "Buscar pagos a pagar/cobrar"
-
-#. module: account_payment_extension
-#: field:res.partner,payment_type_customer:0
-msgid "Customer Payment Type"
-msgstr "Tipo de pago cliente"
-
-#. module: account_payment_extension
-#: help:populate_payment_ext,init,amount:0
-msgid "Next step will automatically select payments up to this amount."
-msgstr ""
-"El siguiente paso seleccionará automáticamente pagos hasta llegar a este "
-"importe."
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,search,entries:0
-msgid "Entries"
-msgstr "Entradas"
-
-#. module: account_payment_extension
-#: field:payment.type,active:0
-msgid "Active"
-msgstr "Activo"
-
-#. module: account_payment_extension
-#: view:payment.order:0
-msgid "Select invoices to pay/receive payment"
-msgstr "Seleccionar facturas a pagar/cobrar"
-
-#. module: account_payment_extension
-#: help:payment.line,payment_move_id:0
-msgid "Account move that pays this debt."
-msgstr "Asiento que paga la deuda."
-
-#. module: account_payment_extension
-#: help:populate_payment_ext,search,communication2:0
-msgid "The successor message of payment communication."
-msgstr "El siguiente mensaje del comunicado del pago/cobro."
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Payment"
-msgstr "Pago"
-
-#. module: account_payment_extension
-#: field:payment.order,create_account_moves:0
-msgid "Create Account Moves"
-msgstr "Crear asientos contables"
-
-#. module: account_payment_extension
-#: field:payment.line,payment_move_id:0
-msgid "Payment Move"
-msgstr "Asiento del pago"
-
-#. module: account_payment_extension
-#: field:payment.line,account_id:0
-msgid "Account"
-msgstr "Cuenta"
-
-#. module: account_payment_extension
-#: field:payment.type,suitable_bank_types:0
-msgid "Suitable bank types"
-msgstr "Tipos de banco adecuados"
-
-#. module: account_payment_extension
-#: help:payment.mode,require_bank_account:0
-msgid ""
-"Ensure all lines in the payment order have a bank account when proposing "
-"lines to be added in the payment order."
-msgstr ""
-"Asegura que todas las línease propuestas para incluir en la orden tienen "
-"cuenta bancaria."
-
-#. module: account_payment_extension
-#: field:payment.order,name:0
-#: field:payment.type,name:0
-msgid "Name"
-msgstr "Nombre"
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,init,duedate:0
-msgid "Due Date"
-msgstr "Fecha vencimiento"
-
-#. module: account_payment_extension
-#: field:res.partner.bank,default_bank:0
-msgid "Default"
-msgstr "Por defecto"
-
-#. module: account_payment_extension
-#: wizard_button:populate_payment_ext,init,search:0
-msgid "_Search"
-msgstr "_Buscar"
-
-#. module: account_payment_extension
-#: field:account.move.line,partner_bank_id:0
-msgid "Bank Account"
-msgstr "Cuenta bancaria"
-
-#. module: account_payment_extension
-#: wizard_button:populate_payment_ext,search,create:0
-msgid "_Add to payment order"
-msgstr "_Añadir a la orden de pago"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid "Invalid action!"
-msgstr "Acción no válida!"
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Unreconciled"
-msgstr "No conciliado"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid "Error!"
-msgstr "¡Error!"
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,init,amount:0
-msgid "Amount"
-msgstr "Importe"
-
-#. module: account_payment_extension
-#: help:payment.mode,type:0
-msgid "Select the Payment Type for the Payment Mode."
-msgstr "Seleccione el tipo de pago para el modo de pago."
-
-#. module: account_payment_extension
-#: view:account.bank.statement:0
-msgid "Import payment lines"
-msgstr "Importar líneas de pago"
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Payments"
-msgstr "Efectos"
-
-#. module: account_payment_extension
-#: field:res.partner,payment_type_supplier:0
-msgid "Supplier Payment Type"
-msgstr "Tipo de pago proveedor"
-
-#. module: account_payment_extension
-#: help:res.partner,payment_type_customer:0
-msgid "Payment type of the customer"
-msgstr "Tipo de pago como cliente."
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_pay_payment_order_tree
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_pay_payment_order_form
-msgid "Pay. payment order"
-msgstr "Órdenes de pago"
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_invoice_payments
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_invoice_payments
-msgid "Invoice payments"
-msgstr "Efectos"
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_done_payments
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_done_payments
-msgid "Done payments"
-msgstr "Pagos/cobros realizados"
-
-#. module: account_payment_extension
-#: field:account.invoice,payment_type:0
-#: field:account.move.line,payment_type:0
-#: model:ir.model,name:account_payment_extension.model_payment_type
-#: field:payment.mode,type:0
-msgid "Payment type"
-msgstr "Tipo de pago"
-
-#. module: account_payment_extension
-#: field:payment.type,code:0
-msgid "Code"
-msgstr "Código"
-
-#. module: account_payment_extension
-#: view:res.partner:0
-msgid "Bank Details"
-msgstr "Detalles del banco"
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_res_partner_bank
-msgid "Bank Accounts"
-msgstr "Cuentas bancarias"
-
-#. module: account_payment_extension
-#: field:payment.order,period_id:0
-msgid "Period"
-msgstr "Período"
-
-#. module: account_payment_extension
-#: selection:payment.order,create_account_moves:0
-msgid "Bank Statement"
-msgstr "Por extracto bancario"
-
-#. module: account_payment_extension
-#: help:res.partner,payment_type_supplier:0
-msgid "Payment type of the supplier"
-msgstr "Tipo de pago como proveedor."
-
-#. module: account_payment_extension
-#: constraint:ir.model:0
-msgid ""
-"The Object name must start with x_ and not contain any special character !"
-msgstr ""
-"¡El nombre del objeto debe empezar con x_ y no contener ningún carácter "
-"especial!"
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_account_move_line
-msgid "Journal Items"
-msgstr "Apuntes"
-
-#. module: account_payment_extension
-#: help:account.move.line,received_check:0
-msgid ""
-"To write down that a check in paper support has been received, for example."
-msgstr ""
-"Sirve para indicar que se ha recibido un cheque en soporte papel, por "
-"ejemplo."
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_account_invoice
-msgid "Invoice"
-msgstr "Factura"
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Narration"
-msgstr "Descripción"
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_res_partner
-msgid "Partner"
-msgstr "Empresa"
-
-#. module: account_payment_extension
-#: field:account.move.line,received_check:0
-msgid "Received check"
-msgstr "Cheque recibido"
-
-#. module: account_payment_extension
-#: wizard_view:populate_payment_ext,init:0
-msgid "Search Payment lines"
-msgstr "Buscar líneas de pago"
-
-#. module: account_payment_extension
-#: sql_constraint:ir.model.fields:0
-msgid "Size of the field can never be less than 1 !"
-msgstr "¡El tamaño del campo no puede ser menor que 1!"
-
-#. module: account_payment_extension
-#: help:payment.order,create_account_moves:0
-msgid ""
-"Indicates when account moves should be created for order payment lines. "
-"\"Bank Statement\" will wait until user introduces those payments in bank a "
-"bank statement. \"Direct Payment\" will mark all payment lines as payied "
-"once the order is done."
-msgstr ""
-"Indica cuando se deben generar los asientos contables para las líneas de la "
-"orden de pago. \"Por extracto bancario\" esperará a que el usuario "
-"introduzca los pagos en el extracto bancario. \"Por pago directo\" marcará "
-"todas las líneas como pagadas cuando se realice la orden."
-
-#. module: account_payment_extension
-#: model:ir.module.module,description:account_payment_extension.module_meta_information
-msgid ""
-"Account payment extension.\n"
-"\n"
-"This module extends the account_payment module with a lot of features:\n"
-"    * Extension of payment types: The payment type has a translated name and "
-"note that can be shown in the invoices.\n"
-"    * Two default payment types for partners (client and supplier).\n"
-"    * Automatic selection of payment type in invoices. Now an invoice can "
-"have a payment term (30 days, 30/60 days, ...) and a payment type (cash, "
-"bank transfer, ...).\n"
-"    * A default check field in partner bank accounts. The default partner "
-"bank accounts are selected in invoices and payments.\n"
-"    * New menu/tree/forms to see payments to receive and payments to pay.\n"
-"    * The payments show tree editable fields: Due date, bank account and a "
-"check field (for example to write down if a bank check in paper support has "
-"been received).\n"
-"    * Two types of payment orders: Payable payment orders (from supplier "
-"invoices) and receivable payment orders (from client invoices). So we can "
-"make payment orders to receive the payments of our client invoices. Each "
-"payment order type has its own sequence.\n"
-"    * The payment orders allow negative payment amounts. So we can have "
-"payment orders for supplier invoices (pay money) and refund supplier "
-"invoices (return or receive money). Or for client invoices (receive money) "
-"and refund client invoices (return or pay money).\n"
-"    * Payment orders: Selected invoices are filtered by payment type, the "
-"second message communication can be set at the same time for several "
-"invoices.\n"
-"Based on previous work of Pablo Rocandio & Zikzakmedia (version for 4.2).\n"
-msgstr ""
-"Extensión de pagos contables (Tesorería).\n"
-"\n"
-"Este módulo extiende el módulo account_payment con muchas características:\n"
-"    * Extensión de los tipos de pago: El tipo de pago tiene un nombre y una "
-"descripción traducibles que se pueden mostrar en las facturas.\n"
-"    * Dos tipos de pago por defecto para las empresas (cliente y "
-"proveedor).\n"
-"    * Selección automática del tipo de pago en las facturas. Ahora, una "
-"factura puede tener un plazo de pago (30 días, 30/60 días, ...) y un tipo de "
-"pago (efectivo, transferencia bancaria, ...).\n"
-"    * Un campo seleccionable por defecto en las cuentas bancarias de las "
-"empresas. Se selecciona la cuenta bancaria por defecto de la empresa en las "
-"facturas y los pagos.\n"
-"    * Nuevos menús / listas / formularios para consultar los pagos (efectos) "
-"a cobrar y a pagar.\n"
-"    * Los pagos muestran campos editables en la lista: Fecha de vencimiento, "
-"cuenta bancaria y un campo de verificación (por ejemplo, para indicar que se "
-"ha recibido un cheque bancario en soporte papel).\n"
-"    * Dos tipos de órdenes de pago/cobro: las órdenes de pago (a partir de "
-"las facturas de proveedor) y las órdenes de cobro (a partir de las facturas "
-"de cliente). Ahora se puede hacer órdenes de cobro (remesas de recibos) para "
-"recibir los pagos de las facturas de nuestros clientes. Cada tipo de orden "
-"de pago tiene su propia secuencia.\n"
-"    * Las órdenes de pago/cobro permiten cantidades en negativo. Podemos "
-"incluir en las órdenes de pago facturas de proveedor (pago de dinero) y "
-"facturas de abono de proveedor (devolución o recibir dinero). O las facturas "
-"de cliente (recepción de dinero) y las facturas de abono de cliente "
-"(devolución o pago de dinero).\n"
-"    * En las órdenes de pago: Las facturas seleccionadas son filtradas por "
-"tipo de pago. Se puede indicar el segundo mensaje de la comunicación de la "
-"remesa al mismo tiempo para varias facturas.\n"
-"Basado en el trabajo anterior de Pablo Rocandio y Zikzakmedia (versión "
-"4.2).\n"
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,init,show_refunds:0
-msgid "Show Refunds"
-msgstr "Mostrar abonos"
-
-#. module: account_payment_extension
-#: help:populate_payment_ext,init,show_refunds:0
-msgid "Indicates if search should include refunds."
-msgstr "Indica si la búsqueda debe incluir abonos."
-
-#~ msgid "Payable payment orders"
-#~ msgstr "Órdenes de pago"
-
-#~ msgid "Done payable payments unreconciled"
-#~ msgstr "Pagos realizados no conciliados"
-
-#~ msgid "Draft pay. payment order"
-#~ msgstr "Órdenes de pago borrador"
-
-#~ msgid "Rec. payment orders to validate"
-#~ msgstr "Órdenes de cobro a validar"
-
-#~ msgid "Pay. payment orders to validate"
-#~ msgstr "Órdenes de pago a validar"
-
-#~ msgid "New Pay. payment Order"
-#~ msgstr "Nueva orden de pago"
-
-#~ msgid "Receivable payments unreconciled"
-#~ msgstr "Cobros no conciliados"
-
-#~ msgid "All done payable payments"
-#~ msgstr "Todos los pagos realizados"
-
-#~ msgid "Receivable payment orders"
-#~ msgstr "Órdenes de cobro"
-
-#~ msgid "Done receivable payments unreconciled"
-#~ msgstr "Cobros realizados no conciliados"
-
-#~ msgid "Payable payments"
-#~ msgstr "Pagos"
-
-#~ msgid "Account Payment Extension"
-#~ msgstr "Extensión de pagos contables (Tesorería)"
-
-#~ msgid "All done receivable payments"
-#~ msgstr "Todos los cobros realizados"
-
-#~ msgid "Receivable payments"
-#~ msgstr "Cobros"
-
-#~ msgid "Payable payments unreconciled"
-#~ msgstr "Pagos no conciliados"
-
-#~ msgid "Draft rec. payment order"
-#~ msgstr "Órdenes de cobro borrador"
-
-#~ msgid "New rec. payment order"
-#~ msgstr "Nueva orden de cobro"
-
-#~ msgid "Invoice payments to pay"
-#~ msgstr "Efectos a pagar"
-
-#~ msgid "All received and to receive invoice payments"
-#~ msgstr "Todos los efectos cobrados y a cobrar"
-
-#~ msgid "Receivable invoice payments"
-#~ msgstr "Efectos a cobrar"
-
-#~ msgid "All paid and to pay invoice payments"
-#~ msgstr "Todos los efectos pagados y a pagar"
-
-#~ msgid "Invoice payments to receive"
-#~ msgstr "Efectos a cobrar"
-
-#~ msgid "Payable invoice payments"
-#~ msgstr "Efectos de pago"
-
-#~ msgid "Require bank account"
-#~ msgstr "Requerir cuenta bancaria"
-
-#~ msgid ""
-#~ "If your bank allows you to send orders without the bank account info, you "
-#~ "may disable this option"
-#~ msgstr ""
-#~ "Si su banco admite enviar órdenes sin información de cuenta bancaria, puede "
-#~ "deshabilitar esta opción."

=== removed file 'account_payment_extension/i18n/fr_BE.po'
--- account_payment_extension/i18n/fr_BE.po	2012-12-11 10:06:23 +0000
+++ account_payment_extension/i18n/fr_BE.po	1970-01-01 00:00:00 +0000
@@ -1,321 +0,0 @@
-# Translation of OpenERP Server.
-# This file contains the translation of the following modules:
-#	* account_payment_extension
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: OpenERP Server 5.0.6\n"
-"Report-Msgid-Bugs-To: support@openerp.com\n"
-"POT-Creation-Date: 2009-11-26 06:52:54+0000\n"
-"PO-Revision-Date: 2009-11-26 06:52:54+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Plural-Forms: \n"
-
-#. module: account_payment_extension
-#: selection:payment.order,type:0
-msgid "Receivable"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.ui.menu,name:account_payment_extension.menu_pay_payments
-msgid "Payable payment orders"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_payment_type_form
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_payment_type_form
-#: view:payment.type:0
-msgid "Payment Type"
-msgstr ""
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid "You cannot delete payment order(s) which are already confirmed or done!"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.actions.wizard,name:account_payment_extension.wizard_populate_statement_ext
-msgid "Populate Statement with Payment lines"
-msgstr ""
-
-#. module: account_payment_extension
-#: wizard_field:populate_statement_ext,init,lines:0
-msgid "Payment Lines"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_rec_payment_order_tree
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_rec_payment_order_form
-msgid "Rec. payment order"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_pay_payment_order_draft
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_pay_payment_order_draft
-msgid "Draft pay. payment order"
-msgstr ""
-
-#. module: account_payment_extension
-#: constraint:ir.actions.act_window:0
-msgid "Invalid model name in the action definition."
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_payments_to_pay
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_payments_to_pay
-msgid "Payments to pay"
-msgstr ""
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,search,communication2:0
-msgid "Communication 2"
-msgstr ""
-
-#. module: account_payment_extension
-#: field:payment.order,type:0
-msgid "Type"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_rec_payment_order_open
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_rec_payment_order_open
-msgid "Rec. payment orders to validate"
-msgstr ""
-
-#. module: account_payment_extension
-#: wizard_button:populate_statement_ext,init,add:0
-msgid "_Add"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.ui.menu,name:account_payment_extension.menu_rec_payments
-msgid "Receivable payment orders"
-msgstr ""
-
-#. module: account_payment_extension
-#: view:payment.type:0
-#: field:payment.type,note:0
-msgid "Description"
-msgstr ""
-
-#. module: account_payment_extension
-#: wizard_button:populate_payment_ext,init,search:0
-msgid "_Search"
-msgstr ""
-
-#. module: account_payment_extension
-#: field:payment.order,payment_type_name:0
-msgid "Payment type name"
-msgstr ""
-
-#. module: account_payment_extension
-#: selection:payment.order,type:0
-msgid "Payable"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.actions.wizard,name:account_payment_extension.wizard_populate_payment_ext
-msgid "Populate payment to pay"
-msgstr ""
-
-#. module: account_payment_extension
-#: view:payment.order:0
-msgid "Select invoices to pay/receive payment"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_pay_payment_order_open
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_pay_payment_order_open
-msgid "Pay. payment orders to validate"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_pay_payment_order_tree_new
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_pay_payment_order_form_new
-msgid "New Pay. payment Order"
-msgstr ""
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,search,entries:0
-msgid "Entries"
-msgstr ""
-
-#. module: account_payment_extension
-#: field:payment.type,active:0
-msgid "Active"
-msgstr ""
-
-#. module: account_payment_extension
-#: help:populate_payment_ext,search,communication2:0
-msgid "The successor message of payment communication."
-msgstr ""
-
-#. module: account_payment_extension
-#: constraint:ir.ui.view:0
-msgid "Invalid XML for View Architecture!"
-msgstr ""
-
-#. module: account_payment_extension
-#: field:payment.order,name:0
-msgid "Name"
-msgstr ""
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,init,duedate:0
-msgid "Due Date"
-msgstr ""
-
-#. module: account_payment_extension
-#: field:res.partner.bank,default_bank:0
-msgid "Default"
-msgstr ""
-
-#. module: account_payment_extension
-#: wizard_button:populate_payment_ext,search,create:0
-msgid "_Add to payment order"
-msgstr ""
-
-#. module: account_payment_extension
-#: field:account.move.line,partner_bank:0
-msgid "Bank Account"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_payments_payable
-msgid "All paid and to pay payments"
-msgstr ""
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid "Invalid action!"
-msgstr ""
-
-#. module: account_payment_extension
-#: view:account.bank.statement:0
-msgid "Import payment lines"
-msgstr ""
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-#: model:ir.ui.menu,name:account_payment_extension.menu_finance_payments
-msgid "Payments"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_payments_payable
-msgid "Payable payments"
-msgstr ""
-
-#. module: account_payment_extension
-#: help:res.partner,payment_type_customer:0
-msgid "Payment type of the customer"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_pay_payment_order_tree
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_pay_payment_order_form
-msgid "Pay. payment order"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.module.module,shortdesc:account_payment_extension.module_meta_information
-msgid "Account Payment Extension"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_payments_receivable
-msgid "Receivable payments"
-msgstr ""
-
-#. module: account_payment_extension
-#: field:account.invoice,payment_type:0
-#: field:account.move.line,payment_type:0
-#: field:res.partner,payment_type_customer:0
-#: field:res.partner,payment_type_supplier:0
-msgid "Payment type"
-msgstr ""
-
-#. module: account_payment_extension
-#: view:res.partner:0
-msgid "Bank Details"
-msgstr ""
-
-#. module: account_payment_extension
-#: help:payment.type,note:0
-msgid "Description of the payment type that will be shown in the invoices"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_rec_payment_order_draft
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_rec_payment_order_draft
-msgid "Draft rec. payment order"
-msgstr ""
-
-#. module: account_payment_extension
-#: help:res.partner,payment_type_supplier:0
-msgid "Payment type of the supplier"
-msgstr ""
-
-#. module: account_payment_extension
-#: wizard_view:populate_payment_ext,init:0
-msgid "Search Payment lines"
-msgstr ""
-
-#. module: account_payment_extension
-#: help:account.move.line,received_check:0
-msgid "To write down that a check in paper support has been received, for example."
-msgstr ""
-
-#. module: account_payment_extension
-#: wizard_button:populate_payment_ext,init,end:0
-#: wizard_button:populate_payment_ext,search,end:0
-#: wizard_button:populate_statement_ext,init,end:0
-msgid "_Cancel"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_payments_to_receive
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_payments_to_receive
-msgid "Payments to receive"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_payments_receivable
-msgid "All received and to receive payments"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_rec_payment_order_tree_new
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_rec_payment_order_form_new
-msgid "New rec. payment order"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.module.module,description:account_payment_extension.module_meta_information
-msgid "Account payment extension.\n"
-"\n"
-"This module extends the account_payment module with a lot of features:\n"
-"    * Extension of payment types: The payment type has a translated name and note that can be shown in the invoices.\n"
-"    * Two default payment types for partners (client and supplier).\n"
-"    * Automatic selection of payment type in invoices. Now an invoice can have a payment term (30 days, 30/60 days, ...) and a payment type (cash, bank transfer, ...).\n"
-"    * A default check field in partner bank accounts. The default partner bank accounts are selected in invoices and payments.\n"
-"    * New menu/tree/forms to see payments to receive and payments to pay.\n"
-"    * The payments show tree editable fields: Due date, bank account and a check field (for example to write down if a bank check in paper support has been received).\n"
-"    * Two types of payment orders: Payable payment orders (from supplier invoices) and receivable payment orders (from client invoices). So we can make payment orders to receive the payments of our client invoices. Each payment order type has its own sequence.\n"
-"    * The payment orders allow negative payment amounts. So we can have payment orders for supplier invoices (pay money) and refund supplier invoices (return or receive money). Or for client invoices (receive money) and refund client invoices (return or pay money).\n"
-"    * Payment orders: Selected invoices are filtered by payment type, the second message communication can be set at the same time for several invoices.\n"
-"Based on previous work of Pablo Rocandio & Zikzakmedia (version for 4.2).\n"
-""
-msgstr ""
-
-#. module: account_payment_extension
-#: field:account.move.line,received_check:0
-msgid "Received check"
-msgstr ""
-

=== removed file 'account_payment_extension/i18n/hu.po'
--- account_payment_extension/i18n/hu.po	2012-12-11 10:06:23 +0000
+++ account_payment_extension/i18n/hu.po	1970-01-01 00:00:00 +0000
@@ -1,500 +0,0 @@
-# Hungarian translation for openobject-addons
-# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2010-12-17 20:52+0000\n"
-"PO-Revision-Date: 2011-12-27 11:09+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Hungarian <hu@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-05-24 11:38+0000\n"
-"X-Generator: Launchpad (build 15288)\n"
-
-#. module: account_payment_extension
-#: selection:payment.order,type:0
-msgid "Receivable"
-msgstr "Kintlévőség"
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_payment_type
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_payment_type
-#: view:payment.type:0
-#: help:payment.type,name:0
-msgid "Payment Type"
-msgstr "Fő fizetési mód"
-
-#. module: account_payment_extension
-#: selection:payment.order,create_account_moves:0
-msgid "Direct Payment"
-msgstr "Közvetlen fizetés"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid ""
-"Payment order should create account moves but line with amount %.2f for "
-"partner \"%s\" has no account assigned."
-msgstr ""
-
-#. module: account_payment_extension
-#: constraint:ir.actions.act_window:0
-msgid "Invalid model name in the action definition."
-msgstr ""
-
-#. module: account_payment_extension
-#: help:payment.type,code:0
-msgid "Specify the Code for Payment Type"
-msgstr "Megadja a fizetési mód kódját"
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Pay"
-msgstr "Pay"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid ""
-"You cannot delete payment order(s) which are already confirmed or done!"
-msgstr ""
-"A már megerősített vagy befejezett fizetési megbízások nem törölhetőek!"
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_payment_order
-msgid "Payment Order"
-msgstr "Átutalási megbízás"
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Receive"
-msgstr "Fogad"
-
-#. module: account_payment_extension
-#: constraint:ir.ui.view:0
-msgid "Invalid XML for View Architecture!"
-msgstr ""
-
-#. module: account_payment_extension
-#: field:payment.mode,require_bank_account:0
-msgid "Require Bank Account"
-msgstr "Bankszámla megkövetelése"
-
-#. module: account_payment_extension
-#: model:ir.actions.wizard,name:account_payment_extension.wizard_populate_statement_ext
-msgid "Populate Statement with Payment lines"
-msgstr "A bankszámlakivonatot fizetési sorokkal tölti fel"
-
-#. module: account_payment_extension
-#: wizard_field:populate_statement_ext,init,lines:0
-msgid "Payment Lines"
-msgstr "Fizetési sorok"
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_payment_line
-msgid "Payment Line"
-msgstr "Átutalás sor"
-
-#. module: account_payment_extension
-#: constraint:ir.ui.menu:0
-msgid "Error ! You can not create recursive Menu."
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_payment_mode
-msgid "Payment Mode"
-msgstr "Fizetési mód"
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,search,communication2:0
-msgid "Communication 2"
-msgstr "Megjegyzés 2"
-
-#. module: account_payment_extension
-#: help:payment.type,note:0
-msgid "Description of the payment type that will be shown in the invoices"
-msgstr "A számlán is megjeleníthető fizetési mód leírása"
-
-#. module: account_payment_extension
-#: field:payment.order,type:0
-msgid "Type"
-msgstr "Típus"
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Search Invoice Payments"
-msgstr "Fizetendő számla keresése"
-
-#. module: account_payment_extension
-#: view:payment.type:0
-msgid "Suitable Bank Types"
-msgstr "Megfelelő banktípusok"
-
-#. module: account_payment_extension
-#: wizard_button:populate_statement_ext,init,add:0
-msgid "_Add"
-msgstr "_Hozzáad"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid "Error !"
-msgstr "Hiba !"
-
-#. module: account_payment_extension
-#: view:payment.type:0
-#: field:payment.type,note:0
-msgid "Description"
-msgstr "Leírás"
-
-#. module: account_payment_extension
-#: field:payment.type,company_id:0
-msgid "Company"
-msgstr "Vállalat"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid "Account move line \"%s\" is not valid"
-msgstr "A \"%s\" számlamozgás érvénytelen"
-
-#. module: account_payment_extension
-#: wizard_button:populate_payment_ext,init,end:0
-#: wizard_button:populate_payment_ext,search,end:0
-#: wizard_button:populate_statement_ext,init,end:0
-msgid "_Cancel"
-msgstr "_Mégsem"
-
-#. module: account_payment_extension
-#: field:payment.order,payment_type_name:0
-msgid "Payment type name"
-msgstr "Fizetési mód neve"
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_rec_payment_order_tree
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_rec_payment_order_form
-msgid "Rec. payment order"
-msgstr "Beérkező fizetési megbízás"
-
-#. module: account_payment_extension
-#: selection:payment.order,type:0
-msgid "Payable"
-msgstr "Fizetendő"
-
-#. module: account_payment_extension
-#: model:ir.actions.wizard,name:account_payment_extension.wizard_populate_payment_ext
-msgid "Populate payment to pay"
-msgstr "Fizetendő tételek betöltése"
-
-#. module: account_payment_extension
-#: field:res.partner,payment_type_customer:0
-msgid "Customer Payment Type"
-msgstr "Vevő fizetési módja"
-
-#. module: account_payment_extension
-#: help:populate_payment_ext,init,amount:0
-msgid "Next step will automatically select payments up to this amount."
-msgstr ""
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,search,entries:0
-msgid "Entries"
-msgstr "Tételek"
-
-#. module: account_payment_extension
-#: field:payment.type,active:0
-msgid "Active"
-msgstr "Aktív"
-
-#. module: account_payment_extension
-#: view:payment.order:0
-msgid "Select invoices to pay/receive payment"
-msgstr "Válassza ki a fizetendő/behajtandó számlákat"
-
-#. module: account_payment_extension
-#: help:payment.line,payment_move_id:0
-msgid "Account move that pays this debt."
-msgstr "A követelés kiegyenlítő számlamozgás."
-
-#. module: account_payment_extension
-#: help:populate_payment_ext,search,communication2:0
-msgid "The successor message of payment communication."
-msgstr "A fizetési üzenet követő megjegyzése."
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Payment"
-msgstr "Fizetés"
-
-#. module: account_payment_extension
-#: field:payment.order,create_account_moves:0
-msgid "Create Account Moves"
-msgstr "Számlamozgások létrehozása"
-
-#. module: account_payment_extension
-#: field:payment.line,payment_move_id:0
-msgid "Payment Move"
-msgstr "Fizetési mozgás"
-
-#. module: account_payment_extension
-#: field:payment.line,account_id:0
-msgid "Account"
-msgstr "Számla"
-
-#. module: account_payment_extension
-#: field:payment.type,suitable_bank_types:0
-msgid "Suitable bank types"
-msgstr "Megfelelő banktípusok"
-
-#. module: account_payment_extension
-#: help:payment.mode,require_bank_account:0
-msgid ""
-"Ensure all lines in the payment order have a bank account when proposing "
-"lines to be added in the payment order."
-msgstr ""
-"Biztosítja, hogy amikor a sort a fizetési meghagyáshoz adja, annakminden "
-"sorához kapcsolódjon bankszámla."
-
-#. module: account_payment_extension
-#: field:payment.order,name:0
-#: field:payment.type,name:0
-msgid "Name"
-msgstr "Név"
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,init,duedate:0
-msgid "Due Date"
-msgstr "Fizetési határidő"
-
-#. module: account_payment_extension
-#: field:res.partner.bank,default_bank:0
-msgid "Default"
-msgstr "Alapértelmezett"
-
-#. module: account_payment_extension
-#: wizard_button:populate_payment_ext,init,search:0
-msgid "_Search"
-msgstr "_Keresés"
-
-#. module: account_payment_extension
-#: field:account.move.line,partner_bank_id:0
-msgid "Bank Account"
-msgstr "Bankszámla"
-
-#. module: account_payment_extension
-#: wizard_button:populate_payment_ext,search,create:0
-msgid "_Add to payment order"
-msgstr "Hozzáadja a fizetési megbízáshoz"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid "Invalid action!"
-msgstr "Érvénytelen művelet!"
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Unreconciled"
-msgstr "Rendezetlen"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid "Error!"
-msgstr "Hiba!"
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,init,amount:0
-msgid "Amount"
-msgstr "Összeg"
-
-#. module: account_payment_extension
-#: help:payment.mode,type:0
-msgid "Select the Payment Type for the Payment Mode."
-msgstr ""
-"Válassza ki a fizetési módhoz tartozó pontos fizetési mód kategóriát."
-
-#. module: account_payment_extension
-#: view:account.bank.statement:0
-msgid "Import payment lines"
-msgstr "Átutalások importálása"
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Payments"
-msgstr "Kifizetések"
-
-#. module: account_payment_extension
-#: field:res.partner,payment_type_supplier:0
-msgid "Supplier Payment Type"
-msgstr "Szállító fizetési módja"
-
-#. module: account_payment_extension
-#: help:res.partner,payment_type_customer:0
-msgid "Payment type of the customer"
-msgstr "Vevő fizetési módja"
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_pay_payment_order_tree
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_pay_payment_order_form
-msgid "Pay. payment order"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_invoice_payments
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_invoice_payments
-msgid "Invoice payments"
-msgstr "Számlák fizetése"
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_done_payments
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_done_payments
-msgid "Done payments"
-msgstr "Befejezett kifizetések"
-
-#. module: account_payment_extension
-#: field:account.invoice,payment_type:0
-#: field:account.move.line,payment_type:0
-#: model:ir.model,name:account_payment_extension.model_payment_type
-#: field:payment.mode,type:0
-msgid "Payment type"
-msgstr "Fő fizetési mód"
-
-#. module: account_payment_extension
-#: field:payment.type,code:0
-msgid "Code"
-msgstr "Kód"
-
-#. module: account_payment_extension
-#: view:res.partner:0
-msgid "Bank Details"
-msgstr "Bankadatok"
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_res_partner_bank
-msgid "Bank Accounts"
-msgstr "Bankszámlák"
-
-#. module: account_payment_extension
-#: field:payment.order,period_id:0
-msgid "Period"
-msgstr "Időszak"
-
-#. module: account_payment_extension
-#: selection:payment.order,create_account_moves:0
-msgid "Bank Statement"
-msgstr "Bankszámlakivonat"
-
-#. module: account_payment_extension
-#: help:res.partner,payment_type_supplier:0
-msgid "Payment type of the supplier"
-msgstr "Beszállító fizetési módja"
-
-#. module: account_payment_extension
-#: constraint:ir.model:0
-msgid ""
-"The Object name must start with x_ and not contain any special character !"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_account_move_line
-msgid "Journal Items"
-msgstr "Könyvelési tételsorok"
-
-#. module: account_payment_extension
-#: help:account.move.line,received_check:0
-msgid ""
-"To write down that a check in paper support has been received, for example."
-msgstr "Jelezheti péládul, hogy egy papíralapú csekk megérkezett."
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_account_invoice
-msgid "Invoice"
-msgstr "Invoice"
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Narration"
-msgstr "Megjegyzés"
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_res_partner
-msgid "Partner"
-msgstr "Partner"
-
-#. module: account_payment_extension
-#: field:account.move.line,received_check:0
-msgid "Received check"
-msgstr "Befogadott csekk"
-
-#. module: account_payment_extension
-#: wizard_view:populate_payment_ext,init:0
-msgid "Search Payment lines"
-msgstr "Fzetési sorok keresése"
-
-#. module: account_payment_extension
-#: sql_constraint:ir.model.fields:0
-msgid "Size of the field can never be less than 1 !"
-msgstr ""
-
-#. module: account_payment_extension
-#: help:payment.order,create_account_moves:0
-msgid ""
-"Indicates when account moves should be created for order payment lines. "
-"\"Bank Statement\" will wait until user introduces those payments in bank a "
-"bank statement. \"Direct Payment\" will mark all payment lines as payied "
-"once the order is done."
-msgstr ""
-"Megmutatja, hogy mikor szükséges a fizetési megbízás soraihoz számlamozgást "
-"létrehozni. A \"Bankszámlakivonat\" addig várni fog, amíg a felhasználó fel "
-"nem veszi a megfelelő kifizetéseket egy bankszámlakivonaton. A \"Közvetlen "
-"fizetés\" a fizetési megbízás lezárultával kifizetettnek jelöli meg a "
-"fizetési sorokat."
-
-#. module: account_payment_extension
-#: model:ir.module.module,description:account_payment_extension.module_meta_information
-msgid ""
-"Account payment extension.\n"
-"\n"
-"This module extends the account_payment module with a lot of features:\n"
-"    * Extension of payment types: The payment type has a translated name and "
-"note that can be shown in the invoices.\n"
-"    * Two default payment types for partners (client and supplier).\n"
-"    * Automatic selection of payment type in invoices. Now an invoice can "
-"have a payment term (30 days, 30/60 days, ...) and a payment type (cash, "
-"bank transfer, ...).\n"
-"    * A default check field in partner bank accounts. The default partner "
-"bank accounts are selected in invoices and payments.\n"
-"    * New menu/tree/forms to see payments to receive and payments to pay.\n"
-"    * The payments show tree editable fields: Due date, bank account and a "
-"check field (for example to write down if a bank check in paper support has "
-"been received).\n"
-"    * Two types of payment orders: Payable payment orders (from supplier "
-"invoices) and receivable payment orders (from client invoices). So we can "
-"make payment orders to receive the payments of our client invoices. Each "
-"payment order type has its own sequence.\n"
-"    * The payment orders allow negative payment amounts. So we can have "
-"payment orders for supplier invoices (pay money) and refund supplier "
-"invoices (return or receive money). Or for client invoices (receive money) "
-"and refund client invoices (return or pay money).\n"
-"    * Payment orders: Selected invoices are filtered by payment type, the "
-"second message communication can be set at the same time for several "
-"invoices.\n"
-"Based on previous work of Pablo Rocandio & Zikzakmedia (version for 4.2).\n"
-msgstr ""
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,init,show_refunds:0
-msgid "Show Refunds"
-msgstr "Visszautalások mutatása"
-
-#. module: account_payment_extension
-#: help:populate_payment_ext,init,show_refunds:0
-msgid "Indicates if search should include refunds."
-msgstr "Jelöli, hogy a keresés tartalmazza a visszautalásokat is."

=== removed file 'account_payment_extension/i18n/pt.po'
--- account_payment_extension/i18n/pt.po	2012-12-11 10:06:23 +0000
+++ account_payment_extension/i18n/pt.po	1970-01-01 00:00:00 +0000
@@ -1,615 +0,0 @@
-# Portuguese translation for openobject-addons
-# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2010-12-17 20:52+0000\n"
-"PO-Revision-Date: 2010-12-09 19:06+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Portuguese <pt@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-05-24 11:38+0000\n"
-"X-Generator: Launchpad (build 15288)\n"
-
-#. module: account_payment_extension
-#: selection:payment.order,type:0
-msgid "Receivable"
-msgstr "Recebível"
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_payment_type
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_payment_type
-#: view:payment.type:0
-#: help:payment.type,name:0
-msgid "Payment Type"
-msgstr "Tipo de Pagamento"
-
-#. module: account_payment_extension
-#: selection:payment.order,create_account_moves:0
-msgid "Direct Payment"
-msgstr "Pagamanto Directo"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid ""
-"Payment order should create account moves but line with amount %.2f for "
-"partner \"%s\" has no account assigned."
-msgstr ""
-"Ordem de pagamento deve criar movimentos de conta mas linha com cerca de "
-"%.2f para terceiro \"%s\" não tem conta assinada."
-
-#. module: account_payment_extension
-#: constraint:ir.actions.act_window:0
-msgid "Invalid model name in the action definition."
-msgstr "Nome do modelo inválido na definição da acção."
-
-#. module: account_payment_extension
-#: help:payment.type,code:0
-msgid "Specify the Code for Payment Type"
-msgstr ""
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Pay"
-msgstr ""
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid ""
-"You cannot delete payment order(s) which are already confirmed or done!"
-msgstr ""
-"Não pode apagar a(s) ordem(ns) de pagamento(s) que já tenha(m) sido "
-"confirmada(s) ou concluída(s)"
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_payment_order
-msgid "Payment Order"
-msgstr ""
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Receive"
-msgstr ""
-
-#. module: account_payment_extension
-#: constraint:ir.ui.view:0
-msgid "Invalid XML for View Architecture!"
-msgstr "XML Inválido para a Arquitectura de Vista!"
-
-#. module: account_payment_extension
-#: field:payment.mode,require_bank_account:0
-msgid "Require Bank Account"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.actions.wizard,name:account_payment_extension.wizard_populate_statement_ext
-msgid "Populate Statement with Payment lines"
-msgstr "Preencher a Declaração com linhas de Pagemento"
-
-#. module: account_payment_extension
-#: wizard_field:populate_statement_ext,init,lines:0
-msgid "Payment Lines"
-msgstr "Linha de Pagamento"
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_payment_line
-msgid "Payment Line"
-msgstr ""
-
-#. module: account_payment_extension
-#: constraint:ir.ui.menu:0
-msgid "Error ! You can not create recursive Menu."
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_payment_mode
-msgid "Payment Mode"
-msgstr ""
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,search,communication2:0
-msgid "Communication 2"
-msgstr "Comunicação 2"
-
-#. module: account_payment_extension
-#: help:payment.type,note:0
-msgid "Description of the payment type that will be shown in the invoices"
-msgstr "Descrição do tipo de pagamento que vai ser apresentado nas facturas"
-
-#. module: account_payment_extension
-#: field:payment.order,type:0
-msgid "Type"
-msgstr "Tipo"
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Search Invoice Payments"
-msgstr ""
-
-#. module: account_payment_extension
-#: view:payment.type:0
-msgid "Suitable Bank Types"
-msgstr ""
-
-#. module: account_payment_extension
-#: wizard_button:populate_statement_ext,init,add:0
-msgid "_Add"
-msgstr "_Add"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid "Error !"
-msgstr "Erro !"
-
-#. module: account_payment_extension
-#: view:payment.type:0
-#: field:payment.type,note:0
-msgid "Description"
-msgstr "Descrição"
-
-#. module: account_payment_extension
-#: field:payment.type,company_id:0
-msgid "Company"
-msgstr ""
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid "Account move line \"%s\" is not valid"
-msgstr "Linha do movimento da conta \"%s\" não é válido"
-
-#. module: account_payment_extension
-#: wizard_button:populate_payment_ext,init,end:0
-#: wizard_button:populate_payment_ext,search,end:0
-#: wizard_button:populate_statement_ext,init,end:0
-msgid "_Cancel"
-msgstr "_Cancel"
-
-#. module: account_payment_extension
-#: field:payment.order,payment_type_name:0
-msgid "Payment type name"
-msgstr "Nome do tipo de pagamento"
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_rec_payment_order_tree
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_rec_payment_order_form
-msgid "Rec. payment order"
-msgstr "Ordem de pagamento recebível"
-
-#. module: account_payment_extension
-#: selection:payment.order,type:0
-msgid "Payable"
-msgstr "Pagável"
-
-#. module: account_payment_extension
-#: model:ir.actions.wizard,name:account_payment_extension.wizard_populate_payment_ext
-msgid "Populate payment to pay"
-msgstr "Preencher pagamento para pagar"
-
-#. module: account_payment_extension
-#: field:res.partner,payment_type_customer:0
-msgid "Customer Payment Type"
-msgstr ""
-
-#. module: account_payment_extension
-#: help:populate_payment_ext,init,amount:0
-msgid "Next step will automatically select payments up to this amount."
-msgstr ""
-"Próxima etapa vai selecionar automáticamentos os pagamentos até este "
-"montante."
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,search,entries:0
-msgid "Entries"
-msgstr "Movimentos"
-
-#. module: account_payment_extension
-#: field:payment.type,active:0
-msgid "Active"
-msgstr "Activo"
-
-#. module: account_payment_extension
-#: view:payment.order:0
-msgid "Select invoices to pay/receive payment"
-msgstr "Seleccionar facturas de pagamento para pagar/receber"
-
-#. module: account_payment_extension
-#: help:payment.line,payment_move_id:0
-msgid "Account move that pays this debt."
-msgstr "Movimento da conta que paga o seu débito."
-
-#. module: account_payment_extension
-#: help:populate_payment_ext,search,communication2:0
-msgid "The successor message of payment communication."
-msgstr "A mensagem sucessora de comunicação de pagamento."
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Payment"
-msgstr ""
-
-#. module: account_payment_extension
-#: field:payment.order,create_account_moves:0
-msgid "Create Account Moves"
-msgstr "Criar Movimentos de Conta"
-
-#. module: account_payment_extension
-#: field:payment.line,payment_move_id:0
-msgid "Payment Move"
-msgstr "Movimento do Pagamento"
-
-#. module: account_payment_extension
-#: field:payment.line,account_id:0
-msgid "Account"
-msgstr "Conta"
-
-#. module: account_payment_extension
-#: field:payment.type,suitable_bank_types:0
-msgid "Suitable bank types"
-msgstr ""
-
-#. module: account_payment_extension
-#: help:payment.mode,require_bank_account:0
-msgid ""
-"Ensure all lines in the payment order have a bank account when proposing "
-"lines to be added in the payment order."
-msgstr ""
-
-#. module: account_payment_extension
-#: field:payment.order,name:0
-#: field:payment.type,name:0
-msgid "Name"
-msgstr "Nome"
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,init,duedate:0
-msgid "Due Date"
-msgstr "Data da Dívida"
-
-#. module: account_payment_extension
-#: field:res.partner.bank,default_bank:0
-msgid "Default"
-msgstr "Padrão"
-
-#. module: account_payment_extension
-#: wizard_button:populate_payment_ext,init,search:0
-msgid "_Search"
-msgstr "_Search"
-
-#. module: account_payment_extension
-#: field:account.move.line,partner_bank_id:0
-msgid "Bank Account"
-msgstr "Conta Bancária"
-
-#. module: account_payment_extension
-#: wizard_button:populate_payment_ext,search,create:0
-msgid "_Add to payment order"
-msgstr "Adicionar para ordem de pagamento"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid "Invalid action!"
-msgstr "Acção inválida!"
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Unreconciled"
-msgstr ""
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid "Error!"
-msgstr "Erro !"
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,init,amount:0
-msgid "Amount"
-msgstr "Montante"
-
-#. module: account_payment_extension
-#: help:payment.mode,type:0
-msgid "Select the Payment Type for the Payment Mode."
-msgstr ""
-
-#. module: account_payment_extension
-#: view:account.bank.statement:0
-msgid "Import payment lines"
-msgstr "Importar linhas de pagamento"
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Payments"
-msgstr "Pagamentos"
-
-#. module: account_payment_extension
-#: field:res.partner,payment_type_supplier:0
-msgid "Supplier Payment Type"
-msgstr ""
-
-#. module: account_payment_extension
-#: help:res.partner,payment_type_customer:0
-msgid "Payment type of the customer"
-msgstr "Tipo de pagamento do cliente"
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_pay_payment_order_tree
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_pay_payment_order_form
-msgid "Pay. payment order"
-msgstr "Ordem de pagamento pagável"
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_invoice_payments
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_invoice_payments
-msgid "Invoice payments"
-msgstr "Factura de pagamentos"
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_done_payments
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_done_payments
-msgid "Done payments"
-msgstr "Pagamentos concluídos"
-
-#. module: account_payment_extension
-#: field:account.invoice,payment_type:0
-#: field:account.move.line,payment_type:0
-#: model:ir.model,name:account_payment_extension.model_payment_type
-#: field:payment.mode,type:0
-msgid "Payment type"
-msgstr "Tipo de pagamento"
-
-#. module: account_payment_extension
-#: field:payment.type,code:0
-msgid "Code"
-msgstr ""
-
-#. module: account_payment_extension
-#: view:res.partner:0
-msgid "Bank Details"
-msgstr "Detalhes Bancário"
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_res_partner_bank
-msgid "Bank Accounts"
-msgstr ""
-
-#. module: account_payment_extension
-#: field:payment.order,period_id:0
-msgid "Period"
-msgstr "Periodo"
-
-#. module: account_payment_extension
-#: selection:payment.order,create_account_moves:0
-msgid "Bank Statement"
-msgstr "Declaração Bancária"
-
-#. module: account_payment_extension
-#: help:res.partner,payment_type_supplier:0
-msgid "Payment type of the supplier"
-msgstr "Tipo de pagamento do fornecedor"
-
-#. module: account_payment_extension
-#: constraint:ir.model:0
-msgid ""
-"The Object name must start with x_ and not contain any special character !"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_account_move_line
-msgid "Journal Items"
-msgstr ""
-
-#. module: account_payment_extension
-#: help:account.move.line,received_check:0
-msgid ""
-"To write down that a check in paper support has been received, for example."
-msgstr ""
-"Para escrever se suporte de cheque de papel tiver sido recebido por exemplo."
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_account_invoice
-msgid "Invoice"
-msgstr ""
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Narration"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_res_partner
-msgid "Partner"
-msgstr ""
-
-#. module: account_payment_extension
-#: field:account.move.line,received_check:0
-msgid "Received check"
-msgstr "Cheque Recebido"
-
-#. module: account_payment_extension
-#: wizard_view:populate_payment_ext,init:0
-msgid "Search Payment lines"
-msgstr "Procurar linhas de pagamento"
-
-#. module: account_payment_extension
-#: sql_constraint:ir.model.fields:0
-msgid "Size of the field can never be less than 1 !"
-msgstr ""
-
-#. module: account_payment_extension
-#: help:payment.order,create_account_moves:0
-msgid ""
-"Indicates when account moves should be created for order payment lines. "
-"\"Bank Statement\" will wait until user introduces those payments in bank a "
-"bank statement. \"Direct Payment\" will mark all payment lines as payied "
-"once the order is done."
-msgstr ""
-"Indica quando movimentos de conta devem ser criadas para linhas de ordem de "
-"pagamento. \"Declaração Bancária\" vai esperar até o utilizador introduzir "
-"estes pagamentos no extrato bancário no banco. \" Pagamento Directo\" vai "
-"assinalar todas as linhas de pagamento como pagas uma vez a ordem for "
-"concluída."
-
-#. module: account_payment_extension
-#: model:ir.module.module,description:account_payment_extension.module_meta_information
-msgid ""
-"Account payment extension.\n"
-"\n"
-"This module extends the account_payment module with a lot of features:\n"
-"    * Extension of payment types: The payment type has a translated name and "
-"note that can be shown in the invoices.\n"
-"    * Two default payment types for partners (client and supplier).\n"
-"    * Automatic selection of payment type in invoices. Now an invoice can "
-"have a payment term (30 days, 30/60 days, ...) and a payment type (cash, "
-"bank transfer, ...).\n"
-"    * A default check field in partner bank accounts. The default partner "
-"bank accounts are selected in invoices and payments.\n"
-"    * New menu/tree/forms to see payments to receive and payments to pay.\n"
-"    * The payments show tree editable fields: Due date, bank account and a "
-"check field (for example to write down if a bank check in paper support has "
-"been received).\n"
-"    * Two types of payment orders: Payable payment orders (from supplier "
-"invoices) and receivable payment orders (from client invoices). So we can "
-"make payment orders to receive the payments of our client invoices. Each "
-"payment order type has its own sequence.\n"
-"    * The payment orders allow negative payment amounts. So we can have "
-"payment orders for supplier invoices (pay money) and refund supplier "
-"invoices (return or receive money). Or for client invoices (receive money) "
-"and refund client invoices (return or pay money).\n"
-"    * Payment orders: Selected invoices are filtered by payment type, the "
-"second message communication can be set at the same time for several "
-"invoices.\n"
-"Based on previous work of Pablo Rocandio & Zikzakmedia (version for 4.2).\n"
-msgstr ""
-"Conta prorrogação do pagamento.\n"
-"\n"
-"Este módulo extende o módulo account_payment com uma grande quantidade de "
-"recursos:\n"
-"    * Prorrogação de tipos de pagamento : O tipo de pagamento tem um nome "
-"traduzido e note que ser apresentado nas facturas.\n"
-"    * Dois tipos de pagamentos padrão para terceiros (Cliente e "
-"Fornecedor).\n"
-"    * Selecção automática de tipo de pagamento nas facturas. Agora uma "
-"factura pode ter um termo de pagamento ((30 dias, 30/60 dias, ...) e um tipo "
-"de pagamento (dinheiro transfreência bancária, ...).\n"
-"    * Um campo de verificação em contas bancária de terceiro. A conta "
-"bancária padrão do terceiro são selecionadas nas facturas e pagamentos.\n"
-"    * Novo menu/árvore/formulário para ver pagamentos para receber e "
-"pagamentos para pagar.\n"
-"    * Os pagamentos apresentam campos de árvores editavéis: Data da Dívida, "
-"conta bancária e um campo de verificação (por exemplo para escrever se um "
-"suporte de papel bancário tiver sido recebido).\n"
-"    * Dois tipos de ordens de pagamento : Ordens de pagamento pagáveis (a "
-"paritr de facturas de fornecedor) e ordens de pagamento recebíveis (a partir "
-"de facturas de cliente). Então pode -se efectuar as ordens de pagamento para "
-"recever os pagamentos das nossas facturas de clientes. Cada ordem de tipo de "
-"pagamento tem a sua propria sequência.\n"
-"    * As ordens de pagamento permitem  pagamentos de montante negactivo. "
-"Então podemos ter ordens de pagamento para facturas de fornecedot (pagar com "
-"dinheiro) e reembolsar as facturas do fornecedor (retornar ou receber "
-"dinheiro). Ou para facturas de clientes (dinheiro reccebido) e reembolsar "
-"facturas de cliente (retornar ou pagar com dinheiro).\n"
-"    * Ordens de pagamento: Facturas selecionadas são filtradas pelo tipo de "
-"pagamento a segunda mensagem de comunicação pode ser definida ao mesmo tempo "
-"para várias facturas.\n"
-"Baseado na previsão de trabalho de Pablo Rocando & Zikzakmedia (version for "
-"4.2).\n"
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,init,show_refunds:0
-msgid "Show Refunds"
-msgstr ""
-
-#. module: account_payment_extension
-#: help:populate_payment_ext,init,show_refunds:0
-msgid "Indicates if search should include refunds."
-msgstr ""
-
-#~ msgid "Invoice payments to pay"
-#~ msgstr "Factura de pagamento para pagar"
-
-#~ msgid "Payable payment orders"
-#~ msgstr "Ordens de pagamento pagavéis"
-
-#~ msgid "Done payable payments unreconciled"
-#~ msgstr "Concluído pagamento pagavél não reconciliado"
-
-#~ msgid "All received and to receive invoice payments"
-#~ msgstr "Todas as facturas de pagamentos recebidos e para receber"
-
-#~ msgid "Require bank account"
-#~ msgstr "Requerido conta bancária"
-
-#~ msgid "Draft rec. payment order"
-#~ msgstr "Rascunho de ordem de pagamento recebível"
-
-#~ msgid "Draft pay. payment order"
-#~ msgstr "Rascunho de ordem de pagamento pagável"
-
-#~ msgid "Receivable invoice payments"
-#~ msgstr "Factura de pagamentos Recebível"
-
-#~ msgid "Rec. payment orders to validate"
-#~ msgstr "Ordens de pagamento recebível para validar"
-
-#~ msgid ""
-#~ "If your bank allows you to send orders without the bank account info, you "
-#~ "may disable this option"
-#~ msgstr ""
-#~ "Se o seu banco permite enviar ordens sem a informação da conta bancária, "
-#~ "pode desactivar esta opção"
-
-#~ msgid "Receivable payment orders"
-#~ msgstr "Ordens de pagamento recebível"
-
-#~ msgid "All paid and to pay invoice payments"
-#~ msgstr "Todas as facturas de pagamentos pagos e por pagar"
-
-#~ msgid "Invoice payments to receive"
-#~ msgstr "Factura de pagamentos para receber"
-
-#~ msgid "Pay. payment orders to validate"
-#~ msgstr "Ordens de pagamento pagáveis para validar"
-
-#~ msgid "New Pay. payment Order"
-#~ msgstr "Nova Ordem de pagamento pagável"
-
-#~ msgid "Receivable payments unreconciled"
-#~ msgstr "Pagamentos Recebíveis não reconciliados"
-
-#~ msgid "All done payable payments"
-#~ msgstr "todos os pagamentos pagáveis concluidos"
-
-#~ msgid "Done receivable payments unreconciled"
-#~ msgstr "Pagamento recebíveis não reconciliados concluídos"
-
-#~ msgid "Payable payments"
-#~ msgstr "Pagamentos pagáveis"
-
-#~ msgid "Account Payment Extension"
-#~ msgstr "Extensão da Conta de Pagamento"
-
-#~ msgid "All done receivable payments"
-#~ msgstr "Todos os pagamentos recebíveis concluídos"
-
-#~ msgid "Payable invoice payments"
-#~ msgstr "Factura de pagamentos pagáveis"
-
-#~ msgid "Receivable payments"
-#~ msgstr "Pagamentos Recebível"
-
-#~ msgid "Payable payments unreconciled"
-#~ msgstr "Pagamentos pagáveis não reconciliados"
-
-#~ msgid "New rec. payment order"
-#~ msgstr "Nova ordem de pagamento recebível"

=== removed file 'account_payment_extension/i18n/pt_BR.po'
--- account_payment_extension/i18n/pt_BR.po	2012-12-11 10:06:23 +0000
+++ account_payment_extension/i18n/pt_BR.po	1970-01-01 00:00:00 +0000
@@ -1,507 +0,0 @@
-# Translation of OpenERP Server.
-# This file contains the translation of the following modules:
-#	* account_payment_extension
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: OpenERP Server 6.1beta\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-17 20:52+0000\n"
-"PO-Revision-Date: 2012-01-25 17:18+0000\n"
-"Last-Translator: Renato Lima - http://www.akretion.com "
-"<renatonlima@gmail.com>\n"
-"Language-Team: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-05-24 11:38+0000\n"
-"X-Generator: Launchpad (build 15288)\n"
-
-#. module: account_payment_extension
-#: selection:payment.order,type:0
-msgid "Receivable"
-msgstr "Recebível"
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_payment_type
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_payment_type
-#: view:payment.type:0
-#: help:payment.type,name:0
-msgid "Payment Type"
-msgstr "Tipo de Pagamento"
-
-#. module: account_payment_extension
-#: selection:payment.order,create_account_moves:0
-msgid "Direct Payment"
-msgstr "Pagamento Direto"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid ""
-"Payment order should create account moves but line with amount %.2f for "
-"partner \"%s\" has no account assigned."
-msgstr ""
-"Payment order should create account moves but line with amount %.2f for "
-"partner \"%s\" has no account assigned."
-
-#. module: account_payment_extension
-#: constraint:ir.actions.act_window:0
-msgid "Invalid model name in the action definition."
-msgstr ""
-
-#. module: account_payment_extension
-#: help:payment.type,code:0
-msgid "Specify the Code for Payment Type"
-msgstr "Especifique o código para o tipo de pagamento"
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Pay"
-msgstr "Pagar"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid ""
-"You cannot delete payment order(s) which are already confirmed or done!"
-msgstr ""
-"You cannot delete payment order(s) which are already confirmed or done!"
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_payment_order
-msgid "Payment Order"
-msgstr "Ordem de Pagamento"
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Receive"
-msgstr "Receber"
-
-#. module: account_payment_extension
-#: constraint:ir.ui.view:0
-msgid "Invalid XML for View Architecture!"
-msgstr ""
-
-#. module: account_payment_extension
-#: field:payment.mode,require_bank_account:0
-msgid "Require Bank Account"
-msgstr "Require Bank Account"
-
-#. module: account_payment_extension
-#: model:ir.actions.wizard,name:account_payment_extension.wizard_populate_statement_ext
-msgid "Populate Statement with Payment lines"
-msgstr "Populate Statement with Payment lines"
-
-#. module: account_payment_extension
-#: wizard_field:populate_statement_ext,init,lines:0
-msgid "Payment Lines"
-msgstr "Linhas de Pagamento"
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_payment_line
-msgid "Payment Line"
-msgstr "Linha de Pagamento"
-
-#. module: account_payment_extension
-#: constraint:ir.ui.menu:0
-msgid "Error ! You can not create recursive Menu."
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_payment_mode
-msgid "Payment Mode"
-msgstr "Modo de Pagamento"
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,search,communication2:0
-msgid "Communication 2"
-msgstr "Comunicação 2"
-
-#. module: account_payment_extension
-#: help:payment.type,note:0
-msgid "Description of the payment type that will be shown in the invoices"
-msgstr "Description of the payment type that will be shown in the invoices"
-
-#. module: account_payment_extension
-#: field:payment.order,type:0
-msgid "Type"
-msgstr "Tipo"
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Search Invoice Payments"
-msgstr "Pesquisar Pagamento de Documento Fiscal"
-
-#. module: account_payment_extension
-#: view:payment.type:0
-msgid "Suitable Bank Types"
-msgstr "Suitable Bank Types"
-
-#. module: account_payment_extension
-#: wizard_button:populate_statement_ext,init,add:0
-msgid "_Add"
-msgstr "_Adicionar"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid "Error !"
-msgstr "Erro !"
-
-#. module: account_payment_extension
-#: view:payment.type:0
-#: field:payment.type,note:0
-msgid "Description"
-msgstr "Descrição"
-
-#. module: account_payment_extension
-#: field:payment.type,company_id:0
-msgid "Company"
-msgstr "Empresa"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid "Account move line \"%s\" is not valid"
-msgstr "Account move line \"%s\" is not valid"
-
-#. module: account_payment_extension
-#: wizard_button:populate_payment_ext,init,end:0
-#: wizard_button:populate_payment_ext,search,end:0
-#: wizard_button:populate_statement_ext,init,end:0
-msgid "_Cancel"
-msgstr "_Cancelar"
-
-#. module: account_payment_extension
-#: field:payment.order,payment_type_name:0
-msgid "Payment type name"
-msgstr "Nome do Tipo de Pagamento"
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_rec_payment_order_tree
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_rec_payment_order_form
-msgid "Rec. payment order"
-msgstr "Ordem de Recebimento"
-
-#. module: account_payment_extension
-#: selection:payment.order,type:0
-msgid "Payable"
-msgstr "Pagágel"
-
-#. module: account_payment_extension
-#: model:ir.actions.wizard,name:account_payment_extension.wizard_populate_payment_ext
-msgid "Populate payment to pay"
-msgstr "Povoar Pagamentos para Pagar"
-
-#. module: account_payment_extension
-#: field:res.partner,payment_type_customer:0
-msgid "Customer Payment Type"
-msgstr "Tipo de Pagamento Cliente"
-
-#. module: account_payment_extension
-#: help:populate_payment_ext,init,amount:0
-msgid "Next step will automatically select payments up to this amount."
-msgstr ""
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,search,entries:0
-msgid "Entries"
-msgstr "Lançamentos"
-
-#. module: account_payment_extension
-#: field:payment.type,active:0
-msgid "Active"
-msgstr "Ativo"
-
-#. module: account_payment_extension
-#: view:payment.order:0
-msgid "Select invoices to pay/receive payment"
-msgstr "Documentos Pagar/Receber"
-
-#. module: account_payment_extension
-#: help:payment.line,payment_move_id:0
-msgid "Account move that pays this debt."
-msgstr "Account move that pays this debt."
-
-#. module: account_payment_extension
-#: help:populate_payment_ext,search,communication2:0
-msgid "The successor message of payment communication."
-msgstr "The successor message of payment communication."
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Payment"
-msgstr "Pagamento"
-
-#. module: account_payment_extension
-#: field:payment.order,create_account_moves:0
-msgid "Create Account Moves"
-msgstr "Movimentos Contábeis"
-
-#. module: account_payment_extension
-#: field:payment.line,payment_move_id:0
-msgid "Payment Move"
-msgstr "Payment Move"
-
-#. module: account_payment_extension
-#: field:payment.line,account_id:0
-msgid "Account"
-msgstr "Conta Contábil"
-
-#. module: account_payment_extension
-#: field:payment.type,suitable_bank_types:0
-msgid "Suitable bank types"
-msgstr "Suitable bank types"
-
-#. module: account_payment_extension
-#: help:payment.mode,require_bank_account:0
-msgid ""
-"Ensure all lines in the payment order have a bank account when proposing "
-"lines to be added in the payment order."
-msgstr ""
-"Ensure all lines in the payment order have a bank account when proposing "
-"lines to be added in the payment order."
-
-#. module: account_payment_extension
-#: field:payment.order,name:0
-#: field:payment.type,name:0
-msgid "Name"
-msgstr "Nome"
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,init,duedate:0
-msgid "Due Date"
-msgstr "Data de Vencimento"
-
-#. module: account_payment_extension
-#: field:res.partner.bank,default_bank:0
-msgid "Default"
-msgstr "Padrão"
-
-#. module: account_payment_extension
-#: wizard_button:populate_payment_ext,init,search:0
-msgid "_Search"
-msgstr "_Pesquisar"
-
-#. module: account_payment_extension
-#: field:account.move.line,partner_bank_id:0
-msgid "Bank Account"
-msgstr "Conta Bancária"
-
-#. module: account_payment_extension
-#: wizard_button:populate_payment_ext,search,create:0
-msgid "_Add to payment order"
-msgstr "_Adicionar na Ordem de Pagamento"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid "Invalid action!"
-msgstr "Ação Inválida!"
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Unreconciled"
-msgstr "Não Conciliado"
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid "Error!"
-msgstr "Erro!"
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,init,amount:0
-msgid "Amount"
-msgstr "Total"
-
-#. module: account_payment_extension
-#: help:payment.mode,type:0
-msgid "Select the Payment Type for the Payment Mode."
-msgstr "Select the Payment Type for the Payment Mode."
-
-#. module: account_payment_extension
-#: view:account.bank.statement:0
-msgid "Import payment lines"
-msgstr "Importar Linhas de Pagamento"
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Payments"
-msgstr "Pagamentos"
-
-#. module: account_payment_extension
-#: field:res.partner,payment_type_supplier:0
-msgid "Supplier Payment Type"
-msgstr "Tipo de Pagamento Fornecedor"
-
-#. module: account_payment_extension
-#: help:res.partner,payment_type_customer:0
-msgid "Payment type of the customer"
-msgstr "Tipo de Pagamento Cliente"
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_pay_payment_order_tree
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_pay_payment_order_form
-msgid "Pay. payment order"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_invoice_payments
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_invoice_payments
-msgid "Invoice payments"
-msgstr "Fluxo de Caixa"
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_done_payments
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_done_payments
-msgid "Done payments"
-msgstr "Pagamento Concluídos"
-
-#. module: account_payment_extension
-#: field:account.invoice,payment_type:0
-#: field:account.move.line,payment_type:0
-#: model:ir.model,name:account_payment_extension.model_payment_type
-#: field:payment.mode,type:0
-msgid "Payment type"
-msgstr "Tipo de Pagamento"
-
-#. module: account_payment_extension
-#: field:payment.type,code:0
-msgid "Code"
-msgstr "Código"
-
-#. module: account_payment_extension
-#: view:res.partner:0
-msgid "Bank Details"
-msgstr "Detalhes Bancário"
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_res_partner_bank
-msgid "Bank Accounts"
-msgstr "Contas Bancárias"
-
-#. module: account_payment_extension
-#: field:payment.order,period_id:0
-msgid "Period"
-msgstr "Período"
-
-#. module: account_payment_extension
-#: selection:payment.order,create_account_moves:0
-msgid "Bank Statement"
-msgstr "Extrato Bancário"
-
-#. module: account_payment_extension
-#: help:res.partner,payment_type_supplier:0
-msgid "Payment type of the supplier"
-msgstr "Tipo de Pagamento para o fornecedor"
-
-#. module: account_payment_extension
-#: constraint:ir.model:0
-msgid ""
-"The Object name must start with x_ and not contain any special character !"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_account_move_line
-msgid "Journal Items"
-msgstr "Itens do Diário"
-
-#. module: account_payment_extension
-#: help:account.move.line,received_check:0
-msgid ""
-"To write down that a check in paper support has been received, for example."
-msgstr ""
-"To write down that a check in paper support has been received, for example."
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_account_invoice
-msgid "Invoice"
-msgstr "Documento Fiscal"
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Narration"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_res_partner
-msgid "Partner"
-msgstr "Parceiro"
-
-#. module: account_payment_extension
-#: field:account.move.line,received_check:0
-msgid "Received check"
-msgstr "Received check"
-
-#. module: account_payment_extension
-#: wizard_view:populate_payment_ext,init:0
-msgid "Search Payment lines"
-msgstr "Pesquisar Linhas de Pagamento"
-
-#. module: account_payment_extension
-#: sql_constraint:ir.model.fields:0
-msgid "Size of the field can never be less than 1 !"
-msgstr ""
-
-#. module: account_payment_extension
-#: help:payment.order,create_account_moves:0
-msgid ""
-"Indicates when account moves should be created for order payment lines. "
-"\"Bank Statement\" will wait until user introduces those payments in bank a "
-"bank statement. \"Direct Payment\" will mark all payment lines as payied "
-"once the order is done."
-msgstr ""
-"Indicates when account moves should be created for order payment lines. "
-"\"Bank Statement\" will wait until user introduces those payments in bank a "
-"bank statement. \"Direct Payment\" will mark all payment lines as payied "
-"once the order is done."
-
-#. module: account_payment_extension
-#: model:ir.module.module,description:account_payment_extension.module_meta_information
-msgid ""
-"Account payment extension.\n"
-"\n"
-"This module extends the account_payment module with a lot of features:\n"
-"    * Extension of payment types: The payment type has a translated name and "
-"note that can be shown in the invoices.\n"
-"    * Two default payment types for partners (client and supplier).\n"
-"    * Automatic selection of payment type in invoices. Now an invoice can "
-"have a payment term (30 days, 30/60 days, ...) and a payment type (cash, "
-"bank transfer, ...).\n"
-"    * A default check field in partner bank accounts. The default partner "
-"bank accounts are selected in invoices and payments.\n"
-"    * New menu/tree/forms to see payments to receive and payments to pay.\n"
-"    * The payments show tree editable fields: Due date, bank account and a "
-"check field (for example to write down if a bank check in paper support has "
-"been received).\n"
-"    * Two types of payment orders: Payable payment orders (from supplier "
-"invoices) and receivable payment orders (from client invoices). So we can "
-"make payment orders to receive the payments of our client invoices. Each "
-"payment order type has its own sequence.\n"
-"    * The payment orders allow negative payment amounts. So we can have "
-"payment orders for supplier invoices (pay money) and refund supplier "
-"invoices (return or receive money). Or for client invoices (receive money) "
-"and refund client invoices (return or pay money).\n"
-"    * Payment orders: Selected invoices are filtered by payment type, the "
-"second message communication can be set at the same time for several "
-"invoices.\n"
-"Based on previous work of Pablo Rocandio & Zikzakmedia (version for 4.2).\n"
-msgstr ""
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,init,show_refunds:0
-msgid "Show Refunds"
-msgstr "Mostrar Devoluções"
-
-#. module: account_payment_extension
-#: help:populate_payment_ext,init,show_refunds:0
-msgid "Indicates if search should include refunds."
-msgstr "Indica se a pesquisa deve incluir devoluções."
-
-#~ msgid "Payable payments"
-#~ msgstr "Payable payments"
-
-#~ msgid "Receivable payments"
-#~ msgstr "Receivable payments"

=== removed file 'account_payment_extension/i18n/sv.po'
--- account_payment_extension/i18n/sv.po	2012-12-11 10:06:23 +0000
+++ account_payment_extension/i18n/sv.po	1970-01-01 00:00:00 +0000
@@ -1,517 +0,0 @@
-# Translation of OpenERP Server.
-# This file contains the translation of the following modules:
-#	* account_payment_extension
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: OpenERP Server 5.0.14\n"
-"Report-Msgid-Bugs-To: support@openerp.com\n"
-"POT-Creation-Date: 2010-12-17 20:52+0000\n"
-"PO-Revision-Date: 2010-11-23 01:16+0000\n"
-"Last-Translator: Olivier Dony (OpenERP) <Unknown>\n"
-"Language-Team: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-05-24 11:38+0000\n"
-"X-Generator: Launchpad (build 15288)\n"
-
-#. module: account_payment_extension
-#: selection:payment.order,type:0
-msgid "Receivable"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_payment_type
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_payment_type
-#: view:payment.type:0
-#: help:payment.type,name:0
-msgid "Payment Type"
-msgstr ""
-
-#. module: account_payment_extension
-#: selection:payment.order,create_account_moves:0
-msgid "Direct Payment"
-msgstr ""
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid ""
-"Payment order should create account moves but line with amount %.2f for "
-"partner \"%s\" has no account assigned."
-msgstr ""
-
-#. module: account_payment_extension
-#: constraint:ir.actions.act_window:0
-msgid "Invalid model name in the action definition."
-msgstr ""
-
-#. module: account_payment_extension
-#: help:payment.type,code:0
-msgid "Specify the Code for Payment Type"
-msgstr ""
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Pay"
-msgstr ""
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid ""
-"You cannot delete payment order(s) which are already confirmed or done!"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_payment_order
-msgid "Payment Order"
-msgstr ""
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Receive"
-msgstr ""
-
-#. module: account_payment_extension
-#: constraint:ir.ui.view:0
-msgid "Invalid XML for View Architecture!"
-msgstr ""
-
-#. module: account_payment_extension
-#: field:payment.mode,require_bank_account:0
-msgid "Require Bank Account"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.actions.wizard,name:account_payment_extension.wizard_populate_statement_ext
-msgid "Populate Statement with Payment lines"
-msgstr ""
-
-#. module: account_payment_extension
-#: wizard_field:populate_statement_ext,init,lines:0
-msgid "Payment Lines"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_payment_line
-msgid "Payment Line"
-msgstr ""
-
-#. module: account_payment_extension
-#: constraint:ir.ui.menu:0
-msgid "Error ! You can not create recursive Menu."
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_payment_mode
-msgid "Payment Mode"
-msgstr ""
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,search,communication2:0
-msgid "Communication 2"
-msgstr ""
-
-#. module: account_payment_extension
-#: help:payment.type,note:0
-msgid "Description of the payment type that will be shown in the invoices"
-msgstr ""
-
-#. module: account_payment_extension
-#: field:payment.order,type:0
-msgid "Type"
-msgstr ""
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Search Invoice Payments"
-msgstr ""
-
-#. module: account_payment_extension
-#: view:payment.type:0
-msgid "Suitable Bank Types"
-msgstr ""
-
-#. module: account_payment_extension
-#: wizard_button:populate_statement_ext,init,add:0
-msgid "_Add"
-msgstr ""
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid "Error !"
-msgstr ""
-
-#. module: account_payment_extension
-#: view:payment.type:0
-#: field:payment.type,note:0
-msgid "Description"
-msgstr ""
-
-#. module: account_payment_extension
-#: field:payment.type,company_id:0
-msgid "Company"
-msgstr ""
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid "Account move line \"%s\" is not valid"
-msgstr ""
-
-#. module: account_payment_extension
-#: wizard_button:populate_payment_ext,init,end:0
-#: wizard_button:populate_payment_ext,search,end:0
-#: wizard_button:populate_statement_ext,init,end:0
-msgid "_Cancel"
-msgstr ""
-
-#. module: account_payment_extension
-#: field:payment.order,payment_type_name:0
-msgid "Payment type name"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_rec_payment_order_tree
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_rec_payment_order_form
-msgid "Rec. payment order"
-msgstr ""
-
-#. module: account_payment_extension
-#: selection:payment.order,type:0
-msgid "Payable"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.actions.wizard,name:account_payment_extension.wizard_populate_payment_ext
-msgid "Populate payment to pay"
-msgstr ""
-
-#. module: account_payment_extension
-#: field:res.partner,payment_type_customer:0
-msgid "Customer Payment Type"
-msgstr ""
-
-#. module: account_payment_extension
-#: help:populate_payment_ext,init,amount:0
-msgid "Next step will automatically select payments up to this amount."
-msgstr ""
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,search,entries:0
-msgid "Entries"
-msgstr ""
-
-#. module: account_payment_extension
-#: field:payment.type,active:0
-msgid "Active"
-msgstr ""
-
-#. module: account_payment_extension
-#: view:payment.order:0
-msgid "Select invoices to pay/receive payment"
-msgstr ""
-
-#. module: account_payment_extension
-#: help:payment.line,payment_move_id:0
-msgid "Account move that pays this debt."
-msgstr ""
-
-#. module: account_payment_extension
-#: help:populate_payment_ext,search,communication2:0
-msgid "The successor message of payment communication."
-msgstr ""
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Payment"
-msgstr ""
-
-#. module: account_payment_extension
-#: field:payment.order,create_account_moves:0
-msgid "Create Account Moves"
-msgstr ""
-
-#. module: account_payment_extension
-#: field:payment.line,payment_move_id:0
-msgid "Payment Move"
-msgstr ""
-
-#. module: account_payment_extension
-#: field:payment.line,account_id:0
-msgid "Account"
-msgstr ""
-
-#. module: account_payment_extension
-#: field:payment.type,suitable_bank_types:0
-msgid "Suitable bank types"
-msgstr ""
-
-#. module: account_payment_extension
-#: help:payment.mode,require_bank_account:0
-msgid ""
-"Ensure all lines in the payment order have a bank account when proposing "
-"lines to be added in the payment order."
-msgstr ""
-
-#. module: account_payment_extension
-#: field:payment.order,name:0
-#: field:payment.type,name:0
-msgid "Name"
-msgstr ""
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,init,duedate:0
-msgid "Due Date"
-msgstr ""
-
-#. module: account_payment_extension
-#: field:res.partner.bank,default_bank:0
-msgid "Default"
-msgstr ""
-
-#. module: account_payment_extension
-#: wizard_button:populate_payment_ext,init,search:0
-msgid "_Search"
-msgstr ""
-
-#. module: account_payment_extension
-#: field:account.move.line,partner_bank_id:0
-msgid "Bank Account"
-msgstr ""
-
-#. module: account_payment_extension
-#: wizard_button:populate_payment_ext,search,create:0
-msgid "_Add to payment order"
-msgstr ""
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid "Invalid action!"
-msgstr ""
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Unreconciled"
-msgstr ""
-
-#. module: account_payment_extension
-#: code:addons/account_payment_extension/payment.py:0
-#, python-format
-msgid "Error!"
-msgstr ""
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,init,amount:0
-msgid "Amount"
-msgstr ""
-
-#. module: account_payment_extension
-#: help:payment.mode,type:0
-msgid "Select the Payment Type for the Payment Mode."
-msgstr ""
-
-#. module: account_payment_extension
-#: view:account.bank.statement:0
-msgid "Import payment lines"
-msgstr ""
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Payments"
-msgstr ""
-
-#. module: account_payment_extension
-#: field:res.partner,payment_type_supplier:0
-msgid "Supplier Payment Type"
-msgstr ""
-
-#. module: account_payment_extension
-#: help:res.partner,payment_type_customer:0
-msgid "Payment type of the customer"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_pay_payment_order_tree
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_pay_payment_order_form
-msgid "Pay. payment order"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_invoice_payments
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_invoice_payments
-msgid "Invoice payments"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.actions.act_window,name:account_payment_extension.action_done_payments
-#: model:ir.ui.menu,name:account_payment_extension.menu_action_done_payments
-msgid "Done payments"
-msgstr ""
-
-#. module: account_payment_extension
-#: field:account.invoice,payment_type:0
-#: field:account.move.line,payment_type:0
-#: model:ir.model,name:account_payment_extension.model_payment_type
-#: field:payment.mode,type:0
-msgid "Payment type"
-msgstr ""
-
-#. module: account_payment_extension
-#: field:payment.type,code:0
-msgid "Code"
-msgstr ""
-
-#. module: account_payment_extension
-#: view:res.partner:0
-msgid "Bank Details"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_res_partner_bank
-msgid "Bank Accounts"
-msgstr ""
-
-#. module: account_payment_extension
-#: field:payment.order,period_id:0
-msgid "Period"
-msgstr ""
-
-#. module: account_payment_extension
-#: selection:payment.order,create_account_moves:0
-msgid "Bank Statement"
-msgstr ""
-
-#. module: account_payment_extension
-#: help:res.partner,payment_type_supplier:0
-msgid "Payment type of the supplier"
-msgstr ""
-
-#. module: account_payment_extension
-#: constraint:ir.model:0
-msgid ""
-"The Object name must start with x_ and not contain any special character !"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_account_move_line
-msgid "Journal Items"
-msgstr ""
-
-#. module: account_payment_extension
-#: help:account.move.line,received_check:0
-msgid ""
-"To write down that a check in paper support has been received, for example."
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_account_invoice
-msgid "Invoice"
-msgstr ""
-
-#. module: account_payment_extension
-#: view:account.move.line:0
-msgid "Narration"
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.model,name:account_payment_extension.model_res_partner
-msgid "Partner"
-msgstr ""
-
-#. module: account_payment_extension
-#: field:account.move.line,received_check:0
-msgid "Received check"
-msgstr ""
-
-#. module: account_payment_extension
-#: wizard_view:populate_payment_ext,init:0
-msgid "Search Payment lines"
-msgstr ""
-
-#. module: account_payment_extension
-#: sql_constraint:ir.model.fields:0
-msgid "Size of the field can never be less than 1 !"
-msgstr ""
-
-#. module: account_payment_extension
-#: help:payment.order,create_account_moves:0
-msgid ""
-"Indicates when account moves should be created for order payment lines. "
-"\"Bank Statement\" will wait until user introduces those payments in bank a "
-"bank statement. \"Direct Payment\" will mark all payment lines as payied "
-"once the order is done."
-msgstr ""
-
-#. module: account_payment_extension
-#: model:ir.module.module,description:account_payment_extension.module_meta_information
-msgid ""
-"Account payment extension.\n"
-"\n"
-"This module extends the account_payment module with a lot of features:\n"
-"    * Extension of payment types: The payment type has a translated name and "
-"note that can be shown in the invoices.\n"
-"    * Two default payment types for partners (client and supplier).\n"
-"    * Automatic selection of payment type in invoices. Now an invoice can "
-"have a payment term (30 days, 30/60 days, ...) and a payment type (cash, "
-"bank transfer, ...).\n"
-"    * A default check field in partner bank accounts. The default partner "
-"bank accounts are selected in invoices and payments.\n"
-"    * New menu/tree/forms to see payments to receive and payments to pay.\n"
-"    * The payments show tree editable fields: Due date, bank account and a "
-"check field (for example to write down if a bank check in paper support has "
-"been received).\n"
-"    * Two types of payment orders: Payable payment orders (from supplier "
-"invoices) and receivable payment orders (from client invoices). So we can "
-"make payment orders to receive the payments of our client invoices. Each "
-"payment order type has its own sequence.\n"
-"    * The payment orders allow negative payment amounts. So we can have "
-"payment orders for supplier invoices (pay money) and refund supplier "
-"invoices (return or receive money). Or for client invoices (receive money) "
-"and refund client invoices (return or pay money).\n"
-"    * Payment orders: Selected invoices are filtered by payment type, the "
-"second message communication can be set at the same time for several "
-"invoices.\n"
-"Based on previous work of Pablo Rocandio & Zikzakmedia (version for 4.2).\n"
-msgstr ""
-"Account payment extension.\n"
-"\n"
-"This module extends the account_payment module with a lot of features:\n"
-"    * Extension of payment types: The payment type has a translated name and "
-"note that can be shown in the invoices.\n"
-"    * Two default payment types for partners (client and supplier).\n"
-"    * Automatic selection of payment type in invoices. Now an invoice can "
-"have a payment term (30 days, 30/60 days, ...) and a payment type (cash, "
-"bank transfer, ...).\n"
-"    * A default check field in partner bank accounts. The default partner "
-"bank accounts are selected in invoices and payments.\n"
-"    * New menu/tree/forms to see payments to receive and payments to pay.\n"
-"    * The payments show tree editable fields: Due date, bank account and a "
-"check field (for example to write down if a bank check in paper support has "
-"been received).\n"
-"    * Two types of payment orders: Payable payment orders (from supplier "
-"invoices) and receivable payment orders (from client invoices). So we can "
-"make payment orders to receive the payments of our client invoices. Each "
-"payment order type has its own sequence.\n"
-"    * The payment orders allow negative payment amounts. So we can have "
-"payment orders for supplier invoices (pay money) and refund supplier "
-"invoices (return or receive money). Or for client invoices (receive money) "
-"and refund client invoices (return or pay money).\n"
-"    * Payment orders: Selected invoices are filtered by payment type, the "
-"second message communication can be set at the same time for several "
-"invoices.\n"
-"Based on previous work of Pablo Rocandio & Zikzakmedia (version for 4.2).\n"
-
-#. module: account_payment_extension
-#: wizard_field:populate_payment_ext,init,show_refunds:0
-msgid "Show Refunds"
-msgstr ""
-
-#. module: account_payment_extension
-#: help:populate_payment_ext,init,show_refunds:0
-msgid "Indicates if search should include refunds."
-msgstr ""

=== removed file 'account_payment_extension/payment.py'
--- account_payment_extension/payment.py	2012-12-11 10:06:23 +0000
+++ account_payment_extension/payment.py	1970-01-01 00:00:00 +0000
@@ -1,380 +0,0 @@
-# -*- encoding: utf-8 -*-
-##############################################################################
-#
-#    OpenERP, Open Source Management Solution
-#    Copyright (c) 2008 Zikzakmedia S.L. (http://zikzakmedia.com) All Rights Reserved.
-#                       Jordi Esteve <jesteve@zikzakmedia.com>
-#    AvanzOSC, Avanzed Open Source Consulting 
-#    Copyright (C) 2011-2012 Iker Coranti (www.avanzosc.com). All Rights Reserved
-#    $Id$
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-##############################################################################
-
-import time
-import netsvc
-from osv import fields, osv
-from tools.translate import _
-import decimal_precision as dp
-
-class payment_type(osv.osv):
-    _name= 'payment.type'
-    _description= 'Payment type'
-    _columns= {
-        'name': fields.char('Name', size=64, required=True, help='Payment Type', translate=True),
-        'code': fields.char('Code', size=64, required=True, help='Specify the Code for Payment Type'),
-        'suitable_bank_types': fields.many2many('res.partner.bank.type','bank_type_payment_type_rel','pay_type_id','bank_type_id','Suitable bank types'),
-        'active': fields.boolean('Active', select=True),
-        'note': fields.text('Description', translate=True, help="Description of the payment type that will be shown in the invoices"),
-        'company_id': fields.many2one('res.company', 'Company', required=True),
-    }
-    
-    _defaults = {
-        'active': lambda *a: 1,
-        'company_id': lambda self,cr,uid,c: self.pool.get('res.users').browse(cr, uid, uid, c).company_id.id
-    }
-
-payment_type()
-
-
-class payment_mode(osv.osv):
-    _inherit = 'payment.mode'
-    _columns = {
-        'type': fields.many2one('payment.type', 'Payment type', required=True, help='Select the Payment Type for the Payment Mode.'),
-        'require_bank_account': fields.boolean('Require Bank Account', help='Ensure all lines in the payment order have a bank account when proposing lines to be added in the payment order.'),
-        'require_received_check': fields.boolean('Require Received Check', help='Ensure all lines in the payment order have the Received Check flag set.'),
-        'require_same_bank_account': fields.boolean('Require the Same Bank Account', help='Ensure all lines in the payment order and the payment mode have the same account number.'),
-    }
-    _defaults = {
-        'require_bank_account': lambda *a: False,
-    }
-payment_mode()
-
-
-class res_partner(osv.osv):
-    _inherit='res.partner'
-    _columns={
-        'payment_type_customer': fields.property('payment.type', type='many2one', relation='payment.type', string ='Customer Payment Type', method=True, view_load=True, help="Payment type of the customer"),
-        'payment_type_supplier': fields.property('payment.type', type='many2one', relation='payment.type', string ='Supplier Payment Type', method=True, view_load=True, help="Payment type of the supplier"),
-    }
-res_partner()
-
-
-class res_partner_bank(osv.osv):
-    _inherit="res.partner.bank"
-
-    def create(self, cr, uid, vals, context=None):
-        if vals.get('default_bank') and vals.get('partner_id') and vals.get('state'):
-            sql = "UPDATE res_partner_bank SET default_bank='0' WHERE partner_id=%i AND default_bank='1' AND state='%s'" % (vals['partner_id'], vals['state'])
-            cr.execute(sql)
-        return super(res_partner_bank, self).create(cr, uid, vals, context=context)
-
-    def write(self, cr, uid, ids, vals, context=None):
-        if 'default_bank' in vals and vals['default_bank'] == True:
-            partner_bank = self.pool.get('res.partner.bank').browse(cr, uid, ids)[0]
-            partner_id = partner_bank.partner_id.id
-            if 'state' in vals and vals['state']:
-                state = vals['state']
-            else:
-                state = partner_bank.state
-            sql = "UPDATE res_partner_bank SET default_bank='0' WHERE partner_id=%i AND default_bank='1' AND state='%s' AND id<>%i" % (partner_id, state, ids[0])
-            cr.execute(sql)
-        return super(res_partner_bank, self).write(cr, uid, ids, vals, context=context)
-
-   
-    _columns = {
-        'default_bank' : fields.boolean('Default'),
-    }
-
-res_partner_bank()
-
-
-class payment_order(osv.osv):
-    _name = 'payment.order'
-    _inherit = 'payment.order'
-
-    def _get_type(self, cr, uid, context=None):
-        if context is None:
-            context = {}
-        return context.get('type', 'payable')
-
-    def _get_reference(self, cr, uid, context=None):
-        if context is None:
-            context = {}
-        type = context.get('type', 'payable')
-        model = type == 'payable' and 'payment.order' or 'rec.payment.order'
-        return self.pool.get('ir.sequence').get(cr, uid, model)
-
-    def _get_period(self, cr, uid, context=None):
-        try:
-            # find() function will throw an exception if no period can be found for
-            # current date. That should not be a problem because user would be notified
-            # but as this model inherits an existing one, once installed it will create 
-            # the new field and try to update existing records (even if there are no records yet)
-            # So we must ensure no exception is thrown, otherwise the module can only be installed
-            # once periods are created.
-            periods = self.pool.get('account.period').find(cr, uid)
-            return periods[0]
-        except Exception, e:
-            return False
-
-    def _payment_type_name_get(self, cr, uid, ids, field_name, arg, context=None):
-        result = {}
-        for rec in self.browse(cr, uid, ids, context):
-            result[rec.id] = rec.mode and rec.mode.type.name or ""
-        return result
-
-    def _name_get(self, cr, uid, ids, field_name, arg, context=None):
-        result = {}
-        for rec in self.browse(cr, uid, ids, context):
-            result[rec.id] = rec.reference
-        return result
-
-    _columns = {
-        'type': fields.selection([
-            ('payable','Payable'),
-            ('receivable','Receivable'),
-            ],'Type', readonly=True, select=True),
-        # invisible field to filter payment order lines by payment type
-        'payment_type_name': fields.function(_payment_type_name_get, method=True, type="char", size=64, string="Payment type name"),
-        # The field name is necessary to add attachement documents to payment orders
-        'name': fields.function(_name_get, method=True, type="char", size=64, string="Name"),
-        'create_account_moves': fields.selection([('bank-statement','Bank Statement'),('direct-payment','Direct Payment')],
-                                                 'Create Account Moves',
-                                                 required=True,
-                                                 states={'done':[('readonly',True)]},
-                                                 help='Indicates when account moves should be created for order payment lines. "Bank Statement" '\
-                                                      'will wait until user introduces those payments in bank a bank statement. "Direct Payment" '\
-                                                      'will mark all payment lines as payied once the order is done.'),
-        'period_id': fields.many2one('account.period', 'Period', states={'done':[('readonly',True)]}),
-    }
-    _defaults = {
-        'type': _get_type,
-        'reference': _get_reference,
-        'create_account_moves': lambda *a: 'bank-statement',
-        'period_id': _get_period,
-    }
-
-    def cancel_from_done(self, cr, uid, ids, context=None):
-        if context is None:
-            context = {}
-
-        #Search for account_moves
-        remove = []
-        for move in self.browse(cr,uid,ids,context):
-            #Search for any line
-            for line in move.line_ids:
-                if line.payment_move_id:
-                    remove += [ line.payment_move_id.id ]
-        
-        self.pool.get('account.move').button_cancel( cr, uid, remove, context=context)
-        self.pool.get('account.move').unlink(cr, uid, remove, context)
-        self.write( cr, uid, ids, {
-            'state':'cancel'
-        },context=context)
-        return True
-
-    def unlink(self, cr, uid, ids, context=None):
-        pay_orders = self.read(cr, uid, ids, ['state'], context=context)
-        unlink_ids = []
-        for t in pay_orders:
-            if t['state'] in ('draft', 'cancel'):
-                unlink_ids.append(t['id'])
-            else:
-                raise osv.except_osv(_('Invalid action!'), _('You cannot delete payment order(s) which are already confirmed or done!'))
-        result = super(payment_order, self).unlink(cr, uid, unlink_ids, context=context)
-        return result
-
-    def set_done(self, cr, uid, ids, context=None):
-        result = super(payment_order, self).set_done(cr, uid, ids, context)
-
-        company_currency_id = self.pool.get('res.users').browse(cr, uid, uid, context).company_id.currency_id.id
-
-        for order in self.browse(cr, uid, ids, context):
-            if order.create_account_moves != 'direct-payment':
-                continue
-
-            # This process creates a simple account move with bank and line accounts and line's amount. At the end
-            # it will reconcile or partial reconcile both entries if that is possible.
-
-            move_id = self.pool.get('account.move').create(cr, uid, {
-                'name': '/',
-                'journal_id': order.mode.journal.id,
-                'period_id': order.period_id.id,
-            }, context)
-
-            for line in order.line_ids:
-                if not line.amount:
-                    continue
-
-                if not line.account_id:
-                    raise osv.except_osv(_('Error!'), _('Payment order should create account moves but line with amount %.2f for partner "%s" has no account assigned.') % (line.amount, line.partner_id.name ) )
-
-                currency_id = order.mode.journal.currency and order.mode.journal.currency.id or company_currency_id
-
-                if line.type == 'payable':
-                    line_amount = line.amount_currency or line.amount
-                else:
-                    line_amount = -line.amount_currency or -line.amount
-                    
-                if line_amount >= 0:
-                    account_id = order.mode.journal.default_credit_account_id.id
-                else:
-                    account_id = order.mode.journal.default_debit_account_id.id
-                acc_cur = ((line_amount<=0) and order.mode.journal.default_debit_account_id) or line.account_id
-
-                ctx = context.copy()
-                ctx['res.currency.compute.account'] = acc_cur
-                amount = self.pool.get('res.currency').compute(cr, uid, currency_id, company_currency_id, line_amount, context=ctx)
-
-                val = {
-                    'name': line.move_line_id and line.move_line_id.name or '/',
-                    'move_id': move_id,
-                    'date': order.date_done,
-                    'ref': line.move_line_id and line.move_line_id.ref or False,
-                    'partner_id': line.partner_id and line.partner_id.id or False,
-                    'account_id': line.account_id.id,
-                    'debit': ((amount>0) and amount) or 0.0,
-                    'credit': ((amount<0) and -amount) or 0.0,
-                    'journal_id': order.mode.journal.id,
-                    'period_id': order.period_id.id,
-                    'currency_id': currency_id,
-                }
-                
-                amount = self.pool.get('res.currency').compute(cr, uid, currency_id, company_currency_id, line_amount, context=ctx)
-                if currency_id <> company_currency_id:
-                    amount_cur = self.pool.get('res.currency').compute(cr, uid, company_currency_id, currency_id, amount, context=ctx)
-                    val['amount_currency'] = -amount_cur
-
-                if line.account_id and line.account_id.currency_id and line.account_id.currency_id.id <> company_currency_id:
-                    val['currency_id'] = line.account_id.currency_id.id
-                    if company_currency_id == line.account_id.currency_id.id:
-                        amount_cur = line_amount
-                    else:
-                        amount_cur = self.pool.get('res.currency').compute(cr, uid, company_currency_id, line.account_id.currency_id.id, amount, context=ctx)
-                    val['amount_currency'] = amount_cur
-
-                partner_line_id = self.pool.get('account.move.line').create(cr, uid, val, context, check=False)
-
-                # Fill the secondary amount/currency
-                # if currency is not the same than the company
-                if currency_id <> company_currency_id:
-                    amount_currency = line_amount
-                    move_currency_id = currency_id
-                else:
-                    amount_currency = False
-                    move_currency_id = False
-
-                self.pool.get('account.move.line').create(cr, uid, {
-                    'name': line.move_line_id and line.move_line_id.name or '/',
-                    'move_id': move_id,
-                    'date': order.date_done,
-                    'ref': line.move_line_id and line.move_line_id.ref or False,
-                    'partner_id': line.partner_id and line.partner_id.id or False,
-                    'account_id': account_id,
-                    'debit': ((amount < 0) and -amount) or 0.0,
-                    'credit': ((amount > 0) and amount) or 0.0,
-                    'journal_id': order.mode.journal.id,
-                    'period_id': order.period_id.id,
-                    'amount_currency': amount_currency,
-                    'currency_id': move_currency_id,
-                }, context)
-
-                aml_ids = [x.id for x in self.pool.get('account.move').browse(cr, uid, move_id, context).line_id]
-                for x in self.pool.get('account.move.line').browse(cr, uid, aml_ids, context):
-                    if x.state <> 'valid':
-                        raise osv.except_osv(_('Error !'), _('Account move line "%s" is not valid') % x.name)
-
-                if line.move_line_id and not line.move_line_id.reconcile_id:
-                    # If payment line has a related move line, we try to reconcile it with the move we just created.
-                    lines_to_reconcile = [
-                        partner_line_id,
-                    ]
-
-                    # Check if payment line move is already partially reconciled and use those moves in that case.
-                    if line.move_line_id.reconcile_partial_id:
-                        for rline in line.move_line_id.reconcile_partial_id.line_partial_ids:
-                            lines_to_reconcile.append( rline.id )
-                    else:
-                        lines_to_reconcile.append( line.move_line_id.id )
-
-                    amount = 0.0
-                    for rline in self.pool.get('account.move.line').browse(cr, uid, lines_to_reconcile, context):
-                        amount += rline.debit - rline.credit
-
-                    currency = self.pool.get('res.users').browse(cr, uid, uid, context).company_id.currency_id
-
-                    if self.pool.get('res.currency').is_zero(cr, uid, currency, amount):
-                        self.pool.get('account.move.line').reconcile(cr, uid, lines_to_reconcile, 'payment', context=context)
-                    else:
-                        self.pool.get('account.move.line').reconcile_partial(cr, uid, lines_to_reconcile, 'payment', context)
-
-                if order.mode.journal.entry_posted:
-                    self.pool.get('account.move').write(cr, uid, [move_id], {
-                        'state':'posted',
-                    }, context)
-
-                self.pool.get('payment.line').write(cr, uid, [line.id], {
-                    'payment_move_id': move_id,
-                }, context)
-
-        return result
-
-payment_order()
-
-
-class payment_line(osv.osv):
-    _name = 'payment.line'
-    _inherit = 'payment.line'
-
-    def _auto_init(self, cr, context=None):
-        cr.execute("SELECT column_name FROM information_schema.columns WHERE table_name = 'payment_line' and column_name='type'")
-        if cr.fetchone():
-            update_sign = False
-        else:
-            update_sign = True
-        result = super(payment_line, self)._auto_init(cr, context=context)
-
-        if update_sign:
-            # Ensure related store value of field 'type' is updated in the database.
-            # Note that by forcing the update here we also ensure everything is done in the same transaction.
-            # Because addons/__init__.py will execute a commit just after creating table fields.
-            result.sort()
-            for item in result:
-                item[1](cr, *item[2])
-            # Change sign of 'receivable' payment lines
-            cr.execute("UPDATE payment_line SET amount_currency = -amount_currency WHERE type='receivable'")
-        return result
-
-    _columns = {
-        'move_line_id': fields.many2one('account.move.line', 'Entry line', domain="[('reconcile_id','=', False), ('amount_to_pay','<>',0), ('account_id.type','=',parent.type),('payment_type','ilike',parent.payment_type_name or '%')]", help='This Entry Line will be referred for the information of the ordering customer.'),
-        'payment_move_id': fields.many2one('account.move', 'Payment Move', readonly=True, help='Account move that pays this debt.'),
-        'account_id': fields.many2one('account.account', 'Account'),
-        'type': fields.related('order_id','type', type='selection', selection=[('payable','Payable'),('receivable','Receivable')], readonly=True, store=True, string='Type'),
-    }
-
-    def onchange_move_line(self, cr, uid, ids, move_line_id, payment_type, date_prefered, date_scheduled, currency=False, company_currency=False, context=None):
-        # Adds account.move.line name to the payment line communication
-        res = super(payment_line, self).onchange_move_line(cr, uid, ids, move_line_id, payment_type, date_prefered, date_scheduled, currency, company_currency, context)
-        if move_line_id:
-            line = self.pool.get('account.move.line').browse(cr, uid, move_line_id)
-            if line.name != '/':
-                res['value']['communication'] = res['value']['communication'] + '. ' + line.name
-            res['value']['account_id'] = line.account_id.id
-        return res
-
-payment_line()
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed file 'account_payment_extension/payment_sequence.xml'
--- account_payment_extension/payment_sequence.xml	2012-12-11 10:06:23 +0000
+++ account_payment_extension/payment_sequence.xml	1970-01-01 00:00:00 +0000
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<openerp>
-    <data noupdate="1">
-        <record forcecreate="1" id="seq_type_rec_payment_order" model="ir.sequence.type">
-            <field name="name">Receivable payment order</field>
-            <field name="code">rec.payment.order</field>
-        </record>
-
-        <record forcecreate="1" id="seq_rec_payment_order" model="ir.sequence">
-            <field name="name">Receivable payment order</field>
-            <field name="code">rec.payment.order</field>
-            <field eval="3" name="padding"/>
-            <field name="prefix">%(year)s/</field>
-        </record>
-    </data>
-</openerp>

=== removed file 'account_payment_extension/payment_view.xml'
--- account_payment_extension/payment_view.xml	2012-12-11 10:06:23 +0000
+++ account_payment_extension/payment_view.xml	1970-01-01 00:00:00 +0000
@@ -1,432 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<openerp>
-<data>
-
-    <!--
-    ========================================================================================================
-		PARTNERS - default bank 
-	========================================================================================================
-	-->
-    <record model="ir.ui.view" id="view_partner_form">
-        <field name="model">res.partner</field>
-        <field name="inherit_id" ref="account.view_partner_property_form"/>
-        <field name="arch" type="xml">
-            <field name="acc_number" position="after">
-                  <field name="default_bank"/>
-            </field>
-        </field>
-    </record>
-
-    <record model="ir.ui.view" id="view_partner_form2">
-        <field name="model">res.partner</field>
-        <field name="inherit_id" ref="account.view_partner_property_form"/>
-        <field name="arch" type="xml">
-            <tree string="Bank Details" position="inside">
-                <field name="default_bank"/>
-            </tree>
-        </field>
-    </record>
-
-    <record model="ir.ui.view" id="view_partner_form3">
-        <field name="name">view.partner.form3</field>
-        <field name="model">res.partner.bank</field>
-        <field name="inherit_id" ref="base.view_partner_bank_form"/>
-        <field name="arch" type="xml">
-            <field name="acc_number" position="after">
-                <field name="default_bank"/>
-            </field>
-        </field>
-    </record>
-
-    <record model="ir.ui.view" id="view_partner_bank_tree">
-        <field name="name">view.partner.bank.tree </field>
-        <field name="model">res.partner.bank</field>
-        <field name="inherit_id" ref="base.view_partner_bank_tree"/>
-        <field name="arch" type="xml">
-            <field name="partner_id" position="before">
-                <field name="default_bank"/>
-            </field>
-        </field>
-    </record>
-
-
-    <!--
-	====================================================================================================
-		PARTNERS - payment type 
-	====================================================================================================	
-	-->
-    <record model="ir.ui.view" id="view_payment_type_res_partner_form1">
-        <field name="name">res.partner.form.payment_type1</field>
-        <field name="model">res.partner</field>
-        <field name="type">form</field>
-        <field name="inherit_id" ref="account.view_partner_property_form"/>
-        <field name="priority" eval="20"/>
-        <field name="arch" type="xml">
-            <field name="property_account_receivable" position="after">
-                <field name="payment_type_customer" widget="selection"/>
-            </field>
-        </field>
-    </record>
-
-    <record model="ir.ui.view" id="view_payment_type_res_partner_form2">
-        <field name="name">res.partner.form.payment_type2</field>
-        <field name="model">res.partner</field>
-        <field name="type">form</field>
-        <field name="inherit_id" ref="account.view_partner_property_form"/>
-        <field name="priority" eval="20"/>
-        <field name="arch" type="xml">
-            <field name="property_account_payable" position="after">
-                <field name="payment_type_supplier" widget="selection"/>
-            </field>
-        </field>
-    </record>
-
-
-    <!--
-    =====================================================================================================
-		PAYMENT TYPE
-	=====================================================================================================
-	-->
-        <record model="ir.ui.view" id="view_payment_type_tree">
-        <field name="name">payment.type.tree</field>
-        <field name="model">payment.type</field>
-        <field name="type">tree</field>
-        <field name="arch" type="xml">
-            <tree string="Payment Type">
-                <field name="name"/>
-                <field name="code"/>
-                <field name="active"/>
-                <field name="company_id" groups="base.group_multi_company"/>
-            </tree>
-        </field>
-    </record>
-
-    <record model="ir.ui.view" id="view_payment_type_form">
-        <field name="name">payment.type.form</field>
-        <field name="model">payment.type</field>
-        <field name="type">form</field>
-        <field name="arch" type="xml">
-            <form string="Payment Type">
-                <field name="name" select="1"/>
-                <field name="code" select="1"/>
-                <field name="active" select="1"/>
-                <field name="company_id" select="1" widget='selection' groups="base.group_multi_company"/>
-                <separator string="Description" colspan="4"/>
-                <field name="note" nolabel="1" colspan="4"/>
-                <separator string="Suitable Bank Types" colspan="4"/>
-                <field name="suitable_bank_types" nolabel="1" colspan="4"/>
-            </form>
-        </field>
-    </record>
-
-    <record model="ir.actions.act_window" id="action_payment_type">
-        <field name="name">Payment Type</field>
-        <field name="res_model">payment.type</field>
-        <field name="view_mode">tree,form</field>
-    </record>
-
-    <menuitem action="action_payment_type" id="menu_action_payment_type" parent="account.menu_configuration_misc"/>
-
-
-    <!--
-    ======================================================================================================= 
-    	PAYMENT MODE 
-	=======================================================================================================
-	-->
-    <record id="view_payment_mode_form_require_bank_account" model="ir.ui.view">
-        <field name="name">payment.mode.form.require_bank_account</field>
-        <field name="model">payment.mode</field>
-        <field name="type">form</field>
-        <field name="inherit_id" ref="account_payment.view_payment_mode_form"/>
-        <field name="arch" type="xml">
-            <field name="bank_id" position="before">
-                <field name="require_bank_account"/>
-                <field name="type"/>
-            </field>
-        </field>
-    </record>
-
-
-    <!--
-    =================================================================================================
-		 INVOICES 
-	=================================================================================================
-	-->
-    <!--Field partner_bank_id in client invoices has a strange domain: domain="[('partner_id.ref_companies', 'in', [company_id])]"-->
-    <record model="ir.ui.view" id="invoice_form3">
-        <field name="name">account.invoice.form3.payment_type</field>
-        <field name="model">account.invoice</field>
-        <field name="type">form</field>
-        <field name="inherit_id" ref="account.invoice_form"/>
-        <field name="arch" type="xml">
-            <field name="partner_bank_id" position="replace">
-                <field domain="[('partner_id', '=', partner_id)]" name="partner_bank_id" on_change="onchange_partner_bank(partner_bank_id)"/>
-            </field>
-        </field>
-    </record>
-
-    <record model="ir.ui.view" id="invoice_form4">
-        <field name="name">account.invoice.form4.payment_type</field>
-        <field name="model">account.invoice</field>
-        <field name="type">form</field>
-        <field name="inherit_id" ref="account.invoice_form"/>
-        <field name="arch" type="xml">
-            <field name="address_invoice_id" position="after">
-                <field domain="[('company_id', '=', company_id)]" name="payment_type" on_change="onchange_payment_type(payment_type, partner_id)" />
-            </field>
-        </field>
-    </record>
-
-    <record model="ir.ui.view" id="invoice_supplier_form2">
-        <field name="name">account.invoice.supplier.form2</field>
-        <field name="model">account.invoice</field>
-        <field name="type">form</field>
-        <field name="inherit_id" ref="account.invoice_supplier_form"/>
-        <field name="arch" type="xml">
-            <field name="address_invoice_id" position="after">
-                <field domain="[('company_id', '=', company_id)]" name="payment_type" on_change="onchange_payment_type(payment_type, partner_id)" />
-            </field>
-        </field>
-    </record>
-
-
-    <!--************ account.move.line extension to show additional fields **********-->
-    <record model="ir.ui.view" id="payments_move_line_tree">
-        <field name="name">account.payments.move.line.tree</field>
-        <field name="model">account.move.line</field>
-        <field name="type">tree</field>
-        <field name="inherit_id" ref="account_payment.view_move_line_tree_wiz"/>
-        <field name="arch" type="xml">
-            <field name="currency_id" position="replace">
-                <field name="currency_id" groups="base.group_extended"/>
-                <field name="reconcile_id"/>
-                <field name="reconcile_partial_id" groups="base.group_extended"/>
-                <field name="state"/>
-                <field name="payment_type"/>
-                <field name="ptype"/>
-            </field>
-        </field>
-    </record>
-
-    <record model="ir.ui.view" id="payments_move_line_form">
-        <field name="name">account.payments.move.line.form</field>
-        <field name="model">account.move.line</field>
-        <field name="type">form</field>
-        <field name="inherit_id" ref="account.view_move_line_form"/>
-        <field name="arch" type="xml">
-            <separator string="Internal Note" position="before">
-                <group col="2" colspan="2">
-                    <separator colspan="2" string="Payment"/>
-                    <field name="payment_type" select="1" widget="selection"/>
-                    <field name="partner_bank_id" domain="[('partner_id','=',partner_id)]"/>
-                    <field name="received_check"/>
-                </group>
-            </separator>
-        </field>
-    </record>
-
-
-    <!--
-    ========================================================================================================
- 		BANK STATEMENT
- 	========================================================================================================
- 	-->
- 	 
-    <record id="view_bank_statement_form_ext" model="ir.ui.view">
-        <field name="name">account.bank.statement.form.ext</field>
-        <field name="model">account.bank.statement</field>
-        <field name="type">form</field>
-        <field name="inherit_id" ref="account_payment.view_bank_statement_form"/>
-        <field name="arch" type="xml">  
-            <button name="%(account_payment.action_account_populate_statement_confirm)d" position="replace">
-                <!--
-                <button name="%(wizard_populate_statement_ext)d" string="Import payment lines" type="action" attrs="{'invisible':[('state','=','confirm')]}" icon="gtk-execute"/>                
-  				-->
-  				<button name="%(act_wizard_populate_statement)d" string="Import payment lines" type="action" attrs="{'invisible':[('state','=','confirm')]}" icon="gtk-execute"/>
-            </button>
-        </field>
-    </record>
-
-    <!--
-    ====================================================================================================
-     	PAYMENT ORDER 
-    ====================================================================================================
-    -->
-    <!-- Filter invoices by payment type. Allow negative payment amounts -->
-    <record id="view_payment_order_form_ext1" model="ir.ui.view">
-        <field name="name">payment.order.form.ext1</field>
-        <field name="model">payment.order</field>
-        <field name="type">form</field>
-        <field name="inherit_id" ref="account_payment.view_payment_order_form"/>
-        <field name="arch" type="xml">
-            <button name="%(account_payment.action_create_payment_order)d" position="replace">
-                <field name="payment_type_name" invisible="1"/>
-                <field name="type"/>
-                <field name="create_account_moves"/>
-                <group colspan="2" col="1" attrs="{'invisible': [('create_account_moves', '=', 'bank-statement')]}">
-                    <field name="period_id" attrs="{'required': [('create_account_moves', '!=', 'bank-statement')]}"/>
-                </group>
-                <!--
-                <button colspan="2" name="%(wizard_populate_payment_ext)d" string="Select invoices to pay/receive payment" type="action" attrs="{'invisible':[('state','=','done')]}" icon="gtk-find"/>
-                -->
-                <button colspan="2" name="%(act_wizard_payment_order)d" string="Select invoices to pay/receive payment" type="action" attrs="{'invisible':[('state','=','done')]}" icon="gtk-find"/>
-            </button>
-        </field>
-    </record>
-
-    <record id="view_payment_order_form_ext2" model="ir.ui.view">
-        <field name="name">payment.order.form.ext2</field>
-        <field name="model">payment.order</field>
-        <field name="type">form</field>
-        <field name="inherit_id" ref="account_payment.view_payment_order_form"/>
-        <field name="arch" type="xml">
-            <field name="move_line_id" position="replace">
-            <group col="6" colspan="4">
-                <field name="move_line_id" on_change="onchange_move_line(move_line_id,parent.mode,parent.date_prefered,parent.date_scheduled,currency,company_currency,context)" select="1"/>
-                <field name="account_id"/>
-                <field name="payment_move_id"/>
-            </group>
-            </field>
-        </field>
-    </record>
-
-    <record id="view_payment_order_form_cancel" model="ir.ui.view">
-        <field name="name">payment.order.form.cancel</field>
-        <field name="model">payment.order</field>
-        <field name="type">form</field>
-        <field name="inherit_id" ref="account_payment.view_payment_order_form"/>
-        <field name="arch" type="xml">
-            <button name="cancel" position="after">
-                <button name="cancel_from_done" states="done" type="object" string="Cancel" icon="gtk-cancel"/>
-            </button>
-        </field>
-    </record>
-
-    <record id="view_payment_line_form_ext1" model="ir.ui.view">
-        <field name="name">payment.line.ext1</field>
-        <field name="model">payment.line</field>
-        <field name="type">form</field>
-        <field name="inherit_id" ref="account_payment.view_payment_line_form"/>
-        <field name="arch" type="xml">
-            <field name="move_line_id" position="replace">
-                <!--<field name="move_line_id" on_change="onchange_move_line(move_line_id,parent.mode,parent.date_prefered,parent.date_scheduled,currency,company_currency,context)" select="1"/>-->
-            <group col="6" colspan="4">
-                <field name="move_line_id" on_change="onchange_move_line(move_line_id, False, currency, company_currency)" select="1"/>
-                <field name="account_id"/>
-                <field name="payment_move_id"/>
-            </group>
-            </field>
-        </field>
-    </record>
-
-
-    <!--
-    ====================================================================================================
-		PAYABLE PAYMENT ORDER 
-	====================================================================================================
-	-->
-    <record id="account_payment.action_payment_order_tree" model="ir.actions.act_window">
-        <field name="name">Pay. payment order</field>
-        <field name="res_model">payment.order</field>
-        <field name="view_type">form</field>
-        <field name="view_mode">tree,form</field>
-        <field name="domain">[('type','=','payable')]</field>
-        <field name="context">{'type':'payable'}</field>
-    </record>
-
-    <!--
-    ======================================================================================================
-    	RECEIVABLE PAYMENT ORDER 
-	======================================================================================================
-	-->
-    <record id="action_rec_payment_order_tree" model="ir.actions.act_window">
-        <field name="name">Rec. payment order</field>
-        <field name="res_model">payment.order</field>
-        <field name="view_type">form</field>
-        <field name="view_mode">tree,form</field>
-        <field name="domain">[('type','=','receivable')]</field>
-        <field name="context">{'type':'receivable'}</field>
-    </record>
-    <menuitem action="action_rec_payment_order_tree" id="menu_action_rec_payment_order_form" parent="account_payment.menu_main_payment" sequence="2"/>
-
-    <!--
-    =========================================================================================
-	 PAYMENTS 
-	=========================================================================================
-	-->
-    <record id="view_payments_tree" model="ir.ui.view">
-        <field name="name">Payments</field>
-        <field name="model">account.move.line</field>
-        <field name="field_parent">partner_id</field>
-        <field name="type">tree</field>
-        <field name="priority" eval="20"/>
-        <field name="arch" type="xml">
-            <tree string="Payments" editable="top"
-                        colors="grey:reconcile_id!=0;blue:amount_to_pay==0;red:date_maturity&lt;time.strftime('%%Y-%%m-%%d')">
-                <field name="invoice" readonly="1"/>
-                <field name="partner_id" readonly="1"/>
-                <field name="account_id" readonly="1"/>
-                <field name="debit" readonly="1" sum="Total Debit"/>
-                <field name="credit" readonly="1" sum="Total Credit"/>
-                <field name="amount_to_pay" readonly="1" sum="Total Amount to Pay"/>
-                <field name="payment_type" readonly="1"/>
-                <field name="partner_bank_id" domain="[('partner_id','=',partner_id)]"/>
-                <field name="received_check"/>
-                <field name="date_maturity"/>
-                <field name="move_id" readonly="1"/>
-                <field name="reconcile_id" readonly="1"/>
-                <field name="reconcile_partial_id" readonly="1"/>
-            </tree>
-        </field>
-    </record>
-
-    <record id="view_payments_filter" model="ir.ui.view">
-        <field name="name">Invoice Payments Select</field>
-        <field name="model">account.move.line</field>
-        <field name="type">search</field>
-        <field name="priority" eval="20"/>
-        <field name="arch" type="xml">
-            <search string="Search Invoice Payments">
-               <group col='10' colspan='4'>
-                    <filter icon="terp-sale" string="Receive" domain="[('account_id.type','=','receivable')]" help="Receivable payments"/>
-                    <filter icon="terp-purchase" string="Pay" domain="[('account_id.type','=','payable')]" help="Payable payments"/>
-                    <separator orientation="vertical"/>
-                    <filter icon="terp-dolar_ok!" string="Unreconciled" domain="[('reconcile_id','=',False)]" help="Unreconciled payments"/>
-                    <field name="account_id"/>
-                    <field name="partner_id"/>
-                    <field name="invoice"/>
-                    <field name="date_maturity"/>
-                    <newline/>
-                    <field name="amount_to_pay"/>
-                    <field name="payment_type" widget="selection"/>
-                    <field name="partner_bank_id"/>
-                    <field name="received_check"/>
-               </group>
-           </search>
-        </field>
-    </record>
-
-    <!-- Invoice Payments -->
-    <record model="ir.actions.act_window" id="action_invoice_payments">
-        <field name="name">Invoice payments</field>
-        <field name="res_model">account.move.line</field>
-        <field name="view_type">form</field>
-        <field name="view_id" ref="view_payments_tree"/>
-        <field name="search_view_id" ref="view_payments_filter"/>
-        <field name="domain">[('account_id.type','in',['receivable','payable']),('invoice','&lt;&gt;',False)]</field>
-    </record>
-    <menuitem name="Invoice payments" parent="account_payment.menu_main_payment" action="action_invoice_payments" id="menu_action_invoice_payments" sequence="4"/>
-
-    <!-- Done Payments -->
-    <record model="ir.actions.act_window" id="action_done_payments">
-        <field name="name">Done payments</field>
-        <field name="res_model">account.move.line</field>
-        <field name="view_type">form</field>
-        <field name="view_id" ref="view_payments_tree"/>
-        <field name="search_view_id" ref="view_payments_filter"/>
-        <field name="domain">[('account_id.type','in',['receivable','payable']),('invoice','=',False)]</field>
-    </record>
-    <menuitem name="Done payments" parent="account_payment.menu_main_payment" action="action_done_payments" id="menu_action_done_payments" sequence="5"/>
-
-</data>
-</openerp>

=== removed file 'account_payment_extension/payment_wizard.xml'
--- account_payment_extension/payment_wizard.xml	2012-12-11 10:06:23 +0000
+++ account_payment_extension/payment_wizard.xml	1970-01-01 00:00:00 +0000
@@ -1,7 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<openerp>
-    <data>
-        <wizard id="wizard_populate_payment_ext" menu="False" model="payment.order" name="populate_payment_ext" string="Populate payment to pay"/>
-        <wizard id="wizard_populate_statement_ext" menu="False" model="account.bank.statement" name="populate_statement_ext" string="Populate Statement with Payment lines"/>
-    </data>
-</openerp>

=== removed directory 'account_payment_extension/security'
=== removed file 'account_payment_extension/security/ir.model.access.csv'
--- account_payment_extension/security/ir.model.access.csv	2012-12-11 10:06:23 +0000
+++ account_payment_extension/security/ir.model.access.csv	1970-01-01 00:00:00 +0000
@@ -1,4 +0,0 @@
-"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink"
-"access_payment_type","payment.type","model_payment_type","account_payment.group_account_payment",1,1,1,1
-"access_payment_type_user","payment.type.user","model_payment_type","base.group_user",1,0,0,0
-

=== removed directory 'account_payment_extension/wizard'
=== removed file 'account_payment_extension/wizard/__init__.py'
--- account_payment_extension/wizard/__init__.py	2012-12-11 10:06:23 +0000
+++ account_payment_extension/wizard/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,30 +0,0 @@
-# -*- encoding: utf-8 -*-
-##############################################################################
-#
-#    OpenERP, Open Source Management Solution
-#    Copyright (c) 2008 Zikzakmedia S.L. (http://zikzakmedia.com) All Rights Reserved.
-#                       Jordi Esteve <jesteve@zikzakmedia.com>
-#    AvanzOSC, Avanzed Open Source Consulting 
-#    Copyright (C) 2011-2012 Iker Coranti (www.avanzosc.com). All Rights Reserved
-#    $Id$
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-##############################################################################
-
-import wizard_payment_order
-import wizard_populate_statement
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
-

=== removed file 'account_payment_extension/wizard/wizard_payment_order.py'
--- account_payment_extension/wizard/wizard_payment_order.py	2012-12-11 10:06:23 +0000
+++ account_payment_extension/wizard/wizard_payment_order.py	1970-01-01 00:00:00 +0000
@@ -1,240 +0,0 @@
-# -*- encoding: utf-8 -*-
-##############################################################################
-#
-#    OpenERP, Open Source Management Solution
-#    Copyright (C) 2004-2008 Tiny SPRL (<http://tiny.be>). All Rights Reserved
-#    AvanzOSC, Avanzed Open Source Consulting 
-#    Copyright (C) 2011-2012 Iker Coranti (www.avanzosc.com). All Rights Reserved
-#    $Id$
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-##############################################################################
-from osv import osv, fields
-import wizard
-import pooler
-from tools.misc import UpdateableStr
-import time
-
-
-class wizard_line_list(osv.osv_memory):
-    _name = 'wizard.line.list'
-    
-    _columns={
-              'entries':fields.many2many('account.move.line','rel_move_lines','payment_id','line_id','Entries'),
-              'communication2':fields.char ('Communication 2',size = 64, help ='The successor message of payment communication.'),
-              }
-
-    def create_payment(self, cr, uid, ids, context):
-        ###########################################################
-        # OBJETOS
-        ###########################################################
-        order_obj = self.pool.get('payment.order')
-        line_obj = self.pool.get('account.move.line')
-        payment_line_obj = self.pool.get('payment.line')
-        currency_obj = self.pool.get('res.currency')
-        ###########################################################
-        line_ids =[]
-        if not isinstance(ids,list):
-            ids=[ids]
-        line_ids_o= self.browse(cr,uid,ids[0]).entries
-        for line_o in line_ids_o:
-            line_ids.append(line_o.id)
-        if not line_ids: return {}
-    
-        pool= pooler.get_pool(cr.dbname)
-        order_id = context['payment_order']
-        payment = order_obj.browse(cr, uid, order_id,context=context)
-        t = payment.mode and payment.mode.type.id or None
-        line2bank = line_obj.line2bank(cr, uid, line_ids, t, context)
-    
-        ## Finally populate the current payment with new lines:
-        for line in line_obj.browse(cr, uid, line_ids, context=context):
-            if payment.date_prefered == "now":
-                #no payment date => immediate payment
-                date_to_pay = False
-            elif payment.date_prefered == 'due':
-                date_to_pay = line.date_maturity
-            elif payment.date_prefered == 'fixed':
-                date_to_pay = payment.date_scheduled
-    
-            if payment.type == 'payable':
-                amount_to_pay = line.amount_to_pay
-            else:
-                amount_to_pay = -line.amount_to_pay
-            val ={
-                  'move_line_id': line.id,
-                  'amount_currency': amount_to_pay,
-                  'bank_id': line2bank.get(line.id),
-                  'order_id': payment.id,
-                  'partner_id': line.partner_id and line.partner_id.id or False,
-                  'communication': (line.ref and line.name!='/' and line.ref+'. '+line.name) or line.ref or line.name or '/',
-                  'communication2': self.browse(cr,uid,ids[0]).communication2,
-                  'date': date_to_pay,
-                  'currency':currency_obj.search(cr,uid,[])[0],
-                  'account_id': line.account_id.id,
-                  'type':payment.type,
-                  
-                  }
-            if line.invoice:
-                if line.invoice.currency_id:
-                    val.update({ 'currency':line.invoice.currency_id.id})
-            payment_line_obj.create(cr,uid,val, context=context)
-        return {'type': 'ir.actions.act_window_close'}
-    
-    def cerrar(self, cr, uid, ids, context): 
-        return {'type': 'ir.actions.act_window_close'}
-    
-wizard_line_list()
-class wizard_payment_order(osv.osv_memory):
-    """
-    Create a payment object with lines corresponding to the account move line
-    to pay according to the date provided by the user and the mode-type payment of the order.
-    Hypothesis:
-    - Small number of non-reconcilied move line , payment mode and bank account type,
-    - Big number of partner and bank account.
-
-    If a type is given, unsuitable account move lines are ignored.
-    """
-    _name = 'wizard.payment.order'
-    _description = 'Para crear nominas'
-    
-    _columns={
-              'duedate': fields.date ('Due Date',required = True),
-              'amount':fields.float ('Amount', help ='Next step will automatically select payments up to this amount as long as account moves have bank account if that is required by the selected payment mode.'),
-              'show_refunds':fields.boolean('Show Refunds', help = 'Indicates if search should include refunds.'),
-              }
-    
-    _defaults={
-               'duedate':lambda *a: time.strftime('%Y-%m-%d'),
-               'show_refunds': lambda *a: False
-               
-               }
-    
-    
-#############################################################################################
-    
-    def search_entries(self, cr, uid, ids, context):
-        
-        ######################################################
-        # OBJETOS
-        ######################################################
-        pool = pooler.get_pool(cr.dbname)
-        order_obj = self.pool.get('payment.order')
-        line_obj = self.pool.get('account.move.line')
-        ######################################################
-        
-        #search_due_date = data['form']['duedate']
-        #show_refunds = data['form']['show_refunds']
-        
-        search_due_date = self.browse(cr, uid, ids[0], context).duedate
-        show_refunds = self.browse(cr, uid, ids[0], context).show_refunds
-    
-        payment = order_obj.browse(cr, uid, context.get('active_id'), context=context)
-        ctx = ''
-        if payment.mode:
-            ctx = '''context="{'journal_id': %d}"''' % payment.mode.journal.id
-    
-        # Search for move line to pay:
-        domain = [('reconcile_id', '=', False),('account_id.type', '=', payment.type),('amount_to_pay', '<>', 0)]
-    
-        if payment.type =='payable' and not show_refunds:
-            domain += [ ('credit','>',0) ]
-            
-        elif not show_refunds:
-            domain += [ ('debit','>',0) ]
-    
-        if payment.mode:
-            domain += [ ('payment_type','=',payment.mode.type.id) ]
-    
-        domain += ['|',('date_maturity','<',search_due_date),('date_maturity','=',False)]
-        line_ids = line_obj.search(cr, uid, domain, order='date_maturity', context=context)
-    
-    
-    #    FORM.string = '''<?xml version="1.0" encoding="utf-8"?>
-    #<form string="Populate Payment:">
-    #    <field name="entries" colspan="4" height="300" width="800" nolabel="1" domain="[('id', 'in', [%s])]" %s/>
-    #    <separator string="Extra message of payment communication" colspan="4"/>
-    #    <field name="communication2" colspan="4"/>
-    #</form>''' % (','.join([str(x) for x in line_ids]), ctx)
-    
-        selected_ids = []
-    
-    
-    #    if payment.mode.require_bank_account and not line.partner_bank_id:
-    #        continue
-    #    if payment.mode.require_same_bank_account:
-    #        if not line.partner_bank_id:
-    #            continue
-    #        mode_account = payment.mode.bank_id.acc_number or payment.mode.bank_id.iban
-    #        line_account = line.partner_bank_id.acc_number or line.partner_bank_id.iban
-    #        if mode_account != line_account:
-    #            continue
-    #    if payment.mode.require_received_check:
-    #        if not line.received_check:
-    #            continue
-    
-        #amount = data['form']['amount']
-        amount = self.browse(cr, uid, ids[0], context).amount
-        if amount:
-            if payment.mode and payment.mode.require_bank_account:
-                line2bank = line_obj.line2bank(cr, uid, line_ids, payment.mode.id, context)
-            else:
-                line2bank = None
-            # If user specified an amount, search what moves match the criteria taking into account
-            # if payment mode allows bank account to be null.
-            for line in line_obj.browse(cr, uid, line_ids, context):
-                if abs(line.amount_to_pay) <= amount:
-                    amount -= abs(line.amount_to_pay)
-                    selected_ids.append( line.id )
-        
-        
-        wiz_id = self.pool.get('wizard.line.list').create(cr,uid,{'entries':[(6,0,selected_ids)]})   
-        context.update({'payment_order':payment.id})
-        mod_obj = self.pool.get('ir.model.data')
-        form_res1 = mod_obj.get_object_reference(cr, uid, 'account_payment_extension', 'wizard_line_list_py_form_view')
-        form_id1 = form_res1 and form_res1[1] or False
-        form_res2 = mod_obj.get_object_reference(cr, uid, 'account_payment_extension', 'wizard_line_list_re_form_view')
-        form_id2 = form_res2 and form_res2[1] or False
-        if payment.type == 'payable':
-            wizard = {
-                'type': 'ir.actions.act_window',
-                'res_model': 'wizard.line.list',
-                'view_type': 'form',
-                'view_mode': 'form',
-                'views': [(form_id1, 'form')],
-                'res_id':wiz_id,
-                'target': 'new',
-                'context': context
-                }
-        else:
-             wizard = {
-                'type': 'ir.actions.act_window',
-                'res_model': 'wizard.line.list',
-                'view_type': 'form',
-                'view_mode': 'form',
-                'views': [(form_id2, 'form')],
-                'res_id':wiz_id,
-                'target': 'new',
-                'context': context
-                }
-        return wizard
-    
-    
-    def cerrar(self, cr, uid, ids, context): 
-        return {'type': 'ir.actions.act_window_close'}
-
-wizard_payment_order()
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed file 'account_payment_extension/wizard/wizard_payment_order_view.xml'
--- account_payment_extension/wizard/wizard_payment_order_view.xml	2012-12-11 10:06:23 +0000
+++ account_payment_extension/wizard/wizard_payment_order_view.xml	1970-01-01 00:00:00 +0000
@@ -1,93 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<openerp>
-	<data>
-
-		<!--
-			===============================================================================================================
-			WIZAR.PAYMENT.ORDER
-			===============================================================================================================
-		-->
-
-		<!-- FORM -->
-		<record model="ir.ui.view" id="wizard_payment_order_form_view">
-			<field name="name">wizard.payment.order.form.view</field>
-			<field name="model">wizard.payment.order</field>
-			<field name="type">form</field>
-			<field name="arch" type="xml">
-				<form string="Buscar Lineas de Pago">
-					<group colspan="4" col="2">
-						<field name="duedate" />
-						<field name="amount" />
-						<field name="show_refunds" />
-					</group>
-					<group colspan="4">
-						<button name="cerrar" type="object" icon='gtk-no' string="Cancelar" />
-						<button name="search_entries" icon='gtk-ok' type="object"
-							string="Buscar" />
-					</group>
-				</form>
-			</field>
-		</record>
-
-		<!-- ACCION -->
-		<record id="act_wizard_payment_order" model="ir.actions.act_window">
-			<field name="name">Seleccionar facturas a Pagar/Cobrar</field>
-			<field name="type">ir.actions.act_window</field>
-			<field name="res_model">wizard.payment.order</field>
-			<field name="view_type">form</field>
-			<field name="view_mode">form</field>
-			<field name="target">new</field>
-		</record>
-
-		<record model="ir.ui.view" id="wizard_line_list_py_form_view">
-			<field name="name">wizard.line.list.form.view</field>
-			<field name="model">wizard.line.list</field>
-			<field name="type">form</field>
-			<field name="arch" type="xml">
-				<form string="Buscar Lineas de Pago">
-					<group colspan="4" col="2">
-						<field name="entries" nolabel="1" colspan="4" height="300"
-							width="800" domain="[('reconcile_id','=',False),('ptype','=','payable')]" />
-						<newline />
-						<field name="communication2" colspan="4" />
-					</group>
-					<group colspan="4">
-						<button name="cerrar" type="object" icon='gtk-no' string="Cancelar" />
-						<button name="create_payment" icon='gtk-ok' type="object"
-							string="Ok" />
-					</group>
-				</form>
-			</field>
-		</record>
-		<record model="ir.ui.view" id="wizard_line_list_re_form_view">
-			<field name="name">wizard.line.list.form.view</field>
-			<field name="model">wizard.line.list</field>
-			<field name="type">form</field>
-			<field name="arch" type="xml">
-				<form string="Buscar Lineas de Cobro">
-					<group colspan="4" col="2">
-						<field name="entries" nolabel="1" colspan="4" height="300"
-							width="800" domain="[('reconcile_id','=',False), ('ptype','=','receivable')]"/>
-						<newline />
-						<field name="communication2" colspan="4" />
-					</group>
-					<group colspan="4">
-						<button name="cerrar" type="object" icon='gtk-no' string="Cancelar" />
-						<button name="create_payment" icon='gtk-ok' type="object"
-							string="Ok" />
-					</group>
-				</form>
-			</field>
-		</record>
-		<!-- ACCION -->
-		<record id="act_wizard_line_list" model="ir.actions.act_window">
-			<field name="name">Seleccionar facturas a Pagar/Cobrar</field>
-			<field name="type">ir.actions.act_window</field>
-			<field name="res_model">wizard.line.list</field>
-			<field name="view_type">form</field>
-			<field name="view_mode">form</field>
-			<field name="target">new</field>
-		</record>
-
-	</data>
-</openerp>

=== removed file 'account_payment_extension/wizard/wizard_populate_statement.py'
--- account_payment_extension/wizard/wizard_populate_statement.py	2012-12-11 10:06:23 +0000
+++ account_payment_extension/wizard/wizard_populate_statement.py	1970-01-01 00:00:00 +0000
@@ -1,161 +0,0 @@
-# -*- encoding: utf-8 -*-
-##############################################################################
-#
-#    OpenERP, Open Source Management Solution	
-#    Copyright (C) 2004-2008 Tiny SPRL (<http://tiny.be>). All Rights Reserved
-#    AvanzOSC, Avanzed Open Source Consulting 
-#    Copyright (C) 2011-2012 Iker Coranti (www.avanzosc.com). All Rights Reserved
-#    $Id$
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-##############################################################################
-
-from osv import osv, fields
-import wizard
-import pooler
-from tools.misc import UpdateableStr
-
-#FORM = UpdateableStr()
-#FIELDS = {
-#    'lines': {'string': 'Payment Lines', 'type': 'many2many',
-#        'relation': 'payment.line'},
-#}
-
-class wizard_populate_statement(osv.osv_memory):
-    """
-    Populate the current statement with selected payement lines
-    """
-    _name = 'wizard.populate.statement'
-    _description = ''
-    
-    _columns = {
-               #'lines': {'string': 'Payment Lines', 'type': 'many2many','relation': 'payment.line'},
-               'lines': fields.many2many('payment.line', 'rel_populate_statement', 'line_id', 'payment_id', 'Payment Lines'),
-              }
-    
-    _defaults = {
-                 'lines': lambda self,cr,uid,c: self.search_entries(cr,uid,c)
-                 }
-    def search_entries(self, cr, uid, context):
-        ########################################################
-        # OBJETOS
-        ########################################################
-        pool = pooler.get_pool(cr.dbname)
-        line_obj = self.pool.get('payment.line')
-        statement_obj = self.pool.get('account.bank.statement')
-        ########################################################
-        res = {}
-        ids = context['active_id']
-        if context['active_model'] == 'account.bank.statement':
-            statement = statement_obj.browse(cr, uid, ids, context=context)
-            line_ids = line_obj.search(cr, uid, [
-                ('move_line_id.reconcile_id', '=', False),
-                ('order_id.mode.journal.id', '=', statement.journal_id.id)])
-        
-            line_ids.extend(line_obj.search(cr, uid, [
-                ('move_line_id.reconcile_id', '=', False),
-                ('order_id.mode', '=', False)]))
-            res=line_ids
-#    FORM.string = '''<?xml version="1.0"?>
-#<form string="Populate Statement:">
-#    <field name="lines" colspan="4" height="300" width="800" nolabel="1"
-#        domain="[('id', 'in', [%s])]"/>
-#</form>''' % (','.join([str(x) for x in line_ids]))
-        return res
-
-    def populate_statement(self, cr, uid, ids, context):
-        ######################################################
-        # OBJETOS
-        ######################################################
-        #pool = pooler.get_pool(cr.dbname)
-        line_obj = self.pool.get('payment.line')
-        statement_obj = self.pool.get('account.bank.statement')
-        statement_line_obj = self.pool.get('account.bank.statement.line')
-        currency_obj = self.pool.get('res.currency')
-        move_line_obj = self.pool.get('account.move.line')
-        voucher_obj = self.pool.get('account.voucher')
-        voucher_line_obj = self.pool.get('account.voucher.line')
-        ######################################################
-        #line_ids = data['form']['lines'][0][2]
-        if not isinstance(ids,list):
-            ids = [ids]
-        line_ids = self.browse(cr, uid, ids[0], context).lines
-        if not line_ids:
-            return {}
-        statement = statement_obj.browse(cr, uid, context['active_id'], context=context)
-    
-        for line in line_ids:
-            ctx = context.copy()
-            ctx['date'] = line.ml_maturity_date
-            amount_currency = line.type == 'payment' and line.amount_currency or -line.amount_currency
-            amount = currency_obj.compute(cr, uid, line.currency.id, statement.currency.id, amount_currency, context=ctx)
-    
-            voucher_id = False
-            if line.move_line_id:
-                #We have to create a voucher and link it to the bank statement line
-                context.update({'move_line_ids': [line.move_line_id.id]})
-                result = voucher_obj.onchange_partner_id(cr, uid, [], partner_id=line.move_line_id.partner_id.id,
-                    journal_id=statement.journal_id.id, price=abs(amount), currency_id=statement.currency.id,
-                    ttype=(amount < 0 and 'payment' or 'receipt'), date=line.date or line.move_line_id.date, context=context)
-    
-                voucher_res = { 
-                            'type':(amount < 0 and 'payment' or 'receipt'),
-                            'name': line.move_line_id.name,
-                            'reference': (line.order_id.reference or '?') + '. ' + line.name,
-                            'partner_id': line.move_line_id.partner_id.id,
-                            'journal_id': statement.journal_id.id,
-                            'account_id': result.get('account_id', statement.journal_id.default_credit_account_id.id), # improve me: statement.journal_id.default_credit_account_id.id
-                            'company_id': statement.company_id.id,
-                            'currency_id': statement.currency.id,
-                            'date': line.date or line.move_line_id.date,
-                            'amount': abs(amount),
-                            'period_id': statement.period_id.id
-                                }
-                voucher_id = voucher_obj.create(cr, uid, voucher_res, context=context)
-    
-                voucher_line_dict = {}
-                if result['value']['line_ids']:
-                    for line_dict in result['value']['line_ids']:
-                        move_line = move_line_obj.browse(cr, uid, line_dict['move_line_id'], context)
-                        if line.move_line_id.move_id.id == move_line.move_id.id:
-                            voucher_line_dict = line_dict
-                if voucher_line_dict:
-                    voucher_line_dict.update({'voucher_id': voucher_id, 'amount': abs(amount)})
-                    voucher_line_obj.create(cr, uid, voucher_line_dict, context=context)
-            val = {
-                'name': (line.order_id.reference or '?') + '. ' + line.name,
-                #Tipically: type=='payable' => amount>0  type=='receivable' => amount<0
-                'amount': line.type == 'payable' and amount or -amount,
-                'type': line.order_id.type == 'payable' and 'supplier' or 'customer',
-                'partner_id': line.partner_id.id,
-                'account_id': line.move_line_id.account_id.id,
-                'statement_id': statement.id,
-                'ref': line.communication,
-                'voucher_id': voucher_id,
-                   }        
-    
-            statement_line_obj.create(cr, uid, val, context=context)
-        return {}
-
-    def cerrar(self, cr, uid, ids, context): 
-        return {'type': 'ir.actions.act_window_close'}
-
-wizard_populate_statement()
-
-
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
-

=== removed file 'account_payment_extension/wizard/wizard_populate_statement_view.xml'
--- account_payment_extension/wizard/wizard_populate_statement_view.xml	2012-12-11 10:06:23 +0000
+++ account_payment_extension/wizard/wizard_populate_statement_view.xml	1970-01-01 00:00:00 +0000
@@ -1,42 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<openerp>
-    <data>
-
-    <!--
-    ===============================================================================================================
-        WIZAR.POPULATESTATEMENT
-    ===============================================================================================================
-     -->
-
-     <!-- FORM -->
-
-        <record model="ir.ui.view" id="wizard_populate_statement_order_form_view">
-            <field name="name">wizard.populate.statement.order.form.view</field>
-            <field name="model">wizard.populate.statement</field>
-            <field name="type">form</field>
-            <field name="arch" type="xml">
-                <form string="Buscar Lineas de Pago">
-                    <group colspan="4">
-                         <field name="lines" colspan="4" height="300" width="800" nolabel="1"/>
-                    </group>
-                    <group colspan="4">
-                        <button name ="cerrar" type="object" icon='gtk-no' string="Cancelar"/>
-                        <button name="populate_statement" icon='gtk-ok' type="object" string="Añadir a la orden de pago"/>
-                    </group>
-                </form>
-            </field>
-         </record>
-
-     <!-- ACCION -->
-
-        <record id="act_wizard_populate_statement" model="ir.actions.act_window">
-            <field name="name">populate statement</field>
-            <field name="type">ir.actions.act_window</field>
-            <field name="res_model">wizard.populate.statement</field>
-            <field name="view_type">form</field>
-            <field name="view_mode">form</field>
-            <field name="target">new</field>
-        </record>
-
-    </data>
-</openerp>

=== removed directory 'hr_attendance_project'
=== removed file 'hr_attendance_project/__init__.py'
--- hr_attendance_project/__init__.py	2012-12-11 10:06:23 +0000
+++ hr_attendance_project/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,26 +0,0 @@
-# -*- coding: utf-8 -*-
-##############################################################################
-#
-#    hr_attendance_project module for OpenERP
-#    Copyright (C) 2008 Zikzakmedia S.L. (http://zikzakmedia.com)
-#       Raimon Esteve <resteve@zikzakmedia.com> All Rights Reserved.
-#       Jordi Esteve <resteve@zikzakmedia.com> All Rights Reserved.
-#
-#    This file is a part of hr_attendance_project
-#
-#    hr_attendance_project is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
-#
-#    hr_attendance_project is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-##############################################################################
-
-import wizard

=== removed file 'hr_attendance_project/__openerp__.py'
--- hr_attendance_project/__openerp__.py	2012-12-11 10:06:23 +0000
+++ hr_attendance_project/__openerp__.py	1970-01-01 00:00:00 +0000
@@ -1,49 +0,0 @@
-# -*- coding: utf-8 -*-
-##############################################################################
-#
-#    hr_attendance_project module for OpenERP
-#    Copyright (C) 2008-2011 Zikzakmedia S.L. (http://zikzakmedia.com)
-#       Raimon Esteve <resteve@zikzakmedia.com> All Rights Reserved.
-#       Jordi Esteve <resteve@zikzakmedia.com> All Rights Reserved.
-#
-#    This file is a part of hr_attendance_project
-#
-#    hr_attendance_project is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
-#
-#    hr_attendance_project is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-##############################################################################
-{
-    "name" : "Attendances of Employees in Projects",
-    "version" : "1.0",
-    "author" : "Zikzakmedia SL",
-	"website" : "www.zikzakmedia.com",
-    "license" : "AGPL-3",
-    "description" : """This module aims to manage employee's attendances in Projects.
-
-Adds a new wizard to sign in/sign out. In the sign out, an analitic account or a project must be given, and a task of this analitic account or project. A work for this task with user, start date and hour information is created.""",
-    "depends" : [
-        "base",
-        "account",
-        "hr_attendance",
-        "project",
-        "project_timesheet",
-        "hr_timesheet"
-    ],
-    "init_xml" : [],
-    "update_xml" : [
-		"wizard/sign_in_out_task_project.xml",
-    ],
-    "category" : "Generic Modules/Human Resources",
-    "active": False,
-    "installable": True
-}

=== removed directory 'hr_attendance_project/i18n'
=== removed file 'hr_attendance_project/i18n/ca.po'
--- hr_attendance_project/i18n/ca.po	2012-12-11 10:06:23 +0000
+++ hr_attendance_project/i18n/ca.po	1970-01-01 00:00:00 +0000
@@ -1,229 +0,0 @@
-# Translation of OpenERP Server.
-# This file contains the translation of the following modules:
-# 	* hr_attendance_project
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: OpenERP Server 5.0.3\n"
-"Report-Msgid-Bugs-To: support@openerp.com\n"
-"POT-Creation-Date: 2009-11-14 22:10+0000\n"
-"PO-Revision-Date: 2011-10-26 11:48+0000\n"
-"Last-Translator: Jordi Esteve (www.zikzakmedia.com) "
-"<jesteve@zikzakmedia.com>\n"
-"Language-Team: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-10-28 05:57+0000\n"
-"X-Generator: Launchpad (build 14197)\n"
-
-#. module: hr_attendance_project
-#: code:addons/hr_attendance_project/wizard/sign_in_out_task_project.py:0
-#, python-format
-msgid "This duration is negative, not possible !"
-msgstr "Aquesta durada és negativa, no és possible!"
-
-#. module: hr_attendance_project
-#: model:ir.module.module,description:hr_attendance_project.module_meta_information
-msgid ""
-"This module aims to manage employee's attendances in Projects.\n"
-"\n"
-"Adds a new wizard to sign in/sign out. In the sign out, an analitic account "
-"or a project must be given, and a task of this analitic account or project. "
-"A work for this task with user, start date and hour information is created."
-msgstr ""
-"Aquest mòdul gestiona la assistència dels treballadors en els projectes.\n"
-"\n"
-"Afegeix un nou assistent per a registrar entrada/sortida. En el registre de "
-"sortida s'ha d'indicar un compte analític o un projecte, i una tasca "
-"d'aquest compte analític o projecte. Es crea un treball per a aquesta tasca "
-"amb la informació d'usuari, data d'inici i hores."
-
-#. module: hr_attendance_project
-#: wizard_view:hr_timesheet.sitp_sotp,sign_out:0
-#: model:ir.actions.wizard,name:hr_attendance_project.sitp_stop_task
-msgid "Sign in / Sign out"
-msgstr "Registra entrada/sortida"
-
-#. module: hr_attendance_project
-#: code:addons/hr_attendance_project/wizard/sign_in_out_task_project.py:0
-#, python-format
-msgid "No employee defined for your user !"
-msgstr "No s'ha definit un treballador pel vostre usuari!"
-
-#. module: hr_attendance_project
-#: wizard_view:hr_timesheet.sitp_sotp,sign_out:0
-#: wizard_view:hr_timesheet.sitp_sotp,sign_in:0
-msgid "(Keep empty for current time)"
-msgstr "(buit per data actual)"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_out,server_date:0
-msgid "Current Date"
-msgstr "Data actual"
-
-#. module: hr_attendance_project
-#: code:addons/hr_attendance_project/wizard/sign_in_out_task_project.py:0
-#, python-format
-msgid "This project does not have any analytic account defined."
-msgstr "Aquest projecte no té definit un compte analític."
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,server_date:0
-msgid "Current Server Date"
-msgstr "Data actual del servidor"
-
-#. module: hr_attendance_project
-#: model:ir.actions.wizard,name:hr_attendance_project.sitp_sotp
-#: model:ir.ui.menu,name:hr_attendance_project.menu_sitp_sotp
-msgid "Sign in / Sign out by task project"
-msgstr "Registrar entrada/sortida de les tasques de projecte"
-
-#. module: hr_attendance_project
-#: wizard_button:hr_timesheet.sitp_sotp,sign_in,so_result_end:0
-msgid "Stop Working"
-msgstr "Para de treballar"
-
-#. module: hr_attendance_project
-#: wizard_view:hr_timesheet.sitp_sotp,sign_out:0
-msgid "Sign in"
-msgstr "Registra entrada"
-
-#. module: hr_attendance_project
-#: wizard_view:hr_timesheet.sitp_sotp,sign_out:0
-msgid "(local time on the server side)"
-msgstr "(hora local en el servidor)"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,date_start:0
-#: wizard_field:hr_timesheet.sitp_sotp,sign_out,date:0
-msgid "Starting Date"
-msgstr "Data d'inici"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,date:0
-msgid "Closing Date"
-msgstr "Data límit"
-
-#. module: hr_attendance_project
-#: code:addons/hr_attendance_project/wizard/sign_in_out_task_project.py:0
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,tasks_account:0
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,tasks_project:0
-#: wizard_field:hr_timesheet.sitp_sotp,sign_out,tasks_project:0
-#, python-format
-msgid "Task"
-msgstr "Tasca"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,analytic_amount:0
-msgid "Minimum Analytic Amount"
-msgstr "Import analític mínim"
-
-#. module: hr_attendance_project
-#: model:ir.actions.wizard,name:hr_attendance_project.sitp_sotp_my
-#: model:ir.ui.menu,name:hr_attendance_project.menu_sitp_sotp_my
-msgid "Sign in / Sign out by my task project"
-msgstr "Registrar entrada/sortida de les meves tasques de projecte"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,state:0
-#: wizard_field:hr_timesheet.sitp_sotp,sign_out,state:0
-msgid "Current state"
-msgstr "Estat actual"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,hours_no_work:0
-msgid "Hours not working"
-msgstr "Hores no treballades"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,project_id:0
-msgid "Project"
-msgstr "Projecte"
-
-#. module: hr_attendance_project
-#: wizard_button:hr_timesheet.sitp_sotp,sign_in,so_result_task:0
-msgid "Change Task"
-msgstr "Canvia treball i obre tasca"
-
-#. module: hr_attendance_project
-#: code:addons/hr_attendance_project/wizard/sign_in_out_task_project.py:0
-#, python-format
-msgid "Error"
-msgstr "Error"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,name:0
-#: wizard_field:hr_timesheet.sitp_sotp,sign_out,name:0
-msgid "Employee's name"
-msgstr "Nom del treballador"
-
-#. module: hr_attendance_project
-#: code:addons/hr_attendance_project/wizard/sign_in_out_task_project.py:0
-#, python-format
-msgid "UserError"
-msgstr "Error d'usuari"
-
-#. module: hr_attendance_project
-#: wizard_button:hr_timesheet.sitp_sotp,sign_out,si_result_open_task:0
-msgid "Start Working and Open Task"
-msgstr "Comença a treballar i obre tasca"
-
-#. module: hr_attendance_project
-#: wizard_button:hr_timesheet.sitp_sotp,sign_out,si_result:0
-msgid "Start Working"
-msgstr "Comença a treballar"
-
-#. module: hr_attendance_project
-#: model:ir.module.module,shortdesc:hr_attendance_project.module_meta_information
-msgid "Attendances of Employees in Projects"
-msgstr "Assistència dels treballadors en els projectes"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,account_id:0
-msgid "Analytic Account"
-msgstr "Compte analític"
-
-#. module: hr_attendance_project
-#: code:addons/hr_attendance_project/wizard/sign_in_out_task_project.py:0
-#, python-format
-msgid "No cost unit defined for this employee !"
-msgstr "No s'ha definit un cost unitari per aquest treballador!"
-
-#. module: hr_attendance_project
-#: wizard_button:hr_timesheet.sitp_sotp,sign_in,end:0
-#: wizard_button:hr_timesheet.sitp_sotp,sign_out,end:0
-msgid "Cancel"
-msgstr "Cancel·la"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,info:0
-msgid "Work Description"
-msgstr "Descripció del treball"
-
-#. module: hr_attendance_project
-#: wizard_button:hr_timesheet.sitp_sotp,sign_in,so_result:0
-msgid "Change Work"
-msgstr "Canvia treball"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,tasks_project_next:0
-#: wizard_view:hr_timesheet.sitp_sotp,sign_in:0
-msgid "Next Task"
-msgstr "Nova tasca"
-
-#. module: hr_attendance_project
-#: wizard_view:hr_timesheet.sitp_sotp,sign_in:0
-#: model:ir.actions.wizard,name:hr_attendance_project.sitp_stop_task
-msgid "Sign in status"
-msgstr "Estat del registre d'entrada"
-
-#. module: hr_attendance_project
-#: wizard_view:hr_timesheet.sitp_sotp,sign_in:0
-msgid "General Information"
-msgstr "Informació general"
-
-#. module: hr_attendance_project
-#: wizard_view:hr_timesheet.sitp_sotp,sign_in:0
-msgid "Work done in the last period"
-msgstr "Treball realitzat en l'últim període"

=== removed file 'hr_attendance_project/i18n/es.po'
--- hr_attendance_project/i18n/es.po	2012-12-11 10:06:23 +0000
+++ hr_attendance_project/i18n/es.po	1970-01-01 00:00:00 +0000
@@ -1,229 +0,0 @@
-# Translation of OpenERP Server.
-# This file contains the translation of the following modules:
-# 	* hr_attendance_project
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: OpenERP Server 5.0.3\n"
-"Report-Msgid-Bugs-To: support@openerp.com\n"
-"POT-Creation-Date: 2009-11-14 22:10+0000\n"
-"PO-Revision-Date: 2011-10-26 11:48+0000\n"
-"Last-Translator: Jordi Esteve (www.zikzakmedia.com) "
-"<jesteve@zikzakmedia.com>\n"
-"Language-Team: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-10-28 05:57+0000\n"
-"X-Generator: Launchpad (build 14197)\n"
-
-#. module: hr_attendance_project
-#: code:addons/hr_attendance_project/wizard/sign_in_out_task_project.py:0
-#, python-format
-msgid "This duration is negative, not possible !"
-msgstr "¡Esta duración es negativa, no es posible!"
-
-#. module: hr_attendance_project
-#: model:ir.module.module,description:hr_attendance_project.module_meta_information
-msgid ""
-"This module aims to manage employee's attendances in Projects.\n"
-"\n"
-"Adds a new wizard to sign in/sign out. In the sign out, an analitic account "
-"or a project must be given, and a task of this analitic account or project. "
-"A work for this task with user, start date and hour information is created."
-msgstr ""
-"Este módulo gestiona la asistencia de los empleados en los proyectos.\n"
-"\n"
-"Añade un nuevo asistente para registrar entrada/salida. En el registro de "
-"salida se debe indicar una cuenta analítica o un proyecto, y una tarea de "
-"esta cuenta analítica o proyecto. Se crea un trabajo para esta tarea con la "
-"información de usuario, fecha de inicio y horas."
-
-#. module: hr_attendance_project
-#: wizard_view:hr_timesheet.sitp_sotp,sign_out:0
-#: model:ir.actions.wizard,name:hr_attendance_project.sitp_stop_task
-msgid "Sign in / Sign out"
-msgstr "Registrar entrada/salida"
-
-#. module: hr_attendance_project
-#: code:addons/hr_attendance_project/wizard/sign_in_out_task_project.py:0
-#, python-format
-msgid "No employee defined for your user !"
-msgstr "¡No se ha definido un empleado para su usuario!"
-
-#. module: hr_attendance_project
-#: wizard_view:hr_timesheet.sitp_sotp,sign_out:0
-#: wizard_view:hr_timesheet.sitp_sotp,sign_in:0
-msgid "(Keep empty for current time)"
-msgstr "(vacío para fecha actual)"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_out,server_date:0
-msgid "Current Date"
-msgstr "Fecha actual"
-
-#. module: hr_attendance_project
-#: code:addons/hr_attendance_project/wizard/sign_in_out_task_project.py:0
-#, python-format
-msgid "This project does not have any analytic account defined."
-msgstr "Este proyecto no tiene definida una cuenta analítica."
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,server_date:0
-msgid "Current Server Date"
-msgstr "Fecha actual del servidor"
-
-#. module: hr_attendance_project
-#: model:ir.actions.wizard,name:hr_attendance_project.sitp_sotp
-#: model:ir.ui.menu,name:hr_attendance_project.menu_sitp_sotp
-msgid "Sign in / Sign out by task project"
-msgstr "Registrar entrada/salida de tareas de proyecto"
-
-#. module: hr_attendance_project
-#: wizard_button:hr_timesheet.sitp_sotp,sign_in,so_result_end:0
-msgid "Stop Working"
-msgstr "Parar de trabajar"
-
-#. module: hr_attendance_project
-#: wizard_view:hr_timesheet.sitp_sotp,sign_out:0
-msgid "Sign in"
-msgstr "Registrar entrada"
-
-#. module: hr_attendance_project
-#: wizard_view:hr_timesheet.sitp_sotp,sign_out:0
-msgid "(local time on the server side)"
-msgstr "(hora local en el servidor)"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,date_start:0
-#: wizard_field:hr_timesheet.sitp_sotp,sign_out,date:0
-msgid "Starting Date"
-msgstr "Fecha de inicio"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,date:0
-msgid "Closing Date"
-msgstr "Fecha límite"
-
-#. module: hr_attendance_project
-#: code:addons/hr_attendance_project/wizard/sign_in_out_task_project.py:0
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,tasks_account:0
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,tasks_project:0
-#: wizard_field:hr_timesheet.sitp_sotp,sign_out,tasks_project:0
-#, python-format
-msgid "Task"
-msgstr "Tarea"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,analytic_amount:0
-msgid "Minimum Analytic Amount"
-msgstr "Importe analítico mínimo"
-
-#. module: hr_attendance_project
-#: model:ir.actions.wizard,name:hr_attendance_project.sitp_sotp_my
-#: model:ir.ui.menu,name:hr_attendance_project.menu_sitp_sotp_my
-msgid "Sign in / Sign out by my task project"
-msgstr "Registrar entrada/salida de mis tareas de proyecto"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,state:0
-#: wizard_field:hr_timesheet.sitp_sotp,sign_out,state:0
-msgid "Current state"
-msgstr "Estado actual"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,hours_no_work:0
-msgid "Hours not working"
-msgstr "Horas no trabajadas"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,project_id:0
-msgid "Project"
-msgstr "Proyecto"
-
-#. module: hr_attendance_project
-#: wizard_button:hr_timesheet.sitp_sotp,sign_in,so_result_task:0
-msgid "Change Task"
-msgstr "Cambiar trabajo y abrir tarea"
-
-#. module: hr_attendance_project
-#: code:addons/hr_attendance_project/wizard/sign_in_out_task_project.py:0
-#, python-format
-msgid "Error"
-msgstr "Error"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,name:0
-#: wizard_field:hr_timesheet.sitp_sotp,sign_out,name:0
-msgid "Employee's name"
-msgstr "Nombre del empleado"
-
-#. module: hr_attendance_project
-#: code:addons/hr_attendance_project/wizard/sign_in_out_task_project.py:0
-#, python-format
-msgid "UserError"
-msgstr "Error de usuario"
-
-#. module: hr_attendance_project
-#: wizard_button:hr_timesheet.sitp_sotp,sign_out,si_result_open_task:0
-msgid "Start Working and Open Task"
-msgstr "Empezar a trabajar y abrir tarea"
-
-#. module: hr_attendance_project
-#: wizard_button:hr_timesheet.sitp_sotp,sign_out,si_result:0
-msgid "Start Working"
-msgstr "Empezar a trabajar"
-
-#. module: hr_attendance_project
-#: model:ir.module.module,shortdesc:hr_attendance_project.module_meta_information
-msgid "Attendances of Employees in Projects"
-msgstr "Asistencia de los empleados en los proyectos"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,account_id:0
-msgid "Analytic Account"
-msgstr "Cuenta analítica"
-
-#. module: hr_attendance_project
-#: code:addons/hr_attendance_project/wizard/sign_in_out_task_project.py:0
-#, python-format
-msgid "No cost unit defined for this employee !"
-msgstr "¡No se ha definido un coste unitario para este empleado!"
-
-#. module: hr_attendance_project
-#: wizard_button:hr_timesheet.sitp_sotp,sign_in,end:0
-#: wizard_button:hr_timesheet.sitp_sotp,sign_out,end:0
-msgid "Cancel"
-msgstr "Cancelar"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,info:0
-msgid "Work Description"
-msgstr "Descripción del trabajo"
-
-#. module: hr_attendance_project
-#: wizard_button:hr_timesheet.sitp_sotp,sign_in,so_result:0
-msgid "Change Work"
-msgstr "Cambiar trabajo"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,tasks_project_next:0
-#: wizard_view:hr_timesheet.sitp_sotp,sign_in:0
-msgid "Next Task"
-msgstr "Próxima tarea"
-
-#. module: hr_attendance_project
-#: wizard_view:hr_timesheet.sitp_sotp,sign_in:0
-#: model:ir.actions.wizard,name:hr_attendance_project.sitp_stop_task
-msgid "Sign in status"
-msgstr "Estado del registro de entrada"
-
-#. module: hr_attendance_project
-#: wizard_view:hr_timesheet.sitp_sotp,sign_in:0
-msgid "General Information"
-msgstr "Información general"
-
-#. module: hr_attendance_project
-#: wizard_view:hr_timesheet.sitp_sotp,sign_in:0
-msgid "Work done in the last period"
-msgstr "Trabajo realizado en el último período"

=== removed file 'hr_attendance_project/i18n/fr.po'
--- hr_attendance_project/i18n/fr.po	2012-12-11 10:06:23 +0000
+++ hr_attendance_project/i18n/fr.po	1970-01-01 00:00:00 +0000
@@ -1,222 +0,0 @@
-# Translation of OpenERP Server.
-# This file contains the translation of the following modules:
-# 	* hr_attendance_project
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: OpenERP Server 5.0.6\n"
-"Report-Msgid-Bugs-To: support@openerp.com\n"
-"POT-Creation-Date: 2009-11-14 22:10+0000\n"
-"PO-Revision-Date: 2011-10-26 11:31+0000\n"
-"Last-Translator: Jordi Esteve (Zikzakmedia) <jesteve@zikzakmedia.com>\n"
-"Language-Team: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-10-28 05:57+0000\n"
-"X-Generator: Launchpad (build 14197)\n"
-
-#. module: hr_attendance_project
-#: code:addons/hr_attendance_project/wizard/sign_in_out_task_project.py:0
-#, python-format
-msgid "This duration is negative, not possible !"
-msgstr "La durée est négative, vérifier votre temps !"
-
-#. module: hr_attendance_project
-#: model:ir.module.module,description:hr_attendance_project.module_meta_information
-msgid ""
-"This module aims to manage employee's attendances in Projects.\n"
-"\n"
-"Adds a new wizard to sign in/sign out. In the sign out, an analitic account "
-"or a project must be given, and a task of this analitic account or project. "
-"A work for this task with user, start date and hour information is created."
-msgstr ""
-
-#. module: hr_attendance_project
-#: wizard_view:hr_timesheet.sitp_sotp,sign_out:0
-#: model:ir.actions.wizard,name:hr_attendance_project.sitp_stop_task
-msgid "Sign in / Sign out"
-msgstr "Pointer l'entrée / Pointer la sortie"
-
-#. module: hr_attendance_project
-#: code:addons/hr_attendance_project/wizard/sign_in_out_task_project.py:0
-#, python-format
-msgid "No employee defined for your user !"
-msgstr "Pas d'employé défini pour vous !"
-
-#. module: hr_attendance_project
-#: wizard_view:hr_timesheet.sitp_sotp,sign_out:0
-#: wizard_view:hr_timesheet.sitp_sotp,sign_in:0
-msgid "(Keep empty for current time)"
-msgstr "(Garder vide pour la date courante)"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_out,server_date:0
-msgid "Current Date"
-msgstr "Date courante"
-
-#. module: hr_attendance_project
-#: code:addons/hr_attendance_project/wizard/sign_in_out_task_project.py:0
-#, python-format
-msgid "This project does not have any analytic account defined."
-msgstr "Ce projet n'a pas de compte analytique défini."
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,server_date:0
-msgid "Current Server Date"
-msgstr "Date courante du serveur"
-
-#. module: hr_attendance_project
-#: model:ir.actions.wizard,name:hr_attendance_project.sitp_sotp
-#: model:ir.ui.menu,name:hr_attendance_project.menu_sitp_sotp
-msgid "Sign in / Sign out by task project"
-msgstr "Pointer l'entrée / Pointer la sortie par tache"
-
-#. module: hr_attendance_project
-#: wizard_button:hr_timesheet.sitp_sotp,sign_in,so_result_end:0
-msgid "Stop Working"
-msgstr "Fin de la journée"
-
-#. module: hr_attendance_project
-#: wizard_view:hr_timesheet.sitp_sotp,sign_out:0
-msgid "Sign in"
-msgstr "Pointer l'entrée"
-
-#. module: hr_attendance_project
-#: wizard_view:hr_timesheet.sitp_sotp,sign_out:0
-msgid "(local time on the server side)"
-msgstr "Heure local coté serveur"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,date_start:0
-#: wizard_field:hr_timesheet.sitp_sotp,sign_out,date:0
-msgid "Starting Date"
-msgstr "Date de démarrage"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,date:0
-msgid "Closing Date"
-msgstr "Date de fin"
-
-#. module: hr_attendance_project
-#: code:addons/hr_attendance_project/wizard/sign_in_out_task_project.py:0
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,tasks_account:0
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,tasks_project:0
-#: wizard_field:hr_timesheet.sitp_sotp,sign_out,tasks_project:0
-#, python-format
-msgid "Task"
-msgstr "Tâche"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,analytic_amount:0
-msgid "Minimum Analytic Amount"
-msgstr "Montant analytique minimum"
-
-#. module: hr_attendance_project
-#: model:ir.actions.wizard,name:hr_attendance_project.sitp_sotp_my
-#: model:ir.ui.menu,name:hr_attendance_project.menu_sitp_sotp_my
-msgid "Sign in / Sign out by my task project"
-msgstr "Pointer l'entrée / Pointer la sortie pour mes tâches"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,state:0
-#: wizard_field:hr_timesheet.sitp_sotp,sign_out,state:0
-msgid "Current state"
-msgstr "État actuel"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,hours_no_work:0
-msgid "Hours not working"
-msgstr "Temps non travaillé"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,project_id:0
-msgid "Project"
-msgstr "Projet"
-
-#. module: hr_attendance_project
-#: wizard_button:hr_timesheet.sitp_sotp,sign_in,so_result_task:0
-msgid "Change Task"
-msgstr "Changement de tâche"
-
-#. module: hr_attendance_project
-#: code:addons/hr_attendance_project/wizard/sign_in_out_task_project.py:0
-#, python-format
-msgid "Error"
-msgstr "Erreur"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,name:0
-#: wizard_field:hr_timesheet.sitp_sotp,sign_out,name:0
-msgid "Employee's name"
-msgstr "Nom de l'employé"
-
-#. module: hr_attendance_project
-#: code:addons/hr_attendance_project/wizard/sign_in_out_task_project.py:0
-#, python-format
-msgid "UserError"
-msgstr "Erreur utilisateur"
-
-#. module: hr_attendance_project
-#: wizard_button:hr_timesheet.sitp_sotp,sign_out,si_result_open_task:0
-msgid "Start Working and Open Task"
-msgstr "Démarrage et ouverture de la tâche"
-
-#. module: hr_attendance_project
-#: wizard_button:hr_timesheet.sitp_sotp,sign_out,si_result:0
-msgid "Start Working"
-msgstr "Démarrage"
-
-#. module: hr_attendance_project
-#: model:ir.module.module,shortdesc:hr_attendance_project.module_meta_information
-msgid "Attendances of Employees in Projects"
-msgstr "Présence des employés dans les projets"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,account_id:0
-msgid "Analytic Account"
-msgstr "Compte analytique"
-
-#. module: hr_attendance_project
-#: code:addons/hr_attendance_project/wizard/sign_in_out_task_project.py:0
-#, python-format
-msgid "No cost unit defined for this employee !"
-msgstr "Pas d'unité de coût pour cette employé !"
-
-#. module: hr_attendance_project
-#: wizard_button:hr_timesheet.sitp_sotp,sign_in,end:0
-#: wizard_button:hr_timesheet.sitp_sotp,sign_out,end:0
-msgid "Cancel"
-msgstr "Annuler"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,info:0
-msgid "Work Description"
-msgstr "Travail effectué"
-
-#. module: hr_attendance_project
-#: wizard_button:hr_timesheet.sitp_sotp,sign_in,so_result:0
-msgid "Change Work"
-msgstr "Changement de travail"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,tasks_project_next:0
-#: wizard_view:hr_timesheet.sitp_sotp,sign_in:0
-msgid "Next Task"
-msgstr "Prochaine tâche"
-
-#. module: hr_attendance_project
-#: wizard_view:hr_timesheet.sitp_sotp,sign_in:0
-#: model:ir.actions.wizard,name:hr_attendance_project.sitp_stop_task
-msgid "Sign in status"
-msgstr "État du pointer l'entrée"
-
-#. module: hr_attendance_project
-#: wizard_view:hr_timesheet.sitp_sotp,sign_in:0
-msgid "General Information"
-msgstr "Informations générales"
-
-#. module: hr_attendance_project
-#: wizard_view:hr_timesheet.sitp_sotp,sign_in:0
-msgid "Work done in the last period"
-msgstr "Travail effectué dans la dernière période"

=== removed file 'hr_attendance_project/i18n/hr_attendance_project.pot'
--- hr_attendance_project/i18n/hr_attendance_project.pot	2012-12-11 10:06:23 +0000
+++ hr_attendance_project/i18n/hr_attendance_project.pot	1970-01-01 00:00:00 +0000
@@ -1,219 +0,0 @@
-# Translation of OpenERP Server.
-# This file contains the translation of the following modules:
-#	* hr_attendance_project
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: OpenERP Server 5.0.6\n"
-"Report-Msgid-Bugs-To: support@openerp.com\n"
-"POT-Creation-Date: 2009-11-14 22:10:55+0000\n"
-"PO-Revision-Date: 2009-11-14 22:10:55+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Plural-Forms: \n"
-
-#. module: hr_attendance_project
-#: code:addons/hr_attendance_project/wizard/sign_in_out_task_project.py:0
-#, python-format
-msgid "This duration is negative, not possible !"
-msgstr ""
-
-#. module: hr_attendance_project
-#: model:ir.module.module,description:hr_attendance_project.module_meta_information
-msgid "This module aims to manage employee's attendances in Projects.\n"
-"\n"
-"Adds a new wizard to sign in/sign out. In the sign out, an analitic account or a project must be given, and a task of this analitic account or project. A work for this task with user, start date and hour information is created."
-msgstr ""
-
-#. module: hr_attendance_project
-#: wizard_view:hr_timesheet.sitp_sotp,sign_out:0
-#: model:ir.actions.wizard,name:hr_attendance_project.sitp_stop_task
-msgid "Sign in / Sign out"
-msgstr ""
-
-#. module: hr_attendance_project
-#: code:addons/hr_attendance_project/wizard/sign_in_out_task_project.py:0
-#, python-format
-msgid "No employee defined for your user !"
-msgstr ""
-
-#. module: hr_attendance_project
-#: wizard_view:hr_timesheet.sitp_sotp,sign_out:0
-#: wizard_view:hr_timesheet.sitp_sotp,sign_in:0
-msgid "(Keep empty for current time)"
-msgstr ""
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_out,server_date:0
-msgid "Current Date"
-msgstr ""
-
-#. module: hr_attendance_project
-#: code:addons/hr_attendance_project/wizard/sign_in_out_task_project.py:0
-#, python-format
-msgid "This project does not have any analytic account defined."
-msgstr ""
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,server_date:0
-msgid "Current Server Date"
-msgstr ""
-
-#. module: hr_attendance_project
-#: model:ir.actions.wizard,name:hr_attendance_project.sitp_sotp
-#: model:ir.ui.menu,name:hr_attendance_project.menu_sitp_sotp
-msgid "Sign in / Sign out by task project"
-msgstr ""
-
-#. module: hr_attendance_project
-#: wizard_button:hr_timesheet.sitp_sotp,sign_in,so_result_end:0
-msgid "Stop Working"
-msgstr ""
-
-#. module: hr_attendance_project
-#: wizard_view:hr_timesheet.sitp_sotp,sign_out:0
-msgid "Sign in"
-msgstr ""
-
-#. module: hr_attendance_project
-#: wizard_view:hr_timesheet.sitp_sotp,sign_out:0
-msgid "(local time on the server side)"
-msgstr ""
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,date_start:0
-#: wizard_field:hr_timesheet.sitp_sotp,sign_out,date:0
-msgid "Starting Date"
-msgstr ""
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,date:0
-msgid "Closing Date"
-msgstr ""
-
-#. module: hr_attendance_project
-#: code:addons/hr_attendance_project/wizard/sign_in_out_task_project.py:0
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,tasks_account:0
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,tasks_project:0
-#: wizard_field:hr_timesheet.sitp_sotp,sign_out,tasks_project:0
-#, python-format
-msgid "Task"
-msgstr ""
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,analytic_amount:0
-msgid "Minimum Analytic Amount"
-msgstr ""
-
-#. module: hr_attendance_project
-#: model:ir.actions.wizard,name:hr_attendance_project.sitp_sotp_my
-#: model:ir.ui.menu,name:hr_attendance_project.menu_sitp_sotp_my
-msgid "Sign in / Sign out by my task project"
-msgstr ""
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,state:0
-#: wizard_field:hr_timesheet.sitp_sotp,sign_out,state:0
-msgid "Current state"
-msgstr ""
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,hours_no_work:0
-msgid "Hours not working"
-msgstr ""
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,project_id:0
-msgid "Project"
-msgstr ""
-
-#. module: hr_attendance_project
-#: wizard_button:hr_timesheet.sitp_sotp,sign_in,so_result_task:0
-msgid "Change Task"
-msgstr ""
-
-#. module: hr_attendance_project
-#: code:addons/hr_attendance_project/wizard/sign_in_out_task_project.py:0
-#, python-format
-msgid "Error"
-msgstr ""
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,name:0
-#: wizard_field:hr_timesheet.sitp_sotp,sign_out,name:0
-msgid "Employee's name"
-msgstr ""
-
-#. module: hr_attendance_project
-#: code:addons/hr_attendance_project/wizard/sign_in_out_task_project.py:0
-#, python-format
-msgid "UserError"
-msgstr ""
-
-#. module: hr_attendance_project
-#: wizard_button:hr_timesheet.sitp_sotp,sign_out,si_result_open_task:0
-msgid "Start Working and Open Task"
-msgstr ""
-
-#. module: hr_attendance_project
-#: wizard_button:hr_timesheet.sitp_sotp,sign_out,si_result:0
-msgid "Start Working"
-msgstr ""
-
-#. module: hr_attendance_project
-#: model:ir.module.module,shortdesc:hr_attendance_project.module_meta_information
-msgid "Attendances of Employees in Projects"
-msgstr ""
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,account_id:0
-msgid "Analytic Account"
-msgstr ""
-
-#. module: hr_attendance_project
-#: code:addons/hr_attendance_project/wizard/sign_in_out_task_project.py:0
-#, python-format
-msgid "No cost unit defined for this employee !"
-msgstr ""
-
-#. module: hr_attendance_project
-#: wizard_button:hr_timesheet.sitp_sotp,sign_in,end:0
-#: wizard_button:hr_timesheet.sitp_sotp,sign_out,end:0
-msgid "Cancel"
-msgstr ""
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,info:0
-msgid "Work Description"
-msgstr ""
-
-#. module: hr_attendance_project
-#: wizard_button:hr_timesheet.sitp_sotp,sign_in,so_result:0
-msgid "Change Work"
-msgstr ""
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,tasks_project_next:0
-#: wizard_view:hr_timesheet.sitp_sotp,sign_in:0
-msgid "Next Task"
-msgstr ""
-
-#. module: hr_attendance_project
-#: wizard_view:hr_timesheet.sitp_sotp,sign_in:0
-#: model:ir.actions.wizard,name:hr_attendance_project.sitp_stop_task
-msgid "Sign in status"
-msgstr ""
-
-#. module: hr_attendance_project
-#: wizard_view:hr_timesheet.sitp_sotp,sign_in:0
-msgid "General Information"
-msgstr ""
-
-#. module: hr_attendance_project
-#: wizard_view:hr_timesheet.sitp_sotp,sign_in:0
-msgid "Work done in the last period"
-msgstr ""
-

=== removed file 'hr_attendance_project/i18n/pt.po'
--- hr_attendance_project/i18n/pt.po	2012-12-11 10:06:23 +0000
+++ hr_attendance_project/i18n/pt.po	1970-01-01 00:00:00 +0000
@@ -1,230 +0,0 @@
-# Portuguese translation for openobject-addons
-# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2009-11-14 22:10+0000\n"
-"PO-Revision-Date: 2011-10-26 11:31+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Portuguese <pt@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-10-28 05:57+0000\n"
-"X-Generator: Launchpad (build 14197)\n"
-
-#. module: hr_attendance_project
-#: code:addons/hr_attendance_project/wizard/sign_in_out_task_project.py:0
-#, python-format
-msgid "This duration is negative, not possible !"
-msgstr "Esta duração é negativa, não é possível !"
-
-#. module: hr_attendance_project
-#: model:ir.module.module,description:hr_attendance_project.module_meta_information
-msgid ""
-"This module aims to manage employee's attendances in Projects.\n"
-"\n"
-"Adds a new wizard to sign in/sign out. In the sign out, an analitic account "
-"or a project must be given, and a task of this analitic account or project. "
-"A work for this task with user, start date and hour information is created."
-msgstr ""
-"Este módulo tem como objectivo gerir a predença dos funcionário nos "
-"Projectos.\n"
-"\n"
-"Adiciona um novo assistente para entrar/sair. Na saída é necessário fornecer "
-"uma conta analítica ou um projecto, e uma tarefa desta conta analítica ou "
-"projecto. Um trabalho para esta tarefa com utilizador, data de inicio e "
-"informação sobre as horas é criada."
-
-#. module: hr_attendance_project
-#: wizard_view:hr_timesheet.sitp_sotp,sign_out:0
-#: model:ir.actions.wizard,name:hr_attendance_project.sitp_stop_task
-msgid "Sign in / Sign out"
-msgstr "Registrar entrada / Registrar saida"
-
-#. module: hr_attendance_project
-#: code:addons/hr_attendance_project/wizard/sign_in_out_task_project.py:0
-#, python-format
-msgid "No employee defined for your user !"
-msgstr "Sem funcionário definido para o utilizador !"
-
-#. module: hr_attendance_project
-#: wizard_view:hr_timesheet.sitp_sotp,sign_out:0
-#: wizard_view:hr_timesheet.sitp_sotp,sign_in:0
-msgid "(Keep empty for current time)"
-msgstr "(Vazio para a hora actual)"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_out,server_date:0
-msgid "Current Date"
-msgstr "Data Actual"
-
-#. module: hr_attendance_project
-#: code:addons/hr_attendance_project/wizard/sign_in_out_task_project.py:0
-#, python-format
-msgid "This project does not have any analytic account defined."
-msgstr "Este projecto não tem nenhuma conta analítica definida."
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,server_date:0
-msgid "Current Server Date"
-msgstr "Data Actual do Servidor"
-
-#. module: hr_attendance_project
-#: model:ir.actions.wizard,name:hr_attendance_project.sitp_sotp
-#: model:ir.ui.menu,name:hr_attendance_project.menu_sitp_sotp
-msgid "Sign in / Sign out by task project"
-msgstr "Entrar/Sair por tarefa de projecto"
-
-#. module: hr_attendance_project
-#: wizard_button:hr_timesheet.sitp_sotp,sign_in,so_result_end:0
-msgid "Stop Working"
-msgstr "Parar de Trabalhar"
-
-#. module: hr_attendance_project
-#: wizard_view:hr_timesheet.sitp_sotp,sign_out:0
-msgid "Sign in"
-msgstr "Registro de Entrada"
-
-#. module: hr_attendance_project
-#: wizard_view:hr_timesheet.sitp_sotp,sign_out:0
-msgid "(local time on the server side)"
-msgstr "(Tempo local no lado do servidor)"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,date_start:0
-#: wizard_field:hr_timesheet.sitp_sotp,sign_out,date:0
-msgid "Starting Date"
-msgstr "Data de Início"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,date:0
-msgid "Closing Date"
-msgstr "Fechar Data"
-
-#. module: hr_attendance_project
-#: code:addons/hr_attendance_project/wizard/sign_in_out_task_project.py:0
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,tasks_account:0
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,tasks_project:0
-#: wizard_field:hr_timesheet.sitp_sotp,sign_out,tasks_project:0
-#, python-format
-msgid "Task"
-msgstr "Tarefa"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,analytic_amount:0
-msgid "Minimum Analytic Amount"
-msgstr "Montante Mínimo Analítico"
-
-#. module: hr_attendance_project
-#: model:ir.actions.wizard,name:hr_attendance_project.sitp_sotp_my
-#: model:ir.ui.menu,name:hr_attendance_project.menu_sitp_sotp_my
-msgid "Sign in / Sign out by my task project"
-msgstr "Entrar/Sair pela minha tarefa de projecto"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,state:0
-#: wizard_field:hr_timesheet.sitp_sotp,sign_out,state:0
-msgid "Current state"
-msgstr "Estado Actual"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,hours_no_work:0
-msgid "Hours not working"
-msgstr "Horas não trabalhadas"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,project_id:0
-msgid "Project"
-msgstr "Projecto"
-
-#. module: hr_attendance_project
-#: wizard_button:hr_timesheet.sitp_sotp,sign_in,so_result_task:0
-msgid "Change Task"
-msgstr "Mudar Tarefa"
-
-#. module: hr_attendance_project
-#: code:addons/hr_attendance_project/wizard/sign_in_out_task_project.py:0
-#, python-format
-msgid "Error"
-msgstr "Erro"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,name:0
-#: wizard_field:hr_timesheet.sitp_sotp,sign_out,name:0
-msgid "Employee's name"
-msgstr "Nome do Funcionário"
-
-#. module: hr_attendance_project
-#: code:addons/hr_attendance_project/wizard/sign_in_out_task_project.py:0
-#, python-format
-msgid "UserError"
-msgstr "Erro de Utilizador"
-
-#. module: hr_attendance_project
-#: wizard_button:hr_timesheet.sitp_sotp,sign_out,si_result_open_task:0
-msgid "Start Working and Open Task"
-msgstr "Comerçar a Trabalhar e Abrir Tarefa"
-
-#. module: hr_attendance_project
-#: wizard_button:hr_timesheet.sitp_sotp,sign_out,si_result:0
-msgid "Start Working"
-msgstr "Começar a Trabalhar"
-
-#. module: hr_attendance_project
-#: model:ir.module.module,shortdesc:hr_attendance_project.module_meta_information
-msgid "Attendances of Employees in Projects"
-msgstr "Presenças de Funcionários nos Projectos"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,account_id:0
-msgid "Analytic Account"
-msgstr "Conta Analítica"
-
-#. module: hr_attendance_project
-#: code:addons/hr_attendance_project/wizard/sign_in_out_task_project.py:0
-#, python-format
-msgid "No cost unit defined for this employee !"
-msgstr "Nenhum custo unitário definido para este funcionáro !"
-
-#. module: hr_attendance_project
-#: wizard_button:hr_timesheet.sitp_sotp,sign_in,end:0
-#: wizard_button:hr_timesheet.sitp_sotp,sign_out,end:0
-msgid "Cancel"
-msgstr "Cancelar"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,info:0
-msgid "Work Description"
-msgstr "Descrição do Trabalho"
-
-#. module: hr_attendance_project
-#: wizard_button:hr_timesheet.sitp_sotp,sign_in,so_result:0
-msgid "Change Work"
-msgstr "Mudar Trabalho"
-
-#. module: hr_attendance_project
-#: wizard_field:hr_timesheet.sitp_sotp,sign_in,tasks_project_next:0
-#: wizard_view:hr_timesheet.sitp_sotp,sign_in:0
-msgid "Next Task"
-msgstr "Próxima Tarefa"
-
-#. module: hr_attendance_project
-#: wizard_view:hr_timesheet.sitp_sotp,sign_in:0
-#: model:ir.actions.wizard,name:hr_attendance_project.sitp_stop_task
-msgid "Sign in status"
-msgstr "Estado da Entrada"
-
-#. module: hr_attendance_project
-#: wizard_view:hr_timesheet.sitp_sotp,sign_in:0
-msgid "General Information"
-msgstr "Informação Geral"
-
-#. module: hr_attendance_project
-#: wizard_view:hr_timesheet.sitp_sotp,sign_in:0
-msgid "Work done in the last period"
-msgstr "Trabalho concluído no último periodo"

=== removed directory 'hr_attendance_project/wizard'
=== removed file 'hr_attendance_project/wizard/__init__.py'
--- hr_attendance_project/wizard/__init__.py	2012-12-11 10:06:23 +0000
+++ hr_attendance_project/wizard/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,26 +0,0 @@
-# -*- coding: utf-8 -*-
-##############################################################################
-#
-#    hr_attendance_project module for OpenERP
-#    Copyright (C) 2008 Zikzakmedia S.L. (http://zikzakmedia.com)
-#       Raimon Esteve <resteve@zikzakmedia.com> All Rights Reserved.
-#       Jordi Esteve <resteve@zikzakmedia.com> All Rights Reserved.
-#
-#    This file is a part of hr_attendance_project
-#
-#    hr_attendance_project is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
-#
-#    hr_attendance_project is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-##############################################################################
-
-import sign_in_out_task_project

=== removed file 'hr_attendance_project/wizard/sign_in_out_task_project.py'
--- hr_attendance_project/wizard/sign_in_out_task_project.py	2012-12-11 10:06:23 +0000
+++ hr_attendance_project/wizard/sign_in_out_task_project.py	1970-01-01 00:00:00 +0000
@@ -1,379 +0,0 @@
-# -*- coding: utf-8 -*-
-##############################################################################
-#
-#    hr_attendance_project module for OpenERP
-#    Copyright (C) 2008 Zikzakmedia S.L. (http://zikzakmedia.com)
-#       Raimon Esteve <resteve@zikzakmedia.com> All Rights Reserved.
-#       Jordi Esteve <resteve@zikzakmedia.com> All Rights Reserved.
-#       Jesús Martín <jmartin@zikzakmedia.com>
-#    Copyright (C) 2009 SYLEAM Info Services (http://www.Syleam.fr)
-#       Sebastien LANGE <sebastien.lange@syleam.fr> All Rights Reserved.
-#
-#    This file is a part of hr_attendance_project
-#
-#    hr_attendance_project is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
-#
-#    hr_attendance_project is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-##############################################################################
-# -*- encoding: utf-8 -*-
-
-from osv import osv, fields
-import wizard
-import time
-import datetime
-import pooler
-from tools.translate import _
-from tools.misc import UpdateableStr
-
-#si_form ='''<?xml version="1.0"?> 
-#<form string="Sign in / Sign out">
-#    <separator string="Sign in" colspan="4"/>
-#    <field name="name" readonly="True" />
-#    <field name="state" readonly="True" />
-#    <field name="server_date"/>
-#    <label string="(local time on the server side)" colspan="2"/>
-#    <field name="date"/>
-#    <label string="(Keep empty for current time)" colspan="2"/>
-#    <field name="tasks_project" domain="[('project_id.members', 'in', [uid]),('project_id.state','=','open'),('state','in',['draft','open'])]" colspan="4"/>
-#</form>'''
-
-#si_fields = {
-#    'name': {'string': "Employee's name", 'type':'char', 'required':True, 'readonly':True},
-#    'state': {'string': "Current state", 'type' : 'char', 'required' : True, 'readonly': True},
-#    'date': {'string':"Starting Date", 'type':'datetime'},
-#    'server_date': {'string':"Current Date", 'type':'datetime', 'readonly':True},
-#    'tasks_project': {'string':"Task", 'type':'many2one', 'relation':'project.task'},
-#}
-
-so_form_base = '''<?xml version="1.0" ?>
-<form string="Sign in status">
-    <separator string="General Information" colspan="4" />
-    <field name="name" readonly="True" />
-    <field name="state" readonly="True" />
-    <field name="date_start"/>
-    <field name="server_date"/>
-    <separator string="Work done in the last period" colspan="4" />
-    <field name="account_id" colspan="2" attrs="{'readonly':[('project_id','!=',False)],'required':[('project_id','==',False)]}"/>
-    <field name="project_id" attrs="{'readonly':[('account_id','!=',False)],'required':[('account_id','==',False)]}" domain="[('members','in',[uid]), ('state','=','open')]" />
-    <field name="tasks_account" domain="[('project_id.analytic_account_id', '=', account_id),('state','=','open'),%s]" attrs="{'readonly':[('project_id','!=',False)],'required':[('project_id','==',False)]}"/>
-    <field name="tasks_project" domain="[('project_id', '=', project_id),('state','=','open'),%s]" attrs="{'readonly':[('account_id','!=',False)],'required':[('account_id','==',False)]}"/>
-    <field name="info" colspan="4"/>
-    <field name="date" colspan="2"/>
-    <label string="(Keep empty for current time)" colspan="2"/>
-    <field name="analytic_amount"/>
-    <field name="hours_no_work" widget="float_time"/>
-    <separator string="Next Task" colspan="4" />
-    <field name="tasks_project_next" domain="[('project_id.members', 'in', [uid]),('project_id.state','=','open'),('state','in',['draft','open'])]" colspan="4"/>
-</form>'''
-
-so_form = UpdateableStr()
-
-#so_fields = {
-    #'name': {'string':"Employee's name", 'type':'char', 'required':True, 'readonly':True},
-    #'state': {'string':"Current state", 'type':'char', 'required':True, 'readonly':True},
-    #'account_id': {'string':"Analytic Account", 'type':'many2one', 'relation':'account.analytic.account', 'domain':"[('type','=','normal')]"},
-    #'info': {'string':"Work Description", 'type':'char', 'size':256, 'required':True},
-    #'date': {'string':"Closing Date", 'type':'datetime'},
-    #'date_start': {'string':"Starting Date", 'type':'datetime', 'readonly':True},
-    #'server_date': {'string':"Current Server Date", 'type':'datetime', 'readonly':True},
-    #'analytic_amount': {'string':"Minimum Analytic Amount", 'type':'float'},
-    #'project_id': {'string':"Project", 'type':'many2one', 'relation':'project.project'},
-    #'tasks_account': {'string':"Task", 'type':'many2one', 'relation':'project.task'},
-    #'tasks_project': {'string':"Task", 'type':'many2one', 'relation':'project.task'},
-    #'tasks_project_next': {'string':"Next Task", 'type':'many2one', 'relation':'project.task'},
-    #'hours_no_work': {'string':"Hours not working", 'type':'float'},
-#}
-
-
-
-class wiz_sitp_sotp(osv.osv_memory):
-    
-    _name = 'wiz.sitp.sotp'
-    _description = 'Para crear nominas'
-    
-    _columns={
-        'name':fields.char('Employee name', required = True, readonly = True),
-        'state':fields.char('Current state', required = True, readonly = True),
-        'date':fields.datetime('Starting/End Date'),
-        'date_start':fields.datetime('Starting Date', readonly=True),
-        'server_date': fields.datetime('Current Date', readonly = True),
-        'tasks_project':fields.many2many('project.task','rel_tasks_project','tasks_id','project_id','Task'),
-        'account_id':fields.many2one ('account.analytic.account',"Analytic Account", domain ="[('type','=','normal')]"),
-        'info':fields.char ('Work Description', size=256, required=True),
-        'server_date': fields.datetime('Current Server Date', readonly=True),
-        'analytic_amount':fields.float ('Minimum Analytic Amount'),
-        'project_id':fields.many2one('project.project','Project'),
-        'tasks_account':fields.many2one('project.task','Task'),
-        'tasks_project':fields.many2one('project.task','Task'),
-        'tasks_project_next':fields.many2one('project.task','Next Task'),
-        'hours_no_work':fields.float('Hours not working'),      
-         }
- 
-    def get_empid(self, cr, uid, data, context):
-        '''
-        Cogemos los datos del empleado, mediante el usuario logeado
-        '''
-        ########################################################
-        # OBJETO
-        ########################################################
-        emp_obj = self.pool.get ('hr.employee')
-        ########################################################
-        #emp_obj = pooler.get_pool(cr.dbname).get('hr.employee')
-        emp_id = emp_obj.search(cr, uid, [('user_id', '=', uid)])
-        if emp_id:
-            employee = emp_obj.read(cr, uid, emp_id)[0]
-            return {'name': employee['name'], 'state': employee['state'], 'emp_id': emp_id[0], 'date':False, 'server_date':time.strftime('%Y-%m-%d %H:%M:%S')}
-        raise osv.except_osv(_("UserError"), _("No employee defined for your user !"))
-        #raise wizard.except_wizard(_('UserError'), _('No employee defined for your user !'))
-
-    def get_empid2(self, cr, uid, data, context=None):
-        ########################################################
-        # OBJETO
-        ########################################################
-        model_data_obj = self.pool.get('ir.model.data')
-        task_obj = self.pool.get('project.task')
-        ########################################################
-        if not context:
-            context = {}
-        #model_data_obj = pooler.get_pool(cr.dbname).get('ir.model.data')
-        menu_id = model_data_obj.search(cr, uid, [('name','=','menu_sitp_sotp_my')])[0] 
-        menu = model_data_obj.browse(cr, uid, menu_id)
-        if not context.get('task', False):
-            if menu.res_id == data['id']:
-            # The menu 'Sign in / Sign out by my task project' has been selected
-                so_form.string = so_form_base % ("('user_id', '=', uid)", "('user_id', '=', uid)")
-            else:
-            # The menu 'Sign in / Sign out by task project' has been selected
-                so_form.string = so_form_base % ('', '')
-        else:
-            so_form.string = so_form_base % ('', '')
-
-        res = self.get_empid(cr, uid, data, context)
-        cr.execute('select name,action from hr_attendance where employee_id=%s order by name desc limit 1', (res['emp_id'],))
-        res['server_date'] = time.strftime('%Y-%m-%d %H:%M:%S')
-        res['date_start'] = cr.fetchone()[0]
-        res['info'] = ''
-        res['account_id'] = False
-        if context.get('task', False):
-            task_obj = pooler.get_pool(cr.dbname).get('project.task')
-            task = task_obj.browse(cr, uid, data['id'])
-            res['project_id'] = task.project_id.id
-            res['tasks_project'] = data['id']
-        return res
-
-    def sign_in_result(self, cr, uid, data, context):
-        ########################################################
-        # OBJETO
-        ########################################################
-        emp_obj = self.pool.get('hr.employee')
-        ########################################################
-        #pool_obj = pooler.get_pool(cr.dbname)
-        #emp_obj = pool_obj.get('hr.employee')
-        emp_id = data['form']['emp_id']
-        from osv.osv import except_osv
-        try:
-            success = emp_obj.attendance_action_change(cr, uid, [emp_id], type='sign_in', dt=data['form']['date'] or False)
-        except except_osv, e:
-            raise osv.except_osv(e.name, e.value)
-            #raise wizard.except_wizard(e.name, e.value)
-        return {}
-
-    def open_task(self, cr, uid, data, context):
-        ########################################################
-        # OBJETO
-        ########################################################
-        emp_obj = self.pool.get('hr.employee')
-        model_data_obj = self.pool.get('ir.model.data')
-        ########################################################
-        #pool_obj = pooler.get_pool(cr.dbname)
-        #emp_obj = pool_obj.get('hr.employee')
-        emp_id = data['form']['emp_id']
-        model_data_ids = model_data_obj.search(cr,uid,[('model','=','ir.ui.view'),('name','=','view_task_form2')])
-        resource_id = model_data_obj.read(cr,uid,model_data_ids,fields=['res_id'])[0]['res_id']
-        from osv.osv import except_osv
-        try:
-            success = emp_obj.attendance_action_change(cr, uid, [emp_id], type='sign_in', dt=data['form']['date'] or False)
-        except except_osv, e:
-            raise osv.except_osv(e.name, e.value)
-            #raise wizard.except_wizard(e.name, e.value)
-        if data['form']['tasks_project']:
-            return {
-                'domain': "[('id','=', %s)]" %  data['form']['tasks_project'],
-                'context': "{'task':1}",
-                'name': _('Task'),
-                'view_type': 'form',
-                'view_mode': 'tree,form',
-                'res_model': 'project.task',
-                'views': [(False,'tree'),(resource_id,'form')],
-                'type': 'ir.actions.act_window'
-            }
-        else:
-            return {}
-
-    def write(self, cr, uid, data, emp_id, context):
-        ########################################################
-        # OBJETO
-        ########################################################
-        project_obj = self.pool.get('project.project')
-        project_task_obj = self.pool.get('project.task')
-        project_work_obj = self.pool.get('project.task.work')
-        timesheet_obj = self.pool.get('hr.analytic.timesheet')
-        ########################################################
-        #project_obj = pooler.get_pool(cr.dbname).get('project.project')
-        #project_task_obj = pooler.get_pool(cr.dbname).get('project.task')
-        #project_work_obj = pooler.get_pool(cr.dbname).get('project.task.work')
-        #timesheet_obj = pooler.get_pool(cr.dbname).get('hr.analytic.timesheet')
-    
-        hour = (time.mktime(time.strptime(data['form']['date'] or time.strftime('%Y-%m-%d %H:%M:%S'), '%Y-%m-%d %H:%M:%S')) -
-            time.mktime(time.strptime(data['form']['date_start'], '%Y-%m-%d %H:%M:%S'))) / 3600.0
-        hour -= data['form']['hours_no_work']
-        if hour < 0:
-            raise osv.except_osv(_('Error'), _('This duration is negative, not possible !'))
-            #raise wizard.except_wizard(_('Error'), _('This duration is negative, not possible !'))
-    
-        minimum = data['form']['analytic_amount']
-        if minimum:
-            hour = round(round((hour + minimum / 2) / minimum) * minimum, 2)
-        res = timesheet_obj.default_get(cr, uid, ['product_id','product_uom_id'])
-        if not res['product_uom_id']:
-            raise osv.except_osv(_('UserError'), _('No cost unit defined for this employee !'))
-            #raise wizard.except_wizard(_('UserError'), _('No cost unit defined for this employee !'))
-        up = timesheet_obj.on_change_unit_amount(cr, uid, False, res['product_id'], hour, res['product_uom_id'])['value']
-    
-        if not data['form']['account_id']:
-            project = project_obj.browse(cr, uid, data['form']['project_id'])
-            if not project.analytic_account_id:
-                raise osv.except_osv(_('Error'), _('This project does not have any analytic account defined.'))
-                #raise wizard.except_wizard(_('Error'), _('This project does not have any analytic account defined.'))
-            account_id = project.analytic_account_id.id
-            task_id = data['form']['tasks_project']
-        else:
-            account_id = data['form']['account_id']
-            task_id = data['form']['tasks_account']    
-     
-        value = {
-            'name': data['form']['info'],
-            'date': data['form']['date_start'],
-            'task_id': task_id,
-            'hours': hour,
-            'user_id': uid,
-        }
-        project_work_obj.create(cr, uid, value)
-    
-        task = project_task_obj.browse(cr, uid, task_id)
-        # To avoid create two analityc lines, one from creating the work in the task project and the other from the timesheet
-        if not task.project_id or not task.project_id.analytic_account_id:
-            res['name'] = data['form']['info']
-            res['account_id'] = account_id
-            res['unit_amount'] = hour
-            res.update(up)
-            up = timesheet_obj.on_change_account_id(cr, uid, [], res['account_id']).get('value', {})
-            res.update(up)
-            timesheet_obj.create(cr, uid, res, context)
-        return
-
-    def sign_out_result_end(self, cr, uid, data, context):
-        ########################################################
-        # OBJETO
-        ########################################################
-        emp_obj = self.pool.get('hr.employee')
-        ########################################################
-        #emp_obj = pooler.get_pool(cr.dbname).get('hr.employee')
-        emp_id = data['form']['emp_id']
-        emp_obj.attendance_action_change(cr, uid, [emp_id], type='sign_out', dt=data['form']['date'])
-        write(self, cr, uid, data, emp_id, context)
-        return {}
-
-    def sign_out_result(self, cr, uid, data, context):
-        ########################################################
-        # OBJETO
-        ########################################################
-        emp_obj = self.pool.get('hr.employee')
-        ########################################################
-        #emp_obj = pooler.get_pool(cr.dbname).get('hr.employee')
-        emp_id = data['form']['emp_id']
-        emp_obj.attendance_action_change(cr, uid, [emp_id], type='action', dt=data['form']['date'])
-        write(self, cr, uid, data, emp_id, context)
-        return {}
-
-    def so_open_task(self, cr, uid, data, context):
-        #####################################################################################################
-        # OBJETO
-        #####################################################################################################
-        emp_obj = self.pool.get('hr.employee')
-        model_data_obj = self.pool.get('ir.model.data')
-        #####################################################################################################
-        #pool_obj = pooler.get_pool(cr.dbname)
-        #emp_obj = pool_obj.get('hr.employee')
-        emp_id = data['form']['emp_id']
-        emp_obj.attendance_action_change(cr, uid, [emp_id], type='action', dt=data['form']['date'])
-        write(self, cr, uid, data, emp_id, context)
-        model_data_ids = model_data_obj.search(cr,uid,[('model','=','ir.ui.view'),('name','=','view_task_form2')])
-        resource_id = model_data_obj.read(cr,uid,model_data_ids,fields=['res_id'])[0]['res_id']
-        if data['form']['tasks_project_next']:
-            return {
-                'domain': "[('id','=', %s)]" %  data['form']['tasks_project_next'],
-                'context': "{'task':1}",
-                'name': _('Task'),
-                'view_type': 'form',
-                'view_mode': 'tree,form',
-                'res_model': 'project.task',
-                'views': [(False,'tree'),(resource_id,'form')],
-                'type': 'ir.actions.act_window'
-            }
-        else:
-            return {}
-
-    def state_check(self, cr, uid, data, context):
-        emp_id = self.get_empid(self, cr, uid, data, context)['emp_id']
-        # get the latest action (sign_in or out) for this employee
-        cr.execute('select action from hr_attendance where employee_id=%s and action in (\'sign_in\',\'sign_out\') order by name desc limit 1', (emp_id,))
-        res = (cr.fetchone() or ('sign_out',))[0]
-    #TODO: invert sign_in et sign_out
-        return res
-#
-#    states = {
-#            'init' : {
-#                'actions' : [_get_empid],
-#                'result' : {'type' : 'choice', 'next_state': _state_check}
-#            },
-#            'sign_out' : { # this means sign_in...
-#                'actions' : [_get_empid],
-#                'result' : {'type':'form', 'arch':si_form, 'fields' : si_fields, 'state':[('end', 'Cancel'),('si_result', 'Start Working'),('si_result_open_task', 'Start Working and Open Task') ] }
-#            },
-#            'si_result' : {
-#                'actions' : [_sign_in_result],
-#                'result' : {'type':'state', 'state':'end'}
-#            },
-#            'si_result_open_task': {
-#                'actions': [],
-#                'result': {'type':'action', 'action':_open_task, 'state':'end'}
-#            },
-#            'sign_in' : { # this means sign_out...
-#                'actions' : [_get_empid2],
-#                'result' : {'type':'form', 'arch':so_form, 'fields':so_fields, 'state':[('end', 'Cancel'),('so_result', 'Change Work'),('so_result_task', 'Change Task'),('so_result_end', 'Stop Working') ] }
-#            },
-#            'so_result' : {
-#                'actions' : [_sign_out_result],
-#                'result' : {'type':'state', 'state':'end'}
-#            },
-#            'so_result_task': {
-#                'actions': [],
-#                'result': {'type':'action', 'action':_so_open_task, 'state':'end'}
-#            },
-#            'so_result_end' : {
-#                'actions' : [_sign_out_result_end],
-#                'result' : {'type':'state', 'state':'end'}
-#            },
-#    }
-wiz_sitp_sotp()

=== removed file 'hr_attendance_project/wizard/sign_in_out_task_project.xml'
--- hr_attendance_project/wizard/sign_in_out_task_project.xml	2012-12-11 10:06:23 +0000
+++ hr_attendance_project/wizard/sign_in_out_task_project.xml	1970-01-01 00:00:00 +0000
@@ -1,79 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<openerp>
-    <data>
-    
-    <!-- 
-	===============================================================================================================
-		WIZAR
-	===============================================================================================================
-	 -->
-	
-	<!-- FORM -->
-		<record model="ir.ui.view" id="sitp_sotp">
-        	<field name="name">wizard.crea.nominas.form.view</field>
-            <field name="model">wizard.crea.nominas</field>
-            <field name="type">form</field>
-            <field name="arch" type="xml">
-            	<form string="Sign in / Sign out">
-    				<separator string="Sign in" colspan="4"/>
-    				<field name="name" readonly="True" />
-    				<field name="state" readonly="True" />
-    				<field name="server_date"/>
-    				<label string="(local time on the server side)" colspan="2"/>
-    				<field name="date"/>
-    				<label string="(Keep empty for current time)" colspan="2"/>
-   					<field name="tasks_project" domain="[('project_id.members', 'in', [uid]),('project_id.state','=','open'),('state','in',['draft','open'])]" colspan="4"/>
-    				<group>
-                		<button name="cerrar" type="object" icon='gtk-no' string="Cancelar"/>
-                		<button name="crea_nominas" icon='gtk-ok' type="object" string="Crear Nominas"/>
-    				</group>
-                </form>
-            </field>
-         </record>
-                  
-     <!-- ACCION -->
-     	
-		<record id="act_wizard_crea_nominas" model="ir.actions.act_window">
-			<field name="name">Crear Nominas</field>
-			<field name="type">ir.actions.act_window</field>
-			<field name="res_model">wizard.crea.nominas</field>
-			<field name="view_type">form</field>
-			<field name="view_mode">form</field>
-			<field name="target">new</field>
-		</record>
-		
-	<!-- MENU -->
-		<menuitem id="menu_crea_nominas" parent="menu_nomina" action="act_wizard_crea_nominas"/>
-	
-	<!-- 
-        <wizard 
-            id="sitp_sotp"
-            model="hr.employee"
-            name="hr_timesheet.sitp_sotp"
-            string="Sign in / Sign out by task project"/>
-        <wizard 
-            id="sitp_sotp_my" 
-            model="hr.employee"
-            name="hr_timesheet.sitp_sotp"
-            string="Sign in / Sign out by my task project"/>
-        <wizard
-            string="Sign in / Sign out"
-            model="project.task"
-            name="hr_timesheet.sitp_sotp"
-            id="sitp_stop_task"
-            menu="True"/>
-
-        <menuitem
-            action="sitp_sotp"
-            id="menu_sitp_sotp"
-            parent="hr_attendance.menu_hr_attendance"
-            type="wizard"
-            string="Sign in / Sign out by task project"/>
-        <menuitem
-            action="sitp_sotp_my"
-            id="menu_sitp_sotp_my"
-            parent="hr_attendance.menu_hr_attendance"
-            type="wizard"
-            string="Sign in / Sign out by my task project"/>
-    </data>
-</openerp>

=== removed directory 'nan_account_bank_statement'
=== removed file 'nan_account_bank_statement/__init__.py'
--- nan_account_bank_statement/__init__.py	2012-12-11 10:06:23 +0000
+++ nan_account_bank_statement/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,33 +0,0 @@
-# -*- encoding: latin-1 -*-
-##############################################################################
-#
-# Copyright (c) 2009  ngel lvarez - NaN  (http://www.nan-tic.com) All Rights Reserved.
-# AvanzOSC, Advanced Open Source Consulting 
-# Copyright (C) 2011-2012 Iker Coranti (www.avanzosc.com). All Rights Reserved
-# Update to OpenERP 6.1 Iker Coranti
-#
-#
-# WARNING: This program as such is intended to be used by professional
-# programmers who take the whole responsability of assessing all potential
-# consequences resulting from its eventual inadequacies and bugs
-# End users who are looking for a ready-to-use solution with commercial
-# garantees and support are strongly adviced to contract a Free Software
-# Service Company
-#
-# This program is Free Software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License
-# as published by the Free Software Foundation; either version 2
-# of the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
-#
-##############################################################################
-
-import account_statement

=== removed file 'nan_account_bank_statement/__openerp__.py'
--- nan_account_bank_statement/__openerp__.py	2012-12-11 10:06:23 +0000
+++ nan_account_bank_statement/__openerp__.py	1970-01-01 00:00:00 +0000
@@ -1,55 +0,0 @@
-# -*- encoding: latin-1 -*-
-##############################################################################
-#
-# Copyright (c) 2010 - NaN Projectes de proramari lliure S.L.
-#                      (http://www.nan-tic.com) All Rights Reserved.
-#   
-# WARNING: This program as such is intended to be used by professional
-# programmers who take the whole responsability of assessing all potential
-# consequences resulting from its eventual inadequacies and bugs
-# End users who are looking for a ready-to-use solution with commercial
-# garantees and support are strongly adviced to contract a Free Software
-# Service Company
-#
-# This program is Free Software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License
-# as published by the Free Software Foundation; either version 2
-# of the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
-#
-##############################################################################
-
-{
-    "name" : "nan_account_bank_statement",
-    "version" : "0.1",
-    "description" : """\
-This enhances standard bank statements by:
-
-- Adding a new button in statement lines to split the line in two.
-- Adding key/value information in statement lines which can later be used by other modules for automatically finding move lines to be reconciled.""",
-    "author" : "NaN·tic",
-    "website" : "http://www.NaN-tic.com",
-    "depends" : [ 
-    	'account',
-        'account_voucher',
-    ], 
-    "category" : "Accounting",
-    "init_xml" : [],
-    "demo_xml" : [],
-    "update_xml" : [
-	    'security/ir.model.access.csv',
-        'account_statement_view.xml',
-    ],
-    "active": False,
-    "installable": True
-}
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed file 'nan_account_bank_statement/account_statement.py'
--- nan_account_bank_statement/account_statement.py	2012-12-11 10:06:23 +0000
+++ nan_account_bank_statement/account_statement.py	1970-01-01 00:00:00 +0000
@@ -1,698 +0,0 @@
-# -*- encoding: latin-1 -*-
-##############################################################################
-#
-# Copyright (c) 2010 - NaN Projectes de proramari lliure S.L.
-#                      (http://www.nan-tic.com) All Rights Reserved.
-# Copyright (c) 2011 - Acysos S.L. (http://www.acysos.com) All Rights Reserved.
-#                      Ignacio Ibeas (ignacio@acysos.com)
-#                      Updated payment order reconcile to OpenERP 6.0
-#   
-# Some code has refactored, original authors:
-#                       Zikzakmedia S.L. (http://zikzakmedia.com) All Rights Reserved.
-#                       Jordi Esteve <jesteve@zikzakmedia.com>
-#                       Pexego Sistemas Informáticos. All Rights Reserved
-#                       Borja López Soilán <borjals@pexego.es>
-# 
-#
-# WARNING: This program as such is intended to be used by professional
-# programmers who take the whole responsability of assessing all potential
-# consequences resulting from its eventual inadequacies and bugs
-# End users who are looking for a ready-to-use solution with commercial
-# garantees and support are strongly adviced to contract a Free Software
-# Service Company
-#
-# This program is Free Software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License
-# as published by the Free Software Foundation; either version 2
-# of the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
-#
-##############################################################################
-
-from osv import fields,osv
-from tools.translate import _
-import netsvc
-
-import base64
-import tempfile
-
-import time
-import re
-from tools.translate import _
-
-
-class account_bank_statement_split_line_wizard( osv.osv_memory ):
-    _name = 'account.bank.statement.split.line.wizard'
-
-    _columns = {
-        'amount':fields.float( 'Amount' )
-    }
-
-    def action_split(self, cr, uid, ids, context):
-        wizard = self.browse(cr, uid, ids[0], context)
-        if wizard.amount:
-            self.pool.get('account.bank.statement.line').split_line( cr, uid, context['active_id'], wizard.amount,context)
-        return {
-            'type': 'ir.actions.act_window_close',
-        }
-
-    def action_cancel(self, cr, uid, ids, context=None):
-        return {
-            'type': 'ir.actions.act_window_close',
-        }
-
-account_bank_statement_split_line_wizard()
-
-
-
-class account_bank_statement(osv.osv):
-    _inherit = 'account.bank.statement'
-
-    def _total_amount(self, cursor, user, ids, name, attr, context=None):
-        res_currency_obj = self.pool.get('res.currency')
-        res_users_obj = self.pool.get('res.users')
-        result = {}
-        company_currency_id = res_users_obj.browse(cursor, user, user,context=context).company_id.currency_id.id
-
-        statements = self.browse(cursor, user, ids, context=context)
-        for statement in statements:
-            amount = 0.0
-            for line in statement.line_ids:
-                amount += line.amount
-            result[statement.id] = amount
-        return result
-
-    _columns = {
-        'total_amount': fields.function(_total_amount, method=True, string='Total Amount'),
-    }
-
-    def _attach_file_to_statement(self, cr, uid, file_contents, statement_id, attachment_name, file_name, context=None):
-        """
-        Attachs a file to the given bank statement.
-        """
-        
-        #
-        # Remove previous statement file attachment (if any)
-        #
-        ids = self.pool.get('ir.attachment').search(cr, uid, [
-                    ('res_id', '=', statement_id),
-                    ('res_model', '=', 'account.bank.statement'),
-                    ('name', '=', attachment_name),
-                ], context=context)
-        if ids:
-            self.pool.get('ir.attachment').unlink(cr, uid, ids, context)
-
-        #
-        # Create the new attachment
-        #
-        res = self.pool.get('ir.attachment').create(cr, uid, {
-                    'name': attachment_name,
-                    'datas': file_contents,
-                    'datas_fname': file_name,
-                    'res_model': 'account.bank.statement',
-                    'res_id': statement_id,
-                }, context=context)
-
-        return res
-
-
-account_bank_statement()
-
-
-class account_bank_statement_line(osv.osv):
-    _inherit = 'account.bank.statement.line' 
-
-    _columns = {
-        'data_ids': fields.one2many('account.bank.statement.line.data', 'line_id', 'Related Data', readonly=True, help='Data related to the line, usually extracted/imported from a file provided by the bank or another partner.'),
-        'search_by': fields.selection( [('all','All'),
-                                        ('none','None'),
-                                        ('reference_and_amount','Reference and Amount'),
-                                        ('vat_and_amount','Vat and Amount'),
-                                        ('amount','Amount'),
-                                        ('invoice_number','Invoice Number'),
-                                        ('invoice_origin','Invoice Origin' ),
-                                        ('payment_order','Payment Order' ),
-                                        ('bank_statement','Bank Statement'),
-                                        ('rules','Statement Line Rules')], 'Search By' )
-    }
-
-    _defaults={
-        'search_by':lambda *a:'all',
-    }
-
-    def split_line( self, cr, uid, id, amount, context ):
-        line = self.browse(cr, uid, id, context)
-        diff = line.amount - amount
-        copy_line = self.copy( cr, uid, id, {
-            'amount': diff,
-            'voucher_id': False
-        }, context=context )
-        self.write(cr, uid, [id], {
-            'amount': amount,
-            'voucher_id': False
-        }, context )
-        return True
-
-    def button_reconcile_search(self, cr, uid, ids, context):
-        self.reconcile_search(cr, uid, ids, context)
-        return False
-
-    def reconcile_search( self, cr, uid, ids, context, default_maturity_date=None, max_days=None):
-        """
-        Tries to find the matching move line to reconcile using line's 'search_by' field.
-
-        It returns a dictionary where keys are the line identifiers and values are booleans indicating if
-        a move line was found.
-        """
-        result = {}
-        for line in self.browse(cr, uid, ids, context):
-
-            if line.voucher_id:
-                continue
-
-            # Get all move lines already added for reconciliation in the statement
-            reconciled_move_line_ids=[]
-            for statement_line in line.statement_id.line_ids:
-                if statement_line.voucher_id and statement_line.id != line.id:
-                    reconciled_move_line_ids += [x.move_line_id.id for x in statement_line.voucher_id.line_ids]
- 
-            # Get extra information attached to the line
-            data = self.pool.get('account.bank.statement.line.data').load_to_dictionary(cr, uid, line.id, context)
-
-            maturity_date = default_maturity_date or line.date
-            line_ids = self.search_line2reconcile_by_imported_line( cr, uid, line, data, reconciled_move_line_ids, maturity_date, max_days, context)
-
-            if line_ids: 
-                reconcile_line = self.pool.get('account.move.line').browse(cr, uid, line_ids[0], context)
-                account_type = 'general'
-                if reconcile_line.partner_id:
-                    if reconcile_line.partner_id.property_account_receivable == reconcile_line.account_id:
-                        account_type = 'customer'
-                    else:
-                        account_type = 'supplier'
-
-                voucher_id = self.pool.get('account.voucher').create(cr, uid, {
-                    'date': line.date,
-                    'type': line.amount < 0.0 and 'payment' or 'receipt',
-                    'partner_id': reconcile_line.partner_id and reconcile_line.partner_id.id,
-                    'journal_id': line.statement_id.journal_id.id,
-                    'currency_id': line.statement_id.currency.id,
-                    'account_id': reconcile_line.credit > 0.0 and line.statement_id.journal_id.default_credit_account_id.id or line.statement_id.journal_id.default_debit_account_id.id,
-                    'period_id': line.statement_id.period_id.id,
-                    'company_id': line.statement_id.journal_id.company_id.id,
-                    'amount': abs(line.amount),
-                }, context)
-
-                for reconcile_line in self.pool.get('account.move.line').browse(cr, uid, line_ids, context):
-                    self.pool.get('account.voucher.line').create(cr, uid, {
-                        'voucher_id': voucher_id,
-                        'account_id': reconcile_line.account_id.id,
-                        'move_line_id': reconcile_line.id,
-                        'type': line.amount < 0.0 and 'dr' or 'cr',
-                        'amount': abs(reconcile_line.debit - reconcile_line.credit),
-                    }, context)
-
-                self.write( cr, uid, [line.id], {
-                    'voucher_id': voucher_id,
-                    'account_id': reconcile_line.account_id.id,
-                    'partner_id': reconcile_line.partner_id and reconcile_line.partner_id.id or False,
-                    'type': account_type,
-                }, context )
-
-            result[line.id] = line_ids and True or False
-        return result
-
-
-    def _get_references( self, cr, uid, line, data, context ):
-        if not 'reference' in data:
-            if line.search_by != 'all':
-                raise osv.except_osv(_('Search by reference error'), _('You cannot search by reference because it seems this line has not been imported from a bank statement file. The system expected a "reference" key in the line with amount %(amount).2f in statement %(statement)s.') % {
-                    'amount': line.amount, 
-                    'statement': line.statement_id.name,
-                })
-            return []
-        return [ data['reference'] ]
-
-    def _get_vats( self, cr, uid, line, data, context ):
-        if not 'vat' in data:
-            if line.search_by != 'all':
-                raise osv.except_osv(_('Search by VAT error'), _('You cannot search by VAT because it seems this line has not been imported from a bank statement file. The system expected a "vat" key in the line with amount %(amount).2f in statement %(statement)s.') % {
-                    'amount': line.amount, 
-                    'statement': line.statement_id.name,
-                })
-            return []
-        return [ data['vat'] ]
-
-    def _get_invoice_numbers( self, cr, uid, line, data, context ):
-        if not 'invoice_number' in data:
-            if line.search_by != 'all':
-                raise osv.except_osv(_('Search by invoice error'), _('You cannot search by invoice number because it seems this line has not been imported from a bank statement file. The system expected an "invoice_number" key in the line with amount %(amount).2f in statement %(statement)s.') % {
-                    'amount': line.amount, 
-                    'statement': line.statement_id.name,
-                })
-            return []
-        return [ data['invoice_number'] ]
-
-    def _get_invoice_origins( self, cr, uid, line, data, context ):
-        if not 'invoice_origin' in data:
-            if line.search_by != 'all':
-                raise osv.except_osv(_('Search by invoice error'), _('You cannot search by invoice origin because it seems this line has not been imported from a bank statement file. The system expected an "invoice_origin" key in the line with amount %(amount).2f in statement %(statement)s.') % {
-                    'amount': line.amount, 
-                    'statement': line.statement_id.name
-                })
-            return []
-        return [ data['invoice_origin'] ]
-
-    def search_line2reconcile_by_imported_line( self, cr, uid, line, data, reconciled_move_line_ids, maturity_date, max_date_diff, context):
-        """
-        Returns a list of browse objects.
-        """
-
-        move_lines = []
-
-        # Search unconciled entries by line reference and amount.
-        if line.search_by in ('reference_and_amount', 'all'):
-            for reference in self._get_references( cr, uid, line, data, context ): 
-                move_lines = self._find_entry_to_reconcile_by_line_ref_and_amount(cr, uid, line, reference, reconciled_move_line_ids, maturity_date, max_date_diff, context)
-                if move_lines:
-                    break
-
-        # Search unconciled entries by line VAT number and amount.
-        if not move_lines and line.search_by in ('vat_and_amount', 'all'):
-            for vat in self._get_vats( cr, uid, line, data, context ): 
-                move_lines = self._find_entry_to_reconcile_by_line_vat_number_and_amount(cr, uid, line, vat, reconciled_move_line_ids, maturity_date, max_date_diff, context)
-                if move_lines:
-                    break
-
-        # Search by invoice number
-        if not move_lines and line.search_by in ('invoice_number', 'all'):
-            for invoice in self._get_invoice_numbers( cr, uid, line, data, context ): 
-                move_lines = self._find_entry_to_reconcile_by_invoice_number(cr, uid, invoice, reconciled_move_line_ids, context)
-                if move_lines:
-                    break
-
-        # Search by invoice origin
-        if not move_lines and line.search_by in ('invoice_origin', 'all'):
-            for invoice in self._get_invoice_origins( cr, uid, line, data, context ): 
-                move_lines = self._find_entry_to_reconcile_by_invoice_origin(cr, uid, invoice, reconciled_move_line_ids, context)
-                if move_lines:
-                    break
-
-        if not move_lines and line.search_by in ('bank_statement', 'all'):
-            move_lines = self._find_entry_to_reconcile_by_bank_statement(cr, uid, line, reconciled_move_line_ids, context)
-
-            
-        # Search by line amount.
-        if not move_lines and line.search_by in ('amount', 'all'):
-            move_lines = self._find_entry_to_reconcile_by_line_amount(cr, uid, line, reconciled_move_line_ids, maturity_date, max_date_diff, context)
-
-
-        # Search unreconciled payment orders by amount.
-        if not move_lines and line.search_by in ('payment_order', 'all'):
-            payment_order = self._find_payment_order_to_reconcile_by_line_amount(cr, uid, line, reconciled_move_line_ids, maturity_date, max_date_diff, context)
-
-            if payment_order:
-                for line_id in payment_order.line_ids:
-                    reconcile_line = line_id.move_line_id
-                    
-                    account_type = 'general'
-                    if reconcile_line.partner_id:
-                        if reconcile_line.partner_id.property_account_receivable == reconcile_line.account_id:
-                            account_type = 'customer'
-                        else:
-                            account_type = 'supplier'
-                    
-                    voucher_id = self.pool.get('account.voucher').create(cr, uid, {
-                        'date': line.date,
-                        'type': line_id.amount < 0.0 and 'payment' or 'receipt',
-                        'partner_id': reconcile_line.partner_id and reconcile_line.partner_id.id,
-                        'journal_id': line.statement_id.journal_id.id,
-                        'currency_id': line.statement_id.currency.id,
-                        'account_id': reconcile_line.credit > 0.0 and line.statement_id.journal_id.default_credit_account_id.id or line.statement_id.journal_id.default_debit_account_id.id,
-                        'period_id': line.statement_id.period_id.id,
-                        'company_id': line.statement_id.journal_id.company_id.id,
-                        'amount': abs(line_id.amount),
-                    }, context)
-                    self.pool.get('account.voucher.line').create(cr, uid, {
-                        'voucher_id': voucher_id,
-                        'account_id': reconcile_line.account_id.id,
-                        'move_line_id': reconcile_line.id,
-                        'type': line_id.amount < 0.0 and 'dr' or 'cr',
-                        'amount': abs(reconcile_line.debit - reconcile_line.credit),
-                    }, context)
-
-                    new_line_id = self.copy(cr, uid, line.id, {
-                        'account_id': reconcile_line.account_id.id,
-                        'partner_id': reconcile_line.partner_id and reconcile_line.partner_id.id or False,
-                        'amount': payment_order.type == 'receivable' and line_id.amount or -line_id.amount,
-                        'voucher_id': voucher_id,
-                        'type': account_type,
-                    }, context)
-                # Remove current line because all payment order lines have already been created
-                self.pool.get('account.bank.statement.line').unlink(cr, uid, [line.id], context)
-
-        # Search by using statement line rules
-        if not move_lines and line.search_by in ('rules', 'all'):
-            self._process_rules(cr, uid, line, context)
- 
-        return move_lines 
-
-    def _get_default_partner_account_ids(self, cr, uid, context=None):
-        """
-        Returns the ids of the default receivable and payable accounts
-        for partners.
-        """
-        model_fields_ids = self.pool.get('ir.model.fields').search(cr, uid, [
-                                ('name', 'in', ['property_account_receivable', 'property_account_payable']),
-                                ('model', '=', 'res.partner'),
-                            ], context=context)
-        property_ids = self.pool.get('ir.property').search(cr, uid, [
-                            ('fields_id', 'in', model_fields_ids),
-                            ('res_id', '=', False),
-                        ], context=context)
-
-        account_receivable_id = None
-        account_payable_id = None
-
-        for prop in self.pool.get('ir.property').browse(cr, uid, property_ids, context):
-            if prop.fields_id.name == 'property_account_receivable':
-                account_receivable_id = prop.value_reference.id
-            elif prop.fields_id.name == 'property_account_payable':
-                account_payable_id = prop.value_reference.id
-
-        return (account_receivable_id, account_payable_id)
-
-    def _process_rules(self, cr, uid, line, context):
-            ids = self.pool.get('account.bank.statement.line.rule').search(cr, uid, [], context=context)
-
-            found = False
-            for rule in self.pool.get('account.bank.statement.line.rule').browse(cr, uid, ids, context):
-                if found:
-                    break
-                for data in line.data_ids:
-                    if data.key != rule.key:
-                        continue
-                    if not rule.expression in data.value:
-                        continue
-
-                    values = {}
-                    if rule.account_id:
-                        values['account_id'] = rule.account_id.id
-                    if rule.partner_id:
-                        values['partner_id'] = rule.partner_id.id
-                    self.pool.get('account.bank.statement.line').write(cr, uid, [line.id], values, context)
-                    found = True
-                    break
-
-
-    def _find_partner_by_line_vat_number(self, cr, uid, vat, context=None):
-        """
-        Searchs for a partner given the vat number of the line.
-
-        Notes:
-        - Depending on the bank, the VAT number may be stored on a diferent
-          field. So we will have to test if any of those fields looks like a
-          spanish VAT number, and then search for a partner with that VAT.
-        - Only works for spanish VAT numbers.
-        """
-        partner_facade = self.pool.get('res.partner')
-        partner = None
-
-        #if partner_facade.check_vat_es( vat.replace(' ', '') ):
-        code, number = vat[:2].lower(), vat[2:].replace(' ', '')
-        if partner_facade.simple_vat_check( cr, uid, code, number, context):
-            partner_ids = partner_facade.search(cr, uid, [
-                                    ('vat', 'like', '%s' % vat),
-                                    ('active', '=', True),
-                                ], context=context)
-            if len(partner_ids) == 1:
-                # We found a partner with that VAT number
-                partner = partner_facade.browse(cr, uid, partner_ids[0], context)
-        return partner
-
-
-    def _get_nearest_move_line(self, lines, maturity_date, max_date_diff=None):
-        """
-        Find the nearest move_line to a given (maturity) date
-        """
-        min_diff = max_date_diff
-        nearest = None
-        if not maturity_date:
-            maturity_date = time.time()
-        maturity_date_timestamp = time.mktime(time.strptime(maturity_date, '%Y-%m-%d'))
-        for line in lines:
-            line_date = line.date_maturity or line.date
-            if line_date:
-                line_timestamp = time.mktime(time.strptime(line_date, '%Y-%m-%d'))
-                diff = abs(maturity_date_timestamp-line_timestamp)
-                if min_diff is None or diff < min_diff:
-                    nearest = line.id
-                    min_diff = diff
-        return nearest
-
-    def _find_entry_to_reconcile_by_invoice_number(self, cr, uid, number, reconciled_move_line_ids, context):
-        invoice_ids = self.pool.get('account.invoice').search(cr, uid, [('number','ilike',number)], context=context)
-        domain = [
-            ('account_id.reconcile','=',True),
-            ('account_id.type','in',['receivable','payable']),
-            ('invoice','in',invoice_ids),
-        ]
-
-        if reconciled_move_line_ids:
-            domain.append( ('id', 'not in', reconciled_move_line_ids) )
-
-        ids = self.pool.get('account.move.line').search(cr, uid, domain, context=context)
-        if ids:
-            return [ids[0]]
-        return []
-
-    def _find_entry_to_reconcile_by_invoice_origin( self, cr, uid, origin, reconciled_move_line_ids, context):
-        invoice_ids = self.pool.get('account.invoice').search(cr, uid, [('origin','ilike',origin)], context=context)
-        domain = [
-            ('account_id.reconcile','=',True),
-            ('account_id.type','in',['receivable','payable']),
-            ('invoice','in',invoice_ids),
-        ]
-
-        if reconciled_move_line_ids:
-            domain.append( ('id', 'not in', reconciled_move_line_ids) )
-
-        ids = self.pool.get('account.move.line').search(cr, uid, domain, context=context)
-        if ids:
-            return [ids[0]]
-        return []
-
-    def _find_entry_to_reconcile_by_bank_statement(self, cr, uid, line, reconciled_move_line_ids, context):
-        journal_ids = self.pool.get('account.journal').search(cr, uid, [
-            ('default_credit_account_id.reconcile','=',True),
-            ('default_debit_account_id.reconcile','=',True),
-        ], context=context)
-
-        if not journal_ids:
-            return []
-
-        ids = self.pool.get('account.bank.statement').search(cr, uid, [
-            ('journal_id','in',journal_ids),
-            ('id','!=',line.id),
-        ], context=context)
-
-        lines = []
-        for statement in self.pool.get('account.bank.statement').browse(cr, uid, ids, context):
-            account_ids = (
-                statement.journal_id.default_credit_account_id.id, 
-                statement.journal_id.default_debit_account_id.id
-            )
-            # If statement.total_amount == line.amount
-            if self.pool.get('res.currency').is_zero(cr, uid, statement.currency, statement.total_amount - line.amount):
-                for move_line in statement.move_line_ids:
-                    if move_line.reconcile_id:
-                        # If any of the lines of the statement has been reconciled it means this is not
-                        # the statement we're looking for
-                        lines = []
-                        break
-                    if move_line.account_id.id in account_ids:
-                        lines.append( move_line.id )
-            if lines:
-                break
-        return lines
-
-    def _find_entry_to_reconcile_by_line_ref_and_amount(self, cr, uid, line,
-            reference, reconciled_move_line_ids, maturity_date, max_date_diff, context=None):
-        domain = [
-            ('id', 'not in', reconciled_move_line_ids),
-            ('ref', '=', reference),
-            ('reconcile_id', '=', False),
-            ('reconcile_partial_id', '=', False),
-            ('account_id.type', 'in', ['receivable', 'payable']),
-        ]
-        return self._find_entry_by_amount(cr, uid, domain, line.amount,maturity_date,max_date_diff,context )
-
-    def _find_entry_by_amount( self, cr, uid, domain, amount, maturity_date, max_date_diff, context ):
-        if amount >= 0:
-            domain.append( ('debit', '=', '%.2f' % amount ) )
-        else:
-            domain.append( ('credit', '=', '%.2f' % -amount ) )
-
-        line_ids = self.pool.get('account.move.line').search(cr, uid, domain, context=context)
-        if line_ids:
-            lines = self.pool.get('account.move.line').browse(cr, uid, line_ids, context)
-            line_id = self._get_nearest_move_line(lines, maturity_date, max_date_diff)
-            if line_id:
-                return [ line_id ]
-        return []
-
-    def _find_entry_to_reconcile_by_line_vat_number_and_amount(self, cr, uid, line, vat, reconciled_move_line_ids, maturity_date, max_date_diff, context=None):
-        """
-        Searchs for a non-conciled entry given the partner vat number of the line and amount.
-        If more than one line is found, and one of the lines has the same
-        maturity date or at least the same month, that line is returned.
-        """
-        partner = line.partner_id and line.partner_id.id or False
-        amount = line.amount
-
-        if not partner:
-            partner = self._find_partner_by_line_vat_number(cr, uid, vat, context)
-            partner = partner and partner.id or None
-            
-        if partner:
-            #
-            # Find a line to reconcile from this partner
-            #
-            domain = [
-                ('id', 'not in', reconciled_move_line_ids),
-                ('partner_id', '=', partner,),
-                ('reconcile_id', '=', False),
-                ('reconcile_partial_id', '=', False),
-                ('account_id.type', 'in', ['receivable', 'payable']),
-            ]
-            return self._find_entry_by_amount(cr, uid, domain, amount, maturity_date, max_date_diff, context)
-
-        return []
-
-    def _find_entry_to_reconcile_by_line_amount(self, cr, uid, line, 
-            reconciled_move_line_ids, maturity_date, max_date_diff, context=None):
-        """
-        Search for a non-conciled entry given the line amount.
-        """
-        domain = [
-            ('id', 'not in', reconciled_move_line_ids),
-            ('reconcile_id', '=', False),
-            ('reconcile_partial_id', '=', False),
-            ('account_id.type', 'in', ['receivable', 'payable']),
-        ]   
-        return self._find_entry_by_amount(cr, uid, domain, line.amount, maturity_date, max_date_diff, context )
-
-    def _find_payment_order_to_reconcile_by_line_amount(self, cr, uid, line, 
-            reconciled_move_line_ids, maturity_date, max_date_diff, context=None):
-        """
-        Searchs for a non-conciled payment order with the same total amount.
-        (If more than one order matches None is returned).
-        """
-        # We require account_payment to be installed
-        if not 'payment.order' in self.pool.obj_list():
-            return None
-
-        #
-        # The total field of the payment orders is a functional field,
-        # so we can't use it for searching.
-        # Also, browsing all the payment orders would be slow and not scale
-        # well. So we just let Postgres do the job.
-        #
-        # The query will search for orders of the given amount and without
-        # reconciled (or partial reconciled) lines
-        #
-        query = """
-                SELECT payment_line.order_id, SUM(payment_line.amount_currency) AS total
-                FROM payment_line
-                INNER JOIN account_move_line ON (payment_line.move_line_id = account_move_line.id)
-                GROUP BY payment_line.order_id
-                HAVING SUM(payment_line.amount_currency) = %.2f
-                        AND COUNT(account_move_line.reconcile_id) = 0
-                        AND COUNT(account_move_line.reconcile_partial_id) = 0
-                """
-
-        cr.execute(query % line.amount)
-        res = cr.fetchall()
-
-        if len(res) == 1:
-            # Only one payment order found, return it
-            payment_order = self.pool.get('payment.order').browse(cr, uid, res[0][0], context)
-            return payment_order
-        return None
-
-account_bank_statement_line()
-
-
-class account_bank_statement_line_data(osv.osv):
-    _name = 'account.bank.statement.line.data'
-
-    _columns = {
-        'line_id': fields.many2one('account.bank.statement.line', 'Statement Line', required=True, ondelete='cascade'),
-        'key': fields.char('Key', size=256),
-        'value': fields.char('Value', size=256, required=False, readonly=False, help=''),
-    }
-
-    _sql_constraints = [
-        ('data_line_key_value_uniq','unique(line_id,key,value)','Key-value pairs must be unique per statement line.'), 
-    ]
-
-    def create_from_dictionary(self, cr, uid, line_id, dictionary, context):
-        for key, value in dictionary.iteritems():
-            self.create(cr, uid, {
-                'line_id': line_id,
-                'key': key,
-                'value': value,
-            }, context)
-
-    def load_to_dictionary(self, cr, uid, line_id, context):
-        ids = self.search(cr, uid, [('line_id','=',line_id)], context=context)
-        data = {}
-        for record in self.browse(cr, uid, ids, context):
-            data[record.key] = record.value
-        return data
-
-account_bank_statement_line_data()
-
-class account_bank_statement_line_rule(osv.osv):
-    _name = 'account.bank.statement.line.rule'
-    _rec_name = 'key'
-    _order = 'sequence'
-
-    _columns = {
-        'company_id': fields.many2one('res.company', 'Company', required=True, ondelete='cascade', help='Company in which this rule should apply.'),
-        'sequence': fields.integer('Sequence', required=True, help='Rules will be applied in the order defined by this Sequence and will stop in the first matching rule.'),
-        'key': fields.char('Key', size=256, required=True, help='Key in statement line data that should match the given Expression.'),
-        'expression': fields.char('Expression', size=500, help='If the value of the given Key contains this Expression, Account and Partner will be used for that statement line.'),
-        'account_id': fields.many2one('account.account', 'Account', domain="[('type','!=','view'),('company_id','=',company_id)]", ondelete='cascade', help='Account to be used if expression matches.'),
-        'partner_id': fields.many2one('res.partner', 'Partner', ondelete='cascade', help='Partner to be used if expression matches'),
-    }
-
-    _defaults = {
-        'sequence': lambda self, cr, uid, context: 1,
-        'company_id': lambda self, cr, uid, context: self.pool.get('res.users').browse(cr, uid, uid, context).company_id.id,
-    }
-
-    def _check_company(self, cr, uid, ids):
-        for rule in self.browse(cr, uid, ids):
-            if rule.account_id and rule.company_id != rule.account_id.company_id:
-                raise osv.except_osv(_('Company Check Error'), _("Company for account %(account)s does not match rule's company for rule %(rule)s.") % {
-                    'account': rule.account_id.code,
-                    'rule': rule.key
-                })
-        return True
-        
-    _constraints = [ 
-        (_check_company, 'Company Check Error.', ['company_id','account_id']) 
-    ]
-
-account_bank_statement_line_rule()
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed file 'nan_account_bank_statement/account_statement_view.xml'
--- nan_account_bank_statement/account_statement_view.xml	2012-12-11 10:06:23 +0000
+++ nan_account_bank_statement/account_statement_view.xml	1970-01-01 00:00:00 +0000
@@ -1,155 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<openerp>
-<data>
-	<record id="view_banck_statment_split_line_wizard" model="ir.ui.view">
-		<field name="name">account.bank.statement.split.line.wizard</field>
-		<field name="model">account.bank.statement.split.line.wizard</field>
-		<field name="type">form</field>
-		<field name="arch" type="xml">
-			<form string="Split Line Wizard">
-				<field name="amount"/>
-				<group col="2" colspan="2">
-					<button icon="gtk-cancel" special="cancel" string="_Cancel" name="action_cancel" type="object"/>
-					<button icon="gtk-ok" name="action_split" string="_Accept" type="object"/>
-				</group>
-			</form>
-		</field>
-	</record>
-
-      <record id="action_statement_line_split_wizard" model="ir.actions.act_window">
-		<field name="name">action.statement.line.split.wizard</field>
-		<field name="type">ir.actions.act_window</field>
-		<field name="res_model">account.bank.statement.split.line.wizard</field>
-		<field name="view_type">form</field>
-		<field name="view_mode">form</field>
-		<field name="target">new</field>
-      </record>
-
-	<record id="view_bank_statement_form_search_by" model="ir.ui.view">
-		<field name="name">account.bank.statement.form.search_by</field>
-		<field name="model">account.bank.statement</field>
-		<field name="type">form</field>
-		<field name="inherit_id" ref="account.view_bank_statement_form"/>
-		<field name="arch" type="xml">
-			<xpath expr="/form/notebook/page[@name='statement_line_ids']/field[@name='line_ids']/form/field[@name='sequence']" position="after">
-				<field name="search_by"/>
-				<group colspan="2" col="2">
-					<button name="button_reconcile_search"  string="_Search" type="object" icon="gtk-find" attrs="{'invisible': [('voucher_id','!=',False)]}"/>
-					<button name="%(action_statement_line_split_wizard)d" string="S_plit" type="action" icon="terp-stock_effects-object-colorize"/>
-				</group>
-			</xpath>
-		</field>
-	</record>
-	<record id="view_bank_statement_form_search_by_tree" model="ir.ui.view">
-		<field name="name">account.bank.statement.form.search_by.tree</field>
-		<field name="model">account.bank.statement</field>
-		<field name="type">form</field>
-		<field name="inherit_id" ref="account.view_bank_statement_form"/>
-		<field name="arch" type="xml">
-			<xpath expr="/form/notebook/page[@name='statement_line_ids']/field[@name='line_ids']/tree/field[@name='amount']" position="after">
-				<button name="%(action_statement_line_split_wizard)d" string="Split" type="action" icon="terp-stock_effects-object-colorize"/>
-			</xpath>
-		</field>
-	</record>
-
-	<record id="view_bank_statement_form_data_ids" model="ir.ui.view">
-		<field name="name">account.bank.statement.form.data_ids</field>
-		<field name="model">account.bank.statement</field>
-		<field name="type">form</field>
-		<field name="inherit_id" ref="view_bank_statement_form_search_by"/>
-		<field name="arch" type="xml">
-			<field name="note" position="after">
-				<field name="data_ids" nolabel="1" colspan="4"/>
-			</field>
-		</field>
-	</record>
-
-	<record id="view_bank_statement_form_data_ids" model="ir.ui.view">
-		<field name="name">account.bank.statement.form.data_ids</field>
-		<field name="model">account.bank.statement</field>
-		<field name="type">form</field>
-		<field name="inherit_id" ref="view_bank_statement_form_search_by"/>
-		<field name="arch" type="xml">
-			<field name="note" position="after">
-				<field name="data_ids" nolabel="1" colspan="4"/>
-			</field>
-		</field>
-	</record>
-
-	<!-- account.bank.statement.line.data -->
-	<record id="view_bank_statement_line_data_form" model="ir.ui.view">
-		<field name="name">account.bank.statement.line.data.form</field>
-		<field name="model">account.bank.statement.line.data</field>
-		<field name="type">form</field>
-		<field name="arch" type="xml">
-			<form string="Statement Line Data">
-				<field name="key"/>
-				<field name="value"/>
-			</form>
-		</field>
-	</record>
-	<record id="view_bank_statement_line_data_tree" model="ir.ui.view">
-		<field name="name">account.bank.statement.line.data.tree</field>
-		<field name="model">account.bank.statement.line.data</field>
-		<field name="type">tree</field>
-		<field name="arch" type="xml">
-			<tree string="Statement Line Data">
-				<field name="key"/>
-				<field name="value"/>
-			</tree>
-		</field>
-	</record>
-
-	<!-- account.bank.statement.line.rule -->
-	<record id="view_bank_statement_line_rule_form" model="ir.ui.view">
-		<field name="name">account.bank.statement.line.rule.form</field>
-		<field name="model">account.bank.statement.line.rule</field>
-		<field name="type">form</field>
-		<field name="arch" type="xml">
-			<form string="Statement Line Rule">
-				<field name="key"/>
-				<field name="expression"/>
-				<field name="partner_id"/>
-				<field name="account_id"/>
-				<field name="sequence"/>
-				<field name="company_id" groups="base.group_multi_company"/>
-			</form>
-		</field>
-	</record>
-	<record id="view_bank_statement_line_rule_tree" model="ir.ui.view">
-		<field name="name">account.bank.statement.line.rule.tree</field>
-		<field name="model">account.bank.statement.line.rule</field>
-		<field name="type">tree</field>
-		<field name="arch" type="xml">
-			<tree string="Statement Line Rule">
-				<field name="key"/>
-				<field name="expression"/>
-				<field name="partner_id"/>
-				<field name="account_id"/>
-				<field name="sequence"/>
-				<field name="company_id" groups="base.group_multi_company"/>
-			</tree>
-		</field>
-	</record>
-	<record id="action_statement_line_rules" model="ir.actions.act_window">
-		<field name="name">Statement Line Rules</field>
-		<field name="type">ir.actions.act_window</field>
-		<field name="res_model">account.bank.statement.line.rule</field>
-		<field name="view_type">form</field>
-		<field name="view_mode">tree,form</field>
-	</record>
-	<menuitem 
-		id="menu_configuration_bank_statement" 
-		name="Bank Statements" 
-		parent="account.menu_configuration_misc"
-		sequence="20"
-		/>
-	<menuitem 
-		id="menu_statement_line_rule" 
-		name="Statement Line Rules" 
-		action="action_statement_line_rules" 
-		parent="menu_configuration_bank_statement"
-		/>
-</data>
-</openerp>
-

=== removed directory 'nan_account_bank_statement/i18n'
=== removed file 'nan_account_bank_statement/i18n/ca.po'
--- nan_account_bank_statement/i18n/ca.po	2012-12-11 10:06:23 +0000
+++ nan_account_bank_statement/i18n/ca.po	1970-01-01 00:00:00 +0000
@@ -1,422 +0,0 @@
-# Translation of OpenERP Server.
-# This file contains the translation of the following modules:
-# 	* nan_account_bank_statement
-#
-# Albert Cervera i Areny <albert@nan-tic.com>, 2010, 2011.
-msgid ""
-msgstr ""
-"Project-Id-Version: OpenERP Server 5.0.14\n"
-"Report-Msgid-Bugs-To: support@openerp.com\n"
-"POT-Creation-Date: 2011-03-27 01:57+0000\n"
-"PO-Revision-Date: 2011-03-27 17:23+0000\n"
-"Last-Translator: Albert Cervera i Areny - http://www.NaN-tic.com <albert@nan-"
-"tic.com>\n"
-"Language-Team: Catalan <kde-i18n-ca@kde.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-10-28 05:57+0000\n"
-"X-Generator: Launchpad (build 14197)\n"
-"Language: ca\n"
-
-#. module: nan_account_bank_statement
-#: field:account.bank.statement.line,search_by:0
-msgid "Search By"
-msgstr "Cerca per"
-
-#. module: nan_account_bank_statement
-#: selection:account.bank.statement.line,search_by:0
-msgid "Invoice Origin"
-msgstr "Origen factura"
-
-#. module: nan_account_bank_statement
-#: code:addons/nan_account_bank_statement/account_statement.py:654
-#, python-format
-msgid "Company Check Error"
-msgstr "Company Check Error"
-
-#. module: nan_account_bank_statement
-#: selection:account.bank.statement.line,search_by:0
-msgid "Payment Order"
-msgstr "Ordre de pagament"
-
-#. module: nan_account_bank_statement
-#: selection:account.bank.statement.line,search_by:0
-msgid "None"
-msgstr "Cap"
-
-#. module: nan_account_bank_statement
-#: view:account.bank.statement.line.data:0
-msgid "Statement Line Data"
-msgstr "Dades de línia d'extracte"
-
-#. module: nan_account_bank_statement
-#: selection:account.bank.statement.line,search_by:0
-msgid "Reference and Amount"
-msgstr "Referència i import"
-
-#. module: nan_account_bank_statement
-#: selection:account.bank.statement.line,search_by:0
-msgid "Vat and Amount"
-msgstr "CIF/NIF i importe"
-
-#. module: nan_account_bank_statement
-#: help:account.bank.statement.line.rule,sequence:0
-msgid ""
-"Rules will be applied in the order defined by this Sequence and will stop in "
-"the first matching rule."
-msgstr ""
-"Rules will be applied in the order defined by this Sequence and will stop in "
-"the first matching rule."
-
-#. module: nan_account_bank_statement
-#: field:account.bank.statement.line.data,line_id:0
-msgid "Statement Line"
-msgstr "Lína d'extracte"
-
-#. module: nan_account_bank_statement
-#: code:addons/nan_account_bank_statement/account_statement.py:243
-#, python-format
-msgid "Search by VAT error"
-msgstr "Error en la cerca per CIF/NIF"
-
-#. module: nan_account_bank_statement
-#: model:ir.ui.menu,name:nan_account_bank_statement.menu_configuration_bank_statement
-msgid "Bank Statements"
-msgstr "Extractes bancaris"
-
-#. module: nan_account_bank_statement
-#: code:addons/nan_account_bank_statement/account_statement.py:253
-#, python-format
-msgid ""
-"You cannot search by invoice number because it seems this line has not been "
-"imported from a bank statement file. The system expected an "
-"\"invoice_number\" key in the line with amount %(amount).2f in statement "
-"%(statement)s."
-msgstr ""
-"No podeu buscar per número de factura perquè sembla que la línia no ha estat "
-"importada des d'un fitxer d'extracte bancari. El sistema espera una clau "
-"\"invoice_number\" en la línia amb import %(amount).2f en l'extracte "
-"%(statement)s."
-
-#. module: nan_account_bank_statement
-#: view:account.bank.statement.split.line.wizard:0
-msgid "Split Line Wizard"
-msgstr "Assistent de divisió de línies"
-
-#. module: nan_account_bank_statement
-#: code:addons/nan_account_bank_statement/account_statement.py:233
-#, python-format
-msgid "Search by reference error"
-msgstr "Error en la cerca per referència"
-
-#. module: nan_account_bank_statement
-#: model:ir.model,name:nan_account_bank_statement.model_account_bank_statement_line_data
-msgid "account.bank.statement.line.data"
-msgstr "account.bank.statement.line.data"
-
-#. module: nan_account_bank_statement
-#: model:ir.module.module,shortdesc:nan_account_bank_statement.module_meta_information
-msgid "nan_account_bank_statement"
-msgstr "nan_account_bank_statement"
-
-#. module: nan_account_bank_statement
-#: field:account.bank.statement.line.rule,company_id:0
-msgid "Company"
-msgstr "Company"
-
-#. module: nan_account_bank_statement
-#: constraint:account.bank.statement.line.rule:0
-msgid "Company Check Error."
-msgstr "Company Check Error."
-
-#. module: nan_account_bank_statement
-#: model:ir.module.module,description:nan_account_bank_statement.module_meta_information
-msgid ""
-"This enhances standard bank statements by:\n"
-"\n"
-"- Adding a new button in statement lines to split the line in two.\n"
-"- Adding key/value information in statement lines which can later be used by "
-"other modules for automatically finding move lines to be reconciled."
-msgstr ""
-"This enhances standard bank statements by:\n"
-"\n"
-"- Adding a new button in statement lines to split the line in two.\n"
-"- Adding key/value information in statement lines which can later be used by "
-"other modules for automatically finding move lines to be reconciled."
-
-#. module: nan_account_bank_statement
-#: view:account.bank.statement.line.rule:0
-msgid "Statement Line Rule"
-msgstr "Regla de línia d'extracte"
-
-#. module: nan_account_bank_statement
-#: selection:account.bank.statement.line,search_by:0
-msgid "Invoice Number"
-msgstr "Número de factura"
-
-#. module: nan_account_bank_statement
-#: model:ir.actions.act_window,name:nan_account_bank_statement.action_statement_line_split_wizard
-msgid "action.statement.line.split.wizard"
-msgstr "action.statement.line.split.wizard"
-
-#. module: nan_account_bank_statement
-#: field:account.bank.statement.line.data,key:0
-#: field:account.bank.statement.line.rule,key:0
-msgid "Key"
-msgstr "Clau"
-
-#. module: nan_account_bank_statement
-#: code:addons/nan_account_bank_statement/account_statement.py:253
-#: code:addons/nan_account_bank_statement/account_statement.py:263
-#, python-format
-msgid "Search by invoice error"
-msgstr "Error en la cerca per factura"
-
-#. module: nan_account_bank_statement
-#: code:addons/nan_account_bank_statement/account_statement.py:263
-#, python-format
-msgid ""
-"You cannot search by invoice origin because it seems this line has not been "
-"imported from a bank statement file. The system expected an "
-"\"invoice_origin\" key in the line with amount %(amount).2f in statement "
-"%(statement)s."
-msgstr ""
-"No podeu buscar per origen de factura perquè sembla que la línia no ha estat "
-"importada des d'un fitxer d'extracte bancari. El sistema espera una clau "
-"\"invoice_origin\" en la línia amb import %(amount).2f en l'extracte "
-"%(statement)s."
-
-#. module: nan_account_bank_statement
-#: field:account.bank.statement.line.rule,account_id:0
-msgid "Account"
-msgstr "Compte"
-
-#. module: nan_account_bank_statement
-#: help:account.bank.statement.line,data_ids:0
-msgid ""
-"Data related to the line, usually extracted/imported from a file provided by "
-"the bank or another partner."
-msgstr ""
-"Data related to the line, usually extracted/imported from a file provided by "
-"the bank or another partner."
-
-#. module: nan_account_bank_statement
-#: view:account.bank.statement.split.line.wizard:0
-msgid "_Cancel"
-msgstr "_ancel·la"
-
-#. module: nan_account_bank_statement
-#: help:account.bank.statement.line.rule,expression:0
-msgid ""
-"If the value of the given Key contains this Expression, Account and Partner "
-"will be used for that statement line."
-msgstr ""
-"If the value of the given Key contains this Expression, Account and Partner "
-"will be used for that statement line."
-
-#. module: nan_account_bank_statement
-#: help:account.bank.statement.line.rule,account_id:0
-msgid "Account to be used if expression matches."
-msgstr "Account to be used if expression matches."
-
-#. module: nan_account_bank_statement
-#: code:addons/nan_account_bank_statement/account_statement.py:233
-#, python-format
-msgid ""
-"You cannot search by reference because it seems this line has not been "
-"imported from a bank statement file. The system expected a \"reference\" key "
-"in the line with amount %(amount).2f in statement %(statement)s."
-msgstr ""
-"No podeu buscar per referència perquè sembla que la línia no ha estat "
-"importada des d'un fitxer d'extracte bancari. El sistema espera una clau "
-"\"reference\" en la línia amb import %(amount).2f en l'extracte "
-"%(statement)s."
-
-#. module: nan_account_bank_statement
-#: view:account.bank.statement:0
-msgid "_Search"
-msgstr "_Cerca"
-
-#. module: nan_account_bank_statement
-#: view:account.bank.statement.split.line.wizard:0
-msgid "_Accept"
-msgstr "_ccepta"
-
-#. module: nan_account_bank_statement
-#: model:ir.model,name:nan_account_bank_statement.model_account_bank_statement_line
-msgid "Bank Statement Line"
-msgstr "Línia d'extracte bancari"
-
-#. module: nan_account_bank_statement
-#: field:account.bank.statement.line.data,value:0
-msgid "Value"
-msgstr "Valor"
-
-#. module: nan_account_bank_statement
-#: help:account.bank.statement.line.rule,partner_id:0
-msgid "Partner to be used if expression matches"
-msgstr "Partner to be used if expression matches"
-
-#. module: nan_account_bank_statement
-#: view:account.bank.statement:0
-msgid "Split"
-msgstr "Divideix"
-
-#. module: nan_account_bank_statement
-#: selection:account.bank.statement.line,search_by:0
-#: field:account.bank.statement.split.line.wizard,amount:0
-msgid "Amount"
-msgstr "Import"
-
-#. module: nan_account_bank_statement
-#: code:addons/nan_account_bank_statement/account_statement.py:243
-#, python-format
-msgid ""
-"You cannot search by VAT because it seems this line has not been imported "
-"from a bank statement file. The system expected a \"vat\" key in the line "
-"with amount %(amount).2f in statement %(statement)s."
-msgstr ""
-"No podeu buscar per CIF/NIF perquè sembla que la línia no ha estat importada "
-"des d'un fitxer d'extracte bancari. El sistema espera una clau \"vat\" en la "
-"línia amb import %(amount).2f en l'extracte %(statement)s."
-
-#. module: nan_account_bank_statement
-#: sql_constraint:account.bank.statement.line.data:0
-msgid "Key-value pairs must be unique per statement line."
-msgstr "Key-value pairs must be unique per statement line."
-
-#. module: nan_account_bank_statement
-#: constraint:account.bank.statement.line:0
-msgid ""
-"The amount of the voucher must be the same amount as the one on the "
-"statement line"
-msgstr ""
-"The amount of the voucher must be the same amount as the one on the "
-"statement line"
-
-#. module: nan_account_bank_statement
-#: model:ir.model,name:nan_account_bank_statement.model_account_bank_statement_split_line_wizard
-msgid "account.bank.statement.split.line.wizard"
-msgstr "account.bank.statement.split.line.wizard"
-
-#. module: nan_account_bank_statement
-#: field:account.bank.statement.line.rule,expression:0
-msgid "Expression"
-msgstr "Expression"
-
-#. module: nan_account_bank_statement
-#: selection:account.bank.statement.line,search_by:0
-msgid "All"
-msgstr "Tots"
-
-#. module: nan_account_bank_statement
-#: field:account.bank.statement.line,data_ids:0
-msgid "Related Data"
-msgstr "Related Data"
-
-#. module: nan_account_bank_statement
-#: field:account.bank.statement.line.rule,sequence:0
-msgid "Sequence"
-msgstr "Sequence"
-
-#. module: nan_account_bank_statement
-#: help:account.bank.statement.line.rule,key:0
-msgid "Key in statement line data that should match the given Expression."
-msgstr "Key in statement line data that should match the given Expression."
-
-#. module: nan_account_bank_statement
-#: help:account.bank.statement.line.rule,company_id:0
-msgid "Company in which this rule should apply."
-msgstr "Company in which this rule should apply."
-
-#. module: nan_account_bank_statement
-#: selection:account.bank.statement.line,search_by:0
-#: model:ir.model,name:nan_account_bank_statement.model_account_bank_statement
-msgid "Bank Statement"
-msgstr "Extracte bancari"
-
-#. module: nan_account_bank_statement
-#: selection:account.bank.statement.line,search_by:0
-#: model:ir.actions.act_window,name:nan_account_bank_statement.action_statement_line_rules
-#: model:ir.ui.menu,name:nan_account_bank_statement.menu_statement_line_rule
-msgid "Statement Line Rules"
-msgstr "Relges de línies d'extracte"
-
-#. module: nan_account_bank_statement
-#: view:account.bank.statement:0
-msgid "S_plit"
-msgstr "_Divideix"
-
-#. module: nan_account_bank_statement
-#: field:account.bank.statement.line.rule,partner_id:0
-msgid "Partner"
-msgstr "Partner"
-
-#. module: nan_account_bank_statement
-#: field:account.bank.statement,total_amount:0
-msgid "Total Amount"
-msgstr "Import"
-
-#. module: nan_account_bank_statement
-#: model:ir.model,name:nan_account_bank_statement.model_account_bank_statement_line_rule
-msgid "account.bank.statement.line.rule"
-msgstr "account.bank.statement.line.rule"
-
-#. module: nan_account_bank_statement
-#: code:addons/nan_account_bank_statement/account_statement.py:654
-#, python-format
-msgid ""
-"Company for account %(account)s does not match rule's company for rule "
-"%(rule)s."
-msgstr ""
-"Company for account %(account)s does not match rule's company for rule "
-"%(rule)s."
-
-#~ msgid ""
-#~ "The Object name must start with x_ and not contain any special character !"
-#~ msgstr ""
-#~ "El nom de l'objecte ha de començar per x_ i no pot contenir cap caràcter "
-#~ "especial !"
-
-#~ msgid "NaN account bank statement"
-#~ msgstr "NaN extractes bancaris"
-
-#~ msgid "Invalid model name in the action definition."
-#~ msgstr "Nom de model no vàlid en la definició de l'acció."
-
-#, python-format
-#~ msgid ""
-#~ "You cannot search by reference because it seems this line has not been "
-#~ "imported from a bank statement file. The system expected a \"reference\" key "
-#~ "in the line with amount %.2f in statement %s."
-#~ msgstr ""
-#~ "No podeu buscar per referència perquè sembla que la línia no ha estat "
-#~ "importada des d'un fitxer d'extracte bancari. El sistema espera una clau "
-#~ "\"reference\" en la línia amb import %.2f en l'extracte %s."
-
-#~ msgid "Invalid XML for View Architecture!"
-#~ msgstr "XML no vàlid per l'estructura de la vista!"
-
-#, python-format
-#~ msgid ""
-#~ "You cannot search by VAT because it seems this line has not been imported "
-#~ "from a bank statement file. The system expected a \"vat\" key in the line "
-#~ "with amount %.2f in statement %s."
-#~ msgstr ""
-#~ "No podeu buscar per CIF/NIF perquè sembla que la línia no ha estat importada "
-#~ "des d'un fitxer d'extracte bancari. El sistema espera una clau \"vat\" en la "
-#~ "línia amb import %.2f en l'extracte %s."
-
-#, python-format
-#~ msgid ""
-#~ "You cannot search by invoice because it seems this line has not been "
-#~ "imported from a bank statement file. The system expected an \"invoice\" key "
-#~ "in the line with amount %.2f in statement %s."
-#~ msgstr ""
-#~ "No podeu buscar per factura perquè sembla que la línia no ha estat importada "
-#~ "des d'un fitxer d'extracte bancari. El sistema espera una clau \"invoice\" "
-#~ "en la línia amb import %.2f en l'extracte %s."
-
-#~ msgid "Invoice"
-#~ msgstr "Factura"

=== removed file 'nan_account_bank_statement/i18n/es.po'
--- nan_account_bank_statement/i18n/es.po	2012-12-11 10:06:23 +0000
+++ nan_account_bank_statement/i18n/es.po	1970-01-01 00:00:00 +0000
@@ -1,422 +0,0 @@
-# Translation of OpenERP Server.
-# This file contains the translation of the following modules:
-# 	* nan_account_bank_statement
-#
-# Albert Cervera i Areny <albert@nan-tic.com>, 2010, 2011.
-msgid ""
-msgstr ""
-"Project-Id-Version: OpenERP Server 5.0.14\n"
-"Report-Msgid-Bugs-To: support@openerp.com\n"
-"POT-Creation-Date: 2011-03-27 01:57+0000\n"
-"PO-Revision-Date: 2011-03-27 17:22+0000\n"
-"Last-Translator: Albert Cervera i Areny - http://www.NaN-tic.com <albert@nan-"
-"tic.com>\n"
-"Language-Team: Catalan <kde-i18n-ca@kde.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-10-28 05:57+0000\n"
-"X-Generator: Launchpad (build 14197)\n"
-"Language: ca\n"
-
-#. module: nan_account_bank_statement
-#: field:account.bank.statement.line,search_by:0
-msgid "Search By"
-msgstr "Buscar por"
-
-#. module: nan_account_bank_statement
-#: selection:account.bank.statement.line,search_by:0
-msgid "Invoice Origin"
-msgstr "Origen factura"
-
-#. module: nan_account_bank_statement
-#: code:addons/nan_account_bank_statement/account_statement.py:654
-#, python-format
-msgid "Company Check Error"
-msgstr "Company Check Error"
-
-#. module: nan_account_bank_statement
-#: selection:account.bank.statement.line,search_by:0
-msgid "Payment Order"
-msgstr "Orden de pago"
-
-#. module: nan_account_bank_statement
-#: selection:account.bank.statement.line,search_by:0
-msgid "None"
-msgstr "Ninguno"
-
-#. module: nan_account_bank_statement
-#: view:account.bank.statement.line.data:0
-msgid "Statement Line Data"
-msgstr "Datos de línea de extracto"
-
-#. module: nan_account_bank_statement
-#: selection:account.bank.statement.line,search_by:0
-msgid "Reference and Amount"
-msgstr "Referencia e importe"
-
-#. module: nan_account_bank_statement
-#: selection:account.bank.statement.line,search_by:0
-msgid "Vat and Amount"
-msgstr "CIF/NIF e importe"
-
-#. module: nan_account_bank_statement
-#: help:account.bank.statement.line.rule,sequence:0
-msgid ""
-"Rules will be applied in the order defined by this Sequence and will stop in "
-"the first matching rule."
-msgstr ""
-"Rules will be applied in the order defined by this Sequence and will stop in "
-"the first matching rule."
-
-#. module: nan_account_bank_statement
-#: field:account.bank.statement.line.data,line_id:0
-msgid "Statement Line"
-msgstr "Línea de extracto"
-
-#. module: nan_account_bank_statement
-#: code:addons/nan_account_bank_statement/account_statement.py:243
-#, python-format
-msgid "Search by VAT error"
-msgstr "Error en la búsqueda por CIF/NIF"
-
-#. module: nan_account_bank_statement
-#: model:ir.ui.menu,name:nan_account_bank_statement.menu_configuration_bank_statement
-msgid "Bank Statements"
-msgstr "Extractos bancarios"
-
-#. module: nan_account_bank_statement
-#: code:addons/nan_account_bank_statement/account_statement.py:253
-#, python-format
-msgid ""
-"You cannot search by invoice number because it seems this line has not been "
-"imported from a bank statement file. The system expected an "
-"\"invoice_number\" key in the line with amount %(amount).2f in statement "
-"%(statement)s."
-msgstr ""
-"No puede buscar por número de factura porqué parece que la línea no se ha "
-"importado a partir de un fichero de extracto bancario. El sistema espera una "
-"clave \"invoice_number\" en la línea con importe %(amount).2f en el extracto "
-"%(statement)s."
-
-#. module: nan_account_bank_statement
-#: view:account.bank.statement.split.line.wizard:0
-msgid "Split Line Wizard"
-msgstr "Asistente de división de líneas"
-
-#. module: nan_account_bank_statement
-#: code:addons/nan_account_bank_statement/account_statement.py:233
-#, python-format
-msgid "Search by reference error"
-msgstr "Error en la búsqueda por referencia"
-
-#. module: nan_account_bank_statement
-#: model:ir.model,name:nan_account_bank_statement.model_account_bank_statement_line_data
-msgid "account.bank.statement.line.data"
-msgstr "account.bank.statement.line.data"
-
-#. module: nan_account_bank_statement
-#: model:ir.module.module,shortdesc:nan_account_bank_statement.module_meta_information
-msgid "nan_account_bank_statement"
-msgstr "nan_account_bank_statement"
-
-#. module: nan_account_bank_statement
-#: field:account.bank.statement.line.rule,company_id:0
-msgid "Company"
-msgstr "Company"
-
-#. module: nan_account_bank_statement
-#: constraint:account.bank.statement.line.rule:0
-msgid "Company Check Error."
-msgstr "Company Check Error."
-
-#. module: nan_account_bank_statement
-#: model:ir.module.module,description:nan_account_bank_statement.module_meta_information
-msgid ""
-"This enhances standard bank statements by:\n"
-"\n"
-"- Adding a new button in statement lines to split the line in two.\n"
-"- Adding key/value information in statement lines which can later be used by "
-"other modules for automatically finding move lines to be reconciled."
-msgstr ""
-"This enhances standard bank statements by:\n"
-"\n"
-"- Adding a new button in statement lines to split the line in two.\n"
-"- Adding key/value information in statement lines which can later be used by "
-"other modules for automatically finding move lines to be reconciled."
-
-#. module: nan_account_bank_statement
-#: view:account.bank.statement.line.rule:0
-msgid "Statement Line Rule"
-msgstr "Regla de línea de extracto"
-
-#. module: nan_account_bank_statement
-#: selection:account.bank.statement.line,search_by:0
-msgid "Invoice Number"
-msgstr "Número de factura"
-
-#. module: nan_account_bank_statement
-#: model:ir.actions.act_window,name:nan_account_bank_statement.action_statement_line_split_wizard
-msgid "action.statement.line.split.wizard"
-msgstr "action.statement.line.split.wizard"
-
-#. module: nan_account_bank_statement
-#: field:account.bank.statement.line.data,key:0
-#: field:account.bank.statement.line.rule,key:0
-msgid "Key"
-msgstr "Clave"
-
-#. module: nan_account_bank_statement
-#: code:addons/nan_account_bank_statement/account_statement.py:253
-#: code:addons/nan_account_bank_statement/account_statement.py:263
-#, python-format
-msgid "Search by invoice error"
-msgstr "Error en la búsqueda por factura"
-
-#. module: nan_account_bank_statement
-#: code:addons/nan_account_bank_statement/account_statement.py:263
-#, python-format
-msgid ""
-"You cannot search by invoice origin because it seems this line has not been "
-"imported from a bank statement file. The system expected an "
-"\"invoice_origin\" key in the line with amount %(amount).2f in statement "
-"%(statement)s."
-msgstr ""
-"No puede buscar por origen de factura porqué parece que la línea no se ha "
-"importado a partir de un fichero de extracto bancario. El sistema espera una "
-"clave \"invoice_origin\" en la línea con importe %(amount).2f en el extracto "
-"%(statement)s."
-
-#. module: nan_account_bank_statement
-#: field:account.bank.statement.line.rule,account_id:0
-msgid "Account"
-msgstr "Cuenta"
-
-#. module: nan_account_bank_statement
-#: help:account.bank.statement.line,data_ids:0
-msgid ""
-"Data related to the line, usually extracted/imported from a file provided by "
-"the bank or another partner."
-msgstr ""
-"Data related to the line, usually extracted/imported from a file provided by "
-"the bank or another partner."
-
-#. module: nan_account_bank_statement
-#: view:account.bank.statement.split.line.wizard:0
-msgid "_Cancel"
-msgstr "_Cancelar"
-
-#. module: nan_account_bank_statement
-#: help:account.bank.statement.line.rule,expression:0
-msgid ""
-"If the value of the given Key contains this Expression, Account and Partner "
-"will be used for that statement line."
-msgstr ""
-"If the value of the given Key contains this Expression, Account and Partner "
-"will be used for that statement line."
-
-#. module: nan_account_bank_statement
-#: help:account.bank.statement.line.rule,account_id:0
-msgid "Account to be used if expression matches."
-msgstr "Account to be used if expression matches."
-
-#. module: nan_account_bank_statement
-#: code:addons/nan_account_bank_statement/account_statement.py:233
-#, python-format
-msgid ""
-"You cannot search by reference because it seems this line has not been "
-"imported from a bank statement file. The system expected a \"reference\" key "
-"in the line with amount %(amount).2f in statement %(statement)s."
-msgstr ""
-"No puede buscar por referencia porqué parece que la línea no se ha importado "
-"des de un fichero de extracto bancario. El sistema espera una clave "
-"\"reference\" en la línea con importe %(amount).2f en el extracto "
-"%(statement)s."
-
-#. module: nan_account_bank_statement
-#: view:account.bank.statement:0
-msgid "_Search"
-msgstr "_Buscar"
-
-#. module: nan_account_bank_statement
-#: view:account.bank.statement.split.line.wizard:0
-msgid "_Accept"
-msgstr "_Aceptar"
-
-#. module: nan_account_bank_statement
-#: model:ir.model,name:nan_account_bank_statement.model_account_bank_statement_line
-msgid "Bank Statement Line"
-msgstr "Línea de extracto bancario"
-
-#. module: nan_account_bank_statement
-#: field:account.bank.statement.line.data,value:0
-msgid "Value"
-msgstr "Valor"
-
-#. module: nan_account_bank_statement
-#: help:account.bank.statement.line.rule,partner_id:0
-msgid "Partner to be used if expression matches"
-msgstr "Partner to be used if expression matches"
-
-#. module: nan_account_bank_statement
-#: view:account.bank.statement:0
-msgid "Split"
-msgstr "Dividir"
-
-#. module: nan_account_bank_statement
-#: selection:account.bank.statement.line,search_by:0
-#: field:account.bank.statement.split.line.wizard,amount:0
-msgid "Amount"
-msgstr "Importe"
-
-#. module: nan_account_bank_statement
-#: code:addons/nan_account_bank_statement/account_statement.py:243
-#, python-format
-msgid ""
-"You cannot search by VAT because it seems this line has not been imported "
-"from a bank statement file. The system expected a \"vat\" key in the line "
-"with amount %(amount).2f in statement %(statement)s."
-msgstr ""
-"No puede buscar por CIF/NIF porqué parece que la línea no se ha importado a "
-"partir de un fichero de extracto bancario. El sistema espera una clave "
-"\"vat\" en la línea con importe %(amount).2f en el extracto %(statement)s."
-
-#. module: nan_account_bank_statement
-#: sql_constraint:account.bank.statement.line.data:0
-msgid "Key-value pairs must be unique per statement line."
-msgstr "Key-value pairs must be unique per statement line."
-
-#. module: nan_account_bank_statement
-#: constraint:account.bank.statement.line:0
-msgid ""
-"The amount of the voucher must be the same amount as the one on the "
-"statement line"
-msgstr ""
-"The amount of the voucher must be the same amount as the one on the "
-"statement line"
-
-#. module: nan_account_bank_statement
-#: model:ir.model,name:nan_account_bank_statement.model_account_bank_statement_split_line_wizard
-msgid "account.bank.statement.split.line.wizard"
-msgstr "account.bank.statement.split.line.wizard"
-
-#. module: nan_account_bank_statement
-#: field:account.bank.statement.line.rule,expression:0
-msgid "Expression"
-msgstr "Expression"
-
-#. module: nan_account_bank_statement
-#: selection:account.bank.statement.line,search_by:0
-msgid "All"
-msgstr "Todos"
-
-#. module: nan_account_bank_statement
-#: field:account.bank.statement.line,data_ids:0
-msgid "Related Data"
-msgstr "Related Data"
-
-#. module: nan_account_bank_statement
-#: field:account.bank.statement.line.rule,sequence:0
-msgid "Sequence"
-msgstr "Sequence"
-
-#. module: nan_account_bank_statement
-#: help:account.bank.statement.line.rule,key:0
-msgid "Key in statement line data that should match the given Expression."
-msgstr "Key in statement line data that should match the given Expression."
-
-#. module: nan_account_bank_statement
-#: help:account.bank.statement.line.rule,company_id:0
-msgid "Company in which this rule should apply."
-msgstr "Company in which this rule should apply."
-
-#. module: nan_account_bank_statement
-#: selection:account.bank.statement.line,search_by:0
-#: model:ir.model,name:nan_account_bank_statement.model_account_bank_statement
-msgid "Bank Statement"
-msgstr "Extracto bancario"
-
-#. module: nan_account_bank_statement
-#: selection:account.bank.statement.line,search_by:0
-#: model:ir.actions.act_window,name:nan_account_bank_statement.action_statement_line_rules
-#: model:ir.ui.menu,name:nan_account_bank_statement.menu_statement_line_rule
-msgid "Statement Line Rules"
-msgstr "Reglas de línea de extracto"
-
-#. module: nan_account_bank_statement
-#: view:account.bank.statement:0
-msgid "S_plit"
-msgstr "_Dividir"
-
-#. module: nan_account_bank_statement
-#: field:account.bank.statement.line.rule,partner_id:0
-msgid "Partner"
-msgstr "Partner"
-
-#. module: nan_account_bank_statement
-#: field:account.bank.statement,total_amount:0
-msgid "Total Amount"
-msgstr "Importe"
-
-#. module: nan_account_bank_statement
-#: model:ir.model,name:nan_account_bank_statement.model_account_bank_statement_line_rule
-msgid "account.bank.statement.line.rule"
-msgstr "account.bank.statement.line.rule"
-
-#. module: nan_account_bank_statement
-#: code:addons/nan_account_bank_statement/account_statement.py:654
-#, python-format
-msgid ""
-"Company for account %(account)s does not match rule's company for rule "
-"%(rule)s."
-msgstr ""
-"Company for account %(account)s does not match rule's company for rule "
-"%(rule)s."
-
-#~ msgid ""
-#~ "The Object name must start with x_ and not contain any special character !"
-#~ msgstr ""
-#~ "El nombre de objeto debe empezar por x_ y no puede contener ningún carácter "
-#~ "especial !"
-
-#~ msgid "NaN account bank statement"
-#~ msgstr "NaN extractos bancarios"
-
-#~ msgid "Invalid model name in the action definition."
-#~ msgstr "Modelo no válido en la definición de la acción."
-
-#, python-format
-#~ msgid ""
-#~ "You cannot search by reference because it seems this line has not been "
-#~ "imported from a bank statement file. The system expected a \"reference\" key "
-#~ "in the line with amount %.2f in statement %s."
-#~ msgstr ""
-#~ "No puede buscar por referencia porqué parece que la línea no se ha importado "
-#~ "des de un fichero de extracto bancario. El sistema espera una clave "
-#~ "\"reference\" en la línea con importe %.2f en el extracto %s."
-
-#~ msgid "Invalid XML for View Architecture!"
-#~ msgstr "XML no válido para la estructura de la vista!"
-
-#, python-format
-#~ msgid ""
-#~ "You cannot search by VAT because it seems this line has not been imported "
-#~ "from a bank statement file. The system expected a \"vat\" key in the line "
-#~ "with amount %.2f in statement %s."
-#~ msgstr ""
-#~ "No puede buscar por CIF/NIF porqué parece que la línea no se ha importado a "
-#~ "partir de un fichero de extracto bancario. El sistema espera una clave "
-#~ "\"vat\" en la línea con importe %.2f en el extracto %s."
-
-#, python-format
-#~ msgid ""
-#~ "You cannot search by invoice because it seems this line has not been "
-#~ "imported from a bank statement file. The system expected an \"invoice\" key "
-#~ "in the line with amount %.2f in statement %s."
-#~ msgstr ""
-#~ "No puede buscar por factura porqué parece que la línea no se ha importado a "
-#~ "partir de un fichero de extracto bancario. El sistema espera una clave "
-#~ "\"invoice\" en la línea con importe %.2f en el extracto %s."
-
-#~ msgid "Invoice"
-#~ msgstr "Factura"

=== removed file 'nan_account_bank_statement/i18n/nan_account_bank_statement.pot'
--- nan_account_bank_statement/i18n/nan_account_bank_statement.pot	2012-12-11 10:06:23 +0000
+++ nan_account_bank_statement/i18n/nan_account_bank_statement.pot	1970-01-01 00:00:00 +0000
@@ -1,318 +0,0 @@
-# Translation of OpenERP Server.
-# This file contains the translation of the following modules:
-#	* nan_account_bank_statement
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: OpenERP Server 6.0.1\n"
-"Report-Msgid-Bugs-To: support@openerp.com\n"
-"POT-Creation-Date: 2011-03-27 01:57+0000\n"
-"PO-Revision-Date: 2011-03-27 01:57+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Plural-Forms: \n"
-
-#. module: nan_account_bank_statement
-#: field:account.bank.statement.line,search_by:0
-msgid "Search By"
-msgstr "Search By"
-
-#. module: nan_account_bank_statement
-#: selection:account.bank.statement.line,search_by:0
-msgid "Invoice Origin"
-msgstr "Invoice Origin"
-
-#. module: nan_account_bank_statement
-#: code:addons/nan_account_bank_statement/account_statement.py:654
-#, python-format
-msgid "Company Check Error"
-msgstr "Company Check Error"
-
-#. module: nan_account_bank_statement
-#: selection:account.bank.statement.line,search_by:0
-msgid "Payment Order"
-msgstr "Payment Order"
-
-#. module: nan_account_bank_statement
-#: selection:account.bank.statement.line,search_by:0
-msgid "None"
-msgstr "None"
-
-#. module: nan_account_bank_statement
-#: view:account.bank.statement.line.data:0
-msgid "Statement Line Data"
-msgstr "Statement Line Data"
-
-#. module: nan_account_bank_statement
-#: selection:account.bank.statement.line,search_by:0
-msgid "Reference and Amount"
-msgstr "Reference and Amount"
-
-#. module: nan_account_bank_statement
-#: selection:account.bank.statement.line,search_by:0
-msgid "Vat and Amount"
-msgstr "Vat and Amount"
-
-#. module: nan_account_bank_statement
-#: help:account.bank.statement.line.rule,sequence:0
-msgid "Rules will be applied in the order defined by this Sequence and will stop in the first matching rule."
-msgstr "Rules will be applied in the order defined by this Sequence and will stop in the first matching rule."
-
-#. module: nan_account_bank_statement
-#: field:account.bank.statement.line.data,line_id:0
-msgid "Statement Line"
-msgstr "Statement Line"
-
-#. module: nan_account_bank_statement
-#: code:addons/nan_account_bank_statement/account_statement.py:243
-#, python-format
-msgid "Search by VAT error"
-msgstr "Search by VAT error"
-
-#. module: nan_account_bank_statement
-#: model:ir.ui.menu,name:nan_account_bank_statement.menu_configuration_bank_statement
-msgid "Bank Statements"
-msgstr "Bank Statements"
-
-#. module: nan_account_bank_statement
-#: code:addons/nan_account_bank_statement/account_statement.py:253
-#, python-format
-msgid "You cannot search by invoice number because it seems this line has not been imported from a bank statement file. The system expected an \"invoice_number\" key in the line with amount %(amount).2f in statement %(statement)s."
-msgstr "You cannot search by invoice number because it seems this line has not been imported from a bank statement file. The system expected an \"invoice_number\" key in the line with amount %(amount).2f in statement %(statement)s."
-
-#. module: nan_account_bank_statement
-#: view:account.bank.statement.split.line.wizard:0
-msgid "Split Line Wizard"
-msgstr "Split Line Wizard"
-
-#. module: nan_account_bank_statement
-#: code:addons/nan_account_bank_statement/account_statement.py:233
-#, python-format
-msgid "Search by reference error"
-msgstr "Search by reference error"
-
-#. module: nan_account_bank_statement
-#: model:ir.model,name:nan_account_bank_statement.model_account_bank_statement_line_data
-msgid "account.bank.statement.line.data"
-msgstr "account.bank.statement.line.data"
-
-#. module: nan_account_bank_statement
-#: model:ir.module.module,shortdesc:nan_account_bank_statement.module_meta_information
-msgid "nan_account_bank_statement"
-msgstr "nan_account_bank_statement"
-
-#. module: nan_account_bank_statement
-#: field:account.bank.statement.line.rule,company_id:0
-msgid "Company"
-msgstr "Company"
-
-#. module: nan_account_bank_statement
-#: constraint:account.bank.statement.line.rule:0
-msgid "Company Check Error."
-msgstr "Company Check Error."
-
-#. module: nan_account_bank_statement
-#: model:ir.module.module,description:nan_account_bank_statement.module_meta_information
-msgid "This enhances standard bank statements by:\n"
-"\n"
-"- Adding a new button in statement lines to split the line in two.\n"
-"- Adding key/value information in statement lines which can later be used by other modules for automatically finding move lines to be reconciled."
-msgstr "This enhances standard bank statements by:\n"
-"\n"
-"- Adding a new button in statement lines to split the line in two.\n"
-"- Adding key/value information in statement lines which can later be used by other modules for automatically finding move lines to be reconciled."
-
-#. module: nan_account_bank_statement
-#: view:account.bank.statement.line.rule:0
-msgid "Statement Line Rule"
-msgstr "Statement Line Rule"
-
-#. module: nan_account_bank_statement
-#: selection:account.bank.statement.line,search_by:0
-msgid "Invoice Number"
-msgstr "Invoice Number"
-
-#. module: nan_account_bank_statement
-#: model:ir.actions.act_window,name:nan_account_bank_statement.action_statement_line_split_wizard
-msgid "action.statement.line.split.wizard"
-msgstr "action.statement.line.split.wizard"
-
-#. module: nan_account_bank_statement
-#: field:account.bank.statement.line.data,key:0
-#: field:account.bank.statement.line.rule,key:0
-msgid "Key"
-msgstr "Key"
-
-#. module: nan_account_bank_statement
-#: code:addons/nan_account_bank_statement/account_statement.py:253
-#: code:addons/nan_account_bank_statement/account_statement.py:263
-#, python-format
-msgid "Search by invoice error"
-msgstr "Search by invoice error"
-
-#. module: nan_account_bank_statement
-#: code:addons/nan_account_bank_statement/account_statement.py:263
-#, python-format
-msgid "You cannot search by invoice origin because it seems this line has not been imported from a bank statement file. The system expected an \"invoice_origin\" key in the line with amount %(amount).2f in statement %(statement)s."
-msgstr "You cannot search by invoice origin because it seems this line has not been imported from a bank statement file. The system expected an \"invoice_origin\" key in the line with amount %(amount).2f in statement %(statement)s."
-
-#. module: nan_account_bank_statement
-#: field:account.bank.statement.line.rule,account_id:0
-msgid "Account"
-msgstr "Account"
-
-#. module: nan_account_bank_statement
-#: help:account.bank.statement.line,data_ids:0
-msgid "Data related to the line, usually extracted/imported from a file provided by the bank or another partner."
-msgstr "Data related to the line, usually extracted/imported from a file provided by the bank or another partner."
-
-#. module: nan_account_bank_statement
-#: view:account.bank.statement.split.line.wizard:0
-msgid "_Cancel"
-msgstr "_Cancel"
-
-#. module: nan_account_bank_statement
-#: help:account.bank.statement.line.rule,expression:0
-msgid "If the value of the given Key contains this Expression, Account and Partner will be used for that statement line."
-msgstr "If the value of the given Key contains this Expression, Account and Partner will be used for that statement line."
-
-#. module: nan_account_bank_statement
-#: help:account.bank.statement.line.rule,account_id:0
-msgid "Account to be used if expression matches."
-msgstr "Account to be used if expression matches."
-
-#. module: nan_account_bank_statement
-#: code:addons/nan_account_bank_statement/account_statement.py:233
-#, python-format
-msgid "You cannot search by reference because it seems this line has not been imported from a bank statement file. The system expected a \"reference\" key in the line with amount %(amount).2f in statement %(statement)s."
-msgstr "You cannot search by reference because it seems this line has not been imported from a bank statement file. The system expected a \"reference\" key in the line with amount %(amount).2f in statement %(statement)s."
-
-#. module: nan_account_bank_statement
-#: view:account.bank.statement:0
-msgid "_Search"
-msgstr "_Search"
-
-#. module: nan_account_bank_statement
-#: view:account.bank.statement.split.line.wizard:0
-msgid "_Accept"
-msgstr "_Accept"
-
-#. module: nan_account_bank_statement
-#: model:ir.model,name:nan_account_bank_statement.model_account_bank_statement_line
-msgid "Bank Statement Line"
-msgstr "Bank Statement Line"
-
-#. module: nan_account_bank_statement
-#: field:account.bank.statement.line.data,value:0
-msgid "Value"
-msgstr "Value"
-
-#. module: nan_account_bank_statement
-#: help:account.bank.statement.line.rule,partner_id:0
-msgid "Partner to be used if expression matches"
-msgstr "Partner to be used if expression matches"
-
-#. module: nan_account_bank_statement
-#: view:account.bank.statement:0
-msgid "Split"
-msgstr "Split"
-
-#. module: nan_account_bank_statement
-#: selection:account.bank.statement.line,search_by:0
-#: field:account.bank.statement.split.line.wizard,amount:0
-msgid "Amount"
-msgstr "Amount"
-
-#. module: nan_account_bank_statement
-#: code:addons/nan_account_bank_statement/account_statement.py:243
-#, python-format
-msgid "You cannot search by VAT because it seems this line has not been imported from a bank statement file. The system expected a \"vat\" key in the line with amount %(amount).2f in statement %(statement)s."
-msgstr "You cannot search by VAT because it seems this line has not been imported from a bank statement file. The system expected a \"vat\" key in the line with amount %(amount).2f in statement %(statement)s."
-
-#. module: nan_account_bank_statement
-#: sql_constraint:account.bank.statement.line.data:0
-msgid "Key-value pairs must be unique per statement line."
-msgstr "Key-value pairs must be unique per statement line."
-
-#. module: nan_account_bank_statement
-#: constraint:account.bank.statement.line:0
-msgid "The amount of the voucher must be the same amount as the one on the statement line"
-msgstr "The amount of the voucher must be the same amount as the one on the statement line"
-
-#. module: nan_account_bank_statement
-#: model:ir.model,name:nan_account_bank_statement.model_account_bank_statement_split_line_wizard
-msgid "account.bank.statement.split.line.wizard"
-msgstr "account.bank.statement.split.line.wizard"
-
-#. module: nan_account_bank_statement
-#: field:account.bank.statement.line.rule,expression:0
-msgid "Expression"
-msgstr "Expression"
-
-#. module: nan_account_bank_statement
-#: selection:account.bank.statement.line,search_by:0
-msgid "All"
-msgstr "All"
-
-#. module: nan_account_bank_statement
-#: field:account.bank.statement.line,data_ids:0
-msgid "Related Data"
-msgstr "Related Data"
-
-#. module: nan_account_bank_statement
-#: field:account.bank.statement.line.rule,sequence:0
-msgid "Sequence"
-msgstr "Sequence"
-
-#. module: nan_account_bank_statement
-#: help:account.bank.statement.line.rule,key:0
-msgid "Key in statement line data that should match the given Expression."
-msgstr "Key in statement line data that should match the given Expression."
-
-#. module: nan_account_bank_statement
-#: help:account.bank.statement.line.rule,company_id:0
-msgid "Company in which this rule should apply."
-msgstr "Company in which this rule should apply."
-
-#. module: nan_account_bank_statement
-#: selection:account.bank.statement.line,search_by:0
-#: model:ir.model,name:nan_account_bank_statement.model_account_bank_statement
-msgid "Bank Statement"
-msgstr "Bank Statement"
-
-#. module: nan_account_bank_statement
-#: selection:account.bank.statement.line,search_by:0
-#: model:ir.actions.act_window,name:nan_account_bank_statement.action_statement_line_rules
-#: model:ir.ui.menu,name:nan_account_bank_statement.menu_statement_line_rule
-msgid "Statement Line Rules"
-msgstr "Statement Line Rules"
-
-#. module: nan_account_bank_statement
-#: view:account.bank.statement:0
-msgid "S_plit"
-msgstr "S_plit"
-
-#. module: nan_account_bank_statement
-#: field:account.bank.statement.line.rule,partner_id:0
-msgid "Partner"
-msgstr "Partner"
-
-#. module: nan_account_bank_statement
-#: field:account.bank.statement,total_amount:0
-msgid "Total Amount"
-msgstr "Total Amount"
-
-#. module: nan_account_bank_statement
-#: model:ir.model,name:nan_account_bank_statement.model_account_bank_statement_line_rule
-msgid "account.bank.statement.line.rule"
-msgstr "account.bank.statement.line.rule"
-
-#. module: nan_account_bank_statement
-#: code:addons/nan_account_bank_statement/account_statement.py:654
-#, python-format
-msgid "Company for account %(account)s does not match rule's company for rule %(rule)s."
-msgstr "Company for account %(account)s does not match rule's company for rule %(rule)s."
-

=== removed directory 'nan_account_bank_statement/security'
=== removed file 'nan_account_bank_statement/security/ir.model.access.csv'
--- nan_account_bank_statement/security/ir.model.access.csv	2012-12-11 10:06:23 +0000
+++ nan_account_bank_statement/security/ir.model.access.csv	1970-01-01 00:00:00 +0000
@@ -1,4 +0,0 @@
-"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink"
-"access_account_bank_statement_line_data","account.bank.statement.line.data","model_account_bank_statement_line_data","account.group_account_user",1,1,1,1
-"access_account_bank_statement_line_rule","account.bank.statement.line.rule","model_account_bank_statement_line_rule","account.group_account_user",1,0,0,0
-"access_account_bank_statement_line_rule","account.bank.statement.line.rule","model_account_bank_statement_line_rule","account.group_account_manager",1,1,1,1

=== removed directory 'nan_account_payment_report'
=== removed file 'nan_account_payment_report/__init__.py'
--- nan_account_payment_report/__init__.py	2011-09-20 07:05:53 +0000
+++ nan_account_payment_report/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,28 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2011  NaN Projectes de Programari Lliure, S.L. - All Rights Reserved.
-#                     http://www.NaN-tic.com
-#
-# WARNING: This program as such is intended to be used by professional
-# programmers who take the whole responsability of assessing all potential
-# consequences resulting from its eventual inadequacies and bugs
-# End users who are looking for a ready-to-use solution with commercial
-# garantees and support are strongly adviced to contract a Free Software
-# Service Company
-#
-# This program is Free Software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License
-# as published by the Free Software Foundation; either version 2
-# of the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
-#
-##############################################################################
-

=== removed file 'nan_account_payment_report/__openerp__.py'
--- nan_account_payment_report/__openerp__.py	2012-03-03 11:14:30 +0000
+++ nan_account_payment_report/__openerp__.py	1970-01-01 00:00:00 +0000
@@ -1,21 +0,0 @@
-{
-    "name" : "Account Payment Jasper Report", 
-    "version" : "1.0",
-    "description" : """This module replaces existing report in payment orders.""",
-    "author" : "NaN·tic",
-    "website" : "http://www.NaN-tic.com",
-    "depends" : [ 
-        'l10n_es_payment_order',
-     ], 
-    "category" : "Accounting",
-    "demo_xml" : [],
-    "init_xml" : [ 
-    ],
-    "update_xml" : [ 
-        'payment_report.xml',
-    ],
-    "active": False,
-    "installable": True
-}
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'nan_account_payment_report/i18n'
=== removed file 'nan_account_payment_report/i18n/ca.po'
--- nan_account_payment_report/i18n/ca.po	2012-08-06 15:38:14 +0000
+++ nan_account_payment_report/i18n/ca.po	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# Translation of OpenERP Server.
-# This file contains the translation of the following modules:
-#
-# Albert Cervera i Areny <albert@nan-tic.com>, 2011.
-msgid ""
-msgstr ""
-"Project-Id-Version: OpenERP Server 6.0.2\n"
-"Report-Msgid-Bugs-To: support@openerp.com\n"
-"POT-Creation-Date: 2011-11-30 06:34+0000\n"
-"PO-Revision-Date: 2011-08-07 02:06+0200\n"
-"Last-Translator: Albert Cervera i Areny <albert@nan-tic.com>\n"
-"Language-Team: Catalan <kde-i18n-ca@kde.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Plural-Forms: \n"
-"X-Generator: Lokalize 1.2\n"
-
-#~ msgid "Account Payment Jasper Report"
-#~ msgstr "Account Payment Jasper Report"
-
-#~ msgid "This module replaces existing report in payment orders."
-#~ msgstr ""
-#~ "Aquest mòdul reemplaça l'informe existent de les ordres de pagament."

=== removed file 'nan_account_payment_report/i18n/es.po'
--- nan_account_payment_report/i18n/es.po	2012-08-06 15:38:14 +0000
+++ nan_account_payment_report/i18n/es.po	1970-01-01 00:00:00 +0000
@@ -1,24 +0,0 @@
-# Translation of OpenERP Server.
-# This file contains the translation of the following modules:
-#
-# Albert Cervera i Areny <albert@nan-tic.com>, 2011.
-msgid ""
-msgstr ""
-"Project-Id-Version: OpenERP Server 6.0.2\n"
-"Report-Msgid-Bugs-To: support@openerp.com\n"
-"POT-Creation-Date: 2011-11-30 06:34+0000\n"
-"PO-Revision-Date: 2011-08-07 02:07+0200\n"
-"Last-Translator: Albert Cervera i Areny <albert@nan-tic.com>\n"
-"Language-Team: Catalan <kde-i18n-ca@kde.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Plural-Forms: \n"
-"X-Generator: Lokalize 1.2\n"
-
-#~ msgid "Account Payment Jasper Report"
-#~ msgstr "Account Payment Jasper Report"
-
-#~ msgid "This module replaces existing report in payment orders."
-#~ msgstr "Este módulo reemplaza el informe existente de las órdenes de pago."

=== removed file 'nan_account_payment_report/i18n/nan_account_payment_report.pot'
--- nan_account_payment_report/i18n/nan_account_payment_report.pot	2012-08-06 15:38:14 +0000
+++ nan_account_payment_report/i18n/nan_account_payment_report.pot	1970-01-01 00:00:00 +0000
@@ -1,16 +0,0 @@
-# Translation of OpenERP Server.
-# This file contains the translation of the following modules:
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: OpenERP Server 6.0.2\n"
-"Report-Msgid-Bugs-To: support@openerp.com\n"
-"POT-Creation-Date: 2011-11-30 06:34+0000\n"
-"PO-Revision-Date: 2011-11-30 06:34+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Plural-Forms: \n"
-

=== removed file 'nan_account_payment_report/payment_report.xml'
--- nan_account_payment_report/payment_report.xml	2011-09-20 07:05:53 +0000
+++ nan_account_payment_report/payment_report.xml	1970-01-01 00:00:00 +0000
@@ -1,14 +0,0 @@
-<?xml version="1.0"?>
-<openerp>
-<data>
-	<!-- Replace standard report from account_payment module -->
-	<report
-		id="account_payment.payment_order1"
-		string="Payment Order"
-		model="payment.order"
-		name="payment.order"
-		rml="nan_account_payment_report/report/payment-order.jrxml"
-        auto="False"
-		/>
-</data>
-</openerp>

=== removed directory 'nan_account_payment_report/report'
=== removed file 'nan_account_payment_report/report/payment-order.jrxml'
--- nan_account_payment_report/report/payment-order.jrxml	2012-08-06 15:38:14 +0000
+++ nan_account_payment_report/report/payment-order.jrxml	1970-01-01 00:00:00 +0000
@@ -1,346 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<jasperReport xmlns="http://jasperreports.sourceforge.net/jasperreports" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports http://jasperreports.sourceforge.net/xsd/jasperreport.xsd" name="payment-order" language="groovy" pageWidth="842" pageHeight="595" orientation="Landscape" columnWidth="802" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20">
-	<property name="OPENERP_RELATIONS" value="[&apos;line_ids&apos;]"/>
-	<property name="ireport.zoom" value="1.331000000000002"/>
-	<property name="ireport.x" value="0"/>
-	<property name="ireport.y" value="0"/>
-	<style name="defecto" forecolor="#FFFFFF" fontSize="10" isItalic="false" isUnderline="false" isStrikeThrough="false"/>
-	<style name="negrita" vAlign="Middle" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfFontName="Helvetica"/>
-	<style name="textoscabecera" style="defecto" forecolor="#000000" backcolor="#CCFFCC" radius="10" fontSize="12" isBold="true" pdfFontName="Helvetica" isPdfEmbedded="false">
-		<pen lineWidth="1.0" lineColor="#FF0066"/>
-	</style>
-	<parameter name="HEADER_DS" class="java.lang.Object"/>
-	<parameter name="STANDARD_DIR" class="java.lang.String"/>
-	<queryString language="xPath">
-		<![CDATA[]]>
-	</queryString>
-	<field name="id" class="java.lang.String">
-		<fieldDescription><![CDATA[/data/record/id]]></fieldDescription>
-	</field>
-	<field name="total" class="java.math.BigDecimal">
-		<fieldDescription><![CDATA[/data/record/total]]></fieldDescription>
-	</field>
-	<field name="amount" class="java.math.BigDecimal">
-		<fieldDescription><![CDATA[/data/record/line_ids/amount]]></fieldDescription>
-	</field>
-	<field name="company_name" class="java.lang.String">
-		<fieldDescription><![CDATA[/data/record/User/company_id/partner_id/name]]></fieldDescription>
-	</field>
-	<field name="lang" class="java.lang.String">
-		<fieldDescription><![CDATA[/data/record/User/company_id/partner_id/lang]]></fieldDescription>
-	</field>
-	<field name="order_number" class="java.lang.String">
-		<fieldDescription><![CDATA[/data/record/name]]></fieldDescription>
-	</field>
-	<field name="partner_name" class="java.lang.String">
-		<fieldDescription><![CDATA[/data/record/Lineas_de_pago-line_ids/Empresa-partner_id/Nombre-name]]></fieldDescription>
-	</field>
-	<field name="due_date" class="java.util.Date">
-		<fieldDescription><![CDATA[/data/record/Lineas_de_pago-line_ids/Fecha_vencimiento-ml_maturity_date]]></fieldDescription>
-	</field>
-	<field name="invoice_number" class="java.lang.String">
-		<fieldDescription><![CDATA[/data/record/Lineas_de_pago-line_ids/Ref._factura-ml_inv_ref/Lineas_de_factura-invoice_line/Ref._factura-invoice_id/Numero_factura-number]]></fieldDescription>
-	</field>
-	<field name="invoice_date" class="java.util.Date">
-		<fieldDescription><![CDATA[/data/record/line_ids/ml_inv_ref/invoice_line/invoice_id/date_invoice]]></fieldDescription>
-	</field>
-	<field name="payment_mode_name" class="java.lang.String">
-		<fieldDescription><![CDATA[/data/record/Modo_de_pago-mode/Nombre-name]]></fieldDescription>
-	</field>
-	<field name="payment_mode_bank_name" class="java.lang.String">
-		<fieldDescription><![CDATA[/data/record/mode/bank_id/bank/name]]></fieldDescription>
-	</field>
-	<field name="payment_mode_bank_city" class="java.lang.String">
-		<fieldDescription><![CDATA[/data/record/mode/bank_id/city]]></fieldDescription>
-	</field>
-	<field name="payment_mode_bank_street" class="java.lang.String">
-		<fieldDescription><![CDATA[/data/record/mode/bank_id/street]]></fieldDescription>
-	</field>
-	<field name="payment_mode_bank_zip" class="java.lang.String">
-		<fieldDescription><![CDATA[/data/record/mode/bank_id/zip]]></fieldDescription>
-	</field>
-	<field name="payment_mode_bank_account" class="java.lang.String">
-		<fieldDescription><![CDATA[/data/record/mode/bank_id/acc_number]]></fieldDescription>
-	</field>
-	<field name="type" class="java.lang.String">
-		<fieldDescription><![CDATA[/data/record/type]]></fieldDescription>
-	</field>
-	<field name="company_footer1" class="java.lang.String">
-		<fieldDescription><![CDATA[/data/record/User/company_id/rml_footer1]]></fieldDescription>
-	</field>
-	<field name="payment_mode_bank_iban" class="java.lang.String">
-		<fieldDescription><![CDATA[/data/record/mode/bank_id/iban]]></fieldDescription>
-	</field>
-	<field name="payment_date" class="java.util.Date">
-		<fieldDescription><![CDATA[/data/record/line_ids/date]]></fieldDescription>
-	</field>
-	<field name="acc_number" class="java.lang.String">
-		<fieldDescription><![CDATA[/data/record/line_ids/bank_id/acc_number]]></fieldDescription>
-	</field>
-	<field name="iban" class="java.lang.String">
-		<fieldDescription><![CDATA[/data/record/line_ids/bank_id/iban]]></fieldDescription>
-	</field>
-	<variable name="L" class="java.util.Locale">
-		<variableExpression><![CDATA[$P{REPORT_LOCALE}]]></variableExpression>
-		<initialValueExpression><![CDATA[$P{REPORT_LOCALE}]]></initialValueExpression>
-	</variable>
-	<variable name="ID_REMESA" class="java.lang.String" resetType="Group" resetGroup="remesa" calculation="First">
-		<variableExpression><![CDATA[$F{id}]]></variableExpression>
-		<initialValueExpression><![CDATA[$F{id}]]></initialValueExpression>
-	</variable>
-	<group name="remesa">
-		<groupExpression><![CDATA[$V{ID_REMESA}]]></groupExpression>
-		<groupHeader>
-			<band/>
-		</groupHeader>
-		<groupFooter>
-			<band height="26">
-				<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
-					<reportElement style="textoscabecera" x="700" y="6" width="100" height="12"/>
-					<textElement textAlignment="Right" verticalAlignment="Middle">
-						<font size="9"/>
-					</textElement>
-					<textFieldExpression class="java.lang.Double"><![CDATA[$F{total}]]></textFieldExpression>
-				</textField>
-				<textField>
-					<reportElement style="textoscabecera" x="564" y="6" width="132" height="12"/>
-					<textElement textAlignment="Right" verticalAlignment="Middle">
-						<font size="9" isBold="true"/>
-					</textElement>
-					<textFieldExpression class="java.lang.String"><![CDATA[tr($V{L},"Total:")]]></textFieldExpression>
-				</textField>
-			</band>
-		</groupFooter>
-	</group>
-	<background>
-		<band splitType="Stretch"/>
-	</background>
-	<pageHeader>
-		<band height="158" splitType="Stretch">
-			<textField>
-				<reportElement style="textoscabecera" x="1" y="88" width="123" height="12"/>
-				<textElement verticalAlignment="Middle">
-					<font size="9" isBold="true"/>
-				</textElement>
-				<textFieldExpression class="java.lang.String"><![CDATA[tr($V{L},"Reference:")]]></textFieldExpression>
-			</textField>
-			<textField>
-				<reportElement style="textoscabecera" x="1" y="143" width="240" height="11"/>
-				<textElement verticalAlignment="Middle">
-					<font size="9"/>
-				</textElement>
-				<textFieldExpression class="java.lang.String"><![CDATA[tr($V{L},"Partner")]]></textFieldExpression>
-			</textField>
-			<line>
-				<reportElement x="0" y="156" width="802" height="1"/>
-			</line>
-			<textField>
-				<reportElement style="textoscabecera" x="376" y="143" width="89" height="11"/>
-				<textElement textAlignment="Right" verticalAlignment="Middle">
-					<font size="9"/>
-				</textElement>
-				<textFieldExpression class="java.lang.String"><![CDATA[tr($V{L},"Invoice")]]></textFieldExpression>
-			</textField>
-			<textField>
-				<reportElement style="textoscabecera" x="543" y="143" width="76" height="11"/>
-				<textElement textAlignment="Right" verticalAlignment="Middle">
-					<font size="9"/>
-				</textElement>
-				<textFieldExpression class="java.lang.String"><![CDATA[tr($V{L},"Date Due")]]></textFieldExpression>
-			</textField>
-			<textField>
-				<reportElement style="textoscabecera" x="719" y="143" width="79" height="11"/>
-				<textElement textAlignment="Right" verticalAlignment="Middle">
-					<font size="9"/>
-				</textElement>
-				<textFieldExpression class="java.lang.String"><![CDATA[tr($V{L},"Amount")]]></textFieldExpression>
-			</textField>
-			<textField>
-				<reportElement style="textoscabecera" x="466" y="143" width="76" height="11"/>
-				<textElement textAlignment="Right" verticalAlignment="Middle">
-					<font size="9"/>
-				</textElement>
-				<textFieldExpression class="java.lang.String"><![CDATA[tr($V{L},"Inv. Date")]]></textFieldExpression>
-			</textField>
-			<textField isBlankWhenNull="true">
-				<reportElement style="textoscabecera" x="126" y="88" width="102" height="12"/>
-				<textElement verticalAlignment="Middle">
-					<font size="9" isBold="false"/>
-				</textElement>
-				<textFieldExpression class="java.lang.String"><![CDATA[$F{order_number}]]></textFieldExpression>
-			</textField>
-			<subreport isUsingCache="true">
-				<reportElement x="2" y="0" width="800" height="40"/>
-				<subreportParameter name="DOCUMENT">
-					<subreportParameterExpression><![CDATA[$F{type} == "payable" ?
-    tr($V{L},"Payment Order")
-:
-    tr($V{L},"Charging Order")]]></subreportParameterExpression>
-				</subreportParameter>
-				<subreportParameter name="WITH_DATE">
-					<subreportParameterExpression><![CDATA[true]]></subreportParameterExpression>
-				</subreportParameter>
-				<subreportParameter name="LANG">
-					<subreportParameterExpression><![CDATA[$F{lang}]]></subreportParameterExpression>
-				</subreportParameter>
-				<dataSourceExpression><![CDATA[$P{HEADER_DS}]]></dataSourceExpression>
-				<subreportExpression class="java.lang.String"><![CDATA[$P{STANDARD_DIR} + "landscape_header.jasper"]]></subreportExpression>
-			</subreport>
-			<textField isBlankWhenNull="true">
-				<reportElement x="563" y="55" width="235" height="12"/>
-				<textElement>
-					<font size="9"/>
-				</textElement>
-				<textFieldExpression class="java.lang.String"><![CDATA[$F{payment_mode_bank_name}]]></textFieldExpression>
-			</textField>
-			<textField isBlankWhenNull="true">
-				<reportElement x="564" y="67" width="234" height="12"/>
-				<textElement>
-					<font size="9"/>
-				</textElement>
-				<textFieldExpression class="java.lang.String"><![CDATA[$F{payment_mode_bank_street}]]></textFieldExpression>
-			</textField>
-			<textField isBlankWhenNull="true">
-				<reportElement x="564" y="79" width="44" height="12"/>
-				<textElement>
-					<font size="9"/>
-				</textElement>
-				<textFieldExpression class="java.lang.String"><![CDATA[$F{payment_mode_bank_zip}]]></textFieldExpression>
-			</textField>
-			<textField isBlankWhenNull="true">
-				<reportElement x="608" y="79" width="190" height="12"/>
-				<textElement>
-					<font size="9"/>
-				</textElement>
-				<textFieldExpression class="java.lang.String"><![CDATA[$F{payment_mode_bank_city}]]></textFieldExpression>
-			</textField>
-			<textField>
-				<reportElement style="textoscabecera" x="1" y="102" width="123" height="12"/>
-				<textElement verticalAlignment="Middle">
-					<font size="9" isBold="true"/>
-				</textElement>
-				<textFieldExpression class="java.lang.String"><![CDATA[tr($V{L},"Payment Mode:")]]></textFieldExpression>
-			</textField>
-			<textField isBlankWhenNull="true">
-				<reportElement x="126" y="102" width="336" height="12"/>
-				<textElement>
-					<font size="9"/>
-				</textElement>
-				<textFieldExpression class="java.lang.String"><![CDATA[$F{payment_mode_name}]]></textFieldExpression>
-			</textField>
-			<textField isBlankWhenNull="true">
-				<reportElement x="126" y="114" width="400" height="12"/>
-				<textElement>
-					<font size="9"/>
-				</textElement>
-				<textFieldExpression class="java.lang.String"><![CDATA[$F{payment_mode_bank_account} == null || $F{payment_mode_bank_account} == "" ?
-    $F{payment_mode_bank_iban}
-:
-    $F{payment_mode_bank_account}]]></textFieldExpression>
-			</textField>
-			<textField>
-				<reportElement style="textoscabecera" x="1" y="114" width="123" height="12"/>
-				<textElement verticalAlignment="Middle">
-					<font size="9" isBold="true"/>
-				</textElement>
-				<textFieldExpression class="java.lang.String"><![CDATA[tr($V{L},"Bank Account:")]]></textFieldExpression>
-			</textField>
-			<textField>
-				<reportElement style="textoscabecera" x="620" y="143" width="76" height="11"/>
-				<textElement textAlignment="Right" verticalAlignment="Middle">
-					<font size="9"/>
-				</textElement>
-				<textFieldExpression class="java.lang.String"><![CDATA[tr($V{L},"Payment Date")]]></textFieldExpression>
-			</textField>
-			<textField>
-				<reportElement style="textoscabecera" x="244" y="143" width="130" height="11"/>
-				<textElement textAlignment="Right" verticalAlignment="Middle">
-					<font size="9"/>
-				</textElement>
-				<textFieldExpression class="java.lang.String"><![CDATA[tr($V{L},"Account Number")]]></textFieldExpression>
-			</textField>
-		</band>
-	</pageHeader>
-	<detail>
-		<band height="17" splitType="Stretch">
-			<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
-				<reportElement x="721" y="0" width="79" height="14"/>
-				<textElement textAlignment="Right" verticalAlignment="Middle">
-					<font size="9"/>
-				</textElement>
-				<textFieldExpression class="java.lang.Double"><![CDATA[$F{amount}]]></textFieldExpression>
-			</textField>
-			<textField>
-				<reportElement x="1" y="0" width="240" height="15"/>
-				<textElement verticalAlignment="Middle">
-					<font size="9"/>
-				</textElement>
-				<textFieldExpression class="java.lang.String"><![CDATA[$F{partner_name}]]></textFieldExpression>
-			</textField>
-			<textField pattern="dd/MM/yyyy" isBlankWhenNull="true">
-				<reportElement x="543" y="0" width="76" height="15"/>
-				<textElement textAlignment="Right" verticalAlignment="Middle">
-					<font size="9"/>
-				</textElement>
-				<textFieldExpression class="java.util.Date"><![CDATA[$F{due_date}]]></textFieldExpression>
-			</textField>
-			<textField isBlankWhenNull="true">
-				<reportElement x="376" y="0" width="89" height="15"/>
-				<textElement textAlignment="Right" verticalAlignment="Middle">
-					<font size="9"/>
-				</textElement>
-				<textFieldExpression class="java.lang.String"><![CDATA[$F{invoice_number}]]></textFieldExpression>
-			</textField>
-			<textField pattern="dd/MM/yyyy" isBlankWhenNull="true">
-				<reportElement x="466" y="0" width="76" height="15"/>
-				<textElement textAlignment="Right" verticalAlignment="Middle">
-					<font size="9"/>
-				</textElement>
-				<textFieldExpression class="java.util.Date"><![CDATA[$F{invoice_date}]]></textFieldExpression>
-			</textField>
-			<textField pattern="dd/MM/yyyy" isBlankWhenNull="true">
-				<reportElement x="620" y="0" width="76" height="15"/>
-				<textElement textAlignment="Right" verticalAlignment="Middle">
-					<font size="9"/>
-				</textElement>
-				<textFieldExpression class="java.util.Date"><![CDATA[$F{payment_date}]]></textFieldExpression>
-			</textField>
-			<textField isBlankWhenNull="true">
-				<reportElement x="244" y="0" width="130" height="15" isRemoveLineWhenBlank="true"/>
-				<textElement textAlignment="Right" verticalAlignment="Middle">
-					<font size="9"/>
-				</textElement>
-				<textFieldExpression class="java.lang.String"><![CDATA[$F{acc_number} != ""
-?
-    $F{acc_number}
-:
-    $F{iban}]]></textFieldExpression>
-			</textField>
-		</band>
-	</detail>
-	<pageFooter>
-		<band height="13" splitType="Stretch">
-			<textField>
-				<reportElement x="745" y="0" width="37" height="12"/>
-				<textElement textAlignment="Right" verticalAlignment="Middle">
-					<font size="9"/>
-				</textElement>
-				<textFieldExpression class="java.lang.String"><![CDATA[$V{PAGE_NUMBER} + "/"]]></textFieldExpression>
-			</textField>
-			<textField evaluationTime="Report">
-				<reportElement x="782" y="0" width="18" height="12"/>
-				<textElement verticalAlignment="Middle">
-					<font size="9"/>
-				</textElement>
-				<textFieldExpression class="java.lang.String"><![CDATA[$V{PAGE_NUMBER}]]></textFieldExpression>
-			</textField>
-			<textField>
-				<reportElement x="1" y="0" width="744" height="12"/>
-				<textElement textAlignment="Center" verticalAlignment="Middle">
-					<font size="6"/>
-				</textElement>
-				<textFieldExpression class="java.lang.String"><![CDATA[$F{company_footer1}]]></textFieldExpression>
-			</textField>
-		</band>
-	</pageFooter>
-</jasperReport>

=== removed file 'nan_account_payment_report/report/payment-order.pot'
--- nan_account_payment_report/report/payment-order.pot	2012-08-06 15:38:14 +0000
+++ nan_account_payment_report/report/payment-order.pot	1970-01-01 00:00:00 +0000
@@ -1,70 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-11-30 07:34+0100\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=CHARSET\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: /tmp/tmp.5lmPSyCnNT:765 /tmp/tmp.5lmPSyCnNT:983 /tmp/tmp.5lmPSyCnNT:1201
-msgid "Total:"
-msgstr ""
-
-#: /tmp/tmp.5lmPSyCnNT:769 /tmp/tmp.5lmPSyCnNT:987 /tmp/tmp.5lmPSyCnNT:1205
-msgid "Reference:"
-msgstr ""
-
-#: /tmp/tmp.5lmPSyCnNT:773 /tmp/tmp.5lmPSyCnNT:991 /tmp/tmp.5lmPSyCnNT:1209
-msgid "Partner"
-msgstr ""
-
-#: /tmp/tmp.5lmPSyCnNT:777 /tmp/tmp.5lmPSyCnNT:995 /tmp/tmp.5lmPSyCnNT:1213
-msgid "Invoice"
-msgstr ""
-
-#: /tmp/tmp.5lmPSyCnNT:781 /tmp/tmp.5lmPSyCnNT:999 /tmp/tmp.5lmPSyCnNT:1217
-msgid "Date Due"
-msgstr ""
-
-#: /tmp/tmp.5lmPSyCnNT:785 /tmp/tmp.5lmPSyCnNT:1003 /tmp/tmp.5lmPSyCnNT:1221
-msgid "Amount"
-msgstr ""
-
-#: /tmp/tmp.5lmPSyCnNT:789 /tmp/tmp.5lmPSyCnNT:1007 /tmp/tmp.5lmPSyCnNT:1225
-msgid "Inv. Date"
-msgstr ""
-
-#: /tmp/tmp.5lmPSyCnNT:798 /tmp/tmp.5lmPSyCnNT:1016 /tmp/tmp.5lmPSyCnNT:1234
-msgid "Payment Order"
-msgstr ""
-
-#: /tmp/tmp.5lmPSyCnNT:800 /tmp/tmp.5lmPSyCnNT:1018 /tmp/tmp.5lmPSyCnNT:1236
-msgid "Charging Order"
-msgstr ""
-
-#: /tmp/tmp.5lmPSyCnNT:836 /tmp/tmp.5lmPSyCnNT:1054 /tmp/tmp.5lmPSyCnNT:1272
-msgid "Payment Mode:"
-msgstr ""
-
-#: /tmp/tmp.5lmPSyCnNT:851 /tmp/tmp.5lmPSyCnNT:1069 /tmp/tmp.5lmPSyCnNT:1287
-msgid "Bank Account:"
-msgstr ""
-
-#: /tmp/tmp.5lmPSyCnNT:855 /tmp/tmp.5lmPSyCnNT:1073 /tmp/tmp.5lmPSyCnNT:1291
-msgid "Payment Date"
-msgstr ""
-
-#: /tmp/tmp.5lmPSyCnNT:859 /tmp/tmp.5lmPSyCnNT:1077 /tmp/tmp.5lmPSyCnNT:1295
-msgid "Account Number"
-msgstr ""

=== removed file 'nan_account_payment_report/report/payment-order_ca_ES.po'
--- nan_account_payment_report/report/payment-order_ca_ES.po	2012-08-06 15:38:14 +0000
+++ nan_account_payment_report/report/payment-order_ca_ES.po	1970-01-01 00:00:00 +0000
@@ -1,71 +0,0 @@
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Albert Cervera i Areny <albert@nan-tic.com>, 2011.
-# Bernat Brunet Torruella <bernat@nan-tic.com>, 2011.
-msgid ""
-msgstr ""
-"Project-Id-Version: \n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-11-30 07:34+0100\n"
-"PO-Revision-Date: 2011-11-30 07:34+0100\n"
-"Last-Translator: Bernat Brunet Torruella <bernat@nan-tic.com>\n"
-"Language-Team: Catalan <kde-i18n-ca@kde.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 1.2\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-
-#: /tmp/tmp.5lmPSyCnNT:765 /tmp/tmp.5lmPSyCnNT:983 /tmp/tmp.5lmPSyCnNT:1201
-msgid "Total:"
-msgstr "Total:"
-
-#: /tmp/tmp.5lmPSyCnNT:769 /tmp/tmp.5lmPSyCnNT:987 /tmp/tmp.5lmPSyCnNT:1205
-msgid "Reference:"
-msgstr "Referència:"
-
-#: /tmp/tmp.5lmPSyCnNT:773 /tmp/tmp.5lmPSyCnNT:991 /tmp/tmp.5lmPSyCnNT:1209
-msgid "Partner"
-msgstr "Empresa"
-
-#: /tmp/tmp.5lmPSyCnNT:777 /tmp/tmp.5lmPSyCnNT:995 /tmp/tmp.5lmPSyCnNT:1213
-msgid "Invoice"
-msgstr "Factura"
-
-#: /tmp/tmp.5lmPSyCnNT:781 /tmp/tmp.5lmPSyCnNT:999 /tmp/tmp.5lmPSyCnNT:1217
-msgid "Date Due"
-msgstr "Venciment"
-
-#: /tmp/tmp.5lmPSyCnNT:785 /tmp/tmp.5lmPSyCnNT:1003 /tmp/tmp.5lmPSyCnNT:1221
-msgid "Amount"
-msgstr "Import"
-
-#: /tmp/tmp.5lmPSyCnNT:789 /tmp/tmp.5lmPSyCnNT:1007 /tmp/tmp.5lmPSyCnNT:1225
-msgid "Inv. Date"
-msgstr "Data factura"
-
-#: /tmp/tmp.5lmPSyCnNT:798 /tmp/tmp.5lmPSyCnNT:1016 /tmp/tmp.5lmPSyCnNT:1234
-msgid "Payment Order"
-msgstr "Ordre de pagament"
-
-#: /tmp/tmp.5lmPSyCnNT:800 /tmp/tmp.5lmPSyCnNT:1018 /tmp/tmp.5lmPSyCnNT:1236
-msgid "Charging Order"
-msgstr "Remesa de rebuts"
-
-#: /tmp/tmp.5lmPSyCnNT:836 /tmp/tmp.5lmPSyCnNT:1054 /tmp/tmp.5lmPSyCnNT:1272
-msgid "Payment Mode:"
-msgstr "Mode de pagament:"
-
-#: /tmp/tmp.5lmPSyCnNT:851 /tmp/tmp.5lmPSyCnNT:1069 /tmp/tmp.5lmPSyCnNT:1287
-msgid "Bank Account:"
-msgstr "Compte bancari:"
-
-#: /tmp/tmp.5lmPSyCnNT:855 /tmp/tmp.5lmPSyCnNT:1073 /tmp/tmp.5lmPSyCnNT:1291
-msgid "Payment Date"
-msgstr "Data de pagament"
-
-#: /tmp/tmp.5lmPSyCnNT:859 /tmp/tmp.5lmPSyCnNT:1077 /tmp/tmp.5lmPSyCnNT:1295
-msgid "Account Number"
-msgstr "Número de compte"

=== removed file 'nan_account_payment_report/report/payment-order_ca_ES.properties'
--- nan_account_payment_report/report/payment-order_ca_ES.properties	2012-08-06 15:38:14 +0000
+++ nan_account_payment_report/report/payment-order_ca_ES.properties	1970-01-01 00:00:00 +0000
@@ -1,45 +0,0 @@
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Albert Cervera i Areny <albert@nan-tic.com>, 2011.
-# Bernat Brunet Torruella <bernat@nan-tic.com>, 2011.
-!=Project-Id-Version\: \nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2011-11-30 07\:34+0100\nPO-Revision-Date\: 2011-11-30 07\:34+0100\nLast-Translator\: Bernat Brunet Torruella <bernat@nan-tic.com>\nLanguage-Team\: Catalan <kde-i18n-ca@kde.org>\nLanguage\: \nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nX-Generator\: Lokalize 1.2\nPlural-Forms\: nplurals\=2; plural\=n \!\= 1;\n
-
-#: /tmp/tmp.5lmPSyCnNT:765 /tmp/tmp.5lmPSyCnNT:983 /tmp/tmp.5lmPSyCnNT:1201
-Total\:=Total\:
-
-#: /tmp/tmp.5lmPSyCnNT:769 /tmp/tmp.5lmPSyCnNT:987 /tmp/tmp.5lmPSyCnNT:1205
-Reference\:=Refer\u00e8ncia\:
-
-#: /tmp/tmp.5lmPSyCnNT:773 /tmp/tmp.5lmPSyCnNT:991 /tmp/tmp.5lmPSyCnNT:1209
-Partner=Empresa
-
-#: /tmp/tmp.5lmPSyCnNT:777 /tmp/tmp.5lmPSyCnNT:995 /tmp/tmp.5lmPSyCnNT:1213
-Invoice=Factura
-
-#: /tmp/tmp.5lmPSyCnNT:781 /tmp/tmp.5lmPSyCnNT:999 /tmp/tmp.5lmPSyCnNT:1217
-Date\ Due=Venciment
-
-#: /tmp/tmp.5lmPSyCnNT:785 /tmp/tmp.5lmPSyCnNT:1003 /tmp/tmp.5lmPSyCnNT:1221
-Amount=Import
-
-#: /tmp/tmp.5lmPSyCnNT:789 /tmp/tmp.5lmPSyCnNT:1007 /tmp/tmp.5lmPSyCnNT:1225
-Inv.\ Date=Data factura
-
-#: /tmp/tmp.5lmPSyCnNT:798 /tmp/tmp.5lmPSyCnNT:1016 /tmp/tmp.5lmPSyCnNT:1234
-Payment\ Order=Ordre de pagament
-
-#: /tmp/tmp.5lmPSyCnNT:800 /tmp/tmp.5lmPSyCnNT:1018 /tmp/tmp.5lmPSyCnNT:1236
-Charging\ Order=Remesa de rebuts
-
-#: /tmp/tmp.5lmPSyCnNT:836 /tmp/tmp.5lmPSyCnNT:1054 /tmp/tmp.5lmPSyCnNT:1272
-Payment\ Mode\:=Mode de pagament\:
-
-#: /tmp/tmp.5lmPSyCnNT:851 /tmp/tmp.5lmPSyCnNT:1069 /tmp/tmp.5lmPSyCnNT:1287
-Bank\ Account\:=Compte bancari\:
-
-#: /tmp/tmp.5lmPSyCnNT:855 /tmp/tmp.5lmPSyCnNT:1073 /tmp/tmp.5lmPSyCnNT:1291
-Payment\ Date=Data de pagament
-
-#: /tmp/tmp.5lmPSyCnNT:859 /tmp/tmp.5lmPSyCnNT:1077 /tmp/tmp.5lmPSyCnNT:1295
-Account\ Number=N\u00famero de compte

=== removed file 'nan_account_payment_report/report/payment-order_es_ES.po'
--- nan_account_payment_report/report/payment-order_es_ES.po	2012-08-06 15:38:14 +0000
+++ nan_account_payment_report/report/payment-order_es_ES.po	1970-01-01 00:00:00 +0000
@@ -1,71 +0,0 @@
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Albert Cervera i Areny <albert@nan-tic.com>, 2011.
-# Bernat Brunet Torruella <bernat@nan-tic.com>, 2011.
-msgid ""
-msgstr ""
-"Project-Id-Version: \n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-11-30 07:34+0100\n"
-"PO-Revision-Date: 2011-11-30 07:33+0100\n"
-"Last-Translator: Bernat Brunet Torruella <bernat@nan-tic.com>\n"
-"Language-Team: Catalan <kde-i18n-ca@kde.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 1.2\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-
-#: /tmp/tmp.5lmPSyCnNT:765 /tmp/tmp.5lmPSyCnNT:983 /tmp/tmp.5lmPSyCnNT:1201
-msgid "Total:"
-msgstr "Total:"
-
-#: /tmp/tmp.5lmPSyCnNT:769 /tmp/tmp.5lmPSyCnNT:987 /tmp/tmp.5lmPSyCnNT:1205
-msgid "Reference:"
-msgstr "Referencia:"
-
-#: /tmp/tmp.5lmPSyCnNT:773 /tmp/tmp.5lmPSyCnNT:991 /tmp/tmp.5lmPSyCnNT:1209
-msgid "Partner"
-msgstr "Empresa"
-
-#: /tmp/tmp.5lmPSyCnNT:777 /tmp/tmp.5lmPSyCnNT:995 /tmp/tmp.5lmPSyCnNT:1213
-msgid "Invoice"
-msgstr "Factura"
-
-#: /tmp/tmp.5lmPSyCnNT:781 /tmp/tmp.5lmPSyCnNT:999 /tmp/tmp.5lmPSyCnNT:1217
-msgid "Date Due"
-msgstr "Vencimiento"
-
-#: /tmp/tmp.5lmPSyCnNT:785 /tmp/tmp.5lmPSyCnNT:1003 /tmp/tmp.5lmPSyCnNT:1221
-msgid "Amount"
-msgstr "Importe"
-
-#: /tmp/tmp.5lmPSyCnNT:789 /tmp/tmp.5lmPSyCnNT:1007 /tmp/tmp.5lmPSyCnNT:1225
-msgid "Inv. Date"
-msgstr "Fecha factura"
-
-#: /tmp/tmp.5lmPSyCnNT:798 /tmp/tmp.5lmPSyCnNT:1016 /tmp/tmp.5lmPSyCnNT:1234
-msgid "Payment Order"
-msgstr "Orden de pago"
-
-#: /tmp/tmp.5lmPSyCnNT:800 /tmp/tmp.5lmPSyCnNT:1018 /tmp/tmp.5lmPSyCnNT:1236
-msgid "Charging Order"
-msgstr "Remesa de recibos"
-
-#: /tmp/tmp.5lmPSyCnNT:836 /tmp/tmp.5lmPSyCnNT:1054 /tmp/tmp.5lmPSyCnNT:1272
-msgid "Payment Mode:"
-msgstr "Tipo de pago:"
-
-#: /tmp/tmp.5lmPSyCnNT:851 /tmp/tmp.5lmPSyCnNT:1069 /tmp/tmp.5lmPSyCnNT:1287
-msgid "Bank Account:"
-msgstr "Cuenta  bancaria:"
-
-#: /tmp/tmp.5lmPSyCnNT:855 /tmp/tmp.5lmPSyCnNT:1073 /tmp/tmp.5lmPSyCnNT:1291
-msgid "Payment Date"
-msgstr "Fecha de pago"
-
-#: /tmp/tmp.5lmPSyCnNT:859 /tmp/tmp.5lmPSyCnNT:1077 /tmp/tmp.5lmPSyCnNT:1295
-msgid "Account Number"
-msgstr "Número de cuenta"

=== removed file 'nan_account_payment_report/report/payment-order_es_ES.properties'
--- nan_account_payment_report/report/payment-order_es_ES.properties	2012-08-06 15:38:14 +0000
+++ nan_account_payment_report/report/payment-order_es_ES.properties	1970-01-01 00:00:00 +0000
@@ -1,45 +0,0 @@
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Albert Cervera i Areny <albert@nan-tic.com>, 2011.
-# Bernat Brunet Torruella <bernat@nan-tic.com>, 2011.
-!=Project-Id-Version\: \nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2011-11-30 07\:34+0100\nPO-Revision-Date\: 2011-11-30 07\:33+0100\nLast-Translator\: Bernat Brunet Torruella <bernat@nan-tic.com>\nLanguage-Team\: Catalan <kde-i18n-ca@kde.org>\nLanguage\: \nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nX-Generator\: Lokalize 1.2\nPlural-Forms\: nplurals\=2; plural\=n \!\= 1;\n
-
-#: /tmp/tmp.5lmPSyCnNT:765 /tmp/tmp.5lmPSyCnNT:983 /tmp/tmp.5lmPSyCnNT:1201
-Total\:=Total\:
-
-#: /tmp/tmp.5lmPSyCnNT:769 /tmp/tmp.5lmPSyCnNT:987 /tmp/tmp.5lmPSyCnNT:1205
-Reference\:=Referencia\:
-
-#: /tmp/tmp.5lmPSyCnNT:773 /tmp/tmp.5lmPSyCnNT:991 /tmp/tmp.5lmPSyCnNT:1209
-Partner=Empresa
-
-#: /tmp/tmp.5lmPSyCnNT:777 /tmp/tmp.5lmPSyCnNT:995 /tmp/tmp.5lmPSyCnNT:1213
-Invoice=Factura
-
-#: /tmp/tmp.5lmPSyCnNT:781 /tmp/tmp.5lmPSyCnNT:999 /tmp/tmp.5lmPSyCnNT:1217
-Date\ Due=Vencimiento
-
-#: /tmp/tmp.5lmPSyCnNT:785 /tmp/tmp.5lmPSyCnNT:1003 /tmp/tmp.5lmPSyCnNT:1221
-Amount=Importe
-
-#: /tmp/tmp.5lmPSyCnNT:789 /tmp/tmp.5lmPSyCnNT:1007 /tmp/tmp.5lmPSyCnNT:1225
-Inv.\ Date=Fecha factura
-
-#: /tmp/tmp.5lmPSyCnNT:798 /tmp/tmp.5lmPSyCnNT:1016 /tmp/tmp.5lmPSyCnNT:1234
-Payment\ Order=Orden de pago
-
-#: /tmp/tmp.5lmPSyCnNT:800 /tmp/tmp.5lmPSyCnNT:1018 /tmp/tmp.5lmPSyCnNT:1236
-Charging\ Order=Remesa de recibos
-
-#: /tmp/tmp.5lmPSyCnNT:836 /tmp/tmp.5lmPSyCnNT:1054 /tmp/tmp.5lmPSyCnNT:1272
-Payment\ Mode\:=Tipo de pago\:
-
-#: /tmp/tmp.5lmPSyCnNT:851 /tmp/tmp.5lmPSyCnNT:1069 /tmp/tmp.5lmPSyCnNT:1287
-Bank\ Account\:=Cuenta  bancaria\:
-
-#: /tmp/tmp.5lmPSyCnNT:855 /tmp/tmp.5lmPSyCnNT:1073 /tmp/tmp.5lmPSyCnNT:1291
-Payment\ Date=Fecha de pago
-
-#: /tmp/tmp.5lmPSyCnNT:859 /tmp/tmp.5lmPSyCnNT:1077 /tmp/tmp.5lmPSyCnNT:1295
-Account\ Number=N\u00famero de cuenta

