From 6c026d2e335fa2c5a7a0f62cf6f9fb95c9397ae9 Mon Sep 17 00:00:00 2001 From: Nicolas Bessi Date: Mon, 14 Apr 2014 13:57:02 +0200 Subject: [PATCH 01/18] # This is a combination of 12 commits. # The first commit's message is: [ADD] credit control dunning fees module # This is the 2nd commit message: [ADD] docstring # This is the 3rd commit message: [FIX] FeesComputer model specification to act as a abstract class without needing overriding # This is the 4th commit message: [IMP] fees column in report and mail # This is the 5th commit message: [FIX] dunning fees computer to register itself # This is the 6th commit message: [RM] unused import # This is the 7th commit message: [PEP8] # This is the 8th commit message: [IMP] module documentation # This is the 9th commit message: [ADD] dunniing fees translations # This is the 10th commit message: [FIX] name of level in tests # This is the 11th commit message: [TYPOS] # This is the 12th commit message: Set all addons to uninstallable --- .../__init__.py | 21 ++ .../__openerp__.py | 71 +++++ .../account_credit_control_dunning_fees.pot | 81 ++++++ .../i18n/fr.po | 80 ++++++ .../model/__init__.py | 24 ++ .../model/dunning.py | 120 +++++++++ .../model/line.py | 29 +++ .../model/policy.py | 36 +++ .../model/run.py | 39 +++ .../report/credit_control_summary.html.mako | 246 ++++++++++++++++++ .../report/report.xml | 12 + .../tests/__init__.py | 23 ++ .../tests/test_fees_generation.py | 95 +++++++ .../view/line_view.xml | 30 +++ .../view/policy_view.xml | 26 ++ 15 files changed, 933 insertions(+) create mode 100644 account_credit_control_dunning_fees/__init__.py create mode 100644 account_credit_control_dunning_fees/__openerp__.py create mode 100644 account_credit_control_dunning_fees/i18n/account_credit_control_dunning_fees.pot create mode 100644 account_credit_control_dunning_fees/i18n/fr.po create mode 100644 account_credit_control_dunning_fees/model/__init__.py create mode 100644 account_credit_control_dunning_fees/model/dunning.py create mode 100644 account_credit_control_dunning_fees/model/line.py create mode 100644 account_credit_control_dunning_fees/model/policy.py create mode 100644 account_credit_control_dunning_fees/model/run.py create mode 100644 account_credit_control_dunning_fees/report/credit_control_summary.html.mako create mode 100644 account_credit_control_dunning_fees/report/report.xml create mode 100644 account_credit_control_dunning_fees/tests/__init__.py create mode 100644 account_credit_control_dunning_fees/tests/test_fees_generation.py create mode 100644 account_credit_control_dunning_fees/view/line_view.xml create mode 100644 account_credit_control_dunning_fees/view/policy_view.xml diff --git a/account_credit_control_dunning_fees/__init__.py b/account_credit_control_dunning_fees/__init__.py new file mode 100644 index 000000000..6ac610f01 --- /dev/null +++ b/account_credit_control_dunning_fees/__init__.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author: Nicolas Bessi +# Copyright 2014 Camptocamp SA +# +# 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 . +# +############################################################################## +from . import model diff --git a/account_credit_control_dunning_fees/__openerp__.py b/account_credit_control_dunning_fees/__openerp__.py new file mode 100644 index 000000000..687f6543f --- /dev/null +++ b/account_credit_control_dunning_fees/__openerp__.py @@ -0,0 +1,71 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author: Nicolas Bessi +# Copyright 2014 Camptocamp SA +# +# 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 . +# +############################################################################## +{'name': 'Credit control dunning fees', + 'version': '0.1.0', + 'author': 'Camptocamp', + 'maintainer': 'Camptocamp', + 'category': 'Accounting', + 'complexity': 'normal', + 'depends': ['account_credit_control'], + 'description': """ +Dunning Fees for Credit Control +=============================== + +This extention of credit control adds the notion of dunning fees +on credit control lines. + +Configuration +------------- +For release 0.1 only fixed fees are supported. + +You can specifiy a fixed fees amount, a product and a currency +on the credit control level form. + +The amount will be used as fees values the currency will determine +the currency of the fee. If the credit control line has not the +same currency as the fees currency, fees will be converted to +the credit control line currency. + +The product is used to compute taxes in reconciliation process. + +Run +--- +Fees are automatically computed on credit run and saved +on the generated credit lines. + +Fees can be manually edited as long credit line is draft + +Credit control Summary report includes a new fees column. +------- +Support of fees price list + +""", + 'website': 'http://www.camptocamp.com', + 'data': ['view/policy_view.xml', + 'view/line_view.xml', + 'report/report.xml'], + 'demo': [], + 'test': [], + 'installable': False, + 'auto_install': False, + 'license': 'AGPL-3', + 'application': False, +} diff --git a/account_credit_control_dunning_fees/i18n/account_credit_control_dunning_fees.pot b/account_credit_control_dunning_fees/i18n/account_credit_control_dunning_fees.pot new file mode 100644 index 000000000..6282315c6 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/account_credit_control_dunning_fees.pot @@ -0,0 +1,81 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 7.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-05-07 11:44+0000\n" +"PO-Revision-Date: 2014-05-07 11:44+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_credit_control_dunning_fees +#: code:_description:0 +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +#, python-format +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: code:_description:0 +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +#, python-format +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: code:_description:0 +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +#, python-format +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:0 +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:0 +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: code:_description:0 +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_dunning_fees_computer +#, python-format +msgid "credit.control.dunning.fees.computer" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "unknown" +msgstr "" + diff --git a/account_credit_control_dunning_fees/i18n/fr.po b/account_credit_control_dunning_fees/i18n/fr.po new file mode 100644 index 000000000..df2e9e0ba --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/fr.po @@ -0,0 +1,80 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 7.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-04-16 07:11+0000\n" +"PO-Revision-Date: 2014-04-16 07:11+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_credit_control_dunning_fees +#: code:_description:0 +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +#, python-format +msgid "A credit control line" +msgstr "Ligne de relance" + +#. module: account_credit_control_dunning_fees +#: code:_description:0 +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +#, python-format +msgid "A credit control policy level" +msgstr "Une politique de relance" + +#. module: account_credit_control_dunning_fees +#: code:_description:0 +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +#, python-format +msgid "Credit control line generator" +msgstr "Générateur de relance" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:0 +msgid "Fees" +msgstr "Frais de relance" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "Montant des frais" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "Article lié" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "Devises" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "Fixe" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:0 +msgid "Mail and reporting" +msgstr "Lettres et e-mails" + +#. module: account_credit_control_dunning_fees +#: code:_description:0 +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_dunning_fees_computer +#, python-format +msgid "credit.control.dunning.fees.computer" +msgstr "credit.control.dunning.fees.computer" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "unknown" +msgstr "inconnu" diff --git a/account_credit_control_dunning_fees/model/__init__.py b/account_credit_control_dunning_fees/model/__init__.py new file mode 100644 index 000000000..c9a69427a --- /dev/null +++ b/account_credit_control_dunning_fees/model/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author: Nicolas Bessi +# Copyright 2014 Camptocamp SA +# +# 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 . +# +############################################################################## +from . import line +from . import policy +from . import run +from . import dunning diff --git a/account_credit_control_dunning_fees/model/dunning.py b/account_credit_control_dunning_fees/model/dunning.py new file mode 100644 index 000000000..b0a75cdd2 --- /dev/null +++ b/account_credit_control_dunning_fees/model/dunning.py @@ -0,0 +1,120 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author: Nicolas Bessi +# Copyright 2014 Camptocamp SA +# +# 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 . +# +############################################################################## +from openerp.osv import orm + + +class FeesComputer(orm.BaseModel): + """Model that compute dunnig fees. + + This class does not need any database storage as + it contains pure logic. + + It inherits form ``orm.BaseModel`` to benefit of orm facility + + Similar to AbstractModel but log access and actions + """ + + _name = 'credit.control.dunning.fees.computer' + _auto = False + _log_access = True + _register = True + _transient = False + + def _get_compute_fun(self, level_fees_type): + """Retrieve function of class that should compute the fees based on type + + :param level_fee_type: type exisiting in model `credit.control.policy.level` + for field dunning_fees_type + + :returns: a function of class :class:`FeesComputer` with following signature + self, cr, uid, credit_line (record), context + + """ + if level_fees_type == 'fixed': + return self.compute_fixed_fees + else: + raise NotImplementedError('fees type %s is not supported' % level_fees_type) + + def _compute_fees(self, cr, uid, credit_line_ids, context=None): + """Compute fees for `credit_line_ids` parameter + + Fees amount is written on credit line in field dunning_fees_amount + + :param credit_line_ids: list of `credit.control.line` ids + + :returns: `credit_line_ids` list of `credit.control.line` ids + + """ + if context is None: + context = {} + if not credit_line_ids: + return credit_line_ids + c_model = self.pool['credit.control.line'] + credit_lines = c_model.browse(cr, uid, credit_line_ids, context=context) + for credit in credit_lines: + # if there is no dependence between generated credit lines + # this could be threaded + self._compute(cr, uid, credit, context=context), + return credit_line_ids + + def _compute(self, cr, uid, credit_line, context=None): + """Compute fees for a given credit line + + Fees amount is written on credit line in field dunning_fees_amount + + :param credit_line: credit line record + + :returns: `credit_line` record + """ + fees_type = credit_line.policy_level_id.dunning_fees_type + compute = self._get_compute_fun(fees_type) + fees = compute(cr, uid, credit_line, context=context) + if fees: + credit_line.write({'dunning_fees_amount': fees}, + context=context) + return credit_line + + def compute_fixed_fees(self, cr, uid, credit_line, context=None): + """Compute fees amount for fixed fees. + Correspond to the fixed dunning fees type + + if currency of the fees is not the same as the currency + of the credit line, fees amount is converted to + currency of credit line. + + :param credit_line: credit line record + + :return: fees amount float (in credit line currency) + + """ + currency_model = self.pool['res.currency'] + credit_currency = credit_line.currency_id + level = credit_line.policy_level_id + fees_amount = level.dunning_fixed_amount + if not fees_amount: + return 0.0 + fees_currency = level.dunning_currency_id + if fees_currency == credit_currency: + return fees_amount + else: + return currency_model.compute(cr, uid, fees_currency.id, + credit_currency.id, fees_amount, + context=context) diff --git a/account_credit_control_dunning_fees/model/line.py b/account_credit_control_dunning_fees/model/line.py new file mode 100644 index 000000000..5e4a3f782 --- /dev/null +++ b/account_credit_control_dunning_fees/model/line.py @@ -0,0 +1,29 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author: Nicolas Bessi +# Copyright 2014 Camptocamp SA +# +# 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 . +# +############################################################################## +from openerp.osv import orm, fields + + +class credit_control_line(orm.Model): + """Add dunning_fees_amount_fees field""" + + _inherit = "credit.control.line" + + _columns = {'dunning_fees_amount': fields.float('Fees')} diff --git a/account_credit_control_dunning_fees/model/policy.py b/account_credit_control_dunning_fees/model/policy.py new file mode 100644 index 000000000..1cf3c699b --- /dev/null +++ b/account_credit_control_dunning_fees/model/policy.py @@ -0,0 +1,36 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author: Nicolas Bessi +# Copyright 2014 Camptocamp SA +# +# 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 . +# +############################################################################## +from openerp.osv import orm, fields + + +class credit_control_policy(orm.Model): + """ADD dunning fees fields""" + + _inherit = "credit.control.policy.level" + _columns = {'dunning_product_id': fields.many2one('product.product', + 'Fees Product'), + 'dunning_fixed_amount': fields.float('Fees Fixed Amount'), + 'dunning_currency_id': fields.many2one('res.currency', + 'Fees currency'), + # planned type are fixed, percent, compound + 'dunning_fees_type': fields.selection([('fixed', 'Fixed')])} + + _defaults = {'dunning_fees_type': 'fixed'} diff --git a/account_credit_control_dunning_fees/model/run.py b/account_credit_control_dunning_fees/model/run.py new file mode 100644 index 000000000..2d6585e58 --- /dev/null +++ b/account_credit_control_dunning_fees/model/run.py @@ -0,0 +1,39 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author: Nicolas Bessi +# Copyright 2014 Camptocamp SA +# +# 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 . +# +############################################################################## +from openerp.osv import orm, fields + + +class credit_control_run(orm.Model): + """Add computation of fees""" + + _inherit = "credit.control.run" + + def _generate_credit_lines(self, cr, uid, run_id, context=None): + """Override method to add fees computation""" + credit_line_ids = super(credit_control_run, self)._generate_credit_lines( + cr, + uid, + run_id, + context=context + ) + fees_model = self.pool['credit.control.dunning.fees.computer'] + fees_model._compute_fees(cr, uid, credit_line_ids, context=context) + return credit_line_ids diff --git a/account_credit_control_dunning_fees/report/credit_control_summary.html.mako b/account_credit_control_dunning_fees/report/credit_control_summary.html.mako new file mode 100644 index 000000000..985a93403 --- /dev/null +++ b/account_credit_control_dunning_fees/report/credit_control_summary.html.mako @@ -0,0 +1,246 @@ +## -*- coding: utf-8 -*- + + + + + + + %for comm in objects : + <% setLang(comm.get_contact_address().lang) %> +
+ + <% + add = comm.get_contact_address() + %> + %if comm.partner_id.id == add.id: + + <% address_lines = comm.partner_id.contact_address.split("\n") %> + + %else: + + + <% address_lines = add.contact_address.split("\n")[1:] %> + %endif + %for part in address_lines: + %if part: + + %endif + %endfor +
${comm.partner_id.title and comm.partner_id.title.name or ''} ${comm.partner_id.name }
${comm.partner_id.name or ''}
${add.title and add.title.name or ''} ${add.name}
${part}
+
+
+
+
+ +
+
+
+
+
+ +

+ ${_('Reminder')}: ${comm.current_policy_level.name or '' } +

+ +

${_('Dear')},

+

