Skip to content

Commit

Permalink
[MIG] account_invoice_change_currency: Migration to 15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rolandojduartem committed May 17, 2022
1 parent 0fd791c commit 85238e8
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 26 deletions.
2 changes: 1 addition & 1 deletion account_invoice_change_currency/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
{
"name": "Account Invoice - Change Currency",
"version": "14.0.1.0.0",
"version": "15.0.1.0.0",
"category": "Accounting & Finance",
"summary": "Allows to change currency of Invoice by wizard",
"author": "Vauxoo, Komit Consulting, Odoo Community Association (OCA)",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 14.0+e\n"
"Project-Id-Version: Odoo Server 15.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-05-07 00:01+0000\n"
"PO-Revision-Date: 2022-05-07 00:01+0000\n"
"POT-Creation-Date: 2022-05-17 18:57+0000\n"
"PO-Revision-Date: 2022-05-17 18:57+0000\n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
Expand Down Expand Up @@ -44,20 +44,6 @@ msgstr ""
msgid "Custom Rate"
msgstr ""

#. module: account_invoice_change_currency
#: model:ir.model.fields,field_description:account_invoice_change_currency.field_account_move__display_name
#: model:ir.model.fields,field_description:account_invoice_change_currency.field_account_move_line__display_name
#: model:ir.model.fields,field_description:account_invoice_change_currency.field_res_currency__display_name
msgid "Display Name"
msgstr ""

#. module: account_invoice_change_currency
#: model:ir.model.fields,field_description:account_invoice_change_currency.field_account_move__id
#: model:ir.model.fields,field_description:account_invoice_change_currency.field_account_move_line__id
#: model:ir.model.fields,field_description:account_invoice_change_currency.field_res_currency__id
msgid "ID"
msgstr ""

#. module: account_invoice_change_currency
#: model:ir.model.fields,field_description:account_invoice_change_currency.field_account_bank_statement_line__is_original_currency
#: model:ir.model.fields,field_description:account_invoice_change_currency.field_account_move__is_original_currency
Expand All @@ -75,13 +61,6 @@ msgstr ""
msgid "Journal Item"
msgstr ""

#. module: account_invoice_change_currency
#: model:ir.model.fields,field_description:account_invoice_change_currency.field_account_move____last_update
#: model:ir.model.fields,field_description:account_invoice_change_currency.field_account_move_line____last_update
#: model:ir.model.fields,field_description:account_invoice_change_currency.field_res_currency____last_update
msgid "Last Modified on"
msgstr ""

#. module: account_invoice_change_currency
#: model:ir.model.fields,field_description:account_invoice_change_currency.field_account_bank_statement_line__original_currency_id
#: model:ir.model.fields,field_description:account_invoice_change_currency.field_account_move__original_currency_id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def setUp(self):
res_users_account_manager = self.env.ref("account.group_account_manager")
self.manager = (
self.env["res.users"]
.with_context({"no_reset_password": True})
.with_context(no_reset_password=True)
.create(
dict(
name="Adviser",
Expand Down
6 changes: 6 additions & 0 deletions setup/account_invoice_change_currency/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import setuptools

setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

0 comments on commit 85238e8

Please sign in to comment.