Zen Cart Logo
Forums / Addon Shipping Modules / Changing delivery dates from Canada Post

Changing delivery dates from Canada Post

Locked

Views: 2,064

Results 1 to 5 of 5
This thread is locked. New replies are disabled.
9 Feb 2010, 5:22 PM
#1
sjgarg avatar

sjgarg

New Zenner

Join Date:
Nov 2007
Location:
Ontario, Canada
Posts:
18
Plugin Contributions:
0

Changing delivery dates from Canada Post

Well, I've been having repeated problems over the years with some customers who seem to be unable to read that many items we sell are custom and we need production time to make them, it's mentioned on every item page, yet it's ignored...

So I'm looking at how I can either stop the Canada Post shipping module from spitting out any delivery dates for Xpresspost/Expedited/Small Packets, etc. Or find a way to add days/hours? to the calculation for specific items, like how each item has dimensions and weight for Canada Post, is there a way to also enter a turnaround time field.

10 Feb 2010, 5:02 AM
#2
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,513
Plugin Contributions:
176

Re: Changing delivery dates from Canada Post

I've not tried it myself, but in the CP documentation it states:> Additional information that is required by the packing module is

stored in the Retailer Profile. Retailers will maintain this
information through an interface provided by Canada Post. The
information includes:

  1. The originating postal code from where the products will be
    shipped.
  2. The turnaround time.
  3. The handling charge.
  4. The pickup cut-off time.
  5. The list of boxes available for packing including their
    characteristics.
    So ... that would suggest that you can set your turnaround time settings in your SellOnline profile at Canada Post.
10 Feb 2010, 6:20 AM
#3
sjgarg avatar

sjgarg

New Zenner

Join Date:
Nov 2007
Location:
Ontario, Canada
Posts:
18
Plugin Contributions:
0

Re: Changing delivery dates from Canada Post

The problem is that the turnaround time varies from item to item.
I have some that could be in stock, some that would need 2-3 days for painting and some that could need up to 2 weeks to order-in fabric. Although I have a 48 hour turnaround time put into canada post's sell online profile, it doesn't help for some items.

Even though I mention the needed extra production time on each item's page, I still have customers who complain that their order is taking too long, or the delivery date Canada post gave them has passed.

This is why I'd either like to find a way to add "extra" turnaround time to some items, or to remove the estimated delivery dates from the shipping module, and rather mention general delivery times on the checkout pages.

10 Feb 2010, 9:43 PM
#4
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,513
Plugin Contributions:
176

Re: Changing delivery dates from Canada Post

Something else to consider: since the shipping quote is for a complete shipment, what would you do if the customer has multiple products in the cart with different turnaround times? The system only allows you to quote based on a single turnaround time for the complete shipment. And, if you were to split it into multiple shipments, the cost would be greater than what the quoting system would give you.

10 Feb 2010, 9:45 PM
#5
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,513
Plugin Contributions:
176

Re: Changing delivery dates from Canada Post

sjgarg:

to remove the estimated delivery dates from the shipping module, and rather mention general delivery times on the checkout pages.
You can remove the delivery date by editing the module code directly.
Near the bottom of the file is this section of code:$aryProducts[$index] = array( $name . ', ' . $deliveryDate => $rate);Change that to:```
$aryProducts[$index] = array(
$name => $rate);