__openerp__.py 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. ##############################################################################
  2. #
  3. # OpenERP, Open Source Management Solution
  4. # Copyright (C) 2004-2013 OpenERP S.A. (<http://openerp.com>).
  5. #
  6. # Copyright (C) 2011-2015 Nevpro Business Solutions Pvt Ltd. (<http://www.nevpro.co.in>).
  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. 'name': 'Restrict Multiple Sign in for Same User',
  24. 'version': '1.0',
  25. 'category': 'Tools',
  26. 'sequence': 1,
  27. 'summary': 'Restrict Multiple Sign in for Same User in Odoo.',
  28. 'description': """
  29. Restrict Multiple Sign in for Same User
  30. =======================================
  31. Module to Restrict Multiple Sign in for Same User in Odoo.""",
  32. 'author': 'Nevpro Business Solutions Pvt Ltd.',
  33. 'website': 'http://www.nevpro.co.in',
  34. 'depends': ['web','base'],
  35. 'data': [
  36. 'views/single_login.xml',
  37. 'views/custom_template.xml',
  38. 'scheduler.xml',
  39. ],
  40. 'demo_xml': [],
  41. 'installable': True,
  42. 'application': True,
  43. 'auto_install': False,
  44. }