35 lines
1000 B
Python
35 lines
1000 B
Python
# Copyright 2022 Stéphan Sainléger (Elabore)
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
{
|
|
"name": "project_link_from_invoice",
|
|
"version": "18.0.1.0.0",
|
|
"author": "Elabore",
|
|
"website": "https://git.elabore.coop/elabore/project-tools",
|
|
"maintainer": "Clément Thomas",
|
|
"license": "AGPL-3",
|
|
"category": "Tools",
|
|
"summary": "Add link from invoice to project",
|
|
# any module necessary for this one to work correctly
|
|
"depends": [
|
|
"base",
|
|
"project",
|
|
"account",
|
|
"sale_project",
|
|
],
|
|
"external_dependencies": {
|
|
"python": [],
|
|
},
|
|
# always loaded
|
|
"data": [
|
|
"views/account_move_view.xml",
|
|
],
|
|
# only loaded in demonstration mode
|
|
"demo": [],
|
|
"installable": True,
|
|
# Install this module automatically if all dependency have been previously
|
|
# and independently installed. Used for synergetic or glue modules.
|
|
"auto_install": False,
|
|
"application": False,
|
|
}
|