开发者

Drupal, Ubercart: Extended price for products in the templat?

开发者 https://www.devze.com 2023-01-07 08:53 出处:网络
I\'m modifying the invoice template of my Ubercart shop. There is a missing parameter I need (Please see the image): http://dl.dropbox.com/u/72686/extendedPrice.png

I'm modifying the invoice template of my Ubercart shop.

There is a missing parameter I need (Please see the image): http://dl.dropbox.com/u/72686/extendedPrice.png

The Extended Price is not correct. I need to multiply the unit price for the units. I was wondering how can I retrieve it (i.e. The unit price开发者_StackOverflow社区 is uc_price($price_info, $context) ).

I could compute it multiplying units number and price in the template, but I would prefer to not do it, if possible, since I have also the currency symbol.. and I should parse the data.

thanks


You can specify the quantity in the call to uc_price. If unit price is 20 and quantity is 2,

$price_info = array('price' => 20, 'qty' => 2);
uc_price($price_info, $context);
0

精彩评论

暂无评论...
验证码 换一张
取 消