Compare commits
No commits in common. "19.0" and "main" have entirely different histories.
15
.gitignore
vendored
15
.gitignore
vendored
@ -1,15 +0,0 @@
|
|||||||
# Python
|
|
||||||
*.py[cod]
|
|
||||||
__pycache__/
|
|
||||||
*.so
|
|
||||||
|
|
||||||
# Odoo
|
|
||||||
*.po~
|
|
||||||
*.pot~
|
|
||||||
|
|
||||||
# Editor / System
|
|
||||||
.DS_Store
|
|
||||||
.vscode/
|
|
||||||
*.swp
|
|
||||||
*.swo
|
|
||||||
*~
|
|
||||||
@ -1,7 +1,7 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
{
|
{
|
||||||
"name": "User Access Rights Export",
|
"name": "User Access Rights Export",
|
||||||
"version": "19.0.1.0.0",
|
"version": "17.0.1.0.0",
|
||||||
"category": "Settings/Technical",
|
"category": "Settings/Technical",
|
||||||
"summary": "Export detailed user access rights (model ACLs and record rules) to Excel",
|
"summary": "Export detailed user access rights (model ACLs and record rules) to Excel",
|
||||||
"description": """
|
"description": """
|
||||||
|
|||||||
BIN
__pycache__/__init__.cpython-310.pyc
Normal file
BIN
__pycache__/__init__.cpython-310.pyc
Normal file
Binary file not shown.
BIN
__pycache__/__init__.cpython-312.pyc
Normal file
BIN
__pycache__/__init__.cpython-312.pyc
Normal file
Binary file not shown.
BIN
wizard/__pycache__/__init__.cpython-310.pyc
Normal file
BIN
wizard/__pycache__/__init__.cpython-310.pyc
Normal file
Binary file not shown.
BIN
wizard/__pycache__/__init__.cpython-312.pyc
Normal file
BIN
wizard/__pycache__/__init__.cpython-312.pyc
Normal file
Binary file not shown.
BIN
wizard/__pycache__/user_access_rights_wizard.cpython-310.pyc
Normal file
BIN
wizard/__pycache__/user_access_rights_wizard.cpython-310.pyc
Normal file
Binary file not shown.
BIN
wizard/__pycache__/user_access_rights_wizard.cpython-312.pyc
Normal file
BIN
wizard/__pycache__/user_access_rights_wizard.cpython-312.pyc
Normal file
Binary file not shown.
@ -6,10 +6,7 @@ from datetime import datetime
|
|||||||
|
|
||||||
from odoo import _, api, fields, models
|
from odoo import _, api, fields, models
|
||||||
from odoo.exceptions import UserError
|
from odoo.exceptions import UserError
|
||||||
try:
|
from odoo.tools.misc import xlsxwriter
|
||||||
import xlsxwriter
|
|
||||||
except ImportError:
|
|
||||||
xlsxwriter = None
|
|
||||||
|
|
||||||
|
|
||||||
class UserAccessRightsWizard(models.TransientModel):
|
class UserAccessRightsWizard(models.TransientModel):
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user