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.

43 lines
1.5 KiB

  1. Dynamic Price for Odoo Point of Sale
  2. ====================================
  3. Motivation
  4. ----------
  5. Many issues report this feature. This why I took decision to start this module
  6. Reported issues :
  7. `odoo 8 POS price list discount has no effect. <https://github.com/odoo/odoo/issues/3579>`_
  8. `ODOO POS Pricelist - Public Price & Discounted Price in Receipt. <https://github.com/odoo/odoo/issues/1758>`_
  9. `V8.0 pos gives wrong price when using min qty in pos pricelist <https://github.com/odoo/odoo/issues/2297>`_
  10. Goal of the module
  11. ------------------
  12. The goal of this module is to bring the pricelist computation engine to the POS.
  13. This module loads all the necessary data into the POS in order to have a coherent behaviour (offline/online/backend).
  14. Implemented features
  15. --------------------
  16. 1. Attached pricelist on partner will take effect on the POS, which means that if we attach a pricelist to a partner.
  17. The POS will recognize it and will compute the price according to the rule defined.
  18. 2. Fiscal Position of each partner will also be present so taxes will be correctly computed
  19. (conforming to the fiscal position).
  20. - Implemented Rules are :
  21. 1. (-1) : Rule based on other pricelist
  22. 2. (-2) : Rule based on supplierinfo
  23. 3. (default) : Any price type which is set on the product form
  24. Missing features
  25. ----------------
  26. * As you may know, product template is not fully implemented in the POS, so I decided to drop it from this module.
  27. * When there are more than one price depending on the quantity, only the price
  28. for first interval is shown.