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.

33 lines
1.4 KiB

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