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.

68 lines
2.2 KiB

  1. # -*- encoding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # Point Of Sale - Product Template module for Odoo
  5. # Copyright (C) 2014-Today Akretion (http://www.akretion.com)
  6. # @author Sylvain LE GAL (https://twitter.com/legalsylvain)
  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': 'Point Of Sale - Product Template',
  24. 'summary': 'Manage Product Template in Front End Point Of Sale',
  25. 'version': '0.1',
  26. 'category': 'Point Of Sale',
  27. 'description': """
  28. Manage Product Template in Front End Point Of Sale
  29. ==================================================
  30. Functionality:
  31. --------------
  32. *
  33. Possible improvements and fix:
  34. ------------------------------
  35. * Display product template name in ProductList;
  36. * Display attributes;
  37. * Improve Template display;
  38. NON Covered features:
  39. ---------------------
  40. *
  41. Copyright, Authors and Licence:
  42. -------------------------------
  43. * Copyright: 2014-Today, Akretion;
  44. * Author:
  45. * Sylvain LE GAL (https://twitter.com/legalsylvain);
  46. * Licence: AGPL-3 (http://www.gnu.org/licenses/);""",
  47. 'author': 'Akretion',
  48. 'website': 'http://www.akretion.com',
  49. 'license': 'AGPL-3',
  50. 'depends': [
  51. 'point_of_sale',
  52. ],
  53. 'data': [
  54. 'view/view.xml',
  55. ],
  56. 'qweb': [
  57. 'static/src/xml/ppt.xml',
  58. ],
  59. 'demo': [
  60. 'demo/product_attribute_value.yml',
  61. 'demo/product_product.yml',
  62. 'demo/res_groups.yml',
  63. ],
  64. }