forked from magento/devdocs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckout.html
92 lines (61 loc) · 4.23 KB
/
checkout.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
---
layout: m1x_soap
title: Checkout
---
<h2><a name="Mage_Checkout-Module%3AMageCheckout"></a>Module: Mage_Checkout</h2>
<p>The Mage_Checkout module allows you to manage shopping carts and the checkout process. This module allows you to create an order once filling the shopping cart is complete.</p>
<h4><a name="Mage_Checkout-CartCoupon"></a>Cart Coupon</h4>
<p>Allows you to add and remove coupon codes for a shopping cart.</p>
<p><b>Resource Name</b>: cart_coupon</p>
<p><b>Methods</b>:</p>
<ul>
<li><a href="cartCoupon/cart_coupon.add.html" title="cart_coupon.add">cart_coupon.add</a> - Add a coupon code to a quote</li>
<li><a href="cartCoupon/cart_coupon.remove.html" title="cart_coupon.remove">cart_coupon.remove</a> - Remove a coupon code from a quote</li>
</ul>
<h4><a name="Mage_Checkout-CartCustomer"></a>Cart Customer</h4>
<p>Allows you to add customer information and addresses into a shopping cart.</p>
<p><b>Resource Name</b>: cart_customer</p>
<p><b>Methods</b>:</p>
<ul>
<li><a href="cartCustomer/cart_customer.set.html" title="cart_customer.set">cart_customer.set</a> - Add customer information into a shopping cart</li>
<li><a href="cartCustomer/cart_customer.addresses.html" title="cart_customer.addresses">cart_customer.addresses</a> - Set the customer addresses (shipping and billing) into a shopping cart</li>
</ul>
<h4><a name="Mage_Checkout-CartPayment"></a>Cart Payment</h4>
<p>Allows you to retrieve and set payment methods for a shopping cart.</p>
<p><b>Resource Name</b>: cart_payment</p>
<p><b>Methods</b>:</p>
<ul>
<li><a href="cartPayment/cart_payment.method.html" title="cart_payment.method">cart_payment.method</a> - Set a payment method for a shopping cart</li>
<li><a href="cartPayment/cart_payment.list.html" title="cart_payment.list">cart_payment.list</a> - Get the list of available payment methods for a shopping cart</li>
</ul>
<h4><a name="Mage_Checkout-CartProduct"></a>Cart Product</h4>
<p>Allows you to manage products in a shopping cart.</p>
<p><b>Resource Name</b>: cart_product</p>
<p><b>Methods</b>:</p>
<ul>
<li><a href="cartProduct/cart_product.add.html" title="cart_product.add">cart_product.add</a> - Add one or more products to a shopping cart</li>
<li><a href="cartProduct/cart_product.update.html" title="cart_product.update">cart_product.update</a> - Update one or more products in a shopping cart</li>
<li><a href="cartProduct/cart_product.remove.html" title="cart_product.remove">cart_product.remove</a> - Remove one or more products from a shopping cart</li>
<li><a href="cartProduct/cart_product.list.html" title="cart_product.list">cart_product.list</a> - Get a list of products in a shopping cart</li>
<li><a href="cartProduct/cart_product.moveToCustomerQuote.html" title="cart_product.moveToCustomerQuote">cart_product.moveToCustomerQuote</a> - Move one or more products from the quote to the customer shopping cart</li>
</ul>
<h4><a name="Mage_Checkout-CartShipping"></a>Cart Shipping</h4>
<p>Allows you to retrieve and set shipping methods for a shopping cart.</p>
<p><b>Resource Name</b>: cart_shipping</p>
<p><b>Methods</b>:</p>
<ul>
<li><a href="cartShipping/cart_shipping.method.html" title="cart_shipping.method">cart_shipping.method</a> - Set a shipping method for a shopping cart</li>
<li><a href="cartShipping/cart_shipping.list.html" title="cart_shipping.list">cart_shipping.list</a> - Retrieve the list of available shipping methods for a shopping cart</li>
</ul>
<h4><a name="Mage_Checkout-ShoppingCart"></a>Shopping Cart</h4>
<p>Allows you to manage shopping carts.</p>
<p><b>Resource Name</b>: cart</p>
<p><b>Methods</b>:</p>
<ul>
<li><a href="cart/cart.create.html" title="cart.create">cart.create</a> - Create a blank shopping cart</li>
<li><a href="cart/cart.order.html" title="cart.order">cart.order</a> - Create an order from a shopping cart</li>
<li><a href="cart/cart.info.html" title="cart.info">cart.info</a> - Get full information about the current shopping cart</li>
<li><a href="cart/cart.totals.html" title="cart.totals">cart.totals</a> - Get all available prices for items in shopping cart, using additional parameters</li>
<li><a href="cart/cart.license.html" title="cart.license">cart.license</a> - Get website license agreement</li>
</ul>
<?php include(__ROOT__ . 'footer.php'); ?>