35
« il: 18 Apr 2008, 12:03:54 »
Per far uscire l’imponibile + iva al 20%
Innanzitutto lasciare marcato in amministrazione, configurazione, la voce “Mostra "(incluso XX% IVA)" dove applicabile?”, poi andare in “CLIENTI” lista dei gruppi clienti e togliere il segno di spunta in “Mostra Prezzi IVA inclusa?:
“
Poi nel file: ps.product.php
Andare alla riga: 1891 e più precisamente dove si trova selezionare da:
$text_including_tax = "";
if (!empty($my_taxrate)) {
$tax = $my_taxrate * 100;
// only show "including x % tax" when it shall
// not be hidden
if( !$hide_tax && $auth["show_price_including_tax"] == 1 && VM_PRICE_SHOW_INCLUDINGTAX) {
$text_including_tax = $VM_LANG->_PHPSHOP_INCLUDING_TAX;
eval ("\$text_including_tax = \"$text_including_tax\";");
}
}
ed inserire
$decimals = 2;
$text_including_tax = "";
if (!empty($my_taxrate)) {
$tax = $my_taxrate * 100;
// only show "including x % tax" when it shall
// not be hidden
if( !$hide_tax && $auth["show_price_including_tax"] == 1 && VM_PRICE_SHOW_INCLUDINGTAX) {
$text_including_tax = $VM_LANG->_PHPSHOP_INCLUDING_TAX;
eval ("\$text_including_tax = \"$text_including_tax\";");
} else {
$text_including_tax = "<a href='#' title='" . $CURRENCY_DISPLAY->getFullValue($base_price*1.2, $decimals) . "' style='color:inherit;font-weight:inherit;border-bottom:1px dashed ;'>+ IVA al 20%[/url]";
}
} else {
$text_including_tax = "<a href='#' title='" . $CURRENCY_DISPLAY->getFullValue($base_price* 1.2, $decimals) . "' style='color:inherit;font-weight:inherit;border-bottom:1px dashed ;'>+ IVA al 20%[/url]";
}
Se non si vuole visualizzare “al 20%, basta eliminare il testo al 20% e salvare