Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

WEEE Directive


sonictrip.net

Recommended Posts

Hi,

 

Would anyone know how to automatically charge people this WEEE charge and display it separately to the actual price of the product, like on this website:

 

http://www.buy4now.ie/discountelectrical/

 

Here's a link with some info about the WEEE charge:

 

http://www.buy4now.ie/discountelectrical/d...ent.aspx?loc=17

Link to comment
Share on other sites

quick method would be to do it as an attribute.

alternative would be to add a field to the products table and alter the codes throughout to add the charge(too many code changes to post)

it could be done in a similar style to special prices i.e.

 

	if ($weee_price = tep_get_products_weee_price($product_info['products_id'])) {
  $products_price = $products_price = $currencies->display_price($product_info['products_price'], tep_get_tax_rate($product_info['products_tax_class_id'])) . '<br>' . $currencies->display_price($weee_price, tep_get_tax_rate($product_info['products_tax_class_id']));
} else {
  $products_price = $currencies->display_price($product_info['products_price'], tep_get_tax_rate($product_info['products_tax_class_id']));
}

No longer giving free advice. Please place deposit in meter slot provided.  Individual: [=] SME: [==] Corporation: [===]
If deposit does not fit one of the slots provided then you are asking too much! :P

Is your Osc dated try Phoenix  raising oscommerce from the ashes.

Link to comment
Share on other sites

quick method would be to do it as an attribute.

alternative would be to add a field to the products table and alter the codes throughout to add the charge(too many code changes to post)

The French name for that tax (also the Dutch by the way) is ecotax. There is a contribution for that plus another (French) one. Looks like the instructions for those will be in French only :-"
Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...