This module works like the pickup shipping method
+ you can have multiple stores
+ still works for 1 store
+ adjusts the delivery address to the address of the selected shop
+ stores can be added in the admin
http://forums.oscommerce.com/viewtopic.php?p=134821
Legend: 
Download

Report
Somehow in the last one I managed to swop a curly bracket with $radio_buttons++;
In the last set of instructions you need to:
catalog/checkout_shipping.php
line 359
replace
$radio_buttons++;
}
with
}
$radio_buttons++;
If you don't do this, you won't be able to select the delivery option directly below the pickup option.
Changed a couple of things here.
The error handling now works better, although it looks like the way I've done it is based on the work from another contribution I can't remember which!
There is a bug in one of the if statements. My multi pickup section was the last delivery option available so I didn't see it before but in the first one basically the drop down list would appear in the multi pickup and every option after. It doesn't now.
I've also updated the line references so they should be more relevant to the original code as opposed to my modified version.
This contribution was a great start for what I needed however it had some limitations. I have a long list of pickup sites which would have made the page get big very quickly.
It is also a bit difficult to tell some of the locations apart just from the name.
So the first mod, a simple one line change is to make it display the address as well as the title.
The second mod is quite more complicated and relies on javascript/dhtml. This turns the big long list of radio boxes into a dropdown menu which rewrites the radio box to the correct value using innerHTML.
Line numbers are for my install which has been hacked about quite a lot. I don't think I've made much change to these particular files so they should be right as for 2.2 MS2
I also intend on linking up the google maps api to the postcodes of these shops, but that is another task altogether.
This file has a bugfix for inserting a store in database.
and the forum url is now :
http://forums.oscommerce.com/index.php?showtopic=38506&st=0
This is a text description for a fix to the tax treatment in the Multi Pickup (MS1) contribution.
Use it at your own risk!
This module works like the pickup shipping method
+ you can have multiple stores
+ still works for 1 store
+ adjusts the delivery address to the address of the selected shop
+ stores can be added in the admin
http://forums.oscommerce.com/viewtopic.php?p=134821