0

我试图在速度中添加两个值,它总是返回 0。我做错了什么?

#set ($tmpPrice = $orderItem.ExtendedPrice + $discountAmount)

$orderItem.ExtendedPrice 和 $discountAmount 都是带小数的整数,例如:99.99

4

2 回答 2

0

尝试$tmpPrice = ($orderItem.ExtendedPrice + $discountAmount)

于 2010-06-15T16:18:37.947 回答
0

我想到了:

#set ($tmpPrice = $orderItem.ExtendedPrice.ToDecimal(null) + $discountAmount.ToDecimal(null))     

:)

于 2010-06-15T16:21:38.050 回答