-
-
Notifications
You must be signed in to change notification settings - Fork 788
/
__manifest__.py
38 lines (37 loc) · 1.43 KB
/
__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
36
37
38
# Copyright 2013 Joaquín Gutierrez
# Copyright 2014-2017 Pedro M. Baeza <[email protected]>
# Copyright 2024 Carolina Fernandez
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3
{
"name": "Purchase landed costs - Alternative option",
"version": "16.0.1.0.0",
"author": "AvanzOSC,"
"Tecnativa,"
"Joaquín Gutierrez,"
"Odoo Community Association (OCA)",
"license": "AGPL-3",
"category": "Purchase Management",
"website": "https://github.com/OCA/purchase-workflow",
"summary": "Purchase cost distribution",
"depends": ["purchase_stock"],
"data": [
"data/purchase_cost_distribution_sequence.xml",
"security/purchase_landed_cost_security.xml",
"security/ir.model.access.csv",
"wizard/picking_import_wizard_view.xml",
"wizard/import_invoice_line_wizard_view.xml",
"wizard/import_landed_cost_pickings_wizard_view.xml",
"views/account_move_view.xml",
"views/purchase_cost_distribution_view.xml",
"views/purchase_cost_distribution_line_expense_view.xml",
"views/purchase_expense_type_view.xml",
"views/purchase_order_view.xml",
"views/stock_picking_view.xml",
],
"installable": True,
"images": [
"/static/description/images/purchase_order_expense_main.png",
"/static/description/images/purchase_order_expense_line.png",
"/static/description/images/expenses_types.png",
],
}