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.

74 lines
2.4 KiB

10 years ago
10 years ago
10 years ago
10 years ago
  1. # -*- coding: utf-8 -*-
  2. ###############################################################################
  3. #
  4. # Copyright (C) 2015 initOS GmbH(<http://www.initos.com>).
  5. #
  6. # This program is free software: you can redistribute it and/or modify
  7. # it under the terms of the GNU Affero General Public License as
  8. # published by the Free Software Foundation, either version 3 of the
  9. # License, or (at your option) any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU Affero General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU Affero General Public License
  17. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. #
  19. ###############################################################################
  20. {
  21. 'name': 'Point of sale topseller report.',
  22. 'version': '1.0',
  23. 'category': '',
  24. 'summary': 'Report topseller products in point of sale for all shops.',
  25. 'description': """
  26. Report top selling products for point of sale
  27. =============================================
  28. This module adds 2 new reports to report sales done via point of sale for all
  29. of your companies shops.
  30. Top 40 sales by shop
  31. --------------------
  32. * List top 40 sold products in a given period for all of your shops.
  33. * Click on a product to show sales for this product by shop on a daily basis
  34. over that timeframe.
  35. Recent sales by shop for a given product
  36. ----------------------------------------
  37. * Show sales for a product by shop on a daily basis over a given period.
  38. * Select product by product default code.
  39. * Show current stock and total quantity of sales for this product and period.
  40. """,
  41. 'author': 'initOS GmbH',
  42. 'website': 'http://www.initos.com',
  43. 'depends': [
  44. 'web',
  45. 'web_listview_date_range_bar',
  46. 'sale',
  47. 'product',
  48. 'point_of_sale',
  49. ],
  50. 'data': [
  51. 'ir.model.access.csv',
  52. 'pos_top_sellers_view.xml',
  53. ],
  54. 'demo': [
  55. ],
  56. 'installable': True,
  57. 'auto_install': False,
  58. 'application': False,
  59. 'images': [
  60. ],
  61. 'css': [
  62. 'static/src/css/pos_top_sellers.css',
  63. ],
  64. 'js': [
  65. 'static/src/js/pos_top_sellers.js',
  66. ],
  67. 'qweb': [
  68. 'static/src/xml/pos_top_sellers.xml',
  69. ],
  70. }