__openerp__.py 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. # -*- encoding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # OpenERP, Open Source Management Solution
  5. # Copyright (C) 2007-TODAY ASPerience SARL (<http://www.asperience.fr>).
  6. # All Rights Reserved
  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 published by
  10. # the Free Software Foundation, either version 3 of the License, or
  11. # (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": "ASPerience Sale History",
  24. "version": "8.0",
  25. "author": "ASPerience",
  26. "website": "http://www.asperience.fr",
  27. "sequence": 0,
  28. "certificate": "",
  29. "license": "",
  30. "depends": [
  31. "sale"
  32. ],
  33. "category": "Sales Management",
  34. "complexity": "easy",
  35. "description": """
  36. Adds view panel for displaying documents dependent of sale
  37. """,
  38. "data": [
  39. 'sale_view.xml',
  40. ],
  41. "demo": [
  42. ],
  43. "test": [
  44. ],
  45. "images": [
  46. "images/asperience.png",
  47. "images/sale_invoices.png",
  48. ],
  49. "auto_install": False,
  50. "installable": True,
  51. "application": False,
  52. }
  53. # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: