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.

22 lines
864 B

  1. This module extends the functionality of point of sale to allow sale orders
  2. creation from the Point of Sale.
  3. In the POS UI, button has been added to create a sale order and discard
  4. the current POS order.
  5. This module is usefull in many cases, for exemple :
  6. * take orders with a very simple interface
  7. * if you have some customers that come every day in your shop, but want to
  8. have a unique invoice at the end of the month. With that module, you can
  9. create a sale order and deliver products every time to keep your stock value
  10. correct, and to create a unique invoice, when you want.
  11. **Technical Notes**
  12. * Some hooks are defined in the JS file, to define custom behaviour after
  13. having created the sale order.
  14. * Some prepare functions are available in the ``sale.order`` model and
  15. ``sale.order.line`` models to overload the creation of the sale order.