Ejemplo n.º 1
0
    def _createTemporaryShippingProduct(self):
        """
        """
        temp_shipping_product = Product("shipping")
        temp_shipping_product.setPrice(self.getPriceGross())
        temp_shipping_product.context = self.context

        return temp_shipping_product
Ejemplo n.º 2
0
 def _createTemporaryPaymentProduct(self):
     """
     """
     temp_payment_product = Product("payment")
     temp_payment_product.setPrice(self.getPriceGross())
     temp_payment_product.context = self.context
     
     return temp_payment_product
Ejemplo n.º 3
0
    def _createTemporaryPaymentProduct(self):
        """
        """
        temp_payment_product = Product("payment")
        temp_payment_product.setPrice(self.getPriceGross())
        temp_payment_product.context = self.context

        return temp_payment_product
Ejemplo n.º 4
0
    def _createTemporaryShippingProduct(self):
        """
        """
        temp_shipping_product = Product("shipping")
        temp_shipping_product.setPrice(self.getPriceGross())
        temp_shipping_product.context = self.context

        return temp_shipping_product