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.

76 lines
2.8 KiB

  1. # -*- encoding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # Point Of Sale - Select Customer module for OpenERP
  5. # Copyright (C) 2014 GRAP (http://www.grap.coop)
  6. # @author Julien WESTE
  7. # @author Sylvain LE GAL (https://twitter.com/legalsylvain)
  8. #
  9. # This program is free software: you can redistribute it and/or modify
  10. # it under the terms of the GNU Affero General Public License as
  11. # published by the Free Software Foundation, either version 3 of the
  12. # License, or (at your option) any later version.
  13. #
  14. # This program is distributed in the hope that it will be useful,
  15. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. # GNU Affero General Public License for more details.
  18. #
  19. # You should have received a copy of the GNU Affero General Public License
  20. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  21. #
  22. ##############################################################################
  23. {
  24. 'name': 'Point Of Sale - Select Customers',
  25. 'summary': 'Allow users to select a customer in Front End Point Of Sale',
  26. 'version': '0.1',
  27. 'category': 'Point Of Sale',
  28. 'description': """
  29. Allow users to select a customer in Front End Point Of Sale
  30. ===========================================================
  31. Functionality:
  32. --------------
  33. * Allow user to set a customer to a pos order in front end views;
  34. Possible improvements and fix:
  35. ------------------------------
  36. * This module displays all the customers. That can be long to display
  37. if there are a lot of customers in database; Display only 80 could be a
  38. solution;
  39. * Images of customers are loaded each time; Similar behaviour as
  40. products image management (with cache) could be developped;
  41. NON Covered features:
  42. ---------------------
  43. * Possibility to create customers in front end views;
  44. * Possibility to change price if customer has a list price different as
  45. the default list price; (Big stuff);
  46. * Possibility to see if the partner has not the default price list;
  47. * Possibility to invoice in front-end views;
  48. Copyright, Authors and Licence:
  49. -------------------------------
  50. * Copyright: 2014, GRAP: Groupement Régional Alimentaire de Proximité;
  51. * Author:
  52. * Julien WESTE;
  53. * Sylvain LE GAL (https://twitter.com/legalsylvain);
  54. * Licence: AGPL-3 (http://www.gnu.org/licenses/);""",
  55. 'author': "GRAP,Odoo Community Association (OCA)",
  56. 'website': 'http://www.grap.coop',
  57. 'license': 'AGPL-3',
  58. 'depends': [
  59. 'point_of_sale',
  60. 'pos_second_header',
  61. ],
  62. 'qweb': [
  63. 'static/src/xml/psc.xml',
  64. ],
  65. 'js': [
  66. 'static/src/js/psc.js',
  67. ],
  68. 'css': [
  69. 'static/src/css/psc.css',
  70. ],
  71. }