forked from OCA/purchase-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__manifest__.py
27 lines (26 loc) · 900 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
# Copyright 2022 ForgeFlow S.L.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "Purchase Manual Delivery",
"summary": """
Prevents pickings to be auto generated upon Purchase Order confirmation
and adds the ability to manually generate them as the supplier confirms
the different purchase order lines.
""",
"version": "16.0.2.0.1",
"license": "AGPL-3",
"author": "ForgeFlow S.L.," "Odoo Community Association (OCA)",
"website": "https://github.com/OCA/purchase-workflow",
"depends": ["purchase_stock"],
"data": [
"security/ir.model.access.csv",
"wizard/create_manual_stock_picking.xml",
"views/purchase_order_views.xml",
"views/res_config_view.xml",
],
"assets": {
"web.assets_backend": [
"purchase_manual_delivery/static/src/**/*",
]
},
}