__openerp__.py 845 B

1234567891011121314151617181920212223
  1. # -*- encoding: utf-8 -*-
  2. {
  3. 'name': 'POS Sale Report',
  4. 'version': '0.1',
  5. 'category': 'Point Of Sale',
  6. 'license': 'AGPL-3',
  7. 'summary': 'Add a graph via on that aggregate sale orders and pos orders',
  8. 'description': """
  9. In the *Reporting* menu, add a new entry *POS + Sale Orders Analysis* that show sale statistics per products that aggregate sale orders and pos orders.
  10. Also add direct access to Sales statistics on the Product form view and Product Variants form view (Menu entry *Sales Statistics* in the *More* drop down list).
  11. """,
  12. 'author': 'Akretion - EIRU',
  13. 'website': 'https://www.eiru.com.py',
  14. 'depends': ['point_of_sale', 'sale'],
  15. 'data': [
  16. 'report/pos_sale_report_view.xml',
  17. 'product_view.xml',
  18. 'security/ir.model.access.csv',
  19. ],
  20. 'installable': True,
  21. }