__openerp__.py 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # -*- encoding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # POS Select Cashier
  5. # Copyright (C) 2016- XUBI.ME (http://www.xubi.me)
  6. # @author binhnguyenxuan (https://www.linkedin.com/in/binhnguyenxuan)
  7. #
  8. # This program is free software: you can redistribute it and/or modify
  9. # it under the terms of the GNU Affero General Public License as
  10. # published by the Free Software Foundation, either version 3 of the
  11. # License, or (at your option) any later version.
  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 Affero General Public License for more details.
  17. #
  18. # You should have received a copy of the GNU Affero General Public License
  19. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. #
  21. #
  22. ##############################################################################
  23. {
  24. 'name': 'POS Select Cashier',
  25. 'summary': 'Changing POS cashier easily',
  26. 'version': '8.0.1.0',
  27. 'category': 'Point Of Sale',
  28. 'author': "binhnguyenxuan (www.xubi.me)",
  29. 'website': 'http://www.xubi.me',
  30. 'license': 'AGPL-3',
  31. 'depends': [
  32. 'point_of_sale',
  33. ],
  34. 'data': [
  35. 'views/pos_config_views.xml',
  36. 'views/res_users_views.xml',
  37. 'templates/templates.xml',
  38. ],
  39. 'qweb': ['static/src/xml/*.xml'],
  40. 'installable': True,
  41. 'application': True,
  42. }