__manifest__.py 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  2. {
  3. 'name': 'Third Party and Deferred/Electronic Checks Management',
  4. 'version': "1.0.0",
  5. 'category': 'Accounting/Localizations',
  6. 'summary': 'Checks Management',
  7. 'description': """
  8. Own Checks Management
  9. ---------------------
  10. Extends 'Check Printing Base' module to manage own checks with more features:
  11. * allow using own checks that are not printed but filled manually by the user
  12. * allow to use deferred or electronic checks
  13. * printing is disabled
  14. * check number is set manually by the user
  15. * add an optional "Check Cash-In Date" for post-dated checks (deferred payments)
  16. * add a menu to track own checks
  17. Third Party Checks Management
  18. -----------------------------
  19. Add new "Third party check Management" feature.
  20. There are 2 main Payment Methods additions:
  21. * New Third Party Checks:
  22. * Payments of this payment method represent the check you get from a customer when getting paid (from an invoice or a manual payment)
  23. * Existing Third Party check.
  24. * Payments of this payment method are to track moves of the check, for eg:
  25. * Use a check to pay a vendor
  26. * Deposit the check on the bank
  27. * Get the check back from the bank (rejection)
  28. * Get the check back from the vendor (a rejection or return)
  29. * Transfer the check from one third party check journal to the other (one shop to another)
  30. * Those operations can be done with multiple checks at once
  31. """,
  32. 'author': 'ADHOC SA',
  33. 'license': 'LGPL-3',
  34. 'images': [
  35. ],
  36. 'depends': [
  37. 'account_check_printing',
  38. 'base_vat',
  39. ],
  40. 'data': [
  41. 'data/account_payment_method_data.xml',
  42. 'wizards/l10n_latam_payment_mass_transfer_views.xml',
  43. 'security/ir.model.access.csv',
  44. 'views/account_payment_view.xml',
  45. 'views/account_journal_view.xml',
  46. 'wizards/account_payment_register_views.xml',
  47. ],
  48. 'installable': True,
  49. 'auto_install': False,
  50. 'application': False,
  51. }