__openerp__.py~ 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # -*- coding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # Cybrosys Technologies Pvt. Ltd.
  5. # Copyright (C) 2015-TODAY Cybrosys Technologies(<http://www.cybrosys.com>).
  6. # Author: Sreejith P(<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': 'POS Daily Report',
  25. 'version': '8.0.1.0.0',
  26. 'summary': 'POS Daily Sales Report',
  27. 'category': 'Point of sale',
  28. 'author': 'Cybrosys Techno Solutions',
  29. 'company': 'Cybrosys Techno Solutions',
  30. 'website': 'http://www.cybrosys.com',
  31. 'depends': [
  32. 'point_of_sale'
  33. ],
  34. 'data': [
  35. 'views/pos_report_template.xml',
  36. 'views/pos_report_menu.xml',
  37. 'security/ir.model.access.csv',
  38. ],
  39. 'license': 'AGPL-3',
  40. 'images': ['static/description/banner.jpg'],
  41. 'installable': True,
  42. 'auto_install': False,
  43. }