I'm setting up an e-shop in Drupal 7 using the Commerce suite of modules. Through the shop, a logistics service is offered on a daily basis.
One part of the checkout process is about showing the user a calendar with availability for the service. The days that the service is available should be displayed, and the user should be able to pick a day as part of the checkout process and move on to the next checkout screen.
I would like to use the Fullcalendar script in order to display the daily availability to the user:
http://arshaw.com/fullcalendar/
There is a relevant plugin in drupal:
https://drupal.org/project/fullcalendar
I am able to display a normal fullcalendar page on my site. The part where I'm really stuck is how to create a fullcalendar pane as part of the checkout process, and store the user selection in the order.
I have tried the commerce extra panes module to add the calendar:
https://drupal.org/project/commerce_extra_panes
However I haven't been successful. I can't figure out a way to display the fullcalendar block as a pane.
I have read the documentation of Drupal commerce, the fullcalendar module and the commerce extra panes module, but I still can't figure out how to display fullcalendar as a pane. I have also tried creating a custom module, but I can't figure out how to output fullcalendar programmatically.
Has anyone done this before? Is there any way to add this functionality to the checkout process via these modules, or should I write all of it from scratch myself?