__openerp__.py 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # -*- coding: utf-8 -*-
  2. # Copyright (c) 2015 Noviat nv/sa (www.noviat.com)
  3. #
  4. # This program is free software: you can redistribute it and/or modify
  5. # it under the terms of the GNU Affero General Public License as published
  6. # by the Free Software Foundation, either version 3 of the License, or
  7. # (at your option) any later version.
  8. #
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. # GNU Affero General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU Affero General Public License
  15. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. #
  17. ##############################################################################
  18. {
  19. 'name': 'Tree dates search',
  20. 'version': '8.0.3.0.1',
  21. 'author': 'Noviat, Odoo Community Association (OCA)',
  22. 'website': 'http://www.noviat.com',
  23. 'license': 'AGPL-3',
  24. 'category': 'Web',
  25. 'depends': [
  26. 'sale',
  27. 'purchase',
  28. 'account',
  29. 'stock',
  30. 'web',
  31. ],
  32. 'data': [
  33. 'demo.xml',
  34. 'sale.xml',
  35. 'purchase.xml',
  36. 'invoice.xml',
  37. 'picking.xml',
  38. 'voucher_supplier.xml',
  39. 'voucher_customer.xml',
  40. 'voucher_proveedor.xml',
  41. 'voucher_cliente.xml',
  42. 'refund_cliente.xml',
  43. 'refund_supplier.xml',
  44. 'views/assets_backend.xml',
  45. ],
  46. 'qweb': [
  47. 'static/src/xml/*.xml',
  48. ],
  49. 'installable': True,
  50. }