diff --git a/account_loan/__manifest__.py b/account_loan/__manifest__.py index 5e152e22a..f14043e4a 100644 --- a/account_loan/__manifest__.py +++ b/account_loan/__manifest__.py @@ -1,7 +1,7 @@ # Copyright 2018 Creu Blanca # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { - "name": "Account Loan management", + "name": "Account Loan", "version": "12.0.1.0.0", "author": "Creu Blanca,Odoo Community Association (OCA)", "website": "http://github.com/OCA/account-financial-tools", diff --git a/account_loan/readme/USAGE.rst b/account_loan/readme/USAGE.rst index b19313b48..cf1355e21 100644 --- a/account_loan/readme/USAGE.rst +++ b/account_loan/readme/USAGE.rst @@ -15,4 +15,4 @@ On a posted loan you can: .. 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/11.0 + :target: https://runbot.odoo-community.org/runbot/92/12.0 diff --git a/account_loan/wizard/account_loan_generate_entries.py b/account_loan/wizard/account_loan_generate_entries.py index c4ec41da7..b777ce602 100644 --- a/account_loan/wizard/account_loan_generate_entries.py +++ b/account_loan/wizard/account_loan_generate_entries.py @@ -5,6 +5,7 @@ from odoo import api, fields, models class AccountLoanGenerateWizard(models.TransientModel): _name = "account.loan.generate.wizard" + _description = 'Loan generate wizard' date = fields.Date( 'Account Date', diff --git a/account_loan/wizard/account_loan_pay_amount.py b/account_loan/wizard/account_loan_pay_amount.py index 6dd2164a1..de29c9929 100644 --- a/account_loan/wizard/account_loan_pay_amount.py +++ b/account_loan/wizard/account_loan_pay_amount.py @@ -1,3 +1,4 @@ +# Copyright 2018 Creu Blanca # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from odoo import api, fields, models, _ @@ -6,6 +7,7 @@ from odoo.exceptions import UserError class AccountLoan(models.TransientModel): _name = 'account.loan.pay.amount' + _description = 'Loan pay amount' loan_id = fields.Many2one( 'account.loan', diff --git a/account_loan/wizard/account_loan_post.py b/account_loan/wizard/account_loan_post.py index bde773626..4fca2e477 100644 --- a/account_loan/wizard/account_loan_post.py +++ b/account_loan/wizard/account_loan_post.py @@ -6,6 +6,7 @@ from odoo.exceptions import UserError class AccountLoanPost(models.TransientModel): _name = "account.loan.post" + _description = 'Loan post' @api.model def _default_journal_id(self):