In the file:
/usr/local/lib/python2.6/dist-packages/Satchmo-0.9.2-py2.6.egg/payment/
templates/shop/checkout/paypal/confirm.html
there is a line that goes:
<input type="hidden" name="a1"
value="{{ subscription.trial1.price }}">
It's the price of the first trial term, the price that gets set there
though is the price of the product because in the file:
/usr/local/lib/python2.6/dist-packages/Satchmo-0.9.2-py2.6.egg/payment/
modules/paypal/views.py
there is:
recurring['trial1'] = {'price': order.balance,}
if trial0 is not None:
recurring['trial1']['expire_length'] = trial0.expire_length
recurring['trial1']['expire_unit'] =
trial0.subscription.expire_unit[0]
notice that price is set to order.balance, why is that? shouldn't it
be set to trial0.price? At least if I change it so it's set to
trial0.price I get a correct price for the trial.
--
You received this message because you are subscribed to the Google Groups
"Satchmo users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/satchmo-users?hl=en.