We're working on a catalog for a new customer who has a 'weird' shipping setup. Each item that they ship has a specific 'box-size' code associated with it. And, with very rare exception - which we were told not to worry about - each item is shipped in a separate box. The pricing table is a matrix of box size by FedEx zone based on three-digit postal code.
The table is quite small 8 sizes by 8 zones and doing a lookup to determine the zone is quite simple.
For a single item order, if one were to treat the box size as a 'weight', then actinic MIGHT be able to handle this, assuming I could define the proper zone mapping.
But this certainly would NOT work for a multi-item order as there's no way I can think of to code the 'weight' properly.
What I'm thinking I need to do is to find the place in the perl modules where actinic calculates the shipping cost and replace it with what I need.
Can someone point me to the correct module (or modules)?
Has anyone tired this before?
The table is quite small 8 sizes by 8 zones and doing a lookup to determine the zone is quite simple.
For a single item order, if one were to treat the box size as a 'weight', then actinic MIGHT be able to handle this, assuming I could define the proper zone mapping.
But this certainly would NOT work for a multi-item order as there's no way I can think of to code the 'weight' properly.
What I'm thinking I need to do is to find the place in the perl modules where actinic calculates the shipping cost and replace it with what I need.
Can someone point me to the correct module (or modules)?
Has anyone tired this before?
Comment