Hello,
If you want to display pickup points regarding the selected shipping service through your checkout workflow, the solution will be to use the :
- function onCheckoutStepList(&$list) : which will just enable you to add an item on the checkout workflow configuration page "Hikashop->System->Configuration->Checkout" (In your case, that item will just display pickup points)
- function onCheckoutStepDisplay($layoutName, &$html, &$view) : which will display your pick up points list regarding the selected shipping service
- function onAfterCheckoutStep($controllerName, &$go_back, $original_go_back, &$controller) : which will check that you correctly selected a pickup point
- function onBeforeOrderCreate(&$order,&$do) : which will enable you to save the "pick up point" on your order shipping params
- function onHikashopBeforeDisplayView(&$view) : which will enable you to DISPLAY the "pick up point" on the additional information tab of your order detail back ("Hikashop->Orders->YourOrder").
Note that you'll find more information about these functions through the developer documentation :
www.hikashop.com/support/documentation/6...tation.html#checkout
Also, we are currently working on the "envoimoinscher" project which use these functions, so we can eventually send you the plugin when it will be finish.