Jump to content

Spese gestione ordine


andreamiky

Recommended Posts

Nella Gestione Ordine del BO si richiede di specificare le "Spese gestione ordine" che sono sicuramente utilissime, mentre nel FO vengono incluse nelle Spese di trasporto sia nell'ordine che nella fattura.
Esiste un modo per mostrare le "Spese gestione ordine" nel carrello,nell'ordine e nella fattura?

Il tutto per una questione di trasparenza verso il cliente che può verificare i costi di trasporto sul sito del corriere, ad esempio Paccocelere 3 che costa 9.10€ e non 11.10€ come risulta ora.

:roll:

Link to comment
Share on other sites

Anch'io non le metto mai....


ma devi prima trovare la variabile,

le spese di trasporto sono:

echo $cart->getOrderTotal(true, 5);


o

echo $cart->getOrderShippingCost();



dovresti provare con i numeri successivi 6 o 7 che sono abilitati ma non so cosa siano

avevo trovato su un post francese i campi fino al 5...

// récupération prix total produits hors promos - totale prodotti senza sconti
echo $cart->getOrderTotal(true, 1);
// récupération prix total des promotions - totale sconti
echo $cart->getOrderTotal(true, 2);
// récupération prix total - prezzo totale tutto completo
echo $cart->getOrderTotal(true, 3);
// récupération prix total sans frais de port - prezzo senza spese di trasporto
echo $cart->getOrderTotal(true, 4);
// récupération frais de port seuls - spese di traporto
echo $cart->getOrderTotal(true, 5);
// ou
echo $cart->getOrderShippingCost(); - spese di trasporto
// on a aussi les codes 6 et 7 à voir...

Link to comment
Share on other sites

Basta leggere i commenti della funzione:

   /**
   * This function returns the total cart amount
   *
   * type = 1 : only products
   * type = 2 : only discounts
   * type = 3 : both
   * type = 4 : both but without shipping
   * type = 5 : only shipping
   * type = 6 : only wrapping
   * type = 7 : only products without shipping
   *
   */

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...