${comm.current_policy_level.custom_text.replace('\n', '
')}

+ +
+
+

${_('Summary')}

+ + + + + + + + + + + +%for line in comm.credit_control_line_ids: + + %if line.invoice_id: + + %else: + + %endif + + + + + + + +%endfor +
${_('Invoice number')}${_('Invoice date')}${_('Date due')}${_('Invoiced amount')}${_('Open amount')}${_('Fees')}${_('Currency')}
${line.invoice_id.number} + %if line.invoice_id.name: +
+ ${line.invoice_id.name} + %endif +
${line.move_line_id.name}${line.date_entry}${line.date_due}${line.amount_due}${line.balance_due}${line.dunning_fees_amount}${line.currency_id.name or comm.company_id.currency_id.name}
+
+
+<%doc> + +

${_('If you have any question, do not hesitate to contact us.')}

+ +

${comm.user_id.name} ${comm.user_id.email and '<%s>'%(comm.user_id.email) or ''}
+ ${comm.company_id.name}
+ % if comm.company_id.street: + ${comm.company_id.street or ''}
+ + % endif + + % if comm.company_id.street2: + ${comm.company_id.street2}
+ % endif + % if comm.company_id.city or comm.company_id.zip: + ${comm.company_id.zip or ''} ${comm.company_id.city or ''}
+ % endif + % if comm.company_id.country_id: + ${comm.company_id.state_id and ('%s, ' % comm.company_id.state_id.name) or ''} ${comm.company_id.country_id.name or ''}
+ % endif + % if comm.company_id.phone: + Phone: ${comm.company_id.phone}
+ % endif + % if comm.company_id.website: + ${comm.company_id.website or ''}
+ % endif + + +

+ %endfor + + + diff --git a/account_credit_control_dunning_fees/report/report.xml b/account_credit_control_dunning_fees/report/report.xml new file mode 100644 index 000000000..89a9874a6 --- /dev/null +++ b/account_credit_control_dunning_fees/report/report.xml @@ -0,0 +1,12 @@ + + + + + diff --git a/account_credit_control_dunning_fees/tests/__init__.py b/account_credit_control_dunning_fees/tests/__init__.py new file mode 100644 index 000000000..db75f16d2 --- /dev/null +++ b/account_credit_control_dunning_fees/tests/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author: Nicolas Bessi +# Copyright 2014 Camptocamp SA +# +# 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 . +# +############################################################################## +from . import test_fees_generation + +checks = [test_fees_generation] diff --git a/account_credit_control_dunning_fees/tests/test_fees_generation.py b/account_credit_control_dunning_fees/tests/test_fees_generation.py new file mode 100644 index 000000000..0d7037a9a --- /dev/null +++ b/account_credit_control_dunning_fees/tests/test_fees_generation.py @@ -0,0 +1,95 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author: Nicolas Bessi +# Copyright 2014 Camptocamp SA +# +# 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 . +# +############################################################################## +from mock import MagicMock +import openerp.tests.common as test_common + + +class FixedFeesTester(test_common.TransactionCase): + + def setUp(self): + """Initialize credit control level mock to test fees computations""" + super(FixedFeesTester, self).setUp() + self.currency_model = self.registry('res.currency') + self.euro = self.currency_model.search(self.cr, self.uid, + [('name', '=', 'EUR')]) + self.assertTrue(self.euro) + self.euro = self.registry('res.currency').browse(self.cr, + self.uid, + self.euro[0]) + + self.usd = self.currency_model.search(self.cr, self.uid, + [('name', '=', 'USD')]) + self.assertTrue(self.usd) + self.usd = self.registry('res.currency').browse(self.cr, + self.uid, + self.usd[0]) + + self.euro_level = MagicMock(name='Euro policy level') + self.euro_level.dunning_fixed_amount = 5.0 + self.euro_level.dunning_currency_id = self.euro + self.euro_level.dunning_type = 'fixed' + + self.usd_level = MagicMock(name='USD policy level') + self.usd_level.dunning_fixed_amount = 5.0 + self.usd_level.dunning_currency_id = self.usd + self.usd_level.dunning_type = 'fixed' + self.dunning_model = self.registry('credit.control.dunning.fees.computer') + + def test_type_getter(self): + """Test that correct compute function is returned for "fixed" type""" + c_fun = self.dunning_model._get_compute_fun('fixed') + self.assertEqual(c_fun, self.dunning_model.compute_fixed_fees) + + def test_unknow_type(self): + """Test that non implemented error is raised if invalide fees type""" + with self.assertRaises(NotImplementedError): + self.dunning_model._get_compute_fun('bang') + + def test_computation_same_currency(self): + """Test that fees are correctly computed with same currency""" + credit_line = MagicMock(name='Euro credit line') + credit_line.policy_level_id = self.euro_level + credit_line.currency_id = self.euro + fees = self.dunning_model.compute_fixed_fees(self.cr, self.uid, + credit_line, + {}) + self.assertEqual(fees, self.euro_level.dunning_fixed_amount) + + def test_computation_different_currency(self): + """Test that fees are correctly computed with different currency""" + credit_line = MagicMock(name='USD credit line') + credit_line.policy_level_id = self.euro_level + credit_line.currency_id = self.usd + fees = self.dunning_model.compute_fixed_fees(self.cr, self.uid, + credit_line, + {}) + self.assertNotEqual(fees, self.euro_level.dunning_fixed_amount) + + def test_no_fees(self): + """Test that fees are not generated if no amount defined on level""" + credit_line = MagicMock(name='USD credit line') + credit_line.policy_level_id = self.euro_level + self.euro_level.dunning_fixed_amount = 0.0 + credit_line.currency_id = self.usd + fees = self.dunning_model.compute_fixed_fees(self.cr, self.uid, + credit_line, + {}) + self.assertEqual(fees, 0.0) diff --git a/account_credit_control_dunning_fees/view/line_view.xml b/account_credit_control_dunning_fees/view/line_view.xml new file mode 100644 index 000000000..9d4688bd5 --- /dev/null +++ b/account_credit_control_dunning_fees/view/line_view.xml @@ -0,0 +1,30 @@ + + + + + + add fees on credit control line + credit.control.line + + + + + + + + + + add fees on credit control line form + credit.control.line + + + + + + + + + + diff --git a/account_credit_control_dunning_fees/view/policy_view.xml b/account_credit_control_dunning_fees/view/policy_view.xml new file mode 100644 index 000000000..02e9ac618 --- /dev/null +++ b/account_credit_control_dunning_fees/view/policy_view.xml @@ -0,0 +1,26 @@ + + + + + add dunning fees on policy + credit.control.policy + + + + + + + + + + + + + + + + + + From 44f33802cdd0a02589896f128a4acca5c9ce5da5 Mon Sep 17 00:00:00 2001 From: Nicolas Bessi Date: Mon, 14 Apr 2014 13:57:02 +0200 Subject: [PATCH 02/18] [ADD] credit control dunning fees module [ADD] docstring [FIX] FeesComputer model specification to act as a abstract class without needing overriding [IMP] fees column in report and mail [FIX] dunning fees computer to register itself [RM] unused import [PEP8] [IMP] module documentation [ADD] dunniing fees translations [FIX] name of level in tests [TYPOS] Set all addons to uninstallable [ADD] credit control dunning fees module [ADD] docstring [FIX] FeesComputer model specification to act as a abstract class without needing overriding [IMP] fees column in report and mail [FIX] dunning fees computer to register itself [RM] unused import [PEP8] [IMP] module documentation [ADD] dunniing fees translations [FIX] name of level in tests [TYPOS] Set all addons to uninstallable Rename all addons to xxx_unported to be travis compliant --- .../__init__.py | 21 -- .../__openerp__.py | 71 ----- .../account_credit_control_dunning_fees.pot | 81 ------ .../i18n/fr.po | 80 ------ .../model/__init__.py | 24 -- .../model/dunning.py | 120 --------- .../model/line.py | 29 --- .../model/policy.py | 36 --- .../model/run.py | 39 --- .../report/credit_control_summary.html.mako | 246 ------------------ .../report/report.xml | 12 - .../tests/__init__.py | 23 -- .../tests/test_fees_generation.py | 95 ------- .../view/line_view.xml | 30 --- .../view/policy_view.xml | 26 -- 15 files changed, 933 deletions(-) delete mode 100644 account_credit_control_dunning_fees/__init__.py delete mode 100644 account_credit_control_dunning_fees/__openerp__.py delete mode 100644 account_credit_control_dunning_fees/i18n/account_credit_control_dunning_fees.pot delete mode 100644 account_credit_control_dunning_fees/i18n/fr.po delete mode 100644 account_credit_control_dunning_fees/model/__init__.py delete mode 100644 account_credit_control_dunning_fees/model/dunning.py delete mode 100644 account_credit_control_dunning_fees/model/line.py delete mode 100644 account_credit_control_dunning_fees/model/policy.py delete mode 100644 account_credit_control_dunning_fees/model/run.py delete mode 100644 account_credit_control_dunning_fees/report/credit_control_summary.html.mako delete mode 100644 account_credit_control_dunning_fees/report/report.xml delete mode 100644 account_credit_control_dunning_fees/tests/__init__.py delete mode 100644 account_credit_control_dunning_fees/tests/test_fees_generation.py delete mode 100644 account_credit_control_dunning_fees/view/line_view.xml delete mode 100644 account_credit_control_dunning_fees/view/policy_view.xml diff --git a/account_credit_control_dunning_fees/__init__.py b/account_credit_control_dunning_fees/__init__.py deleted file mode 100644 index 6ac610f01..000000000 --- a/account_credit_control_dunning_fees/__init__.py +++ /dev/null @@ -1,21 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Author: Nicolas Bessi -# Copyright 2014 Camptocamp SA -# -# 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 . -# -############################################################################## -from . import model diff --git a/account_credit_control_dunning_fees/__openerp__.py b/account_credit_control_dunning_fees/__openerp__.py deleted file mode 100644 index 687f6543f..000000000 --- a/account_credit_control_dunning_fees/__openerp__.py +++ /dev/null @@ -1,71 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Author: Nicolas Bessi -# Copyright 2014 Camptocamp SA -# -# 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 . -# -############################################################################## -{'name': 'Credit control dunning fees', - 'version': '0.1.0', - 'author': 'Camptocamp', - 'maintainer': 'Camptocamp', - 'category': 'Accounting', - 'complexity': 'normal', - 'depends': ['account_credit_control'], - 'description': """ -Dunning Fees for Credit Control -=============================== - -This extention of credit control adds the notion of dunning fees -on credit control lines. - -Configuration -------------- -For release 0.1 only fixed fees are supported. - -You can specifiy a fixed fees amount, a product and a currency -on the credit control level form. - -The amount will be used as fees values the currency will determine -the currency of the fee. If the credit control line has not the -same currency as the fees currency, fees will be converted to -the credit control line currency. - -The product is used to compute taxes in reconciliation process. - -Run ---- -Fees are automatically computed on credit run and saved -on the generated credit lines. - -Fees can be manually edited as long credit line is draft - -Credit control Summary report includes a new fees column. -------- -Support of fees price list - -""", - 'website': 'http://www.camptocamp.com', - 'data': ['view/policy_view.xml', - 'view/line_view.xml', - 'report/report.xml'], - 'demo': [], - 'test': [], - 'installable': False, - 'auto_install': False, - 'license': 'AGPL-3', - 'application': False, -} diff --git a/account_credit_control_dunning_fees/i18n/account_credit_control_dunning_fees.pot b/account_credit_control_dunning_fees/i18n/account_credit_control_dunning_fees.pot deleted file mode 100644 index 6282315c6..000000000 --- a/account_credit_control_dunning_fees/i18n/account_credit_control_dunning_fees.pot +++ /dev/null @@ -1,81 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_credit_control_dunning_fees -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 7.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-07 11:44+0000\n" -"PO-Revision-Date: 2014-05-07 11:44+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_credit_control_dunning_fees -#: code:_description:0 -#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line -#, python-format -msgid "A credit control line" -msgstr "" - -#. module: account_credit_control_dunning_fees -#: code:_description:0 -#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level -#, python-format -msgid "A credit control policy level" -msgstr "" - -#. module: account_credit_control_dunning_fees -#: code:_description:0 -#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run -#, python-format -msgid "Credit control line generator" -msgstr "" - -#. module: account_credit_control_dunning_fees -#: field:credit.control.line,dunning_fees_amount:0 -#: view:credit.control.policy:0 -msgid "Fees" -msgstr "" - -#. module: account_credit_control_dunning_fees -#: field:credit.control.policy.level,dunning_fixed_amount:0 -msgid "Fees Fixed Amount" -msgstr "" - -#. module: account_credit_control_dunning_fees -#: field:credit.control.policy.level,dunning_product_id:0 -msgid "Fees Product" -msgstr "" - -#. module: account_credit_control_dunning_fees -#: field:credit.control.policy.level,dunning_currency_id:0 -msgid "Fees currency" -msgstr "" - -#. module: account_credit_control_dunning_fees -#: selection:credit.control.policy.level,dunning_fees_type:0 -msgid "Fixed" -msgstr "" - -#. module: account_credit_control_dunning_fees -#: view:credit.control.policy:0 -msgid "Mail and reporting" -msgstr "" - -#. module: account_credit_control_dunning_fees -#: code:_description:0 -#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_dunning_fees_computer -#, python-format -msgid "credit.control.dunning.fees.computer" -msgstr "" - -#. module: account_credit_control_dunning_fees -#: field:credit.control.policy.level,dunning_fees_type:0 -msgid "unknown" -msgstr "" - diff --git a/account_credit_control_dunning_fees/i18n/fr.po b/account_credit_control_dunning_fees/i18n/fr.po deleted file mode 100644 index df2e9e0ba..000000000 --- a/account_credit_control_dunning_fees/i18n/fr.po +++ /dev/null @@ -1,80 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_credit_control_dunning_fees -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 7.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-04-16 07:11+0000\n" -"PO-Revision-Date: 2014-04-16 07:11+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_credit_control_dunning_fees -#: code:_description:0 -#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line -#, python-format -msgid "A credit control line" -msgstr "Ligne de relance" - -#. module: account_credit_control_dunning_fees -#: code:_description:0 -#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level -#, python-format -msgid "A credit control policy level" -msgstr "Une politique de relance" - -#. module: account_credit_control_dunning_fees -#: code:_description:0 -#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run -#, python-format -msgid "Credit control line generator" -msgstr "Générateur de relance" - -#. module: account_credit_control_dunning_fees -#: field:credit.control.line,dunning_fees_amount:0 -#: view:credit.control.policy:0 -msgid "Fees" -msgstr "Frais de relance" - -#. module: account_credit_control_dunning_fees -#: field:credit.control.policy.level,dunning_fixed_amount:0 -msgid "Fees Fixed Amount" -msgstr "Montant des frais" - -#. module: account_credit_control_dunning_fees -#: field:credit.control.policy.level,dunning_product_id:0 -msgid "Fees Product" -msgstr "Article lié" - -#. module: account_credit_control_dunning_fees -#: field:credit.control.policy.level,dunning_currency_id:0 -msgid "Fees currency" -msgstr "Devises" - -#. module: account_credit_control_dunning_fees -#: selection:credit.control.policy.level,dunning_fees_type:0 -msgid "Fixed" -msgstr "Fixe" - -#. module: account_credit_control_dunning_fees -#: view:credit.control.policy:0 -msgid "Mail and reporting" -msgstr "Lettres et e-mails" - -#. module: account_credit_control_dunning_fees -#: code:_description:0 -#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_dunning_fees_computer -#, python-format -msgid "credit.control.dunning.fees.computer" -msgstr "credit.control.dunning.fees.computer" - -#. module: account_credit_control_dunning_fees -#: field:credit.control.policy.level,dunning_fees_type:0 -msgid "unknown" -msgstr "inconnu" diff --git a/account_credit_control_dunning_fees/model/__init__.py b/account_credit_control_dunning_fees/model/__init__.py deleted file mode 100644 index c9a69427a..000000000 --- a/account_credit_control_dunning_fees/model/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Author: Nicolas Bessi -# Copyright 2014 Camptocamp SA -# -# 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 . -# -############################################################################## -from . import line -from . import policy -from . import run -from . import dunning diff --git a/account_credit_control_dunning_fees/model/dunning.py b/account_credit_control_dunning_fees/model/dunning.py deleted file mode 100644 index b0a75cdd2..000000000 --- a/account_credit_control_dunning_fees/model/dunning.py +++ /dev/null @@ -1,120 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Author: Nicolas Bessi -# Copyright 2014 Camptocamp SA -# -# 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 . -# -############################################################################## -from openerp.osv import orm - - -class FeesComputer(orm.BaseModel): - """Model that compute dunnig fees. - - This class does not need any database storage as - it contains pure logic. - - It inherits form ``orm.BaseModel`` to benefit of orm facility - - Similar to AbstractModel but log access and actions - """ - - _name = 'credit.control.dunning.fees.computer' - _auto = False - _log_access = True - _register = True - _transient = False - - def _get_compute_fun(self, level_fees_type): - """Retrieve function of class that should compute the fees based on type - - :param level_fee_type: type exisiting in model `credit.control.policy.level` - for field dunning_fees_type - - :returns: a function of class :class:`FeesComputer` with following signature - self, cr, uid, credit_line (record), context - - """ - if level_fees_type == 'fixed': - return self.compute_fixed_fees - else: - raise NotImplementedError('fees type %s is not supported' % level_fees_type) - - def _compute_fees(self, cr, uid, credit_line_ids, context=None): - """Compute fees for `credit_line_ids` parameter - - Fees amount is written on credit line in field dunning_fees_amount - - :param credit_line_ids: list of `credit.control.line` ids - - :returns: `credit_line_ids` list of `credit.control.line` ids - - """ - if context is None: - context = {} - if not credit_line_ids: - return credit_line_ids - c_model = self.pool['credit.control.line'] - credit_lines = c_model.browse(cr, uid, credit_line_ids, context=context) - for credit in credit_lines: - # if there is no dependence between generated credit lines - # this could be threaded - self._compute(cr, uid, credit, context=context), - return credit_line_ids - - def _compute(self, cr, uid, credit_line, context=None): - """Compute fees for a given credit line - - Fees amount is written on credit line in field dunning_fees_amount - - :param credit_line: credit line record - - :returns: `credit_line` record - """ - fees_type = credit_line.policy_level_id.dunning_fees_type - compute = self._get_compute_fun(fees_type) - fees = compute(cr, uid, credit_line, context=context) - if fees: - credit_line.write({'dunning_fees_amount': fees}, - context=context) - return credit_line - - def compute_fixed_fees(self, cr, uid, credit_line, context=None): - """Compute fees amount for fixed fees. - Correspond to the fixed dunning fees type - - if currency of the fees is not the same as the currency - of the credit line, fees amount is converted to - currency of credit line. - - :param credit_line: credit line record - - :return: fees amount float (in credit line currency) - - """ - currency_model = self.pool['res.currency'] - credit_currency = credit_line.currency_id - level = credit_line.policy_level_id - fees_amount = level.dunning_fixed_amount - if not fees_amount: - return 0.0 - fees_currency = level.dunning_currency_id - if fees_currency == credit_currency: - return fees_amount - else: - return currency_model.compute(cr, uid, fees_currency.id, - credit_currency.id, fees_amount, - context=context) diff --git a/account_credit_control_dunning_fees/model/line.py b/account_credit_control_dunning_fees/model/line.py deleted file mode 100644 index 5e4a3f782..000000000 --- a/account_credit_control_dunning_fees/model/line.py +++ /dev/null @@ -1,29 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Author: Nicolas Bessi -# Copyright 2014 Camptocamp SA -# -# 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 . -# -############################################################################## -from openerp.osv import orm, fields - - -class credit_control_line(orm.Model): - """Add dunning_fees_amount_fees field""" - - _inherit = "credit.control.line" - - _columns = {'dunning_fees_amount': fields.float('Fees')} diff --git a/account_credit_control_dunning_fees/model/policy.py b/account_credit_control_dunning_fees/model/policy.py deleted file mode 100644 index 1cf3c699b..000000000 --- a/account_credit_control_dunning_fees/model/policy.py +++ /dev/null @@ -1,36 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Author: Nicolas Bessi -# Copyright 2014 Camptocamp SA -# -# 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 . -# -############################################################################## -from openerp.osv import orm, fields - - -class credit_control_policy(orm.Model): - """ADD dunning fees fields""" - - _inherit = "credit.control.policy.level" - _columns = {'dunning_product_id': fields.many2one('product.product', - 'Fees Product'), - 'dunning_fixed_amount': fields.float('Fees Fixed Amount'), - 'dunning_currency_id': fields.many2one('res.currency', - 'Fees currency'), - # planned type are fixed, percent, compound - 'dunning_fees_type': fields.selection([('fixed', 'Fixed')])} - - _defaults = {'dunning_fees_type': 'fixed'} diff --git a/account_credit_control_dunning_fees/model/run.py b/account_credit_control_dunning_fees/model/run.py deleted file mode 100644 index 2d6585e58..000000000 --- a/account_credit_control_dunning_fees/model/run.py +++ /dev/null @@ -1,39 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Author: Nicolas Bessi -# Copyright 2014 Camptocamp SA -# -# 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 . -# -############################################################################## -from openerp.osv import orm, fields - - -class credit_control_run(orm.Model): - """Add computation of fees""" - - _inherit = "credit.control.run" - - def _generate_credit_lines(self, cr, uid, run_id, context=None): - """Override method to add fees computation""" - credit_line_ids = super(credit_control_run, self)._generate_credit_lines( - cr, - uid, - run_id, - context=context - ) - fees_model = self.pool['credit.control.dunning.fees.computer'] - fees_model._compute_fees(cr, uid, credit_line_ids, context=context) - return credit_line_ids diff --git a/account_credit_control_dunning_fees/report/credit_control_summary.html.mako b/account_credit_control_dunning_fees/report/credit_control_summary.html.mako deleted file mode 100644 index 985a93403..000000000 --- a/account_credit_control_dunning_fees/report/credit_control_summary.html.mako +++ /dev/null @@ -1,246 +0,0 @@ -## -*- coding: utf-8 -*- - - - - - - - %for comm in objects : - <% setLang(comm.get_contact_address().lang) %> -
- - <% - add = comm.get_contact_address() - %> - %if comm.partner_id.id == add.id: - - <% address_lines = comm.partner_id.contact_address.split("\n") %> - - %else: - - - <% address_lines = add.contact_address.split("\n")[1:] %> - %endif - %for part in address_lines: - %if part: - - %endif - %endfor -
${comm.partner_id.title and comm.partner_id.title.name or ''} ${comm.partner_id.name }
${comm.partner_id.name or ''}
${add.title and add.title.name or ''} ${add.name}
${part}
-
-
-
-
- -
-
-
-
-
- -

- ${_('Reminder')}: ${comm.current_policy_level.name or '' } -

- -

${_('Dear')},

-

${comm.current_policy_level.custom_text.replace('\n', '
')}

- -
-
-

${_('Summary')}

- - - - - - - - - - - -%for line in comm.credit_control_line_ids: - - %if line.invoice_id: - - %else: - - %endif - - - - - - - -%endfor -
${_('Invoice number')}${_('Invoice date')}${_('Date due')}${_('Invoiced amount')}${_('Open amount')}${_('Fees')}${_('Currency')}
${line.invoice_id.number} - %if line.invoice_id.name: -
- ${line.invoice_id.name} - %endif -
${line.move_line_id.name}${line.date_entry}${line.date_due}${line.amount_due}${line.balance_due}${line.dunning_fees_amount}${line.currency_id.name or comm.company_id.currency_id.name}
-
-
-<%doc> - -

${_('If you have any question, do not hesitate to contact us.')}

- -

${comm.user_id.name} ${comm.user_id.email and '<%s>'%(comm.user_id.email) or ''}
- ${comm.company_id.name}
- % if comm.company_id.street: - ${comm.company_id.street or ''}
- - % endif - - % if comm.company_id.street2: - ${comm.company_id.street2}
- % endif - % if comm.company_id.city or comm.company_id.zip: - ${comm.company_id.zip or ''} ${comm.company_id.city or ''}
- % endif - % if comm.company_id.country_id: - ${comm.company_id.state_id and ('%s, ' % comm.company_id.state_id.name) or ''} ${comm.company_id.country_id.name or ''}
- % endif - % if comm.company_id.phone: - Phone: ${comm.company_id.phone}
- % endif - % if comm.company_id.website: - ${comm.company_id.website or ''}
- % endif - - -

- %endfor - - - diff --git a/account_credit_control_dunning_fees/report/report.xml b/account_credit_control_dunning_fees/report/report.xml deleted file mode 100644 index 89a9874a6..000000000 --- a/account_credit_control_dunning_fees/report/report.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - diff --git a/account_credit_control_dunning_fees/tests/__init__.py b/account_credit_control_dunning_fees/tests/__init__.py deleted file mode 100644 index db75f16d2..000000000 --- a/account_credit_control_dunning_fees/tests/__init__.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Author: Nicolas Bessi -# Copyright 2014 Camptocamp SA -# -# 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 . -# -############################################################################## -from . import test_fees_generation - -checks = [test_fees_generation] diff --git a/account_credit_control_dunning_fees/tests/test_fees_generation.py b/account_credit_control_dunning_fees/tests/test_fees_generation.py deleted file mode 100644 index 0d7037a9a..000000000 --- a/account_credit_control_dunning_fees/tests/test_fees_generation.py +++ /dev/null @@ -1,95 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Author: Nicolas Bessi -# Copyright 2014 Camptocamp SA -# -# 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 . -# -############################################################################## -from mock import MagicMock -import openerp.tests.common as test_common - - -class FixedFeesTester(test_common.TransactionCase): - - def setUp(self): - """Initialize credit control level mock to test fees computations""" - super(FixedFeesTester, self).setUp() - self.currency_model = self.registry('res.currency') - self.euro = self.currency_model.search(self.cr, self.uid, - [('name', '=', 'EUR')]) - self.assertTrue(self.euro) - self.euro = self.registry('res.currency').browse(self.cr, - self.uid, - self.euro[0]) - - self.usd = self.currency_model.search(self.cr, self.uid, - [('name', '=', 'USD')]) - self.assertTrue(self.usd) - self.usd = self.registry('res.currency').browse(self.cr, - self.uid, - self.usd[0]) - - self.euro_level = MagicMock(name='Euro policy level') - self.euro_level.dunning_fixed_amount = 5.0 - self.euro_level.dunning_currency_id = self.euro - self.euro_level.dunning_type = 'fixed' - - self.usd_level = MagicMock(name='USD policy level') - self.usd_level.dunning_fixed_amount = 5.0 - self.usd_level.dunning_currency_id = self.usd - self.usd_level.dunning_type = 'fixed' - self.dunning_model = self.registry('credit.control.dunning.fees.computer') - - def test_type_getter(self): - """Test that correct compute function is returned for "fixed" type""" - c_fun = self.dunning_model._get_compute_fun('fixed') - self.assertEqual(c_fun, self.dunning_model.compute_fixed_fees) - - def test_unknow_type(self): - """Test that non implemented error is raised if invalide fees type""" - with self.assertRaises(NotImplementedError): - self.dunning_model._get_compute_fun('bang') - - def test_computation_same_currency(self): - """Test that fees are correctly computed with same currency""" - credit_line = MagicMock(name='Euro credit line') - credit_line.policy_level_id = self.euro_level - credit_line.currency_id = self.euro - fees = self.dunning_model.compute_fixed_fees(self.cr, self.uid, - credit_line, - {}) - self.assertEqual(fees, self.euro_level.dunning_fixed_amount) - - def test_computation_different_currency(self): - """Test that fees are correctly computed with different currency""" - credit_line = MagicMock(name='USD credit line') - credit_line.policy_level_id = self.euro_level - credit_line.currency_id = self.usd - fees = self.dunning_model.compute_fixed_fees(self.cr, self.uid, - credit_line, - {}) - self.assertNotEqual(fees, self.euro_level.dunning_fixed_amount) - - def test_no_fees(self): - """Test that fees are not generated if no amount defined on level""" - credit_line = MagicMock(name='USD credit line') - credit_line.policy_level_id = self.euro_level - self.euro_level.dunning_fixed_amount = 0.0 - credit_line.currency_id = self.usd - fees = self.dunning_model.compute_fixed_fees(self.cr, self.uid, - credit_line, - {}) - self.assertEqual(fees, 0.0) diff --git a/account_credit_control_dunning_fees/view/line_view.xml b/account_credit_control_dunning_fees/view/line_view.xml deleted file mode 100644 index 9d4688bd5..000000000 --- a/account_credit_control_dunning_fees/view/line_view.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - add fees on credit control line - credit.control.line - - - - - - - - - - add fees on credit control line form - credit.control.line - - - - - - - - - - diff --git a/account_credit_control_dunning_fees/view/policy_view.xml b/account_credit_control_dunning_fees/view/policy_view.xml deleted file mode 100644 index 02e9ac618..000000000 --- a/account_credit_control_dunning_fees/view/policy_view.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - add dunning fees on policy - credit.control.policy - - - - - - - - - - - - - - - - - - From 089b4846b426e4850ee35667e028c1963071f2c9 Mon Sep 17 00:00:00 2001 From: Nicolas Bessi Date: Mon, 14 Apr 2014 13:57:02 +0200 Subject: [PATCH 03/18] [ADD] credit control dunning fees module [ADD] docstring [FIX] FeesComputer model specification to act as a abstract class without needing overriding [IMP] fees column in report and mail [FIX] dunning fees computer to register itself [RM] unused import [PEP8] [IMP] module documentation [ADD] dunniing fees translations [FIX] name of level in tests [TYPOS] Set all addons to uninstallable [ADD] credit control dunning fees module [ADD] docstring [FIX] FeesComputer model specification to act as a abstract class without needing overriding [IMP] fees column in report and mail [FIX] dunning fees computer to register itself [RM] unused import [PEP8] [IMP] module documentation [ADD] dunniing fees translations [FIX] name of level in tests [TYPOS] Set all addons to uninstallable Rename all addons to xxx_unported to be travis compliant [ADD] credit control dunning fees module [ADD] docstring [FIX] FeesComputer model specification to act as a abstract class without needing overriding [IMP] fees column in report and mail [FIX] dunning fees computer to register itself [RM] unused import [PEP8] [IMP] module documentation [ADD] dunniing fees translations [FIX] name of level in tests [TYPOS] Set all addons to uninstallable Rename all addons to xxx_unported to be travis compliant Revert "Rename all addons to xxx_unported to be travis compliant" This reverts commit 7eb182744f3057dd5cb9e35faf230412aa7a2331. [ADD] credit control dunning fees module [ADD] docstring [FIX] FeesComputer model specification to act as a abstract class without needing overriding [IMP] fees column in report and mail [FIX] dunning fees computer to register itself [RM] unused import [PEP8] [IMP] module documentation [ADD] dunniing fees translations [FIX] name of level in tests [TYPOS] Set all addons to uninstallable Rename all addons to xxx_unported to be travis compliant Revert "Rename all addons to xxx_unported to be travis compliant" This reverts commit 7eb182744f3057dd5cb9e35faf230412aa7a2331. [FIX] move all unported addons into __unported__ folder instead of adding _unported suffix [FIX] flake8 PEP8 for module account_credit_control_dunning_fees [FIX] flake8 PEP8 for module account_credit_control_dunning_fees [FIX] pep8 line length to 80, activate pep8 check in travis, and add noqa on scenario while waiting improvement of quality-tools Add missing security on `credit.control.dunning.fees.computer` --- .../__openerp__.py | 71 ++++++++++ .../model/dunning.py | 124 ++++++++++++++++++ .../model/run.py | 39 ++++++ .../security/ir.model.access.csv | 7 + .../tests/test_fees_generation.py | 97 ++++++++++++++ 5 files changed, 338 insertions(+) create mode 100644 account_credit_control_dunning_fees/__openerp__.py create mode 100644 account_credit_control_dunning_fees/model/dunning.py create mode 100644 account_credit_control_dunning_fees/model/run.py create mode 100644 account_credit_control_dunning_fees/security/ir.model.access.csv create mode 100644 account_credit_control_dunning_fees/tests/test_fees_generation.py diff --git a/account_credit_control_dunning_fees/__openerp__.py b/account_credit_control_dunning_fees/__openerp__.py new file mode 100644 index 000000000..8f0f153fc --- /dev/null +++ b/account_credit_control_dunning_fees/__openerp__.py @@ -0,0 +1,71 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author: Nicolas Bessi +# Copyright 2014 Camptocamp SA +# +# 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 . +# +############################################################################## +{'name': 'Credit control dunning fees', + 'version': '0.1.0', + 'author': 'Camptocamp', + 'maintainer': 'Camptocamp', + 'category': 'Accounting', + 'complexity': 'normal', + 'depends': ['account_credit_control'], + 'description': """ +Dunning Fees for Credit Control +=============================== + +This extention of credit control adds the notion of dunning fees +on credit control lines. + +Configuration +------------- +For release 0.1 only fixed fees are supported. + +You can specifiy a fixed fees amount, a product and a currency +on the credit control level form. + +The amount will be used as fees values the currency will determine +the currency of the fee. If the credit control line has not the +same currency as the fees currency, fees will be converted to +the credit control line currency. + +The product is used to compute taxes in reconciliation process. + +Run +--- +Fees are automatically computed on credit run and saved +on the generated credit lines. + +Fees can be manually edited as long credit line is draft + +Credit control Summary report includes a new fees column. +------- +Support of fees price list + +""", + 'website': 'http://www.camptocamp.com', + 'data': ['view/policy_view.xml', + 'view/line_view.xml', + 'report/report.xml', + 'security/ir.model.access.csv'], + 'demo': [], + 'test': [], + 'installable': True, + 'auto_install': False, + 'license': 'AGPL-3', + 'application': False} diff --git a/account_credit_control_dunning_fees/model/dunning.py b/account_credit_control_dunning_fees/model/dunning.py new file mode 100644 index 000000000..5213b4f20 --- /dev/null +++ b/account_credit_control_dunning_fees/model/dunning.py @@ -0,0 +1,124 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author: Nicolas Bessi +# Copyright 2014 Camptocamp SA +# +# 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 . +# +############################################################################## +from openerp.osv import orm + + +class FeesComputer(orm.BaseModel): + """Model that compute dunnig fees. + + This class does not need any database storage as + it contains pure logic. + + It inherits form ``orm.BaseModel`` to benefit of orm facility + + Similar to AbstractModel but log access and actions + """ + + _name = 'credit.control.dunning.fees.computer' + _auto = False + _log_access = True + _register = True + _transient = False + + def _get_compute_fun(self, level_fees_type): + """Retrieve function of class that should compute the fees based on type + + :param level_fee_type: type exisiting in model + `credit.control.policy.level` + for field dunning_fees_type + + :returns: a function of class :class:`FeesComputer` + with following signature + self, cr, uid, credit_line (record), context + + """ + if level_fees_type == 'fixed': + return self.compute_fixed_fees + else: + raise NotImplementedError('fees type %s is not supported' % + level_fees_type) + + def _compute_fees(self, cr, uid, credit_line_ids, context=None): + """Compute fees for `credit_line_ids` parameter + + Fees amount is written on credit line in field dunning_fees_amount + + :param credit_line_ids: list of `credit.control.line` ids + + :returns: `credit_line_ids` list of `credit.control.line` ids + + """ + if context is None: + context = {} + if not credit_line_ids: + return credit_line_ids + c_model = self.pool['credit.control.line'] + credit_lines = c_model.browse(cr, uid, credit_line_ids, + context=context) + for credit in credit_lines: + # if there is no dependence between generated credit lines + # this could be threaded + self._compute(cr, uid, credit, context=context), + return credit_line_ids + + def _compute(self, cr, uid, credit_line, context=None): + """Compute fees for a given credit line + + Fees amount is written on credit line in field dunning_fees_amount + + :param credit_line: credit line record + + :returns: `credit_line` record + """ + fees_type = credit_line.policy_level_id.dunning_fees_type + compute = self._get_compute_fun(fees_type) + fees = compute(cr, uid, credit_line, context=context) + if fees: + credit_line.write({'dunning_fees_amount': fees}, + context=context) + return credit_line + + def compute_fixed_fees(self, cr, uid, credit_line, context=None): + """Compute fees amount for fixed fees. + Correspond to the fixed dunning fees type + + if currency of the fees is not the same as the currency + of the credit line, fees amount is converted to + currency of credit line. + + :param credit_line: credit line record + + :return: fees amount float (in credit line currency) + + """ + currency_model = self.pool['res.currency'] + credit_currency = credit_line.currency_id + level = credit_line.policy_level_id + fees_amount = level.dunning_fixed_amount + if not fees_amount: + return 0.0 + fees_currency = level.dunning_currency_id + if fees_currency == credit_currency: + return fees_amount + else: + return currency_model.compute(cr, uid, fees_currency.id, + credit_currency.id, fees_amount, + context=context) diff --git a/account_credit_control_dunning_fees/model/run.py b/account_credit_control_dunning_fees/model/run.py new file mode 100644 index 000000000..cba74e73d --- /dev/null +++ b/account_credit_control_dunning_fees/model/run.py @@ -0,0 +1,39 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author: Nicolas Bessi +# Copyright 2014 Camptocamp SA +# +# 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 . +# +############################################################################## +from openerp.osv import orm + + +class credit_control_run(orm.Model): + """Add computation of fees""" + + _inherit = "credit.control.run" + + def _generate_credit_lines(self, cr, uid, run_id, context=None): + """Override method to add fees computation""" + credit_line_ids = super(credit_control_run, + self)._generate_credit_lines( + cr, + uid, + run_id, + context=context) + fees_model = self.pool['credit.control.dunning.fees.computer'] + fees_model._compute_fees(cr, uid, credit_line_ids, context=context) + return credit_line_ids diff --git a/account_credit_control_dunning_fees/security/ir.model.access.csv b/account_credit_control_dunning_fees/security/ir.model.access.csv new file mode 100644 index 000000000..8f42df245 --- /dev/null +++ b/account_credit_control_dunning_fees/security/ir.model.access.csv @@ -0,0 +1,7 @@ +id,group_id/id,name,model_id/id,perm_read,perm_write,perm_create,perm_unlink +dunning_fees_manager,account_credit_control.group_account_credit_control_manager,dunning_fees_manager,model_credit_control_dunning_fees_computer,1,1,1,1 +dunning_fees_user,account_credit_control.group_account_credit_control_user,dunning_fees_user,model_credit_control_dunning_fees_computer,1,1,1,1 +dunning_fees_user,account_credit_control.group_account_credit_control_info,dunning_fees_user,model_credit_control_dunning_fees_computer,1,0,0,0 +dunning_fees_account_user,account.group_account_user,dunning_fees_account_user,model_credit_control_dunning_fees_computer,1,0,0,0 +dunning_fees_account_manager,account.group_account_manager,dunning_fees_account_manager,model_credit_control_dunning_fees_computer,1,1,1,1 +dunning_fees_invoices,account.group_account_invoice,dunning_fees_invoice,model_credit_control_dunning_fees_computer,1,0,0,0 diff --git a/account_credit_control_dunning_fees/tests/test_fees_generation.py b/account_credit_control_dunning_fees/tests/test_fees_generation.py new file mode 100644 index 000000000..b685aea61 --- /dev/null +++ b/account_credit_control_dunning_fees/tests/test_fees_generation.py @@ -0,0 +1,97 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author: Nicolas Bessi +# Copyright 2014 Camptocamp SA +# +# 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 . +# +############################################################################## +from mock import MagicMock +import openerp.tests.common as test_common + + +class FixedFeesTester(test_common.TransactionCase): + + def setUp(self): + """Initialize credit control level mock to test fees computations""" + super(FixedFeesTester, self).setUp() + self.currency_model = self.registry('res.currency') + self.euro = self.currency_model.search(self.cr, self.uid, + [('name', '=', 'EUR')]) + self.assertTrue(self.euro) + self.euro = self.registry('res.currency').browse(self.cr, + self.uid, + self.euro[0]) + + self.usd = self.currency_model.search(self.cr, self.uid, + [('name', '=', 'USD')]) + self.assertTrue(self.usd) + self.usd = self.registry('res.currency').browse(self.cr, + self.uid, + self.usd[0]) + + self.euro_level = MagicMock(name='Euro policy level') + self.euro_level.dunning_fixed_amount = 5.0 + self.euro_level.dunning_currency_id = self.euro + self.euro_level.dunning_type = 'fixed' + + self.usd_level = MagicMock(name='USD policy level') + self.usd_level.dunning_fixed_amount = 5.0 + self.usd_level.dunning_currency_id = self.usd + self.usd_level.dunning_type = 'fixed' + self.dunning_model = self.registry( + 'credit.control.dunning.fees.computer' + ) + + def test_type_getter(self): + """Test that correct compute function is returned for "fixed" type""" + c_fun = self.dunning_model._get_compute_fun('fixed') + self.assertEqual(c_fun, self.dunning_model.compute_fixed_fees) + + def test_unknow_type(self): + """Test that non implemented error is raised if invalide fees type""" + with self.assertRaises(NotImplementedError): + self.dunning_model._get_compute_fun('bang') + + def test_computation_same_currency(self): + """Test that fees are correctly computed with same currency""" + credit_line = MagicMock(name='Euro credit line') + credit_line.policy_level_id = self.euro_level + credit_line.currency_id = self.euro + fees = self.dunning_model.compute_fixed_fees(self.cr, self.uid, + credit_line, + {}) + self.assertEqual(fees, self.euro_level.dunning_fixed_amount) + + def test_computation_different_currency(self): + """Test that fees are correctly computed with different currency""" + credit_line = MagicMock(name='USD credit line') + credit_line.policy_level_id = self.euro_level + credit_line.currency_id = self.usd + fees = self.dunning_model.compute_fixed_fees(self.cr, self.uid, + credit_line, + {}) + self.assertNotEqual(fees, self.euro_level.dunning_fixed_amount) + + def test_no_fees(self): + """Test that fees are not generated if no amount defined on level""" + credit_line = MagicMock(name='USD credit line') + credit_line.policy_level_id = self.euro_level + self.euro_level.dunning_fixed_amount = 0.0 + credit_line.currency_id = self.usd + fees = self.dunning_model.compute_fixed_fees(self.cr, self.uid, + credit_line, + {}) + self.assertEqual(fees, 0.0) From da48baad9188b662d669f042b626c82c2f47f215 Mon Sep 17 00:00:00 2001 From: Guewen Baconnier Date: Fri, 31 Oct 2014 17:15:40 +0100 Subject: [PATCH 04/18] Move account_credit_control_dunning_fees to root folder Set account_credit_control_dunning_fees to installable Extract the module description to README.rst Port Dunning fees to the new API, activate the tests for 8.0 Add fees in the report Use the new API instead of mocks for FixedFeesTester It will be easier to write additional tests Remove required on the currency and fallback to company's currency... ... on the policy level if it is empty. Also, it fixes a bug when a credit line had no currency and the level had the company's currency. As False is different than any currency, it entered in res_currency.compute() with a False currency. It must just fallback on the company's currency if the credit line's currency is empty. --- .../README.rst | 30 +++ .../__init__.py | 21 ++ .../__openerp__.py | 38 +-- .../account_credit_control_dunning_fees.pot | 81 ++++++ .../i18n/fr.po | 80 ++++++ .../model/__init__.py | 24 ++ .../model/dunning.py | 62 +++-- .../model/line.py | 29 +++ .../model/policy.py | 44 ++++ .../model/run.py | 21 +- .../report/credit_control_summary.html.mako | 246 ++++++++++++++++++ .../report/report_credit_control_summary.xml | 22 ++ .../tests/__init__.py | 21 ++ .../tests/test_fees_generation.py | 119 +++++---- .../view/line_view.xml | 30 +++ .../view/policy_view.xml | 24 ++ 16 files changed, 769 insertions(+), 123 deletions(-) create mode 100644 account_credit_control_dunning_fees/README.rst create mode 100644 account_credit_control_dunning_fees/__init__.py create mode 100644 account_credit_control_dunning_fees/i18n/account_credit_control_dunning_fees.pot create mode 100644 account_credit_control_dunning_fees/i18n/fr.po create mode 100644 account_credit_control_dunning_fees/model/__init__.py create mode 100644 account_credit_control_dunning_fees/model/line.py create mode 100644 account_credit_control_dunning_fees/model/policy.py create mode 100644 account_credit_control_dunning_fees/report/credit_control_summary.html.mako create mode 100644 account_credit_control_dunning_fees/report/report_credit_control_summary.xml create mode 100644 account_credit_control_dunning_fees/tests/__init__.py create mode 100644 account_credit_control_dunning_fees/view/line_view.xml create mode 100644 account_credit_control_dunning_fees/view/policy_view.xml diff --git a/account_credit_control_dunning_fees/README.rst b/account_credit_control_dunning_fees/README.rst new file mode 100644 index 000000000..cf5866f0b --- /dev/null +++ b/account_credit_control_dunning_fees/README.rst @@ -0,0 +1,30 @@ +Dunning Fees for Credit Control +=============================== + +This extention of credit control adds the notion of dunning fees +on credit control lines. + +Configuration +------------- +For release 0.1 only fixed fees are supported. + +You can specifiy a fixed fees amount, a product and a currency +on the credit control level form. + +The amount will be used as fees values the currency will determine +the currency of the fee. If the credit control line has not the +same currency as the fees currency, fees will be converted to +the credit control line currency. + +The product is used to compute taxes in reconciliation process. + +Run +--- +Fees are automatically computed on credit run and saved +on the generated credit lines. + +Fees can be manually edited as long credit line is draft + +Credit control Summary report includes a new fees column +-------------------------------------------------------- +Support of fees price list diff --git a/account_credit_control_dunning_fees/__init__.py b/account_credit_control_dunning_fees/__init__.py new file mode 100644 index 000000000..6ac610f01 --- /dev/null +++ b/account_credit_control_dunning_fees/__init__.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author: Nicolas Bessi +# Copyright 2014 Camptocamp SA +# +# 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 . +# +############################################################################## +from . import model diff --git a/account_credit_control_dunning_fees/__openerp__.py b/account_credit_control_dunning_fees/__openerp__.py index 8f0f153fc..d7758846e 100644 --- a/account_credit_control_dunning_fees/__openerp__.py +++ b/account_credit_control_dunning_fees/__openerp__.py @@ -25,44 +25,12 @@ 'category': 'Accounting', 'complexity': 'normal', 'depends': ['account_credit_control'], - 'description': """ -Dunning Fees for Credit Control -=============================== - -This extention of credit control adds the notion of dunning fees -on credit control lines. - -Configuration -------------- -For release 0.1 only fixed fees are supported. - -You can specifiy a fixed fees amount, a product and a currency -on the credit control level form. - -The amount will be used as fees values the currency will determine -the currency of the fee. If the credit control line has not the -same currency as the fees currency, fees will be converted to -the credit control line currency. - -The product is used to compute taxes in reconciliation process. - -Run ---- -Fees are automatically computed on credit run and saved -on the generated credit lines. - -Fees can be manually edited as long credit line is draft - -Credit control Summary report includes a new fees column. -------- -Support of fees price list - -""", 'website': 'http://www.camptocamp.com', 'data': ['view/policy_view.xml', 'view/line_view.xml', - 'report/report.xml', - 'security/ir.model.access.csv'], + 'report/report_credit_control_summary.xml', + 'security/ir.model.access.csv', + ], 'demo': [], 'test': [], 'installable': True, diff --git a/account_credit_control_dunning_fees/i18n/account_credit_control_dunning_fees.pot b/account_credit_control_dunning_fees/i18n/account_credit_control_dunning_fees.pot new file mode 100644 index 000000000..6282315c6 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/account_credit_control_dunning_fees.pot @@ -0,0 +1,81 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 7.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-05-07 11:44+0000\n" +"PO-Revision-Date: 2014-05-07 11:44+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_credit_control_dunning_fees +#: code:_description:0 +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +#, python-format +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: code:_description:0 +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +#, python-format +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: code:_description:0 +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +#, python-format +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:0 +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:0 +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: code:_description:0 +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_dunning_fees_computer +#, python-format +msgid "credit.control.dunning.fees.computer" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "unknown" +msgstr "" + diff --git a/account_credit_control_dunning_fees/i18n/fr.po b/account_credit_control_dunning_fees/i18n/fr.po new file mode 100644 index 000000000..df2e9e0ba --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/fr.po @@ -0,0 +1,80 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 7.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-04-16 07:11+0000\n" +"PO-Revision-Date: 2014-04-16 07:11+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_credit_control_dunning_fees +#: code:_description:0 +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +#, python-format +msgid "A credit control line" +msgstr "Ligne de relance" + +#. module: account_credit_control_dunning_fees +#: code:_description:0 +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +#, python-format +msgid "A credit control policy level" +msgstr "Une politique de relance" + +#. module: account_credit_control_dunning_fees +#: code:_description:0 +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +#, python-format +msgid "Credit control line generator" +msgstr "Générateur de relance" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:0 +msgid "Fees" +msgstr "Frais de relance" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "Montant des frais" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "Article lié" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "Devises" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "Fixe" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:0 +msgid "Mail and reporting" +msgstr "Lettres et e-mails" + +#. module: account_credit_control_dunning_fees +#: code:_description:0 +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_dunning_fees_computer +#, python-format +msgid "credit.control.dunning.fees.computer" +msgstr "credit.control.dunning.fees.computer" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "unknown" +msgstr "inconnu" diff --git a/account_credit_control_dunning_fees/model/__init__.py b/account_credit_control_dunning_fees/model/__init__.py new file mode 100644 index 000000000..c9a69427a --- /dev/null +++ b/account_credit_control_dunning_fees/model/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author: Nicolas Bessi +# Copyright 2014 Camptocamp SA +# +# 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 . +# +############################################################################## +from . import line +from . import policy +from . import run +from . import dunning diff --git a/account_credit_control_dunning_fees/model/dunning.py b/account_credit_control_dunning_fees/model/dunning.py index 5213b4f20..949ae2d83 100644 --- a/account_credit_control_dunning_fees/model/dunning.py +++ b/account_credit_control_dunning_fees/model/dunning.py @@ -18,16 +18,16 @@ # along with this program. If not, see . # ############################################################################## -from openerp.osv import orm +from openerp import models, api -class FeesComputer(orm.BaseModel): +class FeesComputer(models.BaseModel): """Model that compute dunnig fees. This class does not need any database storage as it contains pure logic. - It inherits form ``orm.BaseModel`` to benefit of orm facility + It inherits form ``models.BaseModel`` to benefit of orm facility Similar to AbstractModel but log access and actions """ @@ -38,16 +38,18 @@ class FeesComputer(orm.BaseModel): _register = True _transient = False + @api.model def _get_compute_fun(self, level_fees_type): - """Retrieve function of class that should compute the fees based on type + """Retrieve function of class that should compute the fees based + on type - :param level_fee_type: type exisiting in model + :param level_fee_type: type existing in model `credit.control.policy.level` for field dunning_fees_type :returns: a function of class :class:`FeesComputer` with following signature - self, cr, uid, credit_line (record), context + self, credit_line (record) """ if level_fees_type == 'fixed': @@ -56,33 +58,30 @@ class FeesComputer(orm.BaseModel): raise NotImplementedError('fees type %s is not supported' % level_fees_type) - def _compute_fees(self, cr, uid, credit_line_ids, context=None): - """Compute fees for `credit_line_ids` parameter + @api.model + def _compute_fees(self, credit_lines): + """Compute fees for `credit_lines` parameter - Fees amount is written on credit line in field dunning_fees_amount + Fees amount is written on credit lines in the field dunning_fees_amount - :param credit_line_ids: list of `credit.control.line` ids + :param credit_lines: recordset of `credit.control.line` - :returns: `credit_line_ids` list of `credit.control.line` ids + :returns: recordset of `credit.control.line` """ - if context is None: - context = {} - if not credit_line_ids: - return credit_line_ids - c_model = self.pool['credit.control.line'] - credit_lines = c_model.browse(cr, uid, credit_line_ids, - context=context) + if not credit_lines: + return credit_lines for credit in credit_lines: # if there is no dependence between generated credit lines # this could be threaded - self._compute(cr, uid, credit, context=context), - return credit_line_ids + self._compute(credit) + return credit_lines - def _compute(self, cr, uid, credit_line, context=None): + @api.model + def _compute(self, credit_line): """Compute fees for a given credit line - Fees amount is written on credit line in field dunning_fees_amount + Fees amount is written on credit line in then field dunning_fees_amount :param credit_line: credit line record @@ -90,13 +89,13 @@ class FeesComputer(orm.BaseModel): """ fees_type = credit_line.policy_level_id.dunning_fees_type compute = self._get_compute_fun(fees_type) - fees = compute(cr, uid, credit_line, context=context) + fees = compute(credit_line) if fees: - credit_line.write({'dunning_fees_amount': fees}, - context=context) + credit_line.write({'dunning_fees_amount': fees}) return credit_line - def compute_fixed_fees(self, cr, uid, credit_line, context=None): + @api.model + def compute_fixed_fees(self, credit_line): """Compute fees amount for fixed fees. Correspond to the fixed dunning fees type @@ -109,16 +108,15 @@ class FeesComputer(orm.BaseModel): :return: fees amount float (in credit line currency) """ - currency_model = self.pool['res.currency'] - credit_currency = credit_line.currency_id + credit_currency = (credit_line.currency_id or + credit_line.company_id.currency_id) level = credit_line.policy_level_id fees_amount = level.dunning_fixed_amount if not fees_amount: return 0.0 - fees_currency = level.dunning_currency_id + fees_currency = (level.dunning_currency_id or + level.policy_id.company_id.currency_id) if fees_currency == credit_currency: return fees_amount else: - return currency_model.compute(cr, uid, fees_currency.id, - credit_currency.id, fees_amount, - context=context) + return fees_currency.compute(fees_amount, credit_currency) diff --git a/account_credit_control_dunning_fees/model/line.py b/account_credit_control_dunning_fees/model/line.py new file mode 100644 index 000000000..699c38d45 --- /dev/null +++ b/account_credit_control_dunning_fees/model/line.py @@ -0,0 +1,29 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author: Nicolas Bessi +# Copyright 2014 Camptocamp SA +# +# 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 . +# +############################################################################## +from openerp import models, fields + + +class CreditControlLine(models.Model): + """Add dunning_fees_amount_fees field""" + + _inherit = "credit.control.line" + + dunning_fees_amount = fields.Float(string='Fees') diff --git a/account_credit_control_dunning_fees/model/policy.py b/account_credit_control_dunning_fees/model/policy.py new file mode 100644 index 000000000..d85c0c16a --- /dev/null +++ b/account_credit_control_dunning_fees/model/policy.py @@ -0,0 +1,44 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author: Nicolas Bessi +# Copyright 2014 Camptocamp SA +# +# 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 . +# +############################################################################## +from openerp import models, fields + + +class CreditControlPolicy(models.Model): + """ADD dunning fees fields""" + + _inherit = "credit.control.policy.level" + + dunning_product_id = fields.Many2one('product.product', + string='Fees Product') + + dunning_fixed_amount = fields.Float(string='Fees Fixed Amount') + + dunning_currency_id = fields.Many2one( + 'res.currency', + string='Fees currency', + help="Currency of the dunning fees. If empty, it takes the " + "company's currency." + ) + + # planned type are fixed, percent, compound + dunning_fees_type = fields.Selection([('fixed', 'Fixed')], + string='Type', + default='fixed') diff --git a/account_credit_control_dunning_fees/model/run.py b/account_credit_control_dunning_fees/model/run.py index cba74e73d..f1d9eb49d 100644 --- a/account_credit_control_dunning_fees/model/run.py +++ b/account_credit_control_dunning_fees/model/run.py @@ -18,22 +18,19 @@ # along with this program. If not, see . # ############################################################################## -from openerp.osv import orm +from openerp import models, api -class credit_control_run(orm.Model): +class CreditControlRun(models.Model): """Add computation of fees""" _inherit = "credit.control.run" - def _generate_credit_lines(self, cr, uid, run_id, context=None): + @api.multi + @api.returns('credit.control.line') + def _generate_credit_lines(self): """Override method to add fees computation""" - credit_line_ids = super(credit_control_run, - self)._generate_credit_lines( - cr, - uid, - run_id, - context=context) - fees_model = self.pool['credit.control.dunning.fees.computer'] - fees_model._compute_fees(cr, uid, credit_line_ids, context=context) - return credit_line_ids + credit_lines = super(CreditControlRun, self)._generate_credit_lines() + fees_model = self.env['credit.control.dunning.fees.computer'] + fees_model._compute_fees(credit_lines) + return credit_lines diff --git a/account_credit_control_dunning_fees/report/credit_control_summary.html.mako b/account_credit_control_dunning_fees/report/credit_control_summary.html.mako new file mode 100644 index 000000000..985a93403 --- /dev/null +++ b/account_credit_control_dunning_fees/report/credit_control_summary.html.mako @@ -0,0 +1,246 @@ +## -*- coding: utf-8 -*- + + + + + + + %for comm in objects : + <% setLang(comm.get_contact_address().lang) %> +
+ + <% + add = comm.get_contact_address() + %> + %if comm.partner_id.id == add.id: + + <% address_lines = comm.partner_id.contact_address.split("\n") %> + + %else: + + + <% address_lines = add.contact_address.split("\n")[1:] %> + %endif + %for part in address_lines: + %if part: + + %endif + %endfor +
${comm.partner_id.title and comm.partner_id.title.name or ''} ${comm.partner_id.name }
${comm.partner_id.name or ''}
${add.title and add.title.name or ''} ${add.name}
${part}
+
+
+
+
+ +
+
+
+
+
+ +

+ ${_('Reminder')}: ${comm.current_policy_level.name or '' } +

+ +

${_('Dear')},

+

${comm.current_policy_level.custom_text.replace('\n', '
')}

+ +
+
+

${_('Summary')}

+ + + + + + + + + + + +%for line in comm.credit_control_line_ids: + + %if line.invoice_id: + + %else: + + %endif + + + + + + + +%endfor +
${_('Invoice number')}${_('Invoice date')}${_('Date due')}${_('Invoiced amount')}${_('Open amount')}${_('Fees')}${_('Currency')}
${line.invoice_id.number} + %if line.invoice_id.name: +
+ ${line.invoice_id.name} + %endif +
${line.move_line_id.name}${line.date_entry}${line.date_due}${line.amount_due}${line.balance_due}${line.dunning_fees_amount}${line.currency_id.name or comm.company_id.currency_id.name}
+
+
+<%doc> + +

${_('If you have any question, do not hesitate to contact us.')}

+ +

${comm.user_id.name} ${comm.user_id.email and '<%s>'%(comm.user_id.email) or ''}
+ ${comm.company_id.name}
+ % if comm.company_id.street: + ${comm.company_id.street or ''}
+ + % endif + + % if comm.company_id.street2: + ${comm.company_id.street2}
+ % endif + % if comm.company_id.city or comm.company_id.zip: + ${comm.company_id.zip or ''} ${comm.company_id.city or ''}
+ % endif + % if comm.company_id.country_id: + ${comm.company_id.state_id and ('%s, ' % comm.company_id.state_id.name) or ''} ${comm.company_id.country_id.name or ''}
+ % endif + % if comm.company_id.phone: + Phone: ${comm.company_id.phone}
+ % endif + % if comm.company_id.website: + ${comm.company_id.website or ''}
+ % endif + + +

+ %endfor + + + diff --git a/account_credit_control_dunning_fees/report/report_credit_control_summary.xml b/account_credit_control_dunning_fees/report/report_credit_control_summary.xml new file mode 100644 index 000000000..7bee3c5cf --- /dev/null +++ b/account_credit_control_dunning_fees/report/report_credit_control_summary.xml @@ -0,0 +1,22 @@ + + + + + + + diff --git a/account_credit_control_dunning_fees/tests/__init__.py b/account_credit_control_dunning_fees/tests/__init__.py new file mode 100644 index 000000000..2d29024d5 --- /dev/null +++ b/account_credit_control_dunning_fees/tests/__init__.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author: Nicolas Bessi +# Copyright 2014 Camptocamp SA +# +# 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 . +# +############################################################################## +from . import test_fees_generation diff --git a/account_credit_control_dunning_fees/tests/test_fees_generation.py b/account_credit_control_dunning_fees/tests/test_fees_generation.py index b685aea61..a00fae867 100644 --- a/account_credit_control_dunning_fees/tests/test_fees_generation.py +++ b/account_credit_control_dunning_fees/tests/test_fees_generation.py @@ -18,42 +18,41 @@ # along with this program. If not, see . # ############################################################################## -from mock import MagicMock -import openerp.tests.common as test_common +from openerp.tests import common -class FixedFeesTester(test_common.TransactionCase): +@common.at_install(True) +@common.post_install(True) +class FixedFeesTester(common.TransactionCase): def setUp(self): """Initialize credit control level mock to test fees computations""" super(FixedFeesTester, self).setUp() - self.currency_model = self.registry('res.currency') - self.euro = self.currency_model.search(self.cr, self.uid, - [('name', '=', 'EUR')]) + self.currency_model = self.env['res.currency'] + self.euro = self.currency_model.search([('name', '=', 'EUR')]) self.assertTrue(self.euro) - self.euro = self.registry('res.currency').browse(self.cr, - self.uid, - self.euro[0]) - - self.usd = self.currency_model.search(self.cr, self.uid, - [('name', '=', 'USD')]) + self.usd = self.currency_model.search([('name', '=', 'USD')]) self.assertTrue(self.usd) - self.usd = self.registry('res.currency').browse(self.cr, - self.uid, - self.usd[0]) - self.euro_level = MagicMock(name='Euro policy level') - self.euro_level.dunning_fixed_amount = 5.0 - self.euro_level.dunning_currency_id = self.euro - self.euro_level.dunning_type = 'fixed' + self.company = self.browse_ref('base.main_company') + self.company.currency_id = self.euro - self.usd_level = MagicMock(name='USD policy level') - self.usd_level.dunning_fixed_amount = 5.0 - self.usd_level.dunning_currency_id = self.usd - self.usd_level.dunning_type = 'fixed' - self.dunning_model = self.registry( - 'credit.control.dunning.fees.computer' - ) + level_obj = self.env['credit.control.policy.level'] + self.euro_level = level_obj.new({ + 'name': 'Euro Level', + 'dunning_fixed_amount': 5.0, + 'dunning_currency_id': self.euro, + 'dunning_type': 'fixed', + }) + + self.usd_level = level_obj.new({ + 'name': 'USD Level', + 'dunning_fixed_amount': 5.0, + 'dunning_currency_id': self.usd, + 'dunning_type': 'fixed', + }) + self.dunning_model = self.env['credit.control.dunning.fees.computer'] + self.line_model = self.env['credit.control.line'] def test_type_getter(self): """Test that correct compute function is returned for "fixed" type""" @@ -67,31 +66,63 @@ class FixedFeesTester(test_common.TransactionCase): def test_computation_same_currency(self): """Test that fees are correctly computed with same currency""" - credit_line = MagicMock(name='Euro credit line') - credit_line.policy_level_id = self.euro_level - credit_line.currency_id = self.euro - fees = self.dunning_model.compute_fixed_fees(self.cr, self.uid, - credit_line, - {}) + credit_line = self.line_model.new({ + 'policy_level_id': self.euro_level, + 'currency_id': self.euro, + 'company_id': self.company, + }) + fees = self.dunning_model.compute_fixed_fees(credit_line) self.assertEqual(fees, self.euro_level.dunning_fixed_amount) def test_computation_different_currency(self): """Test that fees are correctly computed with different currency""" - credit_line = MagicMock(name='USD credit line') - credit_line.policy_level_id = self.euro_level - credit_line.currency_id = self.usd - fees = self.dunning_model.compute_fixed_fees(self.cr, self.uid, - credit_line, - {}) + credit_line = self.line_model.new({ + 'policy_level_id': self.euro_level, + 'currency_id': self.usd.id, + 'company_id': self.company, + }) + fees = self.dunning_model.compute_fixed_fees(credit_line) self.assertNotEqual(fees, self.euro_level.dunning_fixed_amount) + def test_computation_credit_currency_empty(self): + """Test that fees are correctly computed with empty credit currency""" + credit_line = self.line_model.new({ + 'policy_level_id': self.euro_level, + 'currency_id': False, + 'company_id': self.company, + }) + fees = self.dunning_model.compute_fixed_fees(credit_line) + self.assertEqual(fees, self.euro_level.dunning_fixed_amount) + + def test_computation_level_currency_empty(self): + """Test that fees are correctly computed with empty level currency""" + credit_line = self.line_model.new({ + 'policy_level_id': self.euro_level, + 'currency_id': self.euro, + 'company_id': self.company, + }) + self.euro_level.currency_id = False + fees = self.dunning_model.compute_fixed_fees(credit_line) + self.assertEqual(fees, self.euro_level.dunning_fixed_amount) + + def test_computation_all_currency_empty(self): + """Test that fees are correctly computed with empty currencies""" + credit_line = self.line_model.new({ + 'policy_level_id': self.euro_level, + 'currency_id': False, + 'company_id': self.company, + }) + self.euro_level.currency_id = False + fees = self.dunning_model.compute_fixed_fees(credit_line) + self.assertEqual(fees, self.euro_level.dunning_fixed_amount) + def test_no_fees(self): """Test that fees are not generated if no amount defined on level""" - credit_line = MagicMock(name='USD credit line') - credit_line.policy_level_id = self.euro_level + credit_line = self.line_model.new({ + 'policy_level_id': self.euro_level, + 'currency_id': self.usd, + 'company_id': self.company, + }) self.euro_level.dunning_fixed_amount = 0.0 - credit_line.currency_id = self.usd - fees = self.dunning_model.compute_fixed_fees(self.cr, self.uid, - credit_line, - {}) + fees = self.dunning_model.compute_fixed_fees(credit_line) self.assertEqual(fees, 0.0) diff --git a/account_credit_control_dunning_fees/view/line_view.xml b/account_credit_control_dunning_fees/view/line_view.xml new file mode 100644 index 000000000..9d4688bd5 --- /dev/null +++ b/account_credit_control_dunning_fees/view/line_view.xml @@ -0,0 +1,30 @@ + + + + + + add fees on credit control line + credit.control.line + + + + + + + + + + add fees on credit control line form + credit.control.line + + + + + + + + + + diff --git a/account_credit_control_dunning_fees/view/policy_view.xml b/account_credit_control_dunning_fees/view/policy_view.xml new file mode 100644 index 000000000..968b51fa4 --- /dev/null +++ b/account_credit_control_dunning_fees/view/policy_view.xml @@ -0,0 +1,24 @@ + + + + + add dunning fees on policy + credit.control.policy + + + + + + + + + + + + + + + + + + From d94b33f376d0348db6fdfe8af0e74cc5c8292af4 Mon Sep 17 00:00:00 2001 From: Rudolf Schnapka Date: Tue, 6 Jan 2015 17:39:37 +0100 Subject: [PATCH 05/18] german translations upto invoice currency --- .../i18n/de.po | 81 +++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 account_credit_control_dunning_fees/i18n/de.po diff --git a/account_credit_control_dunning_fees/i18n/de.po b/account_credit_control_dunning_fees/i18n/de.po new file mode 100644 index 000000000..f4fe9f0c3 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/de.po @@ -0,0 +1,81 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 7.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-05-07 11:44+0000\n" +"PO-Revision-Date: 2015-01-06 16:19+0100\n" +"Last-Translator: Rudolf Schnapka \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de\n" +"X-Generator: Poedit 1.5.4\n" + +#. module: account_credit_control_dunning_fees +#: code:_description:0 +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +#, python-format +msgid "A credit control line" +msgstr "Ein Mahnposten" + +#. module: account_credit_control_dunning_fees +#: code:_description:0 +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +#, python-format +msgid "A credit control policy level" +msgstr "Eine Mahnregelstufe" + +#. module: account_credit_control_dunning_fees +#: code:_description:0 +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +#, python-format +msgid "Credit control line generator" +msgstr "Mahnpostenerzeuger" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:0 +msgid "Fees" +msgstr "Gebühren" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "Mahn-Festbetrag" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "Gebührprodukt" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "Gebührwährung" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "Fest" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:0 +msgid "Mail and reporting" +msgstr "Post und Berichte" + +#. module: account_credit_control_dunning_fees +#: code:_description:0 +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_dunning_fees_computer +#, python-format +msgid "credit.control.dunning.fees.computer" +msgstr "credit.control.dunning.fees.computer" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "unknown" +msgstr "unbekannt" From bf87bcf2f8fd0140e3e69c2e43030e67cf18e658 Mon Sep 17 00:00:00 2001 From: Guewen Baconnier Date: Wed, 7 Jan 2015 09:57:10 +0100 Subject: [PATCH 06/18] Remove post_install and at_install instructions on tests With that, the suite is run even when we update another module and that not what we expect. Remove the unused mako template Include the fees in the open amount Display the fees column before the open amount, it is more logical since it is invoice amount + fees amount. Update translation of account_credit_control_dunning_fees Update translations, translate words of the report in German --- .../account_credit_control_dunning_fees.pot | 53 ++-- .../i18n/de.po | 5 +- .../i18n/fr.po | 50 ++-- .../model/line.py | 9 +- .../report/credit_control_summary.html.mako | 246 ------------------ .../report/report_credit_control_summary.xml | 16 +- .../tests/test_fees_generation.py | 2 - 7 files changed, 84 insertions(+), 297 deletions(-) delete mode 100644 account_credit_control_dunning_fees/report/credit_control_summary.html.mako diff --git a/account_credit_control_dunning_fees/i18n/account_credit_control_dunning_fees.pot b/account_credit_control_dunning_fees/i18n/account_credit_control_dunning_fees.pot index 6282315c6..a33c86d1e 100644 --- a/account_credit_control_dunning_fees/i18n/account_credit_control_dunning_fees.pot +++ b/account_credit_control_dunning_fees/i18n/account_credit_control_dunning_fees.pot @@ -1,13 +1,13 @@ -# Translation of OpenERP Server. +# Translation of Odoo Server. # This file contains the translation of the following modules: # * account_credit_control_dunning_fees # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 7.0\n" +"Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-07 11:44+0000\n" -"PO-Revision-Date: 2014-05-07 11:44+0000\n" +"POT-Creation-Date: 2014-12-22 11:00+0000\n" +"PO-Revision-Date: 2014-12-22 11:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,29 +16,34 @@ msgstr "" "Plural-Forms: \n" #. module: account_credit_control_dunning_fees -#: code:_description:0 #: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line -#, python-format msgid "A credit control line" msgstr "" #. module: account_credit_control_dunning_fees -#: code:_description:0 #: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level -#, python-format msgid "A credit control policy level" msgstr "" #. module: account_credit_control_dunning_fees -#: code:_description:0 +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "" + +#. module: account_credit_control_dunning_fees #: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run -#, python-format msgid "Credit control line generator" msgstr "" #. module: account_credit_control_dunning_fees #: field:credit.control.line,dunning_fees_amount:0 -#: view:credit.control.policy:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document msgid "Fees" msgstr "" @@ -63,19 +68,27 @@ msgid "Fixed" msgstr "" #. module: account_credit_control_dunning_fees -#: view:credit.control.policy:0 +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy msgid "Mail and reporting" msgstr "" -#. module: account_credit_control_dunning_fees -#: code:_description:0 -#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_dunning_fees_computer -#, python-format -msgid "credit.control.dunning.fees.computer" -msgstr "" - #. module: account_credit_control_dunning_fees #: field:credit.control.policy.level,dunning_fees_type:0 -msgid "unknown" +msgid "Type" msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/de.po b/account_credit_control_dunning_fees/i18n/de.po index f4fe9f0c3..bfc20cf23 100644 --- a/account_credit_control_dunning_fees/i18n/de.po +++ b/account_credit_control_dunning_fees/i18n/de.po @@ -77,5 +77,6 @@ msgstr "credit.control.dunning.fees.computer" #. module: account_credit_control_dunning_fees #: field:credit.control.policy.level,dunning_fees_type:0 -msgid "unknown" -msgstr "unbekannt" +msgid "Type" +msgstr "" + diff --git a/account_credit_control_dunning_fees/i18n/fr.po b/account_credit_control_dunning_fees/i18n/fr.po index df2e9e0ba..d8399fa54 100644 --- a/account_credit_control_dunning_fees/i18n/fr.po +++ b/account_credit_control_dunning_fees/i18n/fr.po @@ -6,39 +6,45 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 7.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-04-16 07:11+0000\n" +"POT-Creation-Date: 2014-12-22 11:00+0000\n" "PO-Revision-Date: 2014-04-16 07:11+0000\n" "Last-Translator: <>\n" "Language-Team: \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" #. module: account_credit_control_dunning_fees -#: code:_description:0 #: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line -#, python-format msgid "A credit control line" msgstr "Ligne de relance" #. module: account_credit_control_dunning_fees -#: code:_description:0 #: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level -#, python-format msgid "A credit control policy level" msgstr "Une politique de relance" #. module: account_credit_control_dunning_fees -#: code:_description:0 +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "" + +#. module: account_credit_control_dunning_fees #: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run -#, python-format msgid "Credit control line generator" msgstr "Générateur de relance" #. module: account_credit_control_dunning_fees #: field:credit.control.line,dunning_fees_amount:0 -#: view:credit.control.policy:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document msgid "Fees" msgstr "Frais de relance" @@ -63,18 +69,26 @@ msgid "Fixed" msgstr "Fixe" #. module: account_credit_control_dunning_fees -#: view:credit.control.policy:0 +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy msgid "Mail and reporting" msgstr "Lettres et e-mails" -#. module: account_credit_control_dunning_fees -#: code:_description:0 -#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_dunning_fees_computer -#, python-format -msgid "credit.control.dunning.fees.computer" -msgstr "credit.control.dunning.fees.computer" - #. module: account_credit_control_dunning_fees #: field:credit.control.policy.level,dunning_fees_type:0 -msgid "unknown" -msgstr "inconnu" +msgid "Type" +msgstr "Type" diff --git a/account_credit_control_dunning_fees/model/line.py b/account_credit_control_dunning_fees/model/line.py index 699c38d45..23803ebac 100644 --- a/account_credit_control_dunning_fees/model/line.py +++ b/account_credit_control_dunning_fees/model/line.py @@ -18,7 +18,7 @@ # along with this program. If not, see . # ############################################################################## -from openerp import models, fields +from openerp import models, fields, api class CreditControlLine(models.Model): @@ -27,3 +27,10 @@ class CreditControlLine(models.Model): _inherit = "credit.control.line" dunning_fees_amount = fields.Float(string='Fees') + balance_due_total = fields.Float(string='Balance due with fees', + compute='compute_balance_due') + + @api.one + @api.depends('dunning_fees_amount', 'balance_due') + def compute_balance_due(self): + self.balance_due_total = self.balance_due + self.dunning_fees_amount diff --git a/account_credit_control_dunning_fees/report/credit_control_summary.html.mako b/account_credit_control_dunning_fees/report/credit_control_summary.html.mako deleted file mode 100644 index 985a93403..000000000 --- a/account_credit_control_dunning_fees/report/credit_control_summary.html.mako +++ /dev/null @@ -1,246 +0,0 @@ -## -*- coding: utf-8 -*- - - - - - - - %for comm in objects : - <% setLang(comm.get_contact_address().lang) %> -
- - <% - add = comm.get_contact_address() - %> - %if comm.partner_id.id == add.id: - - <% address_lines = comm.partner_id.contact_address.split("\n") %> - - %else: - - - <% address_lines = add.contact_address.split("\n")[1:] %> - %endif - %for part in address_lines: - %if part: - - %endif - %endfor -
${comm.partner_id.title and comm.partner_id.title.name or ''} ${comm.partner_id.name }
${comm.partner_id.name or ''}
${add.title and add.title.name or ''} ${add.name}
${part}
-
-
-
-
- -
-
-
-
-
- -

- ${_('Reminder')}: ${comm.current_policy_level.name or '' } -

- -

${_('Dear')},

-

${comm.current_policy_level.custom_text.replace('\n', '
')}

- -
-
-

${_('Summary')}

- - - - - - - - - - - -%for line in comm.credit_control_line_ids: - - %if line.invoice_id: - - %else: - - %endif - - - - - - - -%endfor -
${_('Invoice number')}${_('Invoice date')}${_('Date due')}${_('Invoiced amount')}${_('Open amount')}${_('Fees')}${_('Currency')}
${line.invoice_id.number} - %if line.invoice_id.name: -
- ${line.invoice_id.name} - %endif -
${line.move_line_id.name}${line.date_entry}${line.date_due}${line.amount_due}${line.balance_due}${line.dunning_fees_amount}${line.currency_id.name or comm.company_id.currency_id.name}
-
-
-<%doc> - -

${_('If you have any question, do not hesitate to contact us.')}

- -

${comm.user_id.name} ${comm.user_id.email and '<%s>'%(comm.user_id.email) or ''}
- ${comm.company_id.name}
- % if comm.company_id.street: - ${comm.company_id.street or ''}
- - % endif - - % if comm.company_id.street2: - ${comm.company_id.street2}
- % endif - % if comm.company_id.city or comm.company_id.zip: - ${comm.company_id.zip or ''} ${comm.company_id.city or ''}
- % endif - % if comm.company_id.country_id: - ${comm.company_id.state_id and ('%s, ' % comm.company_id.state_id.name) or ''} ${comm.company_id.country_id.name or ''}
- % endif - % if comm.company_id.phone: - Phone: ${comm.company_id.phone}
- % endif - % if comm.company_id.website: - ${comm.company_id.website or ''}
- % endif - - -

- %endfor - - - diff --git a/account_credit_control_dunning_fees/report/report_credit_control_summary.xml b/account_credit_control_dunning_fees/report/report_credit_control_summary.xml index 7bee3c5cf..e58ad2d9b 100644 --- a/account_credit_control_dunning_fees/report/report_credit_control_summary.xml +++ b/account_credit_control_dunning_fees/report/report_credit_control_summary.xml @@ -3,19 +3,19 @@ diff --git a/account_credit_control_dunning_fees/tests/test_fees_generation.py b/account_credit_control_dunning_fees/tests/test_fees_generation.py index a00fae867..924451409 100644 --- a/account_credit_control_dunning_fees/tests/test_fees_generation.py +++ b/account_credit_control_dunning_fees/tests/test_fees_generation.py @@ -21,8 +21,6 @@ from openerp.tests import common -@common.at_install(True) -@common.post_install(True) class FixedFeesTester(common.TransactionCase): def setUp(self): From 2f32585e12cf1d2c033c7391de78447542e1ee71 Mon Sep 17 00:00:00 2001 From: Alexandre Fayolle Date: Mon, 2 Mar 2015 17:22:41 +0100 Subject: [PATCH 07/18] Add OCA as author of OCA addons In order to get visibility on https://www.odoo.com/apps the OCA board has decided to add the OCA as author of all the addons maintained as part of the association. --- account_credit_control_dunning_fees/__openerp__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/account_credit_control_dunning_fees/__openerp__.py b/account_credit_control_dunning_fees/__openerp__.py index d7758846e..4d1f96750 100644 --- a/account_credit_control_dunning_fees/__openerp__.py +++ b/account_credit_control_dunning_fees/__openerp__.py @@ -20,7 +20,7 @@ ############################################################################## {'name': 'Credit control dunning fees', 'version': '0.1.0', - 'author': 'Camptocamp', + 'author': "Camptocamp,Odoo Community Association (OCA)", 'maintainer': 'Camptocamp', 'category': 'Accounting', 'complexity': 'normal', From 22ef1bc8dcd6eee517a7dc26c6d35575f82ce875 Mon Sep 17 00:00:00 2001 From: "Adrien Peiffer (ACSONE)" Date: Sat, 7 Mar 2015 17:18:09 +0100 Subject: [PATCH 08/18] [IMP] Include the fees in the total due --- .../__init__.py | 1 + .../wizard/__init__.py | 23 +++++++++++++ .../wizard/credit_control_communication.py | 32 +++++++++++++++++++ 3 files changed, 56 insertions(+) create mode 100644 account_credit_control_dunning_fees/wizard/__init__.py create mode 100644 account_credit_control_dunning_fees/wizard/credit_control_communication.py diff --git a/account_credit_control_dunning_fees/__init__.py b/account_credit_control_dunning_fees/__init__.py index 6ac610f01..a485290c7 100644 --- a/account_credit_control_dunning_fees/__init__.py +++ b/account_credit_control_dunning_fees/__init__.py @@ -19,3 +19,4 @@ # ############################################################################## from . import model +from . import wizard diff --git a/account_credit_control_dunning_fees/wizard/__init__.py b/account_credit_control_dunning_fees/wizard/__init__.py new file mode 100644 index 000000000..b400e6315 --- /dev/null +++ b/account_credit_control_dunning_fees/wizard/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +# +############################################################################## +# +# Authors: Adrien Peiffer +# Copyright (c) 2015 Acsone SA/NV (http://www.acsone.eu) +# +# 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 . +# +############################################################################## + +from . import credit_control_communication diff --git a/account_credit_control_dunning_fees/wizard/credit_control_communication.py b/account_credit_control_dunning_fees/wizard/credit_control_communication.py new file mode 100644 index 000000000..99669b612 --- /dev/null +++ b/account_credit_control_dunning_fees/wizard/credit_control_communication.py @@ -0,0 +1,32 @@ +# -*- coding: utf-8 -*- +# +############################################################################## +# +# Authors: Adrien Peiffer +# Copyright (c) 2015 Acsone SA/NV (http://www.acsone.eu) +# +# 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 . +# +############################################################################## + +from openerp import models, api + + +class CreditCommunication(models.TransientModel): + _inherit = 'credit.control.communication' + + @api.model + def _get_total_due(self): + balance_field = 'credit_control_line_ids.balance_due_total' + return sum(self.mapped(balance_field)) From ed3c24d74b1f45578c946390282a215b97e2842c Mon Sep 17 00:00:00 2001 From: Yannick Vaucher Date: Tue, 18 Aug 2015 10:32:25 +0200 Subject: [PATCH 09/18] Add missing default oca icons --- .../static/description/icon.png | Bin 0 -> 9455 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 account_credit_control_dunning_fees/static/description/icon.png diff --git a/account_credit_control_dunning_fees/static/description/icon.png b/account_credit_control_dunning_fees/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3a0328b516c4980e8e44cdb63fd945757ddd132d GIT binary patch literal 9455 zcmW++2RxMjAAjx~&dlBk9S+%}OXg)AGE&Cb*&}d0jUxM@u(PQx^-s)697TX`ehR4?GS^qbkof1cslKgkU)h65qZ9Oc=ml_0temigYLJfnz{IDzUf>bGs4N!v3=Z3jMq&A#7%rM5eQ#dc?k~! zVpnB`o+K7|Al`Q_U;eD$B zfJtP*jH`siUq~{KE)`jP2|#TUEFGRryE2`i0**z#*^6~AI|YzIWy$Cu#CSLW3q=GA z6`?GZymC;dCPk~rBS%eCb`5OLr;RUZ;D`}um=H)BfVIq%7VhiMr)_#G0N#zrNH|__ zc+blN2UAB0=617@>_u;MPHN;P;N#YoE=)R#i$k_`UAA>WWCcEVMh~L_ zj--gtp&|K1#58Yz*AHCTMziU1Jzt_jG0I@qAOHsk$2}yTmVkBp_eHuY$A9)>P6o~I z%aQ?!(GqeQ-Y+b0I(m9pwgi(IIZZzsbMv+9w{PFtd_<_(LA~0H(xz{=FhLB@(1&qHA5EJw1>>=%q2f&^X>IQ{!GJ4e9U z&KlB)z(84HmNgm2hg2C0>WM{E(DdPr+EeU_N@57;PC2&DmGFW_9kP&%?X4}+xWi)( z;)z%wI5>D4a*5XwD)P--sPkoY(a~WBw;E~AW`Yue4kFa^LM3X`8x|}ZUeMnqr}>kH zG%WWW>3ml$Yez?i%)2pbKPI7?5o?hydokgQyZsNEr{a|mLdt;X2TX(#B1j35xPnPW z*bMSSOauW>o;*=kO8ojw91VX!qoOQb)zHJ!odWB}d+*K?#sY_jqPdg{Sm2HdYzdEx zOGVPhVRTGPtv0o}RfVP;Nd(|CB)I;*t&QO8h zFfekr30S!-LHmV_Su-W+rEwYXJ^;6&3|L$mMC8*bQptyOo9;>Qb9Q9`ySe3%V$A*9 zeKEe+b0{#KWGp$F+tga)0RtI)nhMa-K@JS}2krK~n8vJ=Ngm?R!9G<~RyuU0d?nz# z-5EK$o(!F?hmX*2Yt6+coY`6jGbb7tF#6nHA zuKk=GGJ;ZwON1iAfG$E#Y7MnZVmrY|j0eVI(DN_MNFJmyZ|;w4tf@=CCDZ#5N_0K= z$;R~bbk?}TpfDjfB&aiQ$VA}s?P}xPERJG{kxk5~R`iRS(SK5d+Xs9swCozZISbnS zk!)I0>t=A<-^z(cmSFz3=jZ23u13X><0b)P)^1T_))Kr`e!-pb#q&J*Q`p+B6la%C zuVl&0duN<;uOsB3%T9Fp8t{ED108<+W(nOZd?gDnfNBC3>M8WE61$So|P zVvqH0SNtDTcsUdzaMDpT=Ty0pDHHNL@Z0w$Y`XO z2M-_r1S+GaH%pz#Uy0*w$Vdl=X=rQXEzO}d6J^R6zjM1u&c9vYLvLp?W7w(?np9x1 zE_0JSAJCPB%i7p*Wvg)pn5T`8k3-uR?*NT|J`eS#_#54p>!p(mLDvmc-3o0mX*mp_ zN*AeS<>#^-{S%W<*mz^!X$w_2dHWpcJ6^j64qFBft-o}o_Vx80o0>}Du;>kLts;$8 zC`7q$QI(dKYG`Wa8#wl@V4jVWBRGQ@1dr-hstpQL)Tl+aqVpGpbSfN>5i&QMXfiZ> zaA?T1VGe?rpQ@;+pkrVdd{klI&jVS@I5_iz!=UMpTsa~mBga?1r}aRBm1WS;TT*s0f0lY=JBl66Upy)-k4J}lh=P^8(SXk~0xW=T9v*B|gzIhN z>qsO7dFd~mgxAy4V?&)=5ieYq?zi?ZEoj)&2o)RLy=@hbCRcfT5jigwtQGE{L*8<@Yd{zg;CsL5mvzfDY}P-wos_6PfprFVaeqNE%h zKZhLtcQld;ZD+>=nqN~>GvROfueSzJD&BE*}XfU|H&(FssBqY=hPCt`d zH?@s2>I(|;fcW&YM6#V#!kUIP8$Nkdh0A(bEVj``-AAyYgwY~jB zT|I7Bf@%;7aL7Wf4dZ%VqF$eiaC38OV6oy3Z#TER2G+fOCd9Iaoy6aLYbPTN{XRPz z;U!V|vBf%H!}52L2gH_+j;`bTcQRXB+y9onc^wLm5wi3-Be}U>k_u>2Eg$=k!(l@I zcCg+flakT2Nej3i0yn+g+}%NYb?ta;R?(g5SnwsQ49U8Wng8d|{B+lyRcEDvR3+`O{zfmrmvFrL6acVP%yG98X zo&+VBg@px@i)%o?dG(`T;n*$S5*rnyiR#=wW}}GsAcfyQpE|>a{=$Hjg=-*_K;UtD z#z-)AXwSRY?OPefw^iI+ z)AXz#PfEjlwTes|_{sB?4(O@fg0AJ^g8gP}ex9Ucf*@_^J(s_5jJV}c)s$`Myn|Kd z$6>}#q^n{4vN@+Os$m7KV+`}c%4)4pv@06af4-x5#wj!KKb%caK{A&Y#Rfs z-po?Dcb1({W=6FKIUirH&(yg=*6aLCekcKwyfK^JN5{wcA3nhO(o}SK#!CINhI`-I z1)6&n7O&ZmyFMuNwvEic#IiOAwNkR=u5it{B9n2sAJV5pNhar=j5`*N!Na;c7g!l$ z3aYBqUkqqTJ=Re-;)s!EOeij=7SQZ3Hq}ZRds%IM*PtM$wV z@;rlc*NRK7i3y5BETSKuumEN`Xu_8GP1Ri=OKQ$@I^ko8>H6)4rjiG5{VBM>B|%`&&s^)jS|-_95&yc=GqjNo{zFkw%%HHhS~e=s zD#sfS+-?*t|J!+ozP6KvtOl!R)@@-z24}`9{QaVLD^9VCSR2b`b!KC#o;Ki<+wXB6 zx3&O0LOWcg4&rv4QG0)4yb}7BFSEg~=IR5#ZRj8kg}dS7_V&^%#Do==#`u zpy6{ox?jWuR(;pg+f@mT>#HGWHAJRRDDDv~@(IDw&R>9643kK#HN`!1vBJHnC+RM&yIh8{gG2q zA%e*U3|N0XSRa~oX-3EAneep)@{h2vvd3Xvy$7og(sayr@95+e6~Xvi1tUqnIxoIH zVWo*OwYElb#uyW{Imam6f2rGbjR!Y3`#gPqkv57dB6K^wRGxc9B(t|aYDGS=m$&S!NmCtrMMaUg(c zc2qC=2Z`EEFMW-me5B)24AqF*bV5Dr-M5ig(l-WPS%CgaPzs6p_gnCIvTJ=Y<6!gT zVt@AfYCzjjsMEGi=rDQHo0yc;HqoRNnNFeWZgcm?f;cp(6CNylj36DoL(?TS7eU#+ z7&mfr#y))+CJOXQKUMZ7QIdS9@#-}7y2K1{8)cCt0~-X0O!O?Qx#E4Og+;A2SjalQ zs7r?qn0H044=sDN$SRG$arw~n=+T_DNdSrarmu)V6@|?1-ZB#hRn`uilTGPJ@fqEy zGt(f0B+^JDP&f=r{#Y_wi#AVDf-y!RIXU^0jXsFpf>=Ji*TeqSY!H~AMbJdCGLhC) zn7Rx+sXw6uYj;WRYrLd^5IZq@6JI1C^YkgnedZEYy<&4(z%Q$5yv#Boo{AH8n$a zhb4Y3PWdr269&?V%uI$xMcUrMzl=;w<_nm*qr=c3Rl@i5wWB;e-`t7D&c-mcQl7x! zZWB`UGcw=Y2=}~wzrfLx=uet<;m3~=8I~ZRuzvMQUQdr+yTV|ATf1Uuomr__nDf=X zZ3WYJtHp_ri(}SQAPjv+Y+0=fH4krOP@S&=zZ-t1jW1o@}z;xk8 z(Nz1co&El^HK^NrhVHa-_;&88vTU>_J33=%{if;BEY*J#1n59=07jrGQ#IP>@u#3A z;!q+E1Rj3ZJ+!4bq9F8PXJ@yMgZL;>&gYA0%_Kbi8?S=XGM~dnQZQ!yBSgcZhY96H zrWnU;k)qy`rX&&xlDyA%(a1Hhi5CWkmg(`Gb%m(HKi-7Z!LKGRP_B8@`7&hdDy5n= z`OIxqxiVfX@OX1p(mQu>0Ai*v_cTMiw4qRt3~NBvr9oBy0)r>w3p~V0SCm=An6@3n)>@z!|o-$HvDK z|3D2ZMJkLE5loMKl6R^ez@Zz%S$&mbeoqH5`Bb){Ei21q&VP)hWS2tjShfFtGE+$z zzCR$P#uktu+#!w)cX!lWN1XU%K-r=s{|j?)Akf@q#3b#{6cZCuJ~gCxuMXRmI$nGtnH+-h z+GEi!*X=AP<|fG`1>MBdTb?28JYc=fGvAi2I<$B(rs$;eoJCyR6_bc~p!XR@O-+sD z=eH`-ye})I5ic1eL~TDmtfJ|8`0VJ*Yr=hNCd)G1p2MMz4C3^Mj?7;!w|Ly%JqmuW zlIEW^Ft%z?*|fpXda>Jr^1noFZEwFgVV%|*XhH@acv8rdGxeEX{M$(vG{Zw+x(ei@ zmfXb22}8-?Fi`vo-YVrTH*C?a8%M=Hv9MqVH7H^J$KsD?>!SFZ;ZsvnHr_gn=7acz z#W?0eCdVhVMWN12VV^$>WlQ?f;P^{(&pYTops|btm6aj>_Uz+hqpGwB)vWp0Cf5y< zft8-je~nn?W11plq}N)4A{l8I7$!ks_x$PXW-2XaRFswX_BnF{R#6YIwMhAgd5F9X zGmwdadS6(a^fjHtXg8=l?Rc0Sm%hk6E9!5cLVloEy4eh(=FwgP`)~I^5~pBEWo+F6 zSf2ncyMurJN91#cJTy_u8Y}@%!bq1RkGC~-bV@SXRd4F{R-*V`bS+6;W5vZ(&+I<9$;-V|eNfLa5n-6% z2(}&uGRF;p92eS*sE*oR$@pexaqr*meB)VhmIg@h{uzkk$9~qh#cHhw#>O%)b@+(| z^IQgqzuj~Sk(J;swEM-3TrJAPCq9k^^^`q{IItKBRXYe}e0Tdr=Huf7da3$l4PdpwWDop%^}n;dD#K4s#DYA8SHZ z&1!riV4W4R7R#C))JH1~axJ)RYnM$$lIR%6fIVA@zV{XVyx}C+a-Dt8Y9M)^KU0+H zR4IUb2CJ{Hg>CuaXtD50jB(_Tcx=Z$^WYu2u5kubqmwp%drJ6 z?Fo40g!Qd<-l=TQxqHEOuPX0;^z7iX?Ke^a%XT<13TA^5`4Xcw6D@Ur&VT&CUe0d} z1GjOVF1^L@>O)l@?bD~$wzgf(nxX1OGD8fEV?TdJcZc2KoUe|oP1#=$$7ee|xbY)A zDZq+cuTpc(fFdj^=!;{k03C69lMQ(|>uhRfRu%+!k&YOi-3|1QKB z z?n?eq1XP>p-IM$Z^C;2L3itnbJZAip*Zo0aw2bs8@(s^~*8T9go!%dHcAz2lM;`yp zD=7&xjFV$S&5uDaiScyD?B-i1ze`+CoRtz`Wn+Zl&#s4&}MO{@N!ufrzjG$B79)Y2d3tBk&)TxUTw@QS0TEL_?njX|@vq?Uz(nBFK5Pq7*xj#u*R&i|?7+6# z+|r_n#SW&LXhtheZdah{ZVoqwyT{D>MC3nkFF#N)xLi{p7J1jXlmVeb;cP5?e(=f# zuT7fvjSbjS781v?7{)-X3*?>tq?)Yd)~|1{BDS(pqC zC}~H#WXlkUW*H5CDOo<)#x7%RY)A;ShGhI5s*#cRDA8YgqG(HeKDx+#(ZQ?386dv! zlXCO)w91~Vw4AmOcATuV653fa9R$fyK8ul%rG z-wfS zihugoZyr38Im?Zuh6@RcF~t1anQu7>#lPpb#}4cOA!EM11`%f*07RqOVkmX{p~KJ9 z^zP;K#|)$`^Rb{rnHGH{~>1(fawV0*Z#)}M`m8-?ZJV<+e}s9wE# z)l&az?w^5{)`S(%MRzxdNqrs1n*-=jS^_jqE*5XDrA0+VE`5^*p3CuM<&dZEeCjoz zR;uu_H9ZPZV|fQq`Cyw4nscrVwi!fE6ciMmX$!_hN7uF;jjKG)d2@aC4ropY)8etW=xJvni)8eHi`H$%#zn^WJ5NLc-rqk|u&&4Z6fD_m&JfSI1Bvb?b<*n&sfl0^t z=HnmRl`XrFvMKB%9}>PaA`m-fK6a0(8=qPkWS5bb4=v?XcWi&hRY?O5HdulRi4?fN zlsJ*N-0Qw+Yic@s0(2uy%F@ib;GjXt01Fmx5XbRo6+n|pP(&nodMoap^z{~q ziEeaUT@Mxe3vJSfI6?uLND(CNr=#^W<1b}jzW58bIfyWTDle$mmS(|x-0|2UlX+9k zQ^EX7Nw}?EzVoBfT(-LT|=9N@^hcn-_p&sqG z&*oVs2JSU+N4ZD`FhCAWaS;>|wH2G*Id|?pa#@>tyxX`+4HyIArWDvVrX)2WAOQff z0qyHu&-S@i^MS-+j--!pr4fPBj~_8({~e1bfcl0wI1kaoN>mJL6KUPQm5N7lB(ui1 zE-o%kq)&djzWJ}ob<-GfDlkB;F31j-VHKvQUGQ3sp`CwyGJk_i!y^sD0fqC@$9|jO zOqN!r!8-p==F@ZVP=U$qSpY(gQ0)59P1&t@y?5rvg<}E+GB}26NYPp4f2YFQrQtot5mn3wu_qprZ=>Ig-$ zbW26Ws~IgY>}^5w`vTB(G`PTZaDiGBo5o(tp)qli|NeV( z@H_=R8V39rt5J5YB2Ky?4eJJ#b`_iBe2ot~6%7mLt5t8Vwi^Jy7|jWXqa3amOIoRb zOr}WVFP--DsS`1WpN%~)t3R!arKF^Q$e12KEqU36AWwnCBICpH4XCsfnyrHr>$I$4 z!DpKX$OKLWarN7nv@!uIA+~RNO)l$$w}p(;b>mx8pwYvu;dD_unryX_NhT8*Tj>BTrTTL&!?O+%Rv;b?B??gSzdp?6Uug9{ zd@V08Z$BdI?fpoCS$)t4mg4rT8Q_I}h`0d-vYZ^|dOB*Q^S|xqTV*vIg?@fVFSmMpaw0qtTRbx} z({Pg?#{2`sc9)M5N$*N|4;^t$+QP?#mov zGVC@I*lBVrOU-%2y!7%)fAKjpEFsgQc4{amtiHb95KQEwvf<(3T<9-Zm$xIew#P22 zc2Ix|App^>v6(3L_MCU0d3W##AB0M~3D00EWoKZqsJYT(#@w$Y_H7G22M~ApVFTRHMI_3be)Lkn#0F*V8Pq zc}`Cjy$bE;FJ6H7p=0y#R>`}-m4(0F>%@P|?7fx{=R^uFdISRnZ2W_xQhD{YuR3t< z{6yxu=4~JkeA;|(J6_nv#>Nvs&FuLA&PW^he@t(UwFFE8)|a!R{`E`K`i^ZnyE4$k z;(749Ix|oi$c3QbEJ3b~D_kQsPz~fIUKym($a_7dJ?o+40*OLl^{=&oq$<#Q(yyrp z{J-FAniyAw9tPbe&IhQ|a`DqFTVQGQ&Gq3!C2==4x{6EJwiPZ8zub-iXoUtkJiG{} zPaR&}_fn8_z~(=;5lD-aPWD3z8PZS@AaUiomF!G8I}Mf>e~0g#BelA-5#`cj;O5>N Xviia!U7SGha1wx#SCgwmn*{w2TRX*I literal 0 HcmV?d00001 From 345ec1b4df92c2f32b2fcdef0353ae154e801a23 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 12 Sep 2015 17:39:28 -0400 Subject: [PATCH 10/18] OCA Transbot updated translations from Transifex --- .../i18n/ca.po | 106 +++++++++++++++++ .../i18n/de.po | 76 ++++++++----- .../i18n/en.po | 106 +++++++++++++++++ .../i18n/es.po | 106 +++++++++++++++++ .../i18n/es_ES.po | 106 +++++++++++++++++ .../i18n/fr.po | 40 ++++--- .../i18n/gl.po | 106 +++++++++++++++++ .../i18n/gl_ES.po | 106 +++++++++++++++++ .../i18n/it.po | 106 +++++++++++++++++ .../i18n/pt.po | 106 +++++++++++++++++ .../i18n/sl.po | 107 ++++++++++++++++++ 11 files changed, 1031 insertions(+), 40 deletions(-) create mode 100644 account_credit_control_dunning_fees/i18n/ca.po create mode 100644 account_credit_control_dunning_fees/i18n/en.po create mode 100644 account_credit_control_dunning_fees/i18n/es.po create mode 100644 account_credit_control_dunning_fees/i18n/es_ES.po create mode 100644 account_credit_control_dunning_fees/i18n/gl.po create mode 100644 account_credit_control_dunning_fees/i18n/gl_ES.po create mode 100644 account_credit_control_dunning_fees/i18n/it.po create mode 100644 account_credit_control_dunning_fees/i18n/pt.po create mode 100644 account_credit_control_dunning_fees/i18n/sl.po diff --git a/account_credit_control_dunning_fees/i18n/ca.po b/account_credit_control_dunning_fees/i18n/ca.po new file mode 100644 index 000000000..8c2a54a63 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/ca.po @@ -0,0 +1,106 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-07-01 13:25+0000\n" +"PO-Revision-Date: 2015-06-03 15:57+0000\n" +"Last-Translator: <>\n" +"Language-Team: Catalan (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Tipus" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/de.po b/account_credit_control_dunning_fees/i18n/de.po index bfc20cf23..097b76e39 100644 --- a/account_credit_control_dunning_fees/i18n/de.po +++ b/account_credit_control_dunning_fees/i18n/de.po @@ -1,45 +1,57 @@ -# Translation of OpenERP Server. +# Translation of Odoo Server. # This file contains the translation of the following modules: -# * account_credit_control_dunning_fees -# +# * account_credit_control_dunning_fees +# +# Translators: msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 7.0\n" +"Project-Id-Version: account-financial-tools (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-07 11:44+0000\n" -"PO-Revision-Date: 2015-01-06 16:19+0100\n" -"Last-Translator: Rudolf Schnapka \n" -"Language-Team: \n" +"POT-Creation-Date: 2015-07-01 13:25+0000\n" +"PO-Revision-Date: 2015-06-03 16:14+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: German (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" +"Content-Transfer-Encoding: \n" "Language: de\n" -"X-Generator: Poedit 1.5.4\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_credit_control_dunning_fees -#: code:_description:0 #: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line -#, python-format msgid "A credit control line" msgstr "Ein Mahnposten" #. module: account_credit_control_dunning_fees -#: code:_description:0 #: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level -#, python-format msgid "A credit control policy level" msgstr "Eine Mahnregelstufe" #. module: account_credit_control_dunning_fees -#: code:_description:0 +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "" + +#. module: account_credit_control_dunning_fees #: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run -#, python-format msgid "Credit control line generator" msgstr "Mahnpostenerzeuger" +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + #. module: account_credit_control_dunning_fees #: field:credit.control.line,dunning_fees_amount:0 -#: view:credit.control.policy:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document msgid "Fees" msgstr "Gebühren" @@ -64,19 +76,31 @@ msgid "Fixed" msgstr "Fest" #. module: account_credit_control_dunning_fees -#: view:credit.control.policy:0 +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy msgid "Mail and reporting" msgstr "Post und Berichte" -#. module: account_credit_control_dunning_fees -#: code:_description:0 -#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_dunning_fees_computer -#, python-format -msgid "credit.control.dunning.fees.computer" -msgstr "credit.control.dunning.fees.computer" - #. module: account_credit_control_dunning_fees #: field:credit.control.policy.level,dunning_fees_type:0 msgid "Type" -msgstr "" +msgstr "Art" +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/en.po b/account_credit_control_dunning_fees/i18n/en.po new file mode 100644 index 000000000..9518fc32b --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/en.po @@ -0,0 +1,106 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-07-01 13:25+0000\n" +"PO-Revision-Date: 2015-06-03 15:57+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: English (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "A credit control line" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "A credit control policy level" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Created by" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Created on" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "Credit control line generator" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "Currency of the dunning fees. If empty, it takes the company's currency." + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "Fees" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "Fees Fixed Amount" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "Fees Product" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "Fees currency" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "Fixed" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "Mail and reporting" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Type" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "credit control communication" diff --git a/account_credit_control_dunning_fees/i18n/es.po b/account_credit_control_dunning_fees/i18n/es.po new file mode 100644 index 000000000..28ce91b82 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/es.po @@ -0,0 +1,106 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-07-01 13:25+0000\n" +"PO-Revision-Date: 2015-06-03 15:57+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Tipo" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/es_ES.po b/account_credit_control_dunning_fees/i18n/es_ES.po new file mode 100644 index 000000000..51d2c2525 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/es_ES.po @@ -0,0 +1,106 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-07-01 13:25+0000\n" +"PO-Revision-Date: 2015-06-03 15:57+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Tipo" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/fr.po b/account_credit_control_dunning_fees/i18n/fr.po index d8399fa54..495fdf767 100644 --- a/account_credit_control_dunning_fees/i18n/fr.po +++ b/account_credit_control_dunning_fees/i18n/fr.po @@ -1,20 +1,21 @@ -# Translation of OpenERP Server. +# Translation of Odoo Server. # This file contains the translation of the following modules: # * account_credit_control_dunning_fees -# +# +# Translators: msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 7.0\n" +"Project-Id-Version: account-financial-tools (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-22 11:00+0000\n" -"PO-Revision-Date: 2014-04-16 07:11+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"Language: \n" +"POT-Creation-Date: 2015-07-01 13:25+0000\n" +"PO-Revision-Date: 2015-07-06 09:59+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: French (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Plural-Forms: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_credit_control_dunning_fees #: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line @@ -29,18 +30,24 @@ msgstr "Une politique de relance" #. module: account_credit_control_dunning_fees #: field:credit.control.dunning.fees.computer,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Créer par" #. module: account_credit_control_dunning_fees #: field:credit.control.dunning.fees.computer,create_date:0 msgid "Created on" -msgstr "" +msgstr "Créer le" #. module: account_credit_control_dunning_fees #: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run msgid "Credit control line generator" msgstr "Générateur de relance" +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + #. module: account_credit_control_dunning_fees #: field:credit.control.line,dunning_fees_amount:0 #: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy @@ -71,17 +78,17 @@ msgstr "Fixe" #. module: account_credit_control_dunning_fees #: field:credit.control.dunning.fees.computer,id:0 msgid "ID" -msgstr "" +msgstr "ID" #. module: account_credit_control_dunning_fees #: field:credit.control.dunning.fees.computer,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Mis à jour par" #. module: account_credit_control_dunning_fees #: field:credit.control.dunning.fees.computer,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Mis à jour le" #. module: account_credit_control_dunning_fees #: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy @@ -92,3 +99,8 @@ msgstr "Lettres et e-mails" #: field:credit.control.policy.level,dunning_fees_type:0 msgid "Type" msgstr "Type" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "Lettre de relance" diff --git a/account_credit_control_dunning_fees/i18n/gl.po b/account_credit_control_dunning_fees/i18n/gl.po new file mode 100644 index 000000000..c55477475 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/gl.po @@ -0,0 +1,106 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-07-01 13:25+0000\n" +"PO-Revision-Date: 2015-06-03 15:57+0000\n" +"Last-Translator: <>\n" +"Language-Team: Galician (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "ültima actualización por" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/gl_ES.po b/account_credit_control_dunning_fees/i18n/gl_ES.po new file mode 100644 index 000000000..9519c2808 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/gl_ES.po @@ -0,0 +1,106 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-07-01 13:25+0000\n" +"PO-Revision-Date: 2015-06-03 15:57+0000\n" +"Last-Translator: <>\n" +"Language-Team: Galician (Spain) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/gl_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/it.po b/account_credit_control_dunning_fees/i18n/it.po new file mode 100644 index 000000000..58d01794a --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/it.po @@ -0,0 +1,106 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-07-01 13:25+0000\n" +"PO-Revision-Date: 2015-06-03 15:57+0000\n" +"Last-Translator: <>\n" +"Language-Team: Italian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Creato da" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Creato il" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Tipo" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/pt.po b/account_credit_control_dunning_fees/i18n/pt.po new file mode 100644 index 000000000..1cee051f3 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/pt.po @@ -0,0 +1,106 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-07-01 13:25+0000\n" +"PO-Revision-Date: 2015-06-03 15:57+0000\n" +"Last-Translator: <>\n" +"Language-Team: Portuguese (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Tipo" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/sl.po b/account_credit_control_dunning_fees/i18n/sl.po new file mode 100644 index 000000000..98302baa7 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/sl.po @@ -0,0 +1,107 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +# Matjaž Mozetič , 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-07-01 13:25+0000\n" +"PO-Revision-Date: 2015-06-08 04:48+0000\n" +"Last-Translator: Matjaž Mozetič \n" +"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "Postavka kreditnega nadzora" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "Nivo pravilnika kreditnega nadzora" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Ustvaril" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "Generator postavk kreditnega nadzora" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "Valuta terjatev. Če je prazno upošteva valuto družbe." + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "Terjatve" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "Fiksni znesek terjatev" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "Proizvod terjatev" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "Valuta terjatev" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "Fiksne" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnjič posodobil" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "Pošta in poročanje" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Tip" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "komunikacija kreditnega nadzora" From 44e60f304e11b5ca275310238f0d45cfd7276add Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul?= Date: Fri, 9 Oct 2015 09:59:23 +0200 Subject: [PATCH 11/18] [UPD] prefix versions with 8.0 --- account_credit_control_dunning_fees/__openerp__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/account_credit_control_dunning_fees/__openerp__.py b/account_credit_control_dunning_fees/__openerp__.py index 4d1f96750..96e07c9d6 100644 --- a/account_credit_control_dunning_fees/__openerp__.py +++ b/account_credit_control_dunning_fees/__openerp__.py @@ -19,7 +19,7 @@ # ############################################################################## {'name': 'Credit control dunning fees', - 'version': '0.1.0', + 'version': '8.0.0.1.0', 'author': "Camptocamp,Odoo Community Association (OCA)", 'maintainer': 'Camptocamp', 'category': 'Accounting', From eec6d7b3704d4672ffab1c25f51553410af383c3 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Wed, 14 Oct 2015 02:52:55 +0200 Subject: [PATCH 12/18] [MIG] Make modules uninstallable --- account_credit_control_dunning_fees/__openerp__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/account_credit_control_dunning_fees/__openerp__.py b/account_credit_control_dunning_fees/__openerp__.py index 96e07c9d6..6f0543e18 100644 --- a/account_credit_control_dunning_fees/__openerp__.py +++ b/account_credit_control_dunning_fees/__openerp__.py @@ -33,7 +33,7 @@ ], 'demo': [], 'test': [], - 'installable': True, + 'installable': False, 'auto_install': False, 'license': 'AGPL-3', 'application': False} From eb0daa83586a8bc9db9623efba55fb47e80f6cdb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul=20=28ACSONE=29?= Date: Mon, 15 Aug 2016 18:54:03 +0200 Subject: [PATCH 13/18] [FIX] remove en.po that was erroneously created by transbot --- .../i18n/en.po | 106 ------------------ 1 file changed, 106 deletions(-) delete mode 100644 account_credit_control_dunning_fees/i18n/en.po diff --git a/account_credit_control_dunning_fees/i18n/en.po b/account_credit_control_dunning_fees/i18n/en.po deleted file mode 100644 index 9518fc32b..000000000 --- a/account_credit_control_dunning_fees/i18n/en.po +++ /dev/null @@ -1,106 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * account_credit_control_dunning_fees -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-07-01 13:25+0000\n" -"PO-Revision-Date: 2015-06-03 15:57+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: English (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/en/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: en\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: account_credit_control_dunning_fees -#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line -msgid "A credit control line" -msgstr "A credit control line" - -#. module: account_credit_control_dunning_fees -#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level -msgid "A credit control policy level" -msgstr "A credit control policy level" - -#. module: account_credit_control_dunning_fees -#: field:credit.control.dunning.fees.computer,create_uid:0 -msgid "Created by" -msgstr "Created by" - -#. module: account_credit_control_dunning_fees -#: field:credit.control.dunning.fees.computer,create_date:0 -msgid "Created on" -msgstr "Created on" - -#. module: account_credit_control_dunning_fees -#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run -msgid "Credit control line generator" -msgstr "Credit control line generator" - -#. module: account_credit_control_dunning_fees -#: help:credit.control.policy.level,dunning_currency_id:0 -msgid "" -"Currency of the dunning fees. If empty, it takes the company's currency." -msgstr "Currency of the dunning fees. If empty, it takes the company's currency." - -#. module: account_credit_control_dunning_fees -#: field:credit.control.line,dunning_fees_amount:0 -#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy -#: view:website:account_credit_control.report_credit_control_summary_document -msgid "Fees" -msgstr "Fees" - -#. module: account_credit_control_dunning_fees -#: field:credit.control.policy.level,dunning_fixed_amount:0 -msgid "Fees Fixed Amount" -msgstr "Fees Fixed Amount" - -#. module: account_credit_control_dunning_fees -#: field:credit.control.policy.level,dunning_product_id:0 -msgid "Fees Product" -msgstr "Fees Product" - -#. module: account_credit_control_dunning_fees -#: field:credit.control.policy.level,dunning_currency_id:0 -msgid "Fees currency" -msgstr "Fees currency" - -#. module: account_credit_control_dunning_fees -#: selection:credit.control.policy.level,dunning_fees_type:0 -msgid "Fixed" -msgstr "Fixed" - -#. module: account_credit_control_dunning_fees -#: field:credit.control.dunning.fees.computer,id:0 -msgid "ID" -msgstr "ID" - -#. module: account_credit_control_dunning_fees -#: field:credit.control.dunning.fees.computer,write_uid:0 -msgid "Last Updated by" -msgstr "Last Updated by" - -#. module: account_credit_control_dunning_fees -#: field:credit.control.dunning.fees.computer,write_date:0 -msgid "Last Updated on" -msgstr "Last Updated on" - -#. module: account_credit_control_dunning_fees -#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy -msgid "Mail and reporting" -msgstr "Mail and reporting" - -#. module: account_credit_control_dunning_fees -#: field:credit.control.policy.level,dunning_fees_type:0 -msgid "Type" -msgstr "Type" - -#. module: account_credit_control_dunning_fees -#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication -msgid "credit control communication" -msgstr "credit control communication" From e1a41ddbca9db30b24a230a22d476728c1839442 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Thu, 6 Oct 2016 14:46:03 +0200 Subject: [PATCH 14/18] [MIG] Rename manifest files OCA Transbot updated translations from Transifex --- .../{__openerp__.py => __manifest__.py} | 0 .../i18n/am.po | 106 +++++++++++++ .../i18n/ar.po | 121 +++++++++++++++ .../i18n/bg.po | 121 +++++++++++++++ .../i18n/bs.po | 121 +++++++++++++++ .../i18n/ca.po | 53 +++++-- .../i18n/cs.po | 121 +++++++++++++++ .../i18n/da.po | 121 +++++++++++++++ .../i18n/de.po | 46 ++++-- .../i18n/el_GR.po | 106 +++++++++++++ .../i18n/en_GB.po | 121 +++++++++++++++ .../i18n/es.po | 35 ++++- .../i18n/es_AR.po | 121 +++++++++++++++ .../i18n/es_CL.po | 121 +++++++++++++++ .../i18n/es_CO.po | 121 +++++++++++++++ .../i18n/es_CR.po | 121 +++++++++++++++ .../i18n/es_DO.po | 121 +++++++++++++++ .../i18n/es_EC.po | 121 +++++++++++++++ .../i18n/es_ES.po | 54 ++++++- .../i18n/es_MX.po | 121 +++++++++++++++ .../i18n/es_PE.po | 121 +++++++++++++++ .../i18n/es_PY.po | 121 +++++++++++++++ .../i18n/es_VE.po | 121 +++++++++++++++ .../i18n/et.po | 121 +++++++++++++++ .../i18n/eu.po | 121 +++++++++++++++ .../i18n/fa.po | 121 +++++++++++++++ .../i18n/fi.po | 146 ++++++++++++++++++ .../i18n/fr.po | 36 ++++- .../i18n/fr_CA.po | 121 +++++++++++++++ .../i18n/fr_CH.po | 121 +++++++++++++++ .../i18n/gl.po | 34 +++- .../i18n/he.po | 121 +++++++++++++++ .../i18n/hr.po | 133 ++++++++++++++++ .../i18n/hr_HR.po | 121 +++++++++++++++ .../i18n/hu.po | 121 +++++++++++++++ .../i18n/id.po | 121 +++++++++++++++ .../i18n/it.po | 39 ++++- .../i18n/ja.po | 121 +++++++++++++++ .../i18n/ko.po | 121 +++++++++++++++ .../i18n/lt.po | 121 +++++++++++++++ .../i18n/lt_LT.po | 121 +++++++++++++++ .../i18n/lv.po | 121 +++++++++++++++ .../i18n/mk.po | 121 +++++++++++++++ .../i18n/mn.po | 121 +++++++++++++++ .../i18n/nb.po | 121 +++++++++++++++ .../i18n/nb_NO.po | 121 +++++++++++++++ .../i18n/nl.po | 121 +++++++++++++++ .../i18n/nl_BE.po | 121 +++++++++++++++ .../i18n/pl.po | 121 +++++++++++++++ .../i18n/pt.po | 45 +++++- .../i18n/pt_BR.po | 121 +++++++++++++++ .../i18n/pt_PT.po | 134 ++++++++++++++++ .../i18n/ro.po | 121 +++++++++++++++ .../i18n/ru.po | 121 +++++++++++++++ .../i18n/sk.po | 121 +++++++++++++++ .../i18n/sr.po | 121 +++++++++++++++ .../i18n/sr@latin.po | 121 +++++++++++++++ .../i18n/sv.po | 121 +++++++++++++++ .../i18n/th.po | 121 +++++++++++++++ .../i18n/tr.po | 121 +++++++++++++++ .../i18n/tr_TR.po | 121 +++++++++++++++ .../i18n/uk.po | 121 +++++++++++++++ .../i18n/vi.po | 121 +++++++++++++++ .../i18n/vi_VN.po | 121 +++++++++++++++ .../i18n/zh_CN.po | 121 +++++++++++++++ .../i18n/zh_TW.po | 121 +++++++++++++++ 66 files changed, 7215 insertions(+), 44 deletions(-) rename account_credit_control_dunning_fees/{__openerp__.py => __manifest__.py} (100%) create mode 100644 account_credit_control_dunning_fees/i18n/am.po create mode 100644 account_credit_control_dunning_fees/i18n/ar.po create mode 100644 account_credit_control_dunning_fees/i18n/bg.po create mode 100644 account_credit_control_dunning_fees/i18n/bs.po create mode 100644 account_credit_control_dunning_fees/i18n/cs.po create mode 100644 account_credit_control_dunning_fees/i18n/da.po create mode 100644 account_credit_control_dunning_fees/i18n/el_GR.po create mode 100644 account_credit_control_dunning_fees/i18n/en_GB.po create mode 100644 account_credit_control_dunning_fees/i18n/es_AR.po create mode 100644 account_credit_control_dunning_fees/i18n/es_CL.po create mode 100644 account_credit_control_dunning_fees/i18n/es_CO.po create mode 100644 account_credit_control_dunning_fees/i18n/es_CR.po create mode 100644 account_credit_control_dunning_fees/i18n/es_DO.po create mode 100644 account_credit_control_dunning_fees/i18n/es_EC.po create mode 100644 account_credit_control_dunning_fees/i18n/es_MX.po create mode 100644 account_credit_control_dunning_fees/i18n/es_PE.po create mode 100644 account_credit_control_dunning_fees/i18n/es_PY.po create mode 100644 account_credit_control_dunning_fees/i18n/es_VE.po create mode 100644 account_credit_control_dunning_fees/i18n/et.po create mode 100644 account_credit_control_dunning_fees/i18n/eu.po create mode 100644 account_credit_control_dunning_fees/i18n/fa.po create mode 100644 account_credit_control_dunning_fees/i18n/fi.po create mode 100644 account_credit_control_dunning_fees/i18n/fr_CA.po create mode 100644 account_credit_control_dunning_fees/i18n/fr_CH.po create mode 100644 account_credit_control_dunning_fees/i18n/he.po create mode 100644 account_credit_control_dunning_fees/i18n/hr.po create mode 100644 account_credit_control_dunning_fees/i18n/hr_HR.po create mode 100644 account_credit_control_dunning_fees/i18n/hu.po create mode 100644 account_credit_control_dunning_fees/i18n/id.po create mode 100644 account_credit_control_dunning_fees/i18n/ja.po create mode 100644 account_credit_control_dunning_fees/i18n/ko.po create mode 100644 account_credit_control_dunning_fees/i18n/lt.po create mode 100644 account_credit_control_dunning_fees/i18n/lt_LT.po create mode 100644 account_credit_control_dunning_fees/i18n/lv.po create mode 100644 account_credit_control_dunning_fees/i18n/mk.po create mode 100644 account_credit_control_dunning_fees/i18n/mn.po create mode 100644 account_credit_control_dunning_fees/i18n/nb.po create mode 100644 account_credit_control_dunning_fees/i18n/nb_NO.po create mode 100644 account_credit_control_dunning_fees/i18n/nl.po create mode 100644 account_credit_control_dunning_fees/i18n/nl_BE.po create mode 100644 account_credit_control_dunning_fees/i18n/pl.po create mode 100644 account_credit_control_dunning_fees/i18n/pt_BR.po create mode 100644 account_credit_control_dunning_fees/i18n/pt_PT.po create mode 100644 account_credit_control_dunning_fees/i18n/ro.po create mode 100644 account_credit_control_dunning_fees/i18n/ru.po create mode 100644 account_credit_control_dunning_fees/i18n/sk.po create mode 100644 account_credit_control_dunning_fees/i18n/sr.po create mode 100644 account_credit_control_dunning_fees/i18n/sr@latin.po create mode 100644 account_credit_control_dunning_fees/i18n/sv.po create mode 100644 account_credit_control_dunning_fees/i18n/th.po create mode 100644 account_credit_control_dunning_fees/i18n/tr.po create mode 100644 account_credit_control_dunning_fees/i18n/tr_TR.po create mode 100644 account_credit_control_dunning_fees/i18n/uk.po create mode 100644 account_credit_control_dunning_fees/i18n/vi.po create mode 100644 account_credit_control_dunning_fees/i18n/vi_VN.po create mode 100644 account_credit_control_dunning_fees/i18n/zh_CN.po create mode 100644 account_credit_control_dunning_fees/i18n/zh_TW.po diff --git a/account_credit_control_dunning_fees/__openerp__.py b/account_credit_control_dunning_fees/__manifest__.py similarity index 100% rename from account_credit_control_dunning_fees/__openerp__.py rename to account_credit_control_dunning_fees/__manifest__.py diff --git a/account_credit_control_dunning_fees/i18n/am.po b/account_credit_control_dunning_fees/i18n/am.po new file mode 100644 index 000000000..921c27bf4 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/am.po @@ -0,0 +1,106 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-12-12 10:24+0000\n" +"PO-Revision-Date: 2015-06-03 15:57+0000\n" +"Last-Translator: <>\n" +"Language-Team: Amharic (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/ar.po b/account_credit_control_dunning_fees/i18n/ar.po new file mode 100644 index 000000000..282914ad2 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/ar.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-10-11 09:48+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Arabic (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "أنشئ بواسطة" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "أنشئ في" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "اسم العرض" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "المعرف" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "النوع" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/bg.po b/account_credit_control_dunning_fees/i18n/bg.po new file mode 100644 index 000000000..7e72b02b7 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/bg.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-11-25 14:57+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Създадено от" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Създадено на" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Име за Показване" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Последно обновено на" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Вид" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/bs.po b/account_credit_control_dunning_fees/i18n/bs.po new file mode 100644 index 000000000..b52ec117a --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/bs.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-10-11 09:51+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Bosnian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Kreirano" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Vrsta" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/ca.po b/account_credit_control_dunning_fees/i18n/ca.po index 8c2a54a63..52ba90ea2 100644 --- a/account_credit_control_dunning_fees/i18n/ca.po +++ b/account_credit_control_dunning_fees/i18n/ca.po @@ -3,13 +3,33 @@ # * account_credit_control_dunning_fees # # Translators: +# Ahmet Altinisik , 2015 +# Ahmet Altinisik , 2015 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# Bruno JOLIVEAU, 2015 +# Carles Antoli , 2015 +# Carles Antoli , 2015 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2012-2013 +# Hotellook, 2014 +# Jarmo Kortetjärvi , 2016 +# John Toro , 2015 +# Matjaž Mozetič , 2015-2016 +# Paolo Valier, 2016 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2015-2016 +# SaFi J. , 2015 +# Thomas A. Jaeger, 2015 +# yterrettaz, 2015 +# yterrettaz, 2015 msgid "" msgstr "" "Project-Id-Version: account-financial-tools (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-07-01 13:25+0000\n" -"PO-Revision-Date: 2015-06-03 15:57+0000\n" -"Last-Translator: <>\n" +"POT-Creation-Date: 2017-03-10 23:23+0000\n" +"PO-Revision-Date: 2017-04-04 15:55+0000\n" +"Last-Translator: OCA Transbot \n" "Language-Team: Catalan (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,15 +47,20 @@ msgstr "" msgid "A credit control policy level" msgstr "" +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + #. module: account_credit_control_dunning_fees #: field:credit.control.dunning.fees.computer,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Creat per" #. module: account_credit_control_dunning_fees #: field:credit.control.dunning.fees.computer,create_date:0 msgid "Created on" -msgstr "" +msgstr "Creat el" #. module: account_credit_control_dunning_fees #: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run @@ -48,6 +73,11 @@ msgid "" "Currency of the dunning fees. If empty, it takes the company's currency." msgstr "" +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Veure el nom" + #. module: account_credit_control_dunning_fees #: field:credit.control.line,dunning_fees_amount:0 #: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy @@ -73,22 +103,27 @@ msgstr "" #. module: account_credit_control_dunning_fees #: selection:credit.control.policy.level,dunning_fees_type:0 msgid "Fixed" -msgstr "" +msgstr "Fix " #. module: account_credit_control_dunning_fees #: field:credit.control.dunning.fees.computer,id:0 msgid "ID" -msgstr "" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Darrera modificació el" #. module: account_credit_control_dunning_fees #: field:credit.control.dunning.fees.computer,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Darrera Actualització per" #. module: account_credit_control_dunning_fees #: field:credit.control.dunning.fees.computer,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Darrera Actualització el" #. module: account_credit_control_dunning_fees #: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy diff --git a/account_credit_control_dunning_fees/i18n/cs.po b/account_credit_control_dunning_fees/i18n/cs.po new file mode 100644 index 000000000..c9ad565c9 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/cs.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-10-11 09:48+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Czech (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Vytvořil(a)" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Vytvořeno" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Zobrazovaný název" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Naposled upraveno" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Naposled upraveno" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Druh" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/da.po b/account_credit_control_dunning_fees/i18n/da.po new file mode 100644 index 000000000..aee2df528 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/da.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-10-11 09:50+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Danish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Oprettet af" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Oprettet den" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Vist navn" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "Id" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Type" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/de.po b/account_credit_control_dunning_fees/i18n/de.po index 097b76e39..7bee88e8d 100644 --- a/account_credit_control_dunning_fees/i18n/de.po +++ b/account_credit_control_dunning_fees/i18n/de.po @@ -3,13 +3,24 @@ # * account_credit_control_dunning_fees # # Translators: +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2010,2012,2014 +# Jarmo Kortetjärvi , 2016 +# Matjaž Mozetič , 2015 +# Paolo Valier, 2016 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2015-2017 +# SaFi J. , 2015 +# Thomas A. Jaeger, 2015 msgid "" msgstr "" "Project-Id-Version: account-financial-tools (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-07-01 13:25+0000\n" -"PO-Revision-Date: 2015-06-03 16:14+0000\n" -"Last-Translator: OCA Transbot \n" +"POT-Creation-Date: 2017-02-03 23:25+0000\n" +"PO-Revision-Date: 2017-02-09 15:58+0000\n" +"Last-Translator: Rudolf Schnapka \n" "Language-Team: German (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,15 +38,20 @@ msgstr "Ein Mahnposten" msgid "A credit control policy level" msgstr "Eine Mahnregelstufe" +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "Fälliger Saldo inkl. Gebühren" + #. module: account_credit_control_dunning_fees #: field:credit.control.dunning.fees.computer,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Erstellt von" #. module: account_credit_control_dunning_fees #: field:credit.control.dunning.fees.computer,create_date:0 msgid "Created on" -msgstr "" +msgstr "Erstellt am" #. module: account_credit_control_dunning_fees #: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run @@ -46,7 +62,12 @@ msgstr "Mahnpostenerzeuger" #: help:credit.control.policy.level,dunning_currency_id:0 msgid "" "Currency of the dunning fees. If empty, it takes the company's currency." -msgstr "" +msgstr "Währung der Mahngebühren. Wenn leer, wird die Hauswährung angenommen." + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Anzeigename" #. module: account_credit_control_dunning_fees #: field:credit.control.line,dunning_fees_amount:0 @@ -78,17 +99,22 @@ msgstr "Fest" #. module: account_credit_control_dunning_fees #: field:credit.control.dunning.fees.computer,id:0 msgid "ID" -msgstr "" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Zuletzt geändert am" #. module: account_credit_control_dunning_fees #: field:credit.control.dunning.fees.computer,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Zuletzt geändert von" #. module: account_credit_control_dunning_fees #: field:credit.control.dunning.fees.computer,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Zuletzt geändert am" #. module: account_credit_control_dunning_fees #: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy @@ -103,4 +129,4 @@ msgstr "Art" #. module: account_credit_control_dunning_fees #: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication msgid "credit control communication" -msgstr "" +msgstr "Mahn-Kommunikation" diff --git a/account_credit_control_dunning_fees/i18n/el_GR.po b/account_credit_control_dunning_fees/i18n/el_GR.po new file mode 100644 index 000000000..065268ba9 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/el_GR.po @@ -0,0 +1,106 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-12-05 01:25+0000\n" +"PO-Revision-Date: 2015-12-09 16:40+0000\n" +"Last-Translator: Goutoudis Kostas \n" +"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/el_GR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el_GR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "Κωδικός" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/en_GB.po b/account_credit_control_dunning_fees/i18n/en_GB.po new file mode 100644 index 000000000..d9d6ccee4 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/en_GB.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-10-11 09:48+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Created by" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Created on" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Display Name" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Type" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/es.po b/account_credit_control_dunning_fees/i18n/es.po index 28ce91b82..caec09345 100644 --- a/account_credit_control_dunning_fees/i18n/es.po +++ b/account_credit_control_dunning_fees/i18n/es.po @@ -3,13 +3,25 @@ # * account_credit_control_dunning_fees # # Translators: +# Ahmet Altinisik , 2013,2015 +# Ahmet Altinisik , 2015 +# Ahmet Altinisik , 2013 +# Antonio Trueba, 2016 +# FIRST AUTHOR , 2012-2014 +# Gustavo Lepri , 2015 +# Hotellook, 2014 +# Jarmo Kortetjärvi , 2016 +# Matjaž Mozetič , 2015-2016 +# Paolo Valier, 2016 +# Rudolf Schnapka , 2015-2016 +# Thomas A. Jaeger, 2015 msgid "" msgstr "" "Project-Id-Version: account-financial-tools (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-07-01 13:25+0000\n" -"PO-Revision-Date: 2015-06-03 15:57+0000\n" -"Last-Translator: <>\n" +"POT-Creation-Date: 2016-11-25 21:28+0000\n" +"PO-Revision-Date: 2016-12-16 00:24+0000\n" +"Last-Translator: OCA Transbot \n" "Language-Team: Spanish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,6 +39,11 @@ msgstr "" msgid "A credit control policy level" msgstr "" +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + #. module: account_credit_control_dunning_fees #: field:credit.control.dunning.fees.computer,create_uid:0 msgid "Created by" @@ -48,6 +65,11 @@ msgid "" "Currency of the dunning fees. If empty, it takes the company's currency." msgstr "" +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + #. module: account_credit_control_dunning_fees #: field:credit.control.line,dunning_fees_amount:0 #: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy @@ -73,13 +95,18 @@ msgstr "" #. module: account_credit_control_dunning_fees #: selection:credit.control.policy.level,dunning_fees_type:0 msgid "Fixed" -msgstr "" +msgstr "Fijo" #. module: account_credit_control_dunning_fees #: field:credit.control.dunning.fees.computer,id:0 msgid "ID" msgstr "ID" +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación el" + #. module: account_credit_control_dunning_fees #: field:credit.control.dunning.fees.computer,write_uid:0 msgid "Last Updated by" diff --git a/account_credit_control_dunning_fees/i18n/es_AR.po b/account_credit_control_dunning_fees/i18n/es_AR.po new file mode 100644 index 000000000..f6670d5f3 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/es_AR.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-10-11 09:49+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Tipo" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/es_CL.po b/account_credit_control_dunning_fees/i18n/es_CL.po new file mode 100644 index 000000000..d0b745951 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/es_CL.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 23:20+0000\n" +"PO-Revision-Date: 2016-12-27 08:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID (identificación)" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Tipo" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/es_CO.po b/account_credit_control_dunning_fees/i18n/es_CO.po new file mode 100644 index 000000000..40729af79 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/es_CO.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-10-11 09:49+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Colombia) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_CO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Creado" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Nombre Público" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Actualizado por" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Actualizado" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Tipo" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/es_CR.po b/account_credit_control_dunning_fees/i18n/es_CR.po new file mode 100644 index 000000000..757393af5 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/es_CR.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 23:20+0000\n" +"PO-Revision-Date: 2016-12-27 08:23+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Tipo" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/es_DO.po b/account_credit_control_dunning_fees/i18n/es_DO.po new file mode 100644 index 000000000..47f152c57 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/es_DO.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 23:20+0000\n" +"PO-Revision-Date: 2016-12-27 08:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_DO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_DO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Tipo" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/es_EC.po b/account_credit_control_dunning_fees/i18n/es_EC.po new file mode 100644 index 000000000..4c2e408ec --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/es_EC.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-10-11 09:48+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_EC/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID (identificación)" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Tipo" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/es_ES.po b/account_credit_control_dunning_fees/i18n/es_ES.po index 51d2c2525..456dd2a5d 100644 --- a/account_credit_control_dunning_fees/i18n/es_ES.po +++ b/account_credit_control_dunning_fees/i18n/es_ES.po @@ -3,13 +3,46 @@ # * account_credit_control_dunning_fees # # Translators: +# Ahmet Altinisik , 2015-2016 +# Antonio Trueba, 2016 +# bossnm11 , 2014 +# Carles Antoli , 2015 +# Chanseok Kang , 2014 +# Chul Park , 2015 +# danimaribeiro , 2016 +# David10000 , 2014 +# FIRST AUTHOR , 2012-2013 +# Gil , 2014 +# Guewen Baconnier , 2015 +# kmooc , 2015 +# Hongseob Lee , 2015 +# Hotellook, 2014 +# Jarmo Kortetjärvi , 2016 +# jeon , 2014 +# JiyeonLee , 2014 +# Jong-Dae Park , 2013 +# Kevin Min , 2015 +# KimKyudong , 2014 +# mariana1201 , 2014 +# Matjaž Mozetič , 2015-2016 +# Nicole , 2014 +# Paolo Valier, 2016 +# Pope, 2014 +# Rudolf Schnapka , 2015-2016 +# Sarina Canelake , 2014 +# Seok Jun Yoon , 2015 +# shin2012 , 2014 +# Sofce Dimitrijeva , 2013 +# Sujin Lee , 2014 +# Sunah Lim , 2013 +# Young C. Kim, 2015 msgid "" msgstr "" "Project-Id-Version: account-financial-tools (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-07-01 13:25+0000\n" -"PO-Revision-Date: 2015-06-03 15:57+0000\n" -"Last-Translator: <>\n" +"POT-Creation-Date: 2017-02-10 23:22+0000\n" +"PO-Revision-Date: 2017-02-16 15:55+0000\n" +"Last-Translator: OCA Transbot \n" "Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,6 +60,11 @@ msgstr "" msgid "A credit control policy level" msgstr "" +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + #. module: account_credit_control_dunning_fees #: field:credit.control.dunning.fees.computer,create_uid:0 msgid "Created by" @@ -48,6 +86,11 @@ msgid "" "Currency of the dunning fees. If empty, it takes the company's currency." msgstr "" +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Nombre para mostrar" + #. module: account_credit_control_dunning_fees #: field:credit.control.line,dunning_fees_amount:0 #: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy @@ -80,6 +123,11 @@ msgstr "" msgid "ID" msgstr "ID" +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + #. module: account_credit_control_dunning_fees #: field:credit.control.dunning.fees.computer,write_uid:0 msgid "Last Updated by" diff --git a/account_credit_control_dunning_fees/i18n/es_MX.po b/account_credit_control_dunning_fees/i18n/es_MX.po new file mode 100644 index 000000000..31be54fb3 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/es_MX.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-10-11 09:47+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Nombre desplegado" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima modificacion realizada" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualizacion por" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualización realizada" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Tipo" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/es_PE.po b/account_credit_control_dunning_fees/i18n/es_PE.po new file mode 100644 index 000000000..831f22a96 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/es_PE.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-10-11 09:50+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Actualizado última vez por" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Ultima Actualización" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Tipo" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/es_PY.po b/account_credit_control_dunning_fees/i18n/es_PY.po new file mode 100644 index 000000000..c0c9dcc51 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/es_PY.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-10-11 09:47+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Paraguay) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_PY/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PY\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Tipo" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/es_VE.po b/account_credit_control_dunning_fees/i18n/es_VE.po new file mode 100644 index 000000000..562e79ec0 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/es_VE.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-10-11 09:49+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Modificada por última vez" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualizacion en" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Tipo" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/et.po b/account_credit_control_dunning_fees/i18n/et.po new file mode 100644 index 000000000..a7b142499 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/et.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-10-11 09:48+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Estonian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Loonud" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Loodud" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Näidatav nimi" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Viimati muudetud" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Viimati uuendatud" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Tüüp" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/eu.po b/account_credit_control_dunning_fees/i18n/eu.po new file mode 100644 index 000000000..13a8d5fc0 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/eu.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-10-11 09:52+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Basque (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Nork sortua" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Created on" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Mota" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/fa.po b/account_credit_control_dunning_fees/i18n/fa.po new file mode 100644 index 000000000..301d85cd8 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/fa.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-10-11 09:49+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Persian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "ایجاد شده توسط" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "شناسه" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "تاریخ آخرین به‌روزرسانی" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "نوع" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/fi.po b/account_credit_control_dunning_fees/i18n/fi.po new file mode 100644 index 000000000..da08a3309 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/fi.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +# bossnm11 , 2014 +# Chanseok Kang , 2014 +# Chul Park , 2015 +# David10000 , 2014 +# FIRST AUTHOR , 2012 +# Gil , 2014 +# kmooc , 2015 +# Hongseob Lee , 2015 +# jeon , 2014 +# JiyeonLee , 2014 +# Jong-Dae Park , 2013 +# Gu Hong Min , 2015 +# KimKyudong , 2014 +# kmooc , 2015 +# mariana1201 , 2014 +# Nicole , 2014 +# Pope, 2014 +# SaFi J. , 2015 +# Sarina Canelake , 2014 +# Seok Jun Yoon , 2015 +# shin2012 , 2014 +# Sujin Lee , 2014 +# Sunah Lim , 2013 +# Young C. Kim, 2015 +# Young C. Kim, 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-10 23:23+0000\n" +"PO-Revision-Date: 2017-05-11 14:14+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Finnish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Luonut" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Luotu" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Nimi" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Viimeksi päivittänyt" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Tyyppi" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/fr.po b/account_credit_control_dunning_fees/i18n/fr.po index 495fdf767..eaa6acfc9 100644 --- a/account_credit_control_dunning_fees/i18n/fr.po +++ b/account_credit_control_dunning_fees/i18n/fr.po @@ -3,12 +3,29 @@ # * account_credit_control_dunning_fees # # Translators: +# Accounts-Payable - Alkemics, 2015 +# Ahmet Altinisik , 2015 +# Armando Vulcano Junior , 2015 +# Bruno JOLIVEAU, 2015 +# Chen-Do LU , 2015 +# Bole , 2015 +# FIRST AUTHOR , 2012-2014 +# François Breysse , 2015 +# Jarmo Kortetjärvi , 2016 +# llum.birque@gmail.com , 2015 +# Matjaž Mozetič , 2015-2016 +# Paolo Valier, 2016 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2016 +# SaFi J. , 2015 +# Thomas A. Jaeger, 2015 +# yterrettaz, 2015 msgid "" msgstr "" "Project-Id-Version: account-financial-tools (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-07-01 13:25+0000\n" -"PO-Revision-Date: 2015-07-06 09:59+0000\n" +"POT-Creation-Date: 2016-09-14 00:45+0000\n" +"PO-Revision-Date: 2016-09-16 21:46+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: French (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/fr/)\n" "MIME-Version: 1.0\n" @@ -27,6 +44,11 @@ msgstr "Ligne de relance" msgid "A credit control policy level" msgstr "Une politique de relance" +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + #. module: account_credit_control_dunning_fees #: field:credit.control.dunning.fees.computer,create_uid:0 msgid "Created by" @@ -48,6 +70,11 @@ msgid "" "Currency of the dunning fees. If empty, it takes the company's currency." msgstr "" +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Nom à afficher" + #. module: account_credit_control_dunning_fees #: field:credit.control.line,dunning_fees_amount:0 #: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy @@ -80,6 +107,11 @@ msgstr "Fixe" msgid "ID" msgstr "ID" +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Dernière modification le" + #. module: account_credit_control_dunning_fees #: field:credit.control.dunning.fees.computer,write_uid:0 msgid "Last Updated by" diff --git a/account_credit_control_dunning_fees/i18n/fr_CA.po b/account_credit_control_dunning_fees/i18n/fr_CA.po new file mode 100644 index 000000000..9c4facb25 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/fr_CA.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 23:20+0000\n" +"PO-Revision-Date: 2016-12-27 08:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: French (Canada) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/fr_CA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CA\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Créé par" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Créé le" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "Identifiant" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/fr_CH.po b/account_credit_control_dunning_fees/i18n/fr_CH.po new file mode 100644 index 000000000..68fe89c64 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/fr_CH.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 21:28+0000\n" +"PO-Revision-Date: 2016-12-01 10:10+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/fr_CH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CH\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Créé par" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Créé le" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Nom affiché" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Modifié par" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Modifié le" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/gl.po b/account_credit_control_dunning_fees/i18n/gl.po index c55477475..b002f090b 100644 --- a/account_credit_control_dunning_fees/i18n/gl.po +++ b/account_credit_control_dunning_fees/i18n/gl.po @@ -3,13 +3,26 @@ # * account_credit_control_dunning_fees # # Translators: +# Ahmet Altinisik , 2015-2016 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# Bole , 2015 +# FIRST AUTHOR , 2012-2014 +# Gustavo Lepri , 2015 +# Jarmo Kortetjärvi , 2016 +# John Toro , 2015 +# llum.birque@gmail.com , 2015 +# Matjaž Mozetič , 2015-2016 +# Paolo Valier, 2016 +# Rudolf Schnapka , 2016 +# Thomas A. Jaeger, 2015 msgid "" msgstr "" "Project-Id-Version: account-financial-tools (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-07-01 13:25+0000\n" -"PO-Revision-Date: 2015-06-03 15:57+0000\n" -"Last-Translator: <>\n" +"POT-Creation-Date: 2016-09-14 00:45+0000\n" +"PO-Revision-Date: 2016-09-09 12:25+0000\n" +"Last-Translator: OCA Transbot \n" "Language-Team: Galician (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,6 +40,11 @@ msgstr "" msgid "A credit control policy level" msgstr "" +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + #. module: account_credit_control_dunning_fees #: field:credit.control.dunning.fees.computer,create_uid:0 msgid "Created by" @@ -48,6 +66,11 @@ msgid "" "Currency of the dunning fees. If empty, it takes the company's currency." msgstr "" +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "" + #. module: account_credit_control_dunning_fees #: field:credit.control.line,dunning_fees_amount:0 #: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy @@ -80,6 +103,11 @@ msgstr "" msgid "ID" msgstr "ID" +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación" + #. module: account_credit_control_dunning_fees #: field:credit.control.dunning.fees.computer,write_uid:0 msgid "Last Updated by" diff --git a/account_credit_control_dunning_fees/i18n/he.po b/account_credit_control_dunning_fees/i18n/he.po new file mode 100644 index 000000000..b293b440b --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/he.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-10-11 09:51+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Hebrew (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "נוצר על ידי" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "נוצר ב-" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "השם המוצג" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "מזהה" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "תאריך שינוי אחרון" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "עודכן לאחרונה על ידי" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "עודכן לאחרונה על" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "סוג" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/hr.po b/account_credit_control_dunning_fees/i18n/hr.po new file mode 100644 index 000000000..24dcaff74 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/hr.po @@ -0,0 +1,133 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +# Ahmet Altinisik , 2016 +# Ahmet Altinisik , 2016 +# Carles Antoli , 2016 +# Carles Antoli , 2016 +# Christophe CHAUVET , 2015 +# Christophe CHAUVET , 2015 +# FIRST AUTHOR , 2012 +# Matjaž Mozetič , 2015 +# Paolo Valier, 2016 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2016 +# SaFi J. , 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-11-25 14:56+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Croatian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Kreirano" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Prikaži ime" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnja izmjena dana" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Zadnje ažurirano dana" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Tip" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/hr_HR.po b/account_credit_control_dunning_fees/i18n/hr_HR.po new file mode 100644 index 000000000..1c522bded --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/hr_HR.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-24 00:47+0000\n" +"PO-Revision-Date: 2016-10-05 06:29+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/hr_HR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr_HR\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Kreirano" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Naziv" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/hu.po b/account_credit_control_dunning_fees/i18n/hu.po new file mode 100644 index 000000000..d1821ec05 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/hu.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 21:28+0000\n" +"PO-Revision-Date: 2016-12-22 14:06+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Hungarian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Készítette" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Létrehozás dátuma" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Utolsó frissítés dátuma" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Utoljára frissítve, által" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Utoljára frissítve " + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Típus" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/id.po b/account_credit_control_dunning_fees/i18n/id.po new file mode 100644 index 000000000..e6dcc9736 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/id.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 23:20+0000\n" +"PO-Revision-Date: 2016-12-27 08:22+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Indonesian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Dibuat pada" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Terakhir Dimodifikasi pada" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Diperbaharui oleh" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Diperbaharui pada" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Jenis" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/it.po b/account_credit_control_dunning_fees/i18n/it.po index 58d01794a..5adcc035e 100644 --- a/account_credit_control_dunning_fees/i18n/it.po +++ b/account_credit_control_dunning_fees/i18n/it.po @@ -3,13 +3,27 @@ # * account_credit_control_dunning_fees # # Translators: +# Ahmet Altinisik , 2016 +# Antonio Trueba, 2016 +# Bole , 2015 +# Carles Antoli , 2016 +# Carles Antoli , 2016 +# Christophe CHAUVET , 2015 +# Christophe CHAUVET , 2015 +# Bole , 2015 +# FIRST AUTHOR , 2011-2012,2014 +# Matjaž Mozetič , 2015 +# Paolo Valier, 2016 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2016 +# SaFi J. , 2015 msgid "" msgstr "" "Project-Id-Version: account-financial-tools (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-07-01 13:25+0000\n" -"PO-Revision-Date: 2015-06-03 15:57+0000\n" -"Last-Translator: <>\n" +"POT-Creation-Date: 2016-09-14 00:45+0000\n" +"PO-Revision-Date: 2016-09-09 12:24+0000\n" +"Last-Translator: OCA Transbot \n" "Language-Team: Italian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,11 +34,16 @@ msgstr "" #. module: account_credit_control_dunning_fees #: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line msgid "A credit control line" -msgstr "" +msgstr "Riga controllo di credito" #. module: account_credit_control_dunning_fees #: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level msgid "A credit control policy level" +msgstr "Livello del controllo credito" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" msgstr "" #. module: account_credit_control_dunning_fees @@ -48,6 +67,11 @@ msgid "" "Currency of the dunning fees. If empty, it takes the company's currency." msgstr "" +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Nome da visualizzare" + #. module: account_credit_control_dunning_fees #: field:credit.control.line,dunning_fees_amount:0 #: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy @@ -80,6 +104,11 @@ msgstr "" msgid "ID" msgstr "ID" +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima modifica il" + #. module: account_credit_control_dunning_fees #: field:credit.control.dunning.fees.computer,write_uid:0 msgid "Last Updated by" @@ -93,7 +122,7 @@ msgstr "Last Updated on" #. module: account_credit_control_dunning_fees #: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy msgid "Mail and reporting" -msgstr "" +msgstr "Mail e report" #. module: account_credit_control_dunning_fees #: field:credit.control.policy.level,dunning_fees_type:0 diff --git a/account_credit_control_dunning_fees/i18n/ja.po b/account_credit_control_dunning_fees/i18n/ja.po new file mode 100644 index 000000000..95b068da2 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/ja.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-10-11 09:51+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Japanese (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "作成者" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "作成日" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "表示名" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "タイプ" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/ko.po b/account_credit_control_dunning_fees/i18n/ko.po new file mode 100644 index 000000000..e6b4afc66 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/ko.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-10-11 09:51+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Korean (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "작성자" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "작성일" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "표시 이름" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "유형" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/lt.po b/account_credit_control_dunning_fees/i18n/lt.po new file mode 100644 index 000000000..8e0f98d16 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/lt.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-10-11 09:51+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Sukūrė" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Sukurta" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Tipas" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/lt_LT.po b/account_credit_control_dunning_fees/i18n/lt_LT.po new file mode 100644 index 000000000..afd77bd5f --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/lt_LT.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 23:20+0000\n" +"PO-Revision-Date: 2016-12-27 08:22+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/lt_LT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt_LT\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Sukūrė" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Sukurta" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/lv.po b/account_credit_control_dunning_fees/i18n/lv.po new file mode 100644 index 000000000..cf4c6a64c --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/lv.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-10-11 09:48+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Latvian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Izveidoja" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Izveidots" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Pēdējo reizi atjaunoja" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Pēdējās izmaiņas" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Tips" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/mk.po b/account_credit_control_dunning_fees/i18n/mk.po new file mode 100644 index 000000000..9ab193706 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/mk.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-10-11 09:50+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Macedonian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Креирано од" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Креирано на" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Прикажи име" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Последна промена на" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Последно ажурирање од" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Последно ажурирање на" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Тип" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/mn.po b/account_credit_control_dunning_fees/i18n/mn.po new file mode 100644 index 000000000..855f9bb31 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/mn.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-10-11 09:52+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Mongolian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Үүсгэгч" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Үүсгэсэн" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Сүүлийн засвар хийсэн" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Төрөл" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/nb.po b/account_credit_control_dunning_fees/i18n/nb.po new file mode 100644 index 000000000..0090a9cd3 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/nb.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-10-11 09:52+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Opprettet av" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Opprettet den" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Visnings navn" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Sist oppdatert " + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Type" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/nb_NO.po b/account_credit_control_dunning_fees/i18n/nb_NO.po new file mode 100644 index 000000000..e139c92db --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/nb_NO.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 23:20+0000\n" +"PO-Revision-Date: 2016-12-27 08:26+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/nb_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Laget av" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Laget den" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Vis navn" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Sist endret den" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Sist oppdatert den" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/nl.po b/account_credit_control_dunning_fees/i18n/nl.po new file mode 100644 index 000000000..e9f18c866 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/nl.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-11-22 12:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Dutch (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Te tonen naam" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Type" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/nl_BE.po b/account_credit_control_dunning_fees/i18n/nl_BE.po new file mode 100644 index 000000000..d7626cd3a --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/nl_BE.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-10-11 09:47+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/nl_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Gemaakt door" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Gemaakt op" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Schermnaam" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Laatst Aangepast op" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Type" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/pl.po b/account_credit_control_dunning_fees/i18n/pl.po new file mode 100644 index 000000000..eadf2aee3 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/pl.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-10-11 09:51+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Polish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Utworzone przez" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Utworzono" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Wyświetlana nazwa " + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Ostatnio modyfikowano" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Ostatnio modyfikowane przez" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Ostatnia zmiana" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Typ" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/pt.po b/account_credit_control_dunning_fees/i18n/pt.po index 1cee051f3..872117d43 100644 --- a/account_credit_control_dunning_fees/i18n/pt.po +++ b/account_credit_control_dunning_fees/i18n/pt.po @@ -3,13 +3,27 @@ # * account_credit_control_dunning_fees # # Translators: +# Ahmet Altinisik , 2015 +# Alejandro Santana , 2015 +# Antonio Trueba, 2016 +# Bruno JOLIVEAU, 2015 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2010-2013 +# Hotellook, 2014 +# Jarmo Kortetjärvi , 2016 +# Leonardo J. Caballero G. , 2016 +# Matjaž Mozetič , 2015-2016 +# Paolo Valier, 2016 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2015-2016 +# yterrettaz, 2015 msgid "" msgstr "" "Project-Id-Version: account-financial-tools (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-07-01 13:25+0000\n" -"PO-Revision-Date: 2015-06-03 15:57+0000\n" -"Last-Translator: <>\n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-11-25 14:58+0000\n" +"Last-Translator: OCA Transbot \n" "Language-Team: Portuguese (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,15 +41,20 @@ msgstr "" msgid "A credit control policy level" msgstr "" +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + #. module: account_credit_control_dunning_fees #: field:credit.control.dunning.fees.computer,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Criado por" #. module: account_credit_control_dunning_fees #: field:credit.control.dunning.fees.computer,create_date:0 msgid "Created on" -msgstr "" +msgstr "Criado em" #. module: account_credit_control_dunning_fees #: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run @@ -48,6 +67,11 @@ msgid "" "Currency of the dunning fees. If empty, it takes the company's currency." msgstr "" +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Nome" + #. module: account_credit_control_dunning_fees #: field:credit.control.line,dunning_fees_amount:0 #: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy @@ -78,17 +102,22 @@ msgstr "" #. module: account_credit_control_dunning_fees #: field:credit.control.dunning.fees.computer,id:0 msgid "ID" -msgstr "" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Modificado a última vez por" #. module: account_credit_control_dunning_fees #: field:credit.control.dunning.fees.computer,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Atualizado pela última vez por" #. module: account_credit_control_dunning_fees #: field:credit.control.dunning.fees.computer,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Atualizado pela última vez em" #. module: account_credit_control_dunning_fees #: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy diff --git a/account_credit_control_dunning_fees/i18n/pt_BR.po b/account_credit_control_dunning_fees/i18n/pt_BR.po new file mode 100644 index 000000000..0d900f5c9 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/pt_BR.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-24 00:47+0000\n" +"PO-Revision-Date: 2016-10-04 09:43+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Criado por" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Criado em" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Nome para Mostrar" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "Identificação" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Última atualização em" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Última atualização por" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Última atualização em" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Tipo" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/pt_PT.po b/account_credit_control_dunning_fees/i18n/pt_PT.po new file mode 100644 index 000000000..3da6ee292 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/pt_PT.po @@ -0,0 +1,134 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +# Ahmet Altınışık , 2016 +# Antonio Trueba, 2016 +# Christophe CHAUVET , 2015 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2012-2013 +# Hotellook, 2014 +# Isabelle RICHARD , 2015 +# Jarmo Kortetjärvi , 2016 +# John Toro , 2015 +# LS Development , 2016 +# Matjaž Mozetič , 2015-2016 +# Rudolf Schnapka , 2015 +# SaFi J. , 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-05-21 00:52+0000\n" +"PO-Revision-Date: 2016-05-22 18:16+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Criado por" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Criado em" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Nome a exibir" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Modificado pela última vez em" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Tipo" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/ro.po b/account_credit_control_dunning_fees/i18n/ro.po new file mode 100644 index 000000000..ad04ece53 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/ro.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 23:20+0000\n" +"PO-Revision-Date: 2016-12-27 08:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Romanian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Creat de" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Creat la" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Nume Afişat" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima actualizare în" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualizare făcută de" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualizare la" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/ru.po b/account_credit_control_dunning_fees/i18n/ru.po new file mode 100644 index 000000000..d6915d646 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/ru.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 23:20+0000\n" +"PO-Revision-Date: 2016-12-27 08:22+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Russian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Создано" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Создан" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Последний раз обновлено" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Последний раз обновлено" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/sk.po b/account_credit_control_dunning_fees/i18n/sk.po new file mode 100644 index 000000000..6ce6db88b --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/sk.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-11-22 16:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Slovak (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Vytvoril" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Vytvorené" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Zobraziť meno" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Posledná modifikácia" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Naposledy upravil" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Naposledy upravené" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Typ" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/sr.po b/account_credit_control_dunning_fees/i18n/sr.po new file mode 100644 index 000000000..2371fcdc4 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/sr.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 23:20+0000\n" +"PO-Revision-Date: 2016-12-27 08:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Serbian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Kreiran" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Tip" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/sr@latin.po b/account_credit_control_dunning_fees/i18n/sr@latin.po new file mode 100644 index 000000000..f04fcdf1d --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/sr@latin.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-10-11 09:49+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Serbian (Latin) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/sr@latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Kreiran" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Ime za prikaz" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnja izmjena" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Zadnja izmjena" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Tip" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/sv.po b/account_credit_control_dunning_fees/i18n/sv.po new file mode 100644 index 000000000..4dbfa8485 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/sv.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-10-11 09:53+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Swedish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Skapad av" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Skapad den" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Visa namn" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Senast uppdaterad" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Typ" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/th.po b/account_credit_control_dunning_fees/i18n/th.po new file mode 100644 index 000000000..5304e67a1 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/th.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-10-11 09:49+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Thai (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "สร้างโดย" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "รหัส" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "อัพเดทครั้งสุดท้ายโดย" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "ชนิด" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/tr.po b/account_credit_control_dunning_fees/i18n/tr.po new file mode 100644 index 000000000..34214ee97 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/tr.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 23:20+0000\n" +"PO-Revision-Date: 2016-12-30 21:21+0000\n" +"Last-Translator: Ahmet Altinisik \n" +"Language-Team: Turkish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Oluşturan" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Oluşturuldu" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Görünen İsim" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Son değişiklik" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Son güncelleyen" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Son güncelleme" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Tipi" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/tr_TR.po b/account_credit_control_dunning_fees/i18n/tr_TR.po new file mode 100644 index 000000000..d6633ddfc --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/tr_TR.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-30 23:29+0000\n" +"PO-Revision-Date: 2017-01-04 14:44+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Oluşturan" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Oluşturulma tarihi" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Görünen ad" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "Kimlik" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "En son güncelleme tarihi" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "En son güncelleyen " + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "En son güncelleme tarihi" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Tip" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/uk.po b/account_credit_control_dunning_fees/i18n/uk.po new file mode 100644 index 000000000..24823cf58 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/uk.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-10-11 09:51+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Ukrainian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Створив" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Дата створення" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Остання модифікація" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Тип" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/vi.po b/account_credit_control_dunning_fees/i18n/vi.po new file mode 100644 index 000000000..028ca9476 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/vi.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-10-11 09:47+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Vietnamese (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Được tạo bởi" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Được tạo vào" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "Loại" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/vi_VN.po b/account_credit_control_dunning_fees/i18n/vi_VN.po new file mode 100644 index 000000000..68f51a088 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/vi_VN.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 23:20+0000\n" +"PO-Revision-Date: 2016-12-27 08:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "Tạo bởi" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "Tạo vào" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "Cập nhật lần cuối bởi" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/zh_CN.po b/account_credit_control_dunning_fees/i18n/zh_CN.po new file mode 100644 index 000000000..64470fdc8 --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/zh_CN.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-11-25 14:56+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "创建者" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "创建时间" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "显示名称" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "最后修改时间" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "最后更新者" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "上次更新日期" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "类型" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" diff --git a/account_credit_control_dunning_fees/i18n/zh_TW.po b/account_credit_control_dunning_fees/i18n/zh_TW.po new file mode 100644 index 000000000..f13329f9e --- /dev/null +++ b/account_credit_control_dunning_fees/i18n/zh_TW.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_credit_control_dunning_fees +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-10-11 09:52+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line +msgid "A credit control line" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level +msgid "A credit control policy level" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,balance_due_total:0 +msgid "Balance due with fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_uid:0 +msgid "Created by" +msgstr "建立者" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,create_date:0 +msgid "Created on" +msgstr "建立於" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run +msgid "Credit control line generator" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: help:credit.control.policy.level,dunning_currency_id:0 +msgid "" +"Currency of the dunning fees. If empty, it takes the company's currency." +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,display_name:0 +msgid "Display Name" +msgstr "顯示名稱" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.line,dunning_fees_amount:0 +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +#: view:website:account_credit_control.report_credit_control_summary_document +msgid "Fees" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fixed_amount:0 +msgid "Fees Fixed Amount" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_product_id:0 +msgid "Fees Product" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_currency_id:0 +msgid "Fees currency" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: selection:credit.control.policy.level,dunning_fees_type:0 +msgid "Fixed" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,id:0 +msgid "ID" +msgstr "編號" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,__last_update:0 +msgid "Last Modified on" +msgstr "最後修改:" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_uid:0 +msgid "Last Updated by" +msgstr "最後更新:" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.dunning.fees.computer,write_date:0 +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: account_credit_control_dunning_fees +#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy +msgid "Mail and reporting" +msgstr "" + +#. module: account_credit_control_dunning_fees +#: field:credit.control.policy.level,dunning_fees_type:0 +msgid "Type" +msgstr "類型" + +#. module: account_credit_control_dunning_fees +#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication +msgid "credit control communication" +msgstr "" From 28f3db739a3a56a089d1e987278ddb747da1b709 Mon Sep 17 00:00:00 2001 From: Akim Juillerat Date: Wed, 24 May 2017 13:35:32 +0200 Subject: [PATCH 15/18] [MIG] account_credit_control_dunning_fees: Migration to 10.0 --- .../README.rst | 76 ++++++++++++++++--- .../__init__.py | 20 ----- .../__manifest__.py | 30 ++------ .../model/__init__.py | 20 ----- .../model/dunning.py | 23 +----- .../model/line.py | 23 +----- .../model/policy.py | 23 +----- .../model/run.py | 23 +----- .../report/report_credit_control_summary.xml | 38 +++++----- .../tests/__init__.py | 20 ----- .../tests/test_fees_generation.py | 23 +----- .../view/line_view.xml | 47 ++++++------ .../view/policy_view.xml | 36 +++++---- .../wizard/__init__.py | 22 ------ .../wizard/credit_control_communication.py | 25 +----- 15 files changed, 147 insertions(+), 302 deletions(-) diff --git a/account_credit_control_dunning_fees/README.rst b/account_credit_control_dunning_fees/README.rst index cf5866f0b..ae9171b00 100644 --- a/account_credit_control_dunning_fees/README.rst +++ b/account_credit_control_dunning_fees/README.rst @@ -1,12 +1,21 @@ -Dunning Fees for Credit Control -=============================== +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 -This extention of credit control adds the notion of dunning fees -on credit control lines. +=========================== +Credit control dunning fees +=========================== + +This module extends the functionality of account_credit_control to add +the notion of dunning fees on credit control lines. + +Installation +============ + +Just install it. Configuration -------------- -For release 0.1 only fixed fees are supported. +============= You can specifiy a fixed fees amount, a product and a currency on the credit control level form. @@ -18,13 +27,60 @@ the credit control line currency. The product is used to compute taxes in reconciliation process. -Run ---- +.. figure:: path/to/local/image.png + :alt: alternative description + :width: 600 px + +Usage +===== + Fees are automatically computed on credit run and saved on the generated credit lines. Fees can be manually edited as long credit line is draft -Credit control Summary report includes a new fees column --------------------------------------------------------- +Credit control Summary report includes a new fees column: Support of fees price list + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/92/10.0 + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smash it by providing detailed and welcomed feedback. + +Credits +======= + +Images +------ + +* Odoo Community Association: `Icon `_. + +Contributors +------------ + +* Nicolas Bessi (Camptocamp) +* Guewen Baconnier +* Adrien Peiffer (acsone) +* Akim Juillerat + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit https://odoo-community.org. diff --git a/account_credit_control_dunning_fees/__init__.py b/account_credit_control_dunning_fees/__init__.py index a485290c7..b60c2d2e6 100644 --- a/account_credit_control_dunning_fees/__init__.py +++ b/account_credit_control_dunning_fees/__init__.py @@ -1,22 +1,2 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Author: Nicolas Bessi -# Copyright 2014 Camptocamp SA -# -# 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 . -# -############################################################################## from . import model from . import wizard diff --git a/account_credit_control_dunning_fees/__manifest__.py b/account_credit_control_dunning_fees/__manifest__.py index 6f0543e18..cf1c289ba 100644 --- a/account_credit_control_dunning_fees/__manifest__.py +++ b/account_credit_control_dunning_fees/__manifest__.py @@ -1,26 +1,7 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# Author: Nicolas Bessi -# Copyright 2014 Camptocamp SA -# -# 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 . -# -############################################################################## {'name': 'Credit control dunning fees', - 'version': '8.0.0.1.0', - 'author': "Camptocamp,Odoo Community Association (OCA)", + 'version': '10.0.1.0.0', + 'author': "Camptocamp, Odoo Community Association (OCA)", 'maintainer': 'Camptocamp', 'category': 'Accounting', 'complexity': 'normal', @@ -31,9 +12,8 @@ 'report/report_credit_control_summary.xml', 'security/ir.model.access.csv', ], - 'demo': [], - 'test': [], - 'installable': False, + 'installable': True, 'auto_install': False, 'license': 'AGPL-3', - 'application': False} + 'application': False + } diff --git a/account_credit_control_dunning_fees/model/__init__.py b/account_credit_control_dunning_fees/model/__init__.py index c9a69427a..8e647e965 100644 --- a/account_credit_control_dunning_fees/model/__init__.py +++ b/account_credit_control_dunning_fees/model/__init__.py @@ -1,23 +1,3 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Author: Nicolas Bessi -# Copyright 2014 Camptocamp SA -# -# 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 . -# -############################################################################## from . import line from . import policy from . import run diff --git a/account_credit_control_dunning_fees/model/dunning.py b/account_credit_control_dunning_fees/model/dunning.py index 949ae2d83..02edbc632 100644 --- a/account_credit_control_dunning_fees/model/dunning.py +++ b/account_credit_control_dunning_fees/model/dunning.py @@ -1,24 +1,7 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# Author: Nicolas Bessi -# Copyright 2014 Camptocamp SA -# -# 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 . -# -############################################################################## -from openerp import models, api +# Copyright 2014-2017 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +from odoo import models, api class FeesComputer(models.BaseModel): diff --git a/account_credit_control_dunning_fees/model/line.py b/account_credit_control_dunning_fees/model/line.py index 23803ebac..aa2a0f52c 100644 --- a/account_credit_control_dunning_fees/model/line.py +++ b/account_credit_control_dunning_fees/model/line.py @@ -1,24 +1,7 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# Author: Nicolas Bessi -# Copyright 2014 Camptocamp SA -# -# 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 . -# -############################################################################## -from openerp import models, fields, api +# Copyright 2014-2017 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +from odoo import models, fields, api class CreditControlLine(models.Model): diff --git a/account_credit_control_dunning_fees/model/policy.py b/account_credit_control_dunning_fees/model/policy.py index d85c0c16a..03bf64fb0 100644 --- a/account_credit_control_dunning_fees/model/policy.py +++ b/account_credit_control_dunning_fees/model/policy.py @@ -1,24 +1,7 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# Author: Nicolas Bessi -# Copyright 2014 Camptocamp SA -# -# 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 . -# -############################################################################## -from openerp import models, fields +# Copyright 2014-2017 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +from odoo import models, fields class CreditControlPolicy(models.Model): diff --git a/account_credit_control_dunning_fees/model/run.py b/account_credit_control_dunning_fees/model/run.py index f1d9eb49d..28ea3c23a 100644 --- a/account_credit_control_dunning_fees/model/run.py +++ b/account_credit_control_dunning_fees/model/run.py @@ -1,24 +1,7 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# Author: Nicolas Bessi -# Copyright 2014 Camptocamp SA -# -# 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 . -# -############################################################################## -from openerp import models, api +# Copyright 2014-2017 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +from odoo import models, api class CreditControlRun(models.Model): diff --git a/account_credit_control_dunning_fees/report/report_credit_control_summary.xml b/account_credit_control_dunning_fees/report/report_credit_control_summary.xml index e58ad2d9b..e4b99b39b 100644 --- a/account_credit_control_dunning_fees/report/report_credit_control_summary.xml +++ b/account_credit_control_dunning_fees/report/report_credit_control_summary.xml @@ -1,22 +1,20 @@ - - - + + - - + diff --git a/account_credit_control_dunning_fees/tests/__init__.py b/account_credit_control_dunning_fees/tests/__init__.py index 2d29024d5..62c86b3f6 100644 --- a/account_credit_control_dunning_fees/tests/__init__.py +++ b/account_credit_control_dunning_fees/tests/__init__.py @@ -1,21 +1 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Author: Nicolas Bessi -# Copyright 2014 Camptocamp SA -# -# 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 . -# -############################################################################## from . import test_fees_generation diff --git a/account_credit_control_dunning_fees/tests/test_fees_generation.py b/account_credit_control_dunning_fees/tests/test_fees_generation.py index 924451409..0a608c63d 100644 --- a/account_credit_control_dunning_fees/tests/test_fees_generation.py +++ b/account_credit_control_dunning_fees/tests/test_fees_generation.py @@ -1,24 +1,7 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# Author: Nicolas Bessi -# Copyright 2014 Camptocamp SA -# -# 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 . -# -############################################################################## -from openerp.tests import common +# Copyright 2014-2017 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +from odoo.tests import common class FixedFeesTester(common.TransactionCase): diff --git a/account_credit_control_dunning_fees/view/line_view.xml b/account_credit_control_dunning_fees/view/line_view.xml index 9d4688bd5..9fa46e638 100644 --- a/account_credit_control_dunning_fees/view/line_view.xml +++ b/account_credit_control_dunning_fees/view/line_view.xml @@ -1,30 +1,29 @@ - - + - - add fees on credit control line - credit.control.line - - - - - + + add fees on credit control line + credit.control.line + + + + - + + - - add fees on credit control line form - credit.control.line - - - - - + + add fees on credit control line form + credit.control.line + + + + - + + - - + + diff --git a/account_credit_control_dunning_fees/view/policy_view.xml b/account_credit_control_dunning_fees/view/policy_view.xml index 968b51fa4..5c52ec569 100644 --- a/account_credit_control_dunning_fees/view/policy_view.xml +++ b/account_credit_control_dunning_fees/view/policy_view.xml @@ -1,24 +1,22 @@ - - - - add dunning fees on policy - credit.control.policy - - - - + + + add dunning fees on policy + credit.control.policy + + + + + - - - - - + + + - + - - + + + - - + diff --git a/account_credit_control_dunning_fees/wizard/__init__.py b/account_credit_control_dunning_fees/wizard/__init__.py index b400e6315..99ac21a05 100644 --- a/account_credit_control_dunning_fees/wizard/__init__.py +++ b/account_credit_control_dunning_fees/wizard/__init__.py @@ -1,23 +1 @@ -# -*- coding: utf-8 -*- -# -############################################################################## -# -# Authors: Adrien Peiffer -# Copyright (c) 2015 Acsone SA/NV (http://www.acsone.eu) -# -# 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 . -# -############################################################################## - from . import credit_control_communication diff --git a/account_credit_control_dunning_fees/wizard/credit_control_communication.py b/account_credit_control_dunning_fees/wizard/credit_control_communication.py index 99669b612..ba1285688 100644 --- a/account_credit_control_dunning_fees/wizard/credit_control_communication.py +++ b/account_credit_control_dunning_fees/wizard/credit_control_communication.py @@ -1,26 +1,7 @@ # -*- coding: utf-8 -*- -# -############################################################################## -# -# Authors: Adrien Peiffer -# Copyright (c) 2015 Acsone SA/NV (http://www.acsone.eu) -# -# 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 . -# -############################################################################## - -from openerp import models, api +# Copyright 2014-2017 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +from odoo import models, api class CreditCommunication(models.TransientModel): From f9b4defee35c3825e9d0fce62a6d563d64a1fa08 Mon Sep 17 00:00:00 2001 From: Akim Juillerat Date: Fri, 2 Feb 2018 12:05:07 +0100 Subject: [PATCH 16/18] [MIG] account_credit_control_dunning_fees : Migration to 11.0 --- account_credit_control_dunning_fees/README.rst | 8 ++------ account_credit_control_dunning_fees/__manifest__.py | 7 ++++--- account_credit_control_dunning_fees/model/dunning.py | 1 - account_credit_control_dunning_fees/model/line.py | 1 - account_credit_control_dunning_fees/model/policy.py | 1 - account_credit_control_dunning_fees/model/run.py | 1 - .../report/report_credit_control_summary.xml | 2 +- .../tests/test_fees_generation.py | 1 - .../view/policy_view.xml | 10 ++++------ .../wizard/credit_control_communication.py | 1 - 10 files changed, 11 insertions(+), 22 deletions(-) diff --git a/account_credit_control_dunning_fees/README.rst b/account_credit_control_dunning_fees/README.rst index ae9171b00..08099c1e4 100644 --- a/account_credit_control_dunning_fees/README.rst +++ b/account_credit_control_dunning_fees/README.rst @@ -1,5 +1,5 @@ .. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg - :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :target: http://www.gnu.org/licenses/agpl :alt: License: AGPL-3 =========================== @@ -27,10 +27,6 @@ the credit control line currency. The product is used to compute taxes in reconciliation process. -.. figure:: path/to/local/image.png - :alt: alternative description - :width: 600 px - Usage ===== @@ -44,7 +40,7 @@ Support of fees price list .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/92/10.0 + :target: https://runbot.odoo-community.org/runbot/92/11.0 Bug Tracker =========== diff --git a/account_credit_control_dunning_fees/__manifest__.py b/account_credit_control_dunning_fees/__manifest__.py index cf1c289ba..cd90c57e9 100644 --- a/account_credit_control_dunning_fees/__manifest__.py +++ b/account_credit_control_dunning_fees/__manifest__.py @@ -1,12 +1,13 @@ -# -*- coding: utf-8 -*- +# Copyright 2014-2017 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). {'name': 'Credit control dunning fees', - 'version': '10.0.1.0.0', + 'version': '11.0.1.0.0', 'author': "Camptocamp, Odoo Community Association (OCA)", 'maintainer': 'Camptocamp', 'category': 'Accounting', 'complexity': 'normal', 'depends': ['account_credit_control'], - 'website': 'http://www.camptocamp.com', + 'website': 'https://github.com/OCA/account-financial-tools', 'data': ['view/policy_view.xml', 'view/line_view.xml', 'report/report_credit_control_summary.xml', diff --git a/account_credit_control_dunning_fees/model/dunning.py b/account_credit_control_dunning_fees/model/dunning.py index 02edbc632..880a19174 100644 --- a/account_credit_control_dunning_fees/model/dunning.py +++ b/account_credit_control_dunning_fees/model/dunning.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2014-2017 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import models, api diff --git a/account_credit_control_dunning_fees/model/line.py b/account_credit_control_dunning_fees/model/line.py index aa2a0f52c..7b88f0c50 100644 --- a/account_credit_control_dunning_fees/model/line.py +++ b/account_credit_control_dunning_fees/model/line.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2014-2017 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import models, fields, api diff --git a/account_credit_control_dunning_fees/model/policy.py b/account_credit_control_dunning_fees/model/policy.py index 03bf64fb0..faed67df6 100644 --- a/account_credit_control_dunning_fees/model/policy.py +++ b/account_credit_control_dunning_fees/model/policy.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2014-2017 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import models, fields diff --git a/account_credit_control_dunning_fees/model/run.py b/account_credit_control_dunning_fees/model/run.py index 28ea3c23a..4366ac2c5 100644 --- a/account_credit_control_dunning_fees/model/run.py +++ b/account_credit_control_dunning_fees/model/run.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2014-2017 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import models, api diff --git a/account_credit_control_dunning_fees/report/report_credit_control_summary.xml b/account_credit_control_dunning_fees/report/report_credit_control_summary.xml index e4b99b39b..ab48b9baa 100644 --- a/account_credit_control_dunning_fees/report/report_credit_control_summary.xml +++ b/account_credit_control_dunning_fees/report/report_credit_control_summary.xml @@ -12,7 +12,7 @@ diff --git a/account_credit_control_dunning_fees/tests/test_fees_generation.py b/account_credit_control_dunning_fees/tests/test_fees_generation.py index 0a608c63d..9ab4b4f16 100644 --- a/account_credit_control_dunning_fees/tests/test_fees_generation.py +++ b/account_credit_control_dunning_fees/tests/test_fees_generation.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2014-2017 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo.tests import common diff --git a/account_credit_control_dunning_fees/view/policy_view.xml b/account_credit_control_dunning_fees/view/policy_view.xml index 5c52ec569..95b1f5c9e 100644 --- a/account_credit_control_dunning_fees/view/policy_view.xml +++ b/account_credit_control_dunning_fees/view/policy_view.xml @@ -7,12 +7,10 @@ - - - - - - + + + + diff --git a/account_credit_control_dunning_fees/wizard/credit_control_communication.py b/account_credit_control_dunning_fees/wizard/credit_control_communication.py index ba1285688..fd8410510 100644 --- a/account_credit_control_dunning_fees/wizard/credit_control_communication.py +++ b/account_credit_control_dunning_fees/wizard/credit_control_communication.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2014-2017 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import models, api From 77b914672e24ea91d88df7a7e4454a5518a62906 Mon Sep 17 00:00:00 2001 From: Akim Juillerat Date: Wed, 21 Feb 2018 12:16:56 +0100 Subject: [PATCH 17/18] [TO REMOVE] Add temporary dependency on account_credit_control open PR --- oca_dependencies.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/oca_dependencies.txt b/oca_dependencies.txt index 9b5df92e9..c012d06bb 100644 --- a/oca_dependencies.txt +++ b/oca_dependencies.txt @@ -1 +1,2 @@ server-ux +account-financial-tools https://github.com/kenvac/account-financial-tools 11.0-account_credit_control From 60a45426cf41ed18ed9a2ada301eeec1f3e433f3 Mon Sep 17 00:00:00 2001 From: Akim Juillerat Date: Thu, 1 Mar 2018 18:36:40 +0100 Subject: [PATCH 18/18] fixup! [MIG] account_credit_control_dunning_fees : Migration to 11.0 --- account_credit_control_dunning_fees/README.rst | 5 ----- 1 file changed, 5 deletions(-) diff --git a/account_credit_control_dunning_fees/README.rst b/account_credit_control_dunning_fees/README.rst index 08099c1e4..5a431121f 100644 --- a/account_credit_control_dunning_fees/README.rst +++ b/account_credit_control_dunning_fees/README.rst @@ -9,11 +9,6 @@ Credit control dunning fees This module extends the functionality of account_credit_control to add the notion of dunning fees on credit control lines. -Installation -============ - -Just install it. - Configuration =============