You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
1.9 KiB

  1. # -*- encoding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # OpenERP, Open Source Management Solution
  5. # Copyright (C) Odoo Colombia (Community).
  6. # Authors David Arnold (devCO)
  7. # Juan Pablo Aries (devCO)
  8. #
  9. # Co-Authors Sandy Carter (Savaoirfairlinux)
  10. # El Hadji Dem (Savoirfairelinux)
  11. # Luis Miguel Varon
  12. # Hector Ivan Valencia (TIX)
  13. #
  14. # Collaborators Nhomar Hernandez (Vauxoo)
  15. # Humberto Ochoa (Vauxoo)
  16. #
  17. # This program is free software: you can redistribute it and/or modify
  18. # it under the terms of the GNU Affero General Public License as
  19. # published by the Free Software Foundation, either version 3 of the
  20. # License, or (at your option) any later version.
  21. #
  22. # This program is distributed in the hope that it will be useful,
  23. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  24. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  25. # GNU Affero General Public License for more details.
  26. #
  27. # You should have received a copy of the GNU Affero General Public License
  28. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  29. #
  30. ##############################################################################
  31. {
  32. 'name': 'Partner Authentication with Fiscal Document',
  33. 'description': """
  34. * Keep track of due legal identification of partners with a \
  35. corresponing document.
  36. * Register additional document types within the GUI.
  37. * Easy hook for custom copy and validation/formatting methods \
  38. (res_partner_document.py)
  39. """,
  40. 'category': 'Localization',
  41. 'license': 'AGPL-3',
  42. 'author': 'Juan Pablo Arias (devCO), David Arnold BA HSG (devCO)',
  43. 'website': '',
  44. 'version': '0.3',
  45. 'depends': [
  46. 'base',
  47. ],
  48. 'data': [
  49. 'data/res.partner.idtype.csv',
  50. 'res_partner_view.xml',
  51. ],
  52. 'demo': [
  53. ],
  54. 'test': [
  55. ],
  56. 'installable': True,
  57. 'auto_install': False,
  58. }