__openerp__.py 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. # -*- coding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # OpenERP, Open Source Management Solution
  5. # Copyright (C) 2004-2010 OpenERP SA (<http://www.openerp.com>)
  6. # Copyright (C) 2011-2015 Serpent Consulting Services Pvt. Ltd. (<http://www.serpentcs.com>).
  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": "Web Digital Signature",
  24. "version": "8.0.0.0.1",
  25. "author": "Serpent Consulting Services Pvt. Ltd.",
  26. "category": 'Tools',
  27. 'complexity': "easy",
  28. 'license': 'AGPL-3',
  29. 'depends': ['web'],
  30. 'description': '''
  31. This module provides the functionality to store digital signature
  32. for a record.
  33. -> This module is helpfull to make your business process a little
  34. bit more faster & makes it more user friendly by providing you
  35. digital signature functionality on your documents.
  36. -> It is touch screen enable so user can add signature with touch
  37. devices.
  38. -> Digital signature can be very usefull for documents such as
  39. sale orders, purchase orders, invoices, payslips, procurement
  40. receipts, etc.
  41. The example can be seen into the User's form view where we have
  42. added a test field under signature.
  43. ''',
  44. 'summary': '''
  45. This module provides the functionality to store digital signature
  46. for a record.
  47. -> This module is helpfull to make your business process a little
  48. bit more faster & makes it more user friendly by providing you
  49. digital signature functionality on your documents.
  50. -> It is touch screen enable so user can add signature with touch
  51. devices.
  52. -> Digital signature can be very usefull for documents such as
  53. sale orders, purchase orders, invoices, payslips, procurement
  54. receipts, etc.
  55. The example can be seen into the User's form view where we have
  56. added a test field under signature.
  57. ''',
  58. 'images': ['static/description/Digital_Signature.jpg'],
  59. 'data': [
  60. 'views/we_digital_sign_view.xml',
  61. 'users_view.xml'
  62. ],
  63. 'website': 'http://www.serpentcs.com',
  64. 'qweb': ['static/src/xml/digital_sign.xml'],
  65. 'installable': True,
  66. 'auto_install': False,
  67. }
  68. # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: