__openerp__.py 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # -*- coding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # Cybrosys Technologies Pvt. Ltd.
  5. # Copyright (C) 2008-TODAY Cybrosys Technologies(<http://www.cybrosys.com>).
  6. # Author: Nilmar Shereef(<http://www.cybrosys.com>)
  7. # you can modify it under the terms of the GNU LESSER
  8. # GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
  9. #
  10. # It is forbidden to publish, distribute, sublicense, or sell copies
  11. # of the Software or modified copies of the Software.
  12. #
  13. # This program is distributed in the hope that it will be useful,
  14. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. # GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
  17. #
  18. # You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
  19. # GENERAL PUBLIC LICENSE (LGPL v3) along with this program.
  20. # If not, see <http://www.gnu.org/licenses/>.
  21. #
  22. ##############################################################################
  23. {
  24. 'name': 'Car Workshop',
  25. 'version': '8.0.1.1.0',
  26. 'summary': 'Vehicle Workshop Operations',
  27. 'description': 'Vehicle workshop operations & Its reports',
  28. 'category': 'Industries',
  29. 'author': 'Cybrosys Techno Solutions',
  30. 'company': 'Cybrosys Techno Solutions',
  31. 'website': "http://www.cybrosys.com",
  32. 'depends': ['base',
  33. 'fleet',
  34. 'account_accountant'],
  35. 'data': [
  36. 'views/worksheet_views.xml',
  37. 'views/car_dashboard.xml',
  38. 'views/timesheet_view.xml',
  39. 'views/worksheet_stages.xml',
  40. 'views/vehicle.xml',
  41. # 'views/report.xml',
  42. 'views/config_setting.xml',
  43. 'views/workshop_data.xml',
  44. 'security/workshop_security.xml',
  45. 'security/ir.model.access.csv',
  46. ],
  47. 'images': ['static/description/banner.jpg'],
  48. 'license': 'AGPL-3',
  49. 'installable': True,
  50. 'auto_install': False,
  51. 'application': True,
  52. }