2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-01-16 11:34:37 +01:00
|
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
'name': 'Sales Expense',
|
|
|
|
'version': '1.0',
|
|
|
|
'category': '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.
|
|
|
|
""",
|
2018-01-16 11:34:37 +01:00
|
|
|
'website': 'https://flectrahq.com/page/warehouse',
|
2018-01-16 06:58:15 +01:00
|
|
|
'depends': ['sale_management', 'hr_expense'],
|
|
|
|
'data': [
|
|
|
|
'security/ir.model.access.csv',
|
|
|
|
'security/sale_expense_security.xml',
|
|
|
|
'views/product_view.xml',
|
|
|
|
'views/hr_expense_views.xml',
|
|
|
|
],
|
|
|
|
'demo': ['sale_expense_demo.xml'],
|
|
|
|
'test': [],
|
|
|
|
'installable': True,
|
|
|
|
'auto_install': True,
|
|
|
|
}
|