mirror of
https://github.com/OCA/account-reconcile.git
synced 2025-01-20 12:27:39 +02:00
[MIG][12.0] account_mass_reconcile_ref_deep_search: migration
This commit is contained in:
committed by
Iryna Vushnevska
parent
fbf0f9c118
commit
3d0fc5aee2
@@ -1,8 +1,8 @@
|
||||
# Copyright 2015-2018 Camptocamp SA
|
||||
# Copyright 2015-2019 Camptocamp SA
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
|
||||
{
|
||||
'name': 'Mass Reconcile Ref Deep Search',
|
||||
'version': '11.0.1.0.0',
|
||||
'version': '12.0.1.0.0',
|
||||
'author': "Camptocamp, Odoo Community Association (OCA)",
|
||||
'category': 'Finance',
|
||||
'website': 'https://github.com/account-reconcile',
|
||||
|
||||
@@ -1,76 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_mass_reconcile_ref_deep_search
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \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_mass_reconcile_ref_deep_search
|
||||
#: code:addons/account_mass_reconcile_ref_deep_search/models/advanced_reconciliation.py:50
|
||||
#, python-format
|
||||
msgid "A matcher %s is compared with a matcher %s, the _matchers and _opposite_matchers are probably wrong"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_mass_reconcile_ref_deep_search
|
||||
#: model:ir.ui.view,arch_db:account_mass_reconcile_ref_deep_search.view_mass_reconcile_form
|
||||
msgid "Advanced. Partner and Ref Deep Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_mass_reconcile_ref_deep_search
|
||||
#: model:ir.model.fields,field_description:account_mass_reconcile_ref_deep_search.field_mass_reconcile_advanced_ref_deep_search_create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_mass_reconcile_ref_deep_search
|
||||
#: model:ir.model.fields,field_description:account_mass_reconcile_ref_deep_search.field_mass_reconcile_advanced_ref_deep_search_create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_mass_reconcile_ref_deep_search
|
||||
#: model:ir.model.fields,field_description:account_mass_reconcile_ref_deep_search.field_mass_reconcile_advanced_ref_deep_search_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_mass_reconcile_ref_deep_search
|
||||
#: model:ir.model.fields,field_description:account_mass_reconcile_ref_deep_search.field_mass_reconcile_advanced_ref_deep_search_id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_mass_reconcile_ref_deep_search
|
||||
#: model:ir.model.fields,field_description:account_mass_reconcile_ref_deep_search.field_mass_reconcile_advanced_ref_deep_search___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_mass_reconcile_ref_deep_search
|
||||
#: model:ir.model.fields,field_description:account_mass_reconcile_ref_deep_search.field_mass_reconcile_advanced_ref_deep_search_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_mass_reconcile_ref_deep_search
|
||||
#: model:ir.model.fields,field_description:account_mass_reconcile_ref_deep_search.field_mass_reconcile_advanced_ref_deep_search_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_mass_reconcile_ref_deep_search
|
||||
#: model:ir.ui.view,arch_db:account_mass_reconcile_ref_deep_search.view_mass_reconcile_form
|
||||
msgid "Match multiple debit vs multiple credit entries. Allow partial reconciliation. The lines should have the partner, the credit entry ref is searched inside the debit entry ref."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_mass_reconcile_ref_deep_search
|
||||
#: model:ir.model,name:account_mass_reconcile_ref_deep_search.model_mass_reconcile_advanced_ref_deep_search
|
||||
msgid "mass.reconcile.advanced.ref.deep.search"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_mass_reconcile_ref_deep_search
|
||||
#: model:ir.model,name:account_mass_reconcile_ref_deep_search.model_account_mass_reconcile_method
|
||||
msgid "reconcile method for account_mass_reconcile"
|
||||
msgstr ""
|
||||
|
||||
@@ -1,4 +1,2 @@
|
||||
# Copyright 2015-2018 Camptocamp SA
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
|
||||
from . import mass_reconcile
|
||||
from . import advanced_reconciliation
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Copyright 2015-2018 Camptocamp SA
|
||||
# Copyright 2015-2019 Camptocamp SA
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
|
||||
from odoo import _, models
|
||||
from itertools import product
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Copyright 2018 Camptocamp SA
|
||||
# Copyright 2019 Camptocamp SA
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
from odoo.tests import SavepointCase
|
||||
|
||||
@@ -7,8 +7,8 @@ class TestAccountReconcileRefDeepSearch(SavepointCase):
|
||||
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super(TestAccountReconcileRefDeepSearch, cls).setUpClass()
|
||||
|
||||
super().setUpClass()
|
||||
cls.env = cls.env(context=dict(cls.env.context, tracking_disable=True))
|
||||
cls.partner = cls.env.ref('base.res_partner_18')
|
||||
cls.account_receivable = cls.env['account.account'].search([
|
||||
('user_type_id', '=',
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<page name="information" position="inside">
|
||||
<group colspan="2" col="2">
|
||||
<separator colspan="4" string="Advanced. Partner and Ref Deep Search"/>
|
||||
<label string="Match multiple debit vs multiple credit entries. Allow partial reconciliation.
|
||||
<label for="reconcile_method" string="Match multiple debit vs multiple credit entries. Allow partial reconciliation.
|
||||
The lines should have the partner, the credit entry ref is searched inside the debit entry ref." colspan="4"/>
|
||||
</group>
|
||||
</page>
|
||||
|
||||
Reference in New Issue
Block a user