mirror of
https://github.com/OCA/server-backend.git
synced 2025-02-18 09:52:42 +02:00
[IMP] server_action_navigate: black, isort, prettier
This commit is contained in:
@@ -8,7 +8,7 @@
|
|||||||
"author": "GRAP, " "Odoo Community Association (OCA)",
|
"author": "GRAP, " "Odoo Community Association (OCA)",
|
||||||
"summary": "Navigate between any items of any Odoo Models",
|
"summary": "Navigate between any items of any Odoo Models",
|
||||||
"category": "Tools",
|
"category": "Tools",
|
||||||
"website": "https://github.com/OCA/server-ux",
|
"website": "https://github.com/OCA/server-backend",
|
||||||
"license": "AGPL-3",
|
"license": "AGPL-3",
|
||||||
"depends": ["base"],
|
"depends": ["base"],
|
||||||
"maintainers": ["legalsylvain"],
|
"maintainers": ["legalsylvain"],
|
||||||
|
|||||||
@@ -31,7 +31,8 @@ class IrActionsServerNavigateLine(models.Model):
|
|||||||
def _onchange_field_id(self):
|
def _onchange_field_id(self):
|
||||||
# check out the docstring of this in odoo/models.py
|
# check out the docstring of this in odoo/models.py
|
||||||
lines = self.action_id.resolve_2many_commands(
|
lines = self.action_id.resolve_2many_commands(
|
||||||
"navigate_line_ids", self.env.context.get("navigate_line_ids", []),
|
"navigate_line_ids",
|
||||||
|
self.env.context.get("navigate_line_ids", []),
|
||||||
)
|
)
|
||||||
lines = sum(map(self.new, lines), self.browse([]))
|
lines = sum(map(self.new, lines), self.browse([]))
|
||||||
model = lines[-1:].field_id.relation or self.action_id.model_id.model
|
model = lines[-1:].field_id.relation or self.action_id.model_id.model
|
||||||
|
|||||||
1
setup/server_action_navigate/odoo/addons/server_action_navigate
Symbolic link
1
setup/server_action_navigate/odoo/addons/server_action_navigate
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
../../../../server_action_navigate
|
||||||
6
setup/server_action_navigate/setup.py
Normal file
6
setup/server_action_navigate/setup.py
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
import setuptools
|
||||||
|
|
||||||
|
setuptools.setup(
|
||||||
|
setup_requires=['setuptools-odoo'],
|
||||||
|
odoo_addon=True,
|
||||||
|
)
|
||||||
Reference in New Issue
Block a user