本文整理匯總了Python中orders.models.Order.shipping_charge方法的典型用法代碼示例。如果您正苦於以下問題:Python Order.shipping_charge方法的具體用法?Python Order.shipping_charge怎麽用?Python Order.shipping_charge使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類orders.models.Order
的用法示例。
在下文中一共展示了Order.shipping_charge方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: process_order
# 需要導入模塊: from orders.models import Order [as 別名]
# 或者: from orders.models.Order import shipping_charge [as 別名]
def process_order(self, pyOrder, payment_form):
"""
Takes the following steps:
1. Locks the products in the cart, read-only access only (TBD, I have no idea how to do this ATM)
2. Creates an Order instance from the form data in this checkout process, and validates it (it should checkout
ok, if it doesn't there was a bug in my forms.
3. Authorize credit-card, payment information (the payment form will have a hidden containing the amount to
put on the card. This way the number the user sees and the number I charge are guaranteed to be the same.
4. Submit the order (save it)
5. Decrement product stock
6. Unlock the products that were locked in step 1
7. Redirect the user to a receipt page
"""
order = Order() # db class
if not payment_form.is_valid():
return False
# link user information, even if that user is a guest (lazy) account. They'll need this information set in
# order to view their order receipt at the end of the process.
order.user = self.request.user
order.first_name = pyOrder.first_name
order.last_name = pyOrder.last_name
order.email = pyOrder.email
order.phone = pyOrder.phone
order.contact_method = pyOrder.contact_method
order.shipping_method = pyOrder.shipping_method
order.shipping_charge = pyOrder.shipping_charge
order.save()
# save the payment information
payment_form.save(order)
shipping_address = pyOrder.shipping_address.as_address(OrderShippingAddress)
shipping_address.order = order
shipping_address.save()
billing_address = pyOrder.billing_address.as_address(OrderBillingAddress)
billing_address.order = order
billing_address.save()
for order_item in pyOrder.items:
order_item.order = order
order_item.full_clean()
order_item.save()
# decrement stock for products
if order_item.is_product():
in_stock = order_item.item.quantity
order_item.item.quantity = max(0, in_stock - order_item.quantity)
order_item.item.save()
# mark wish list items as sold
wishlist_links = order_item.cart_item.wishlist_links.all()
for link in wishlist_links:
link.wishlist_item.order_item = order_item
link.wishlist_item.full_clean()
link.wishlist_item.save()
for (name, rate, total) in pyOrder.tax_breakdown():
orderTax = OrderTax(name=name, rate=rate, total=total, order=order)
orderTax.save()
# save the order-id in the session dictionary
self.save('order', order.id)
return True