← Back to team overview

openerp-connector-community team mailing list archive

Re: How to configure shipping methods

 

On 04/09/2014 09:12 AM, Guewen Baconnier wrote:
On 04/08/2014 08:50 PM, Dylan Frankland wrote:
Inside of your Magento installation you can look at the Models of the the Shipping Methods provided.
I am not so sure about DHL, FedEx, UPS, and USPS because I don't use them, but the other shipping methods I am quite sure of.

app/code/core/Mage/Usa/Model/Shipping/Carrier/
Dhl.php line 45
const CODE = 'dhl';
Magento Carrier Code: dhl

Another way I used is to inspect the HTML of the cart during a sales order.

Could look like that:

<label for="s_method_owebiashipping2_chronopost">
      Livraison à domicile                             …
     <span class="price">
         6,95 €
     </span>
</label>

Where the code is owebiashipping2_chronopost.

The downside is that some methods could be hidden under some conditions.


Thank you Guewen



References