2
0
account-financial-tools/account_loan/wizard/account_loan_generate_entries.py

45 lines
1.5 KiB
Python
Raw Normal View History

2018-02-26 12:17:24 +01:00
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import api, fields, models
class AccountLoanGenerateWizard(models.TransientModel):
_name = "account.loan.generate.wizard"
_description = "Loan generate wizard"
2018-02-26 12:17:24 +01:00
date = fields.Date(
"Account Date",
2018-02-26 12:17:24 +01:00
required=True,
help="Choose the period for which you want to automatically post the "
"depreciation lines of running assets",
default=fields.Date.context_today,
)
loan_type = fields.Selection(
[("leasing", "Leasings"), ("loan", "Loans"),], required=True, default="loan"
)
2018-02-26 12:17:24 +01:00
def run_leasing(self):
created_ids = self.env["account.loan"].generate_leasing_entries(self.date)
action = self.env.ref("account.action_invoice_tree2")
2018-02-26 12:17:24 +01:00
result = action.read()[0]
if len(created_ids) == 0:
return
result["domain"] = [("id", "in", created_ids), ("type", "=", "in_invoice")]
2018-02-26 12:17:24 +01:00
return result
def run_loan(self):
created_ids = self.env["account.loan"].generate_loan_entries(self.date)
action = self.env.ref("account.action_move_line_form")
2018-02-26 12:17:24 +01:00
result = action.read()[0]
if len(created_ids) == 0:
return
result["domain"] = [("id", "in", created_ids)]
2018-02-26 12:17:24 +01:00
return result
@api.multi
def run(self):
self.ensure_one()
if self.loan_type == "leasing":
2018-02-26 12:17:24 +01:00
return self.run_leasing()
return self.run_loan()