__openerp__.py 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. # -*- encoding: utf-8 -*-
  2. {
  3. "name": "Bank and Cash Statement with Vouchers",
  4. "version": "2.0",
  5. "description": """
  6. Manage the bank/cash reconciliation with account vouchers (payments and receipts)
  7. =================================================================================
  8. The management of treasury require integrate the payments of customers and suppliers to bank statements, allowing real bank reconciliations.
  9. Key Features
  10. ------------
  11. * Add button on bank statement to add vouchers
  12. * Integrate the account vouchers with the bank statements
  13. * Optimize the payments and receipts in treasury management
  14. * Fix some features on bank statements to enable the bank reconciliation
  15. """,
  16. "author": "Cubic ERP/Rodney Enciso Arias",
  17. "website": "http://cubicERP.com",
  18. "category": "Financial",
  19. "depends": [
  20. "account",
  21. "account_voucher",
  22. "account_reference",
  23. ],
  24. "data": [
  25. "wizard/bank_statement_populate_view.xml",
  26. "account_view.xml",
  27. ],
  28. "demo_xml": [],
  29. "active": False,
  30. "installable": True,
  31. }
  32. # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: