__openerp__.py 618 B

123456789101112131415161718192021
  1. # -*- coding: utf-8 -*-
  2. # © 2016 Lorenzo Battistini - Agile Business Group
  3. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
  4. {
  5. "name": "Pickings back to draft",
  6. "summary": "Reopen cancelled pickings",
  7. "version": "8.0.1.0.0",
  8. "category": "Warehouse Management",
  9. "website": "https://www.agilebg.com",
  10. "author": "Agile Business Group, Odoo Community Association (OCA)",
  11. "license": "AGPL-3",
  12. "application": False,
  13. "installable": True,
  14. "depends": [
  15. "stock",
  16. ],
  17. "data": [
  18. 'views/picking_view.xml',
  19. ],
  20. 'images': ['images/picking.png'],
  21. }