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.

52 lines
1.7 KiB

  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, buttons 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. Three options are available:
  12. * **Create a draft Order**
  13. A new sale order in a draft mode will be created that can be changed later.
  14. .. figure:: ../static/description/pos_create_picking_option_1.png
  15. :width: 800 px
  16. * **Create a Confirmed Order**
  17. A new sale order will be created and confirmed.
  18. .. figure:: ../static/description/pos_create_picking_option_2.png
  19. :width: 800 px
  20. * **Create Delivered Picking** (by default)
  21. A new sale order will be created and confirmed. the associated picking
  22. will be marked as delivered.
  23. .. figure:: ../static/description/pos_create_picking_option_3.png
  24. :width: 800 px
  25. **Technical Notes**
  26. * Some hooks are defined in the JS file, to define custom behaviour after
  27. having created the sale order (and the stock picking).
  28. * Some prepare functions are available in the sale.order model, to overload
  29. the creation of the sale order.
  30. * You could be interested by another module, pos_sale_order, that completely
  31. alter Point of Sale module, avoiding creating Pos Orders, and creating
  32. allways Sale Orders.
  33. This module is a WIP state, and is available here:
  34. https://github.com/OCA/pos/pull/35