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.

50 lines
1.8 KiB

10 years ago
10 years ago
10 years ago
  1. # -*- coding: utf-8 -*-
  2. ###############################################################################
  3. #
  4. # OpenERP, Open Source Management Solution
  5. # Copyright (C) 2012 Julius Network Solutions SARL <contact@julius.fr>
  6. #
  7. # This program is free software: you can redistribute it and/or modify
  8. # it under the terms of the GNU General Public License as published by
  9. # the Free Software Foundation, either version 3 of the License, or
  10. # (at your option) any later version.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU General Public License
  18. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. #
  20. ###############################################################################
  21. {
  22. "name": "Export Documents from database",
  23. "summary": "Export Existing Documents from Database to File System",
  24. "version": "1.0",
  25. "author": "Julius Network Solutions,Odoo Community Association (OCA)",
  26. "website": "http://julius.fr",
  27. "category": "Tools",
  28. "depends": [
  29. "document",
  30. ],
  31. "description": """
  32. Add a Button to export existing documents from database to File System
  33. ======================================================================
  34. * Make sure you've correctly defined the filestore in your database:
  35. * "Settings > Parameters > System Parameters":
  36. * "key": "ir_attachment.location"
  37. * "value": "file:///filestore"
  38. * Go to your document list, select all the documents you want to extract.
  39. * Click on "More > Documents Export"
  40. """,
  41. "data": [
  42. 'view/view.xml',
  43. 'view/action.xml',
  44. 'data/ir_values.xml',
  45. ],
  46. }