__openerp__.py 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. # -*- encoding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # Odoo, Open Source Management Solution
  5. #
  6. # Author: Andrius Laukavičius. Copyright: JSC NOD Baltic
  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': 'Sale Fast Confirm',
  24. 'version': '1.2',
  25. 'category': 'Sale',
  26. 'summary': 'Auto confirm invoice, delivery orders',
  27. 'description': """
  28. After confirming sale order, automatically creates invoice, validates it.
  29. If there are delivery orders, it also confirms it too.
  30. """,
  31. 'author': 'OERP - Adrielso Kunert - Rodney Enciso Arias',
  32. 'website': 'www.oerp.eu',
  33. 'depends': [
  34. 'sale_stock',
  35. ],
  36. 'data': [
  37. #'security/ir.model.access.csv',
  38. 'views/sale_view.xml',
  39. #'data/',
  40. ],
  41. 'demo': [
  42. ],
  43. 'test': [
  44. ],
  45. 'installable': True,
  46. 'application': False,
  47. 'auto_install': False,
  48. 'images': [],
  49. }
  50. # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: