mirror of
https://gitlab.com/flectra-community/account-financial-reporting.git
synced 2024-11-14 17:52:06 +00:00
Automatic Update form OCA2FC Migrator
This commit is contained in:
parent
2d586a7f0a
commit
6e1cbdbcfe
@ -11,7 +11,7 @@ addon | version | summary
|
|||||||
--- | --- | ---
|
--- | --- | ---
|
||||||
[mis_template_financial_report](mis_template_financial_report/) | 2.0.1.0.0| Profit & Loss / Balance sheet MIS templates
|
[mis_template_financial_report](mis_template_financial_report/) | 2.0.1.0.0| Profit & Loss / Balance sheet MIS templates
|
||||||
[account_move_line_report_xls](account_move_line_report_xls/) | 2.0.1.0.1| Journal Items Excel export
|
[account_move_line_report_xls](account_move_line_report_xls/) | 2.0.1.0.1| Journal Items Excel export
|
||||||
[account_tax_balance](account_tax_balance/) | 2.0.1.2.3| Compute tax balances based on date range
|
[account_tax_balance](account_tax_balance/) | 2.0.1.2.4| Compute tax balances based on date range
|
||||||
[account_financial_report](account_financial_report/) | 2.0.2.0.0| OCA Financial Reports
|
[account_financial_report](account_financial_report/) | 2.0.2.0.0| OCA Financial Reports
|
||||||
[mis_builder_cash_flow](mis_builder_cash_flow/) | 2.0.1.0.0| MIS Builder Cash Flow
|
[mis_builder_cash_flow](mis_builder_cash_flow/) | 2.0.1.0.0| MIS Builder Cash Flow
|
||||||
[partner_statement](partner_statement/) | 2.0.1.1.0| OCA Financial Reports
|
[partner_statement](partner_statement/) | 2.0.1.1.0| OCA Financial Reports
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
{
|
{
|
||||||
"name": "Tax Balance",
|
"name": "Tax Balance",
|
||||||
"summary": "Compute tax balances based on date range",
|
"summary": "Compute tax balances based on date range",
|
||||||
"version": "2.0.1.2.3",
|
"version": "2.0.1.2.4",
|
||||||
"development_status": "Mature",
|
"development_status": "Mature",
|
||||||
"category": "Invoices & Payments",
|
"category": "Invoices & Payments",
|
||||||
"website": "https://gitlab.com/flectra-community/account-financial-reporting",
|
"website": "https://gitlab.com/flectra-community/account-financial-reporting",
|
||||||
|
@ -180,11 +180,11 @@ class AccountTax(models.Model):
|
|||||||
domain = self.get_move_lines_domain(
|
domain = self.get_move_lines_domain(
|
||||||
tax_or_base=tax_or_base, financial_type=financial_type
|
tax_or_base=tax_or_base, financial_type=financial_type
|
||||||
)
|
)
|
||||||
action = self.env.ref("account.action_account_moves_all_tree")
|
xmlid = "account.action_account_moves_all_tree"
|
||||||
vals = action.sudo().read()[0]
|
action = self.env["ir.actions.act_window"]._for_xml_id(xmlid)
|
||||||
vals["context"] = {}
|
action["context"] = {}
|
||||||
vals["domain"] = domain
|
action["domain"] = domain
|
||||||
return vals
|
return action
|
||||||
|
|
||||||
def view_tax_lines(self):
|
def view_tax_lines(self):
|
||||||
self.ensure_one()
|
self.ensure_one()
|
||||||
|
@ -40,13 +40,13 @@ class WizardOpenTaxBalances(models.TransientModel):
|
|||||||
|
|
||||||
def open_taxes(self):
|
def open_taxes(self):
|
||||||
self.ensure_one()
|
self.ensure_one()
|
||||||
action = self.env.ref("account_tax_balance.action_tax_balances_tree")
|
xmlid = "account_tax_balance.action_tax_balances_tree"
|
||||||
act_vals = action.sudo().read()[0]
|
action = self.env["ir.actions.act_window"]._for_xml_id(xmlid)
|
||||||
# override action name doesn't work in v12 or v10
|
# override action name doesn't work in v12 or v10
|
||||||
# we need to build a dynamic action on main keys
|
# we need to build a dynamic action on main keys
|
||||||
vals = {
|
vals = {
|
||||||
x: act_vals[x]
|
x: action[x]
|
||||||
for x in act_vals
|
for x in action
|
||||||
if x
|
if x
|
||||||
in (
|
in (
|
||||||
"res_model",
|
"res_model",
|
||||||
|
Loading…
Reference in New Issue
Block a user