mirror of
https://gitlab.com/flectra-hq/flectra.git
synced 2026-08-19 01:34:43 -05:00
29 lines
848 B
Python
29 lines
848 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Sales Expense',
|
|
'version': '1.0',
|
|
'category': 'Sales/Sales',
|
|
'summary': 'Quotation, Sales Orders, Delivery & Invoicing Control',
|
|
'description': """
|
|
Reinvoice Employee Expense
|
|
==========================
|
|
|
|
Create some products for which you can re-invoice the costs.
|
|
This module allow to reinvoice employee expense, by setting the SO directly on the expense.
|
|
""",
|
|
'depends': ['sale_management', 'hr_expense'],
|
|
'data': [
|
|
'views/assets.xml',
|
|
'views/product_view.xml',
|
|
'views/hr_expense_views.xml',
|
|
'views/sale_order_views.xml',
|
|
],
|
|
'demo': ['data/sale_expense_demo.xml'],
|
|
'test': [],
|
|
'installable': True,
|
|
'auto_install': True,
|
|
'license': 'LGPL-3',
|
|
}
|