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.

66 lines
2.3 KiB

  1. # -*- encoding: utf-8 -*-
  2. ###############################################################################
  3. #
  4. # OpenERP, Open Source Management Solution
  5. # This module copyright (C) 2014 Savoir-faire Linux
  6. # (<http://www.savoirfairelinux.com>).
  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': 'Partner Aged Statement',
  24. "version": "1.0",
  25. 'author': 'Savoir-faire Linux',
  26. 'website': 'http://www.savoirfairelinux.com',
  27. 'depends': [
  28. 'report_webkit',
  29. 'base_headers_webkit',
  30. 'mail',
  31. 'account',
  32. ],
  33. 'category': 'Accounting',
  34. 'description': """
  35. Print & Send Partner Aged Statement by email
  36. ============================================
  37. This module adds in the system :
  38. * a new mail template "Aged Statement Letter";
  39. * the ability to print the partner aged statement;
  40. * a button "Send by email" in the partner form view which load the template
  41. and attach the statement to the email.
  42. Comparing to 'Overdue Payment' report provided with OpenERP, this one adds more
  43. informations :
  44. * the summary per period
  45. * the list of invoices per period
  46. * the invoices are also shown with the foreign currency
  47. Both messages, in the PDF and the email are taken from the Overdue Payments
  48. Message defined on the Company's configuration.
  49. Contributors
  50. ------------
  51. * Marc Cassuto (marc.cassuto@savoirfairelinux.com)
  52. * Vincent Vinet (vincent.vinet@savoirfairelinux.com)
  53. """,
  54. 'data': [
  55. 'partner_aged_statement_report.xml',
  56. 'partner_aged_statement_view.xml',
  57. 'partner_aged_statement_data.xml',
  58. ],
  59. 'active': False,
  60. 'installable': True
  61. }