__manifest__.py 582 B

12345678910111213141516171819202122
  1. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  2. {
  3. 'name': 'Employee Hourly Wage',
  4. 'version': '1.0',
  5. 'category': 'Services/Employee Hourly Cost',
  6. 'summary': 'Employee Hourly Wage',
  7. 'description': """
  8. This module assigns an hourly wage to employees to be used by other modules.
  9. ============================================================================
  10. """,
  11. 'depends': ['hr'],
  12. 'data': [
  13. 'views/hr_employee_views.xml',
  14. ],
  15. 'demo': [
  16. 'data/hr_hourly_cost_demo.xml',
  17. ],
  18. 'license': 'LGPL-3',
  19. }