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.

79 lines
2.9 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': '8.0.0.2.0',
  26. 'category': 'Point Of Sale',
  27. 'description': """
  28. Manage Product Template in Front End Point Of Sale
  29. ==================================================
  30. Functionality:
  31. --------------
  32. * In Point Of Sale Front End - Products list:
  33. * Display only one product per template;
  34. * Display template name instead of product name;
  35. * Display products quantity instead of price;
  36. * Click on template displays an extra screen to select Variant;
  37. * In Point Of Sale Front End - Variants list:
  38. * Display all the products of the selected variant;
  39. * Click on a attribute value filters products;
  40. * Click on a product adds it to the current Order or display normal
  41. extra screen if it is a weightable product;
  42. Technical Information:
  43. ----------------------
  44. * Load extra model in Point Of Sale Front End:
  45. * product.template;
  46. * product.attribute;
  47. * product.attribute.value;
  48. Copyright, Authors and Licence:
  49. -------------------------------
  50. * Copyright: 2014-Today, Akretion;
  51. * Author:
  52. * Sylvain LE GAL (https://twitter.com/legalsylvain);
  53. * Licence: AGPL-3 (http://www.gnu.org/licenses/);""",
  54. 'author': "Akretion,Odoo Community Association (OCA)",
  55. 'website': 'http://www.akretion.com',
  56. 'license': 'AGPL-3',
  57. 'depends': [
  58. 'point_of_sale',
  59. ],
  60. 'data': [
  61. 'view/view.xml',
  62. ],
  63. 'qweb': [
  64. 'static/src/xml/ppt.xml',
  65. ],
  66. 'demo': [
  67. 'demo/product_attribute_value.yml',
  68. 'demo/product_product.yml',
  69. 'demo/res_groups.yml',
  70. ],
  71. 'images': [
  72. 'static/src/img/screenshots/pos_product_template.png',
  73. ],
  74. 'installable': False,
  75. }