當前位置: 首頁>>代碼示例>>Python>>正文


Python Order.contact_method方法代碼示例

本文整理匯總了Python中orders.models.Order.contact_method方法的典型用法代碼示例。如果您正苦於以下問題:Python Order.contact_method方法的具體用法?Python Order.contact_method怎麽用?Python Order.contact_method使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在orders.models.Order的用法示例。


在下文中一共展示了Order.contact_method方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: process_order

# 需要導入模塊: from orders.models import Order [as 別名]
# 或者: from orders.models.Order import contact_method [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
開發者ID:arthurcode,項目名稱:arthurcode,代碼行數:69,代碼來源:views.py


注:本文中的orders.models.Order.contact_method方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。