betekenis code ?
De bedoeling is om aan deze bestaande code een paar regels toe t evoegen zodat ook het gewicht in grammen in de administratie vande shop is af te lezen
De code is
$contents[] = array('text' => '<br>' . TEXT_PRODUCTS_PRICE_INFO . ' ' .
$currencies->format($pInfo->products_price) . '<br>' . TEXT_PRODUCTS_QUANTITY_INFO . ' ' .
$pInfo->products_quantity);
* and replace it by the folowing:
$contents[] = array('text' => '<br>' . TEXT_PRODUCTS_PRICE_NINFO . ' ' . $currencies->format($pInfo->products_price) );
$get_tax_qry = tep_db_query("SELECT tr.tax_rate FROM " . TABLE_PRODUCTS . " p INNER JOIN " . TABLE_TAX_RATES . " tr ON (p.products_tax_class_id = tr.tax_class_id) WHERE (p.products_id = " . $pInfo->products_id . ")");
$get_tax_res = tep_db_fetch_array($get_tax_qry);
$products_price_with_tax = tep_add_tax($pInfo->products_price, $get_tax_res['tax_rate']);
$get_special_price_qry = tep_db_query("SELECT s.specials_new_products_price, s.`status` FROM ".TABLE_SPECIALS." s WHERE (s.products_id = '".$pInfo->products_id."')");
$get_special_price_res = tep_db_fetch_array($get_special_price_qry);
if($get_special_price_res){
$get_special_price_with_tax = tep_add_tax($get_special_price_res['specials_new_products_price'], $get_tax_res['tax_rate']);
}
$contents[] = array('text' => '<br>' . TEXT_PRODUCTS_PRICE_INFO . ' ' . $currencies->format($products_price_with_tax) . '<br><br>' . TEXT_PRODUCTS_QUANTITY_INFO . ' ' . $pInfo->products_quantity);
if($get_special_price_with_tax >= '0' && $get_special_price_res['status'] =1) {
$contents[] = array('text' => '<br>' . TEXT_PRODUCTS_PRICE_SINFO . ' ' . $currencies->format($get_special_price_with_tax) );
}
------------------------------------------------------------------------
In de standaardshop bestond eerst deze code
$contents[] = array('text' => '<br>' . TEXT_PRODUCTS_PRICE_INFO . ' ' .
$currencies->format($pInfo->products_price) . '<br>' . TEXT_PRODUCTS_QUANTITY_INFO . ' ' .
$pInfo->products_quantity);
die veranderd is in de bovenstaande code : met deze nieuwe code uitbreiding kan de bruto en nette prijs in de administratie te zien zijn van een produkt
Mijn uitbreiding weer aan deze code( t eproberen op dit forum) is ... om het gewicht in grammen vaneen produkt ook erbij te kunnen aflezen in de administratie van de shop
MAAR JA ..ikmoet eerst betekenis kunnen gaan geven ( wat betekent het ?
aan de standaardcode van de shop
$contents[] = array('text' => '<br>' . TEXT_PRODUCTS_PRICE_INFO . ' ' .
$currencies->format($pInfo->products_price) . '<br>' . TEXT_PRODUCTS_QUANTITY_INFO . ' ' .
$pInfo->products_quantity);
Betekenis ?
$contents[] ..is een variable genaamd contents en het datatype is een array ?
Het gewicht van een produkt in grammen geef ik ook op op de invoer productbladzijde ... en dit gewicht kan weer gebruikt worden
Nou ..
Jan
Er zijn nog geen reacties op dit bericht.