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.

41 lines
1.5 KiB

  1. To configure this module, you need to:
  2. #. Go to Warehouse / Configuration / Types of Operation
  3. #. Select the picking type(s) you want to see in the point of sale
  4. #. Check the box 'Available in Point of Sale'
  5. .. figure:: ../static/description/stock_picking_type_form.png
  6. :width: 800 px
  7. Note: This box is NOT enabled by default except in demo data for the type
  8. 'Delivery Orders' of the demo company 'YourCompany'.
  9. #. Go to Point of Sale / Configuration / Point of Sales
  10. #. Select the Point(s) of Sales witch those you want to enable the feature
  11. #. Check the box 'Load Pickings'
  12. #. Set the max quantity of pickings you want to load
  13. .. figure:: ../static/description/pos_config_form.png
  14. :width: 800 px
  15. Note: This box is enabled by default
  16. **Technical Notes**
  17. * By default, the Point of Sale will display only the pickings if the state is
  18. in 'Waiting Availability', 'Partially Available' or 'Ready to Transfer'.
  19. You can change this filter by overloading the ``_prepare_filter_for_pos``
  20. function of the model ``stock.picking``.
  21. * By default, the search of pickings will be done on the fields ``name``,
  22. ``origin`` and ``partner_id`` of the picking.
  23. You can change this feature by overloading the
  24. ``_prepare_filter_query_for_pos`` function of the model ``stock.picking``.
  25. * By default, when the PoS order is confirmed, the original picking is
  26. cancelled and the sale order is set to the state 'Done'.
  27. You can change this behaviour by overloading
  28. ``_handle_orders_with_original_picking`` function of the model ``pos.order``.