Jump to content



Latest News: (loading..)

- - - - -

[Addon] Closest Shipper


  • Please log in to reply
6 replies to this topic

#1   kymation

kymation

    Believers

  • Community Sponsor
  • 6,686 posts
  • Real Name:Jim Keebaugh
  • Gender:Male
  • Location:Aberdeen WA USA

Posted 19 December 2009 - 04:37 AM

This addon (addons.oscommerce.com/info/7169) calculates shipping from the location closest to the customer. There is no limit
to the number of shipping locations that may be used. The closest shipper is calculated by
the Great Circle distance based on Zip/Postcode. It requires a database listing the
Zip/Postcodes and their latitude and longitude for the country/countries that you will be
shipping to/from. A current US Zip code database is included.

I'll add the link to the download as soon as it's up.

Regards
Jim

Edited by Jan Zonjee, 19 December 2009 - 08:00 AM.
added link

My Addons

Banners Box 2.3.x  Support
Categories Accordion Box 2.3.x  Support
Categories Images Box 2.2x  2.3.x  Support
Closest Shipper 2.2x  Support
Document Manager 2.2x  Support
Generic Box 2.3.x  Support
Get 1 Free 2.2x  Support
jQuery Banner Rotator 2.2x  2.3.x  Support
Modular Front Page 2.3.x  Support
Modular SEO Header Tags 2.3.x  Support
MVS 2.2x  Support
PDF Datasheet 2.3.x  Support
Price Updater 2.2x
Products Specifications 2.2x  2.3.x  Development Version  Support  Bugs/Suggestions
Request a Review 2.2x - 2.3.x  Support
Similar Products Box 2.2x
Specials Image Overlay 2.3x Support
Theme Switcher 2.3.x  Support

#2   kymation

kymation

    Believers

  • Community Sponsor
  • 6,686 posts
  • Real Name:Jim Keebaugh
  • Gender:Male
  • Location:Aberdeen WA USA

Posted 19 December 2009 - 10:07 PM

The download is here. For the three people who will use this.

Regards
Jim
My Addons

Banners Box 2.3.x  Support
Categories Accordion Box 2.3.x  Support
Categories Images Box 2.2x  2.3.x  Support
Closest Shipper 2.2x  Support
Document Manager 2.2x  Support
Generic Box 2.3.x  Support
Get 1 Free 2.2x  Support
jQuery Banner Rotator 2.2x  2.3.x  Support
Modular Front Page 2.3.x  Support
Modular SEO Header Tags 2.3.x  Support
MVS 2.2x  Support
PDF Datasheet 2.3.x  Support
Price Updater 2.2x
Products Specifications 2.2x  2.3.x  Development Version  Support  Bugs/Suggestions
Request a Review 2.2x - 2.3.x  Support
Similar Products Box 2.2x
Specials Image Overlay 2.3x Support
Theme Switcher 2.3.x  Support

#3   bcmiw330

bcmiw330
  • Members
  • 80 posts
  • Real Name:wes

Posted 06 May 2010 - 05:15 PM

I think the download is missing a file

Warning: main() [function.include]: Failed opening ......../includes/languages/english/modules/shipping/upsxml.php'

and you have a call to xml 5.php and i didnt see that file either...

let me know when you have a chance....great work on the contribution!

#4   kymation

kymation

    Believers

  • Community Sponsor
  • 6,686 posts
  • Real Name:Jim Keebaugh
  • Gender:Male
  • Location:Aberdeen WA USA

Posted 06 May 2010 - 06:24 PM

The UPS module is only included for reference. If you are not using UPS, feel free to remove it from your server. You will still need to modify whatever module you are going to be using. If you are using UPS, you should install the UPSXML module files before you install Closest Shipper. See Appendix B in the manual for instructions. Yes, I probably need to add a warning to the manual, since it's not that clear.

Regards
Jim
My Addons

Banners Box 2.3.x  Support
Categories Accordion Box 2.3.x  Support
Categories Images Box 2.2x  2.3.x  Support
Closest Shipper 2.2x  Support
Document Manager 2.2x  Support
Generic Box 2.3.x  Support
Get 1 Free 2.2x  Support
jQuery Banner Rotator 2.2x  2.3.x  Support
Modular Front Page 2.3.x  Support
Modular SEO Header Tags 2.3.x  Support
MVS 2.2x  Support
PDF Datasheet 2.3.x  Support
Price Updater 2.2x
Products Specifications 2.2x  2.3.x  Development Version  Support  Bugs/Suggestions
Request a Review 2.2x - 2.3.x  Support
Similar Products Box 2.2x
Specials Image Overlay 2.3x Support
Theme Switcher 2.3.x  Support

#5   bcmiw330

bcmiw330
  • Members
  • 80 posts
  • Real Name:wes

Posted 06 May 2010 - 07:33 PM

I ran into a issue where the array was undefined/blank when it came back from the zipcode class I had to move up outside the while the new array

maybe this might help someone else..great function!! Needed it for a while now!

//new idea need to move $result outside while
	   $result = array();


	  $distance = 24901.55;
	  while ($closest = tep_db_fetch_array ($closest_query) ) {
		$new_distance = $this->get_distance ($closest['postcode'], $destination_postcode);
//old		$result = array(); //WAS ON LINE 363? or SO

		switch (true) {
		  case ($new_distance === false):
			// There was an error, so ignore this data
			break;

		  case ($new_distance === 0):
			// Can't get any closer than that. Return this shipper's information
			$result['city'] = $closest['city_name'];
			$result['state'] = $closest['state_id'];
			$result['country'] = $closest['country_id'];
			$result['postcode'] = $closest['postcode'];
			return $result;
			break;

		  case ($new_distance < $distance):


#6   bcmiw330

bcmiw330
  • Members
  • 80 posts
  • Real Name:wes

Posted 06 May 2010 - 07:51 PM

Thanks Jim!! WORKS AWESOME!!! You were right the upsxml module was what was giving me a headache and then I figured out rather quickly the problem I had with the array!

#7   kymation

kymation

    Believers

  • Community Sponsor
  • 6,686 posts
  • Real Name:Jim Keebaugh
  • Gender:Male
  • Location:Aberdeen WA USA

Posted 06 May 2010 - 08:57 PM

Thanks for the bug report. I'll add your fix to the next release.

Regards
Jim
My Addons

Banners Box 2.3.x  Support
Categories Accordion Box 2.3.x  Support
Categories Images Box 2.2x  2.3.x  Support
Closest Shipper 2.2x  Support
Document Manager 2.2x  Support
Generic Box 2.3.x  Support
Get 1 Free 2.2x  Support
jQuery Banner Rotator 2.2x  2.3.x  Support
Modular Front Page 2.3.x  Support
Modular SEO Header Tags 2.3.x  Support
MVS 2.2x  Support
PDF Datasheet 2.3.x  Support
Price Updater 2.2x
Products Specifications 2.2x  2.3.x  Development Version  Support  Bugs/Suggestions
Request a Review 2.2x - 2.3.x  Support
Similar Products Box 2.2x
Specials Image Overlay 2.3x Support
Theme Switcher 2.3.x  Support