-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy path__manifest__.py
35 lines (34 loc) · 967 Bytes
/
__manifest__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Copyright 2022 Coop IT Easy SCRLfs
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "Edit Price Wizard",
"summary": """
Add "Edit Price" submenu on Purchase and Sale modules.""",
"version": "12.0.1.0.1",
"category": "Sales",
"website": "https://github.com/beescoop/Obeesdoo",
"author": "Coop IT Easy SC",
"license": "AGPL-3",
"application": False,
"depends": [
"product",
"purchase",
"sale",
"sale_suggested_price",
"product_main_supplier",
],
"external_dependencies": {
"python": ["openupgradelib"],
},
"excludes": [],
"data": [
"views/product_template_views.xml",
"views/purchase_views.xml",
"views/sale_views.xml",
"views/res_config_settings_views.xml",
"wizard/views/adapt_sales_price_wizard_view.xml",
],
"demo": [],
"qweb": [],
"pre_init_hook": "rename_xml_ids",
}