[MERGE] upstream
[odoo/odoo.git] / addons / website_sale / views / website_sale.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <openerp>
3 <data>
4
5     <!-- Layout add nav and footer -->
6
7     <template id="header" inherit_id="website.layout" name="Custom Header">
8         <xpath expr="//header//ul[@id='top_menu']/li" position="before">
9             <li t-att-class="(not website_sale_order or not website_sale_order.get_total_quantity()) and 'hidden' or ''">
10                 <a t-href="/shop/mycart/">
11                     <i class="icon-shopping-cart"></i>
12                     My cart <sup t-attf-class="my_cart_quantity label label-primary"
13                                   t-esc="website_sale_order and website_sale_order.get_total_quantity() or ''"/>
14                 </a>
15             </li>
16         </xpath>
17     </template>
18
19     <!-- List of categories -->
20
21     <template id="categories_recursive" name="Category list">
22         <li t-att-class="category.id == search.get('category') and 'active' or ''">
23             <a t-att-class="category.id not in categ[1] and 'unpublish' or ''" t-href="/shop/?category=#{ category.id }" t-field="category.name" t-keep-query="search,facettes"></a>
24             <ul t-if="category.child_id" class="nav nav-pills nav-stacked nav-hierarchy">
25                 <t t-foreach="category.child_id" t-as="category">
26                     <t t-if="category.id in categ[1] or editable">
27                         <t t-call="website_sale.categories_recursive"/>
28                     </t>
29                 </t>
30             </ul>
31         </li>
32     </template>
33
34     <!-- Product list -->
35
36     <template id="products_cart" name="Shopping cart">
37       <div class="ribbon-wrapper">
38         <div class="ribbon">Promo</div>
39       </div>
40       <div class="oe_product_description">
41           <a t-href="/shop/product/#{ product.id }/" t-keep-query="category,search,facettes">
42               <b t-field="product.name"/>
43           </a>
44       </div>
45       <div class="product_price" t-if="product.product_variant_ids">
46           <b>
47               <t t-if="product.product_variant_ids[0].lst_price != product.product_variant_ids[0].price">
48                 <del class="text-danger"
49                   t-field="product.product_variant_ids[0].lst_price" t-field-options='{
50                        "widget": "monetary",
51                        "display_currency": "website.pricelist_id.currency_id"
52                   }'/>&amp;nbsp;
53               </t>
54               <span t-field="product.product_variant_ids[0].price"  t-field-options='{
55                    "widget": "monetary",
56                    "display_currency": "website.pricelist_id.currency_id"
57                }'/>
58           </b>
59       </div>
60       <div class="oe_product_image text-center">
61           <a t-href="/shop/product/#{ product.id }/" t-keep-query="category,search,facettes">
62               <span t-field="product.image" t-field-options='{"widget": "image"}'/>
63           </a>
64       </div>
65     </template>
66
67     <template id="products" name="Products" page="True">
68         <t t-call="website.layout">
69             <t t-set="head">
70                 <script type="text/javascript" src="/website_sale/static/src/js/website_sale.js"></script>
71                 <link rel='stylesheet' href='/website_sale/static/src/css/website_sale.css'/>
72                 <t t-raw="head or ''"/>
73             </t>
74             <t t-set="additional_title">Shop</t>
75             <div id="wrap">
76               <div class="oe_structure"/>
77               <div class="container oe_website_sale">
78                 <div class="row">
79                     <div class="col-sm-6 pagination" style="padding-left: 15px;">
80                         <form t-if="editable" t-keep-query="category,search,facettes"
81                               method="POST" t-action="/shop/add_product">
82                             <button class="btn btn-primary">New Product</button>
83                         </form>
84                     </div>
85                     <div class="col-sm-6">
86                         <t t-call="website.pager">
87                             <t t-set="classname">pull-right</t>
88                         </t>
89                         <form t-action="/shop/" method="get" class="pull-right pagination form-inline" style="padding-right: 5px;" t-keep-query="category,search,facettes">
90                             <div class="form-group">
91                                 <input type="text" name="search" class="search-query form-control" placeholder="Search..." t-att-value="search.get('search') or ''"/>
92                             </div>
93                         </form>
94                     </div>
95                 </div>
96
97                 <div class='style_default row'>
98                   <div class="col-md-12" id="products_grid">
99                     <table width="100%">
100                       <tbody>
101                         <t t-set="table_products" t-value="Ecommerce.get_bin_packing_products(product_ids, product_ids_for_holes, 4)"/>
102                         <tr t-foreach="table_products" t-as="tr_product">
103                           <t t-foreach="tr_product" t-as="td_product">
104                             <t t-if="td_product">
105                             <t t-set="product" t-value="td_product['product']"/>
106                             <td t-att-colspan="td_product['x']"
107                                 t-attf-width="#{td_product['x']*25}%"
108                                 t-att-rowspan="td_product['y']"
109                                 t-attf-class="oe_product oe-height-#{td_product['y']*2} #{ td_product['class'] }">
110
111                                 <div class="oe_product_cart" t-att-data-publish="product.website_published and 'on' or 'off'">
112
113                                   <div class="css_options" t-ignore="true" t-if="editable">
114                                     <div t-attf-class="dropdown js_options" t-att-data-id="product.id">
115                                       <a class="btn btn-default" t-att-id="'dopprod-%s' % product.id" role="button" data-toggle="dropdown">Options <span class="caret"></span></a>
116                                       <ul class="dropdown-menu" role="menu" t-att-aria-labelledby="'dopprod-%s' % product.id">
117                                         <li class='dropdown-submenu'>
118                                           <a tabindex="-1" href="#">Size</a>
119                                           <ul class="dropdown-menu" name="size">
120                                             <li><a href="#">
121                                               <table>
122                                                 <tr>
123                                                   <td class="selected"></td>
124                                                   <td t-att-class="product.website_size_x > 1 and 'selected'"></td>
125                                                   <td t-att-class="product.website_size_x > 2 and 'selected'"></td>
126                                                   <td t-att-class="product.website_size_x > 3 and 'selected'"></td>
127                                                 </tr>
128                                                 <tr>
129                                                   <td t-att-class="product.website_size_y > 1 and 'selected'"></td>
130                                                   <td t-att-class="product.website_size_y > 1 and product.website_size_x > 1 and 'selected'"></td>
131                                                   <td t-att-class="product.website_size_y > 1 and product.website_size_x > 2 and 'selected'"></td>
132                                                   <td t-att-class="product.website_size_y > 1 and product.website_size_x > 3 and 'selected'"></td>
133                                                 </tr>
134                                                 <tr>
135                                                   <td t-att-class="product.website_size_y > 2 and 'selected'"></td>
136                                                   <td t-att-class="product.website_size_y > 2 and product.website_size_x > 1 and 'selected'"></td>
137                                                   <td t-att-class="product.website_size_y > 2 and product.website_size_x > 2 and 'selected'"></td>
138                                                   <td t-att-class="product.website_size_y > 2 and product.website_size_x > 3 and 'selected'"></td>
139                                                 </tr>
140                                                 <tr>
141                                                   <td t-att-class="product.website_size_y > 3 and 'selected'"></td>
142                                                   <td t-att-class="product.website_size_y > 3 and product.website_size_x > 1 and 'selected'"></td>
143                                                   <td t-att-class="product.website_size_y > 3 and product.website_size_x > 2 and 'selected'"></td>
144                                                   <td t-att-class="product.website_size_y > 3 and product.website_size_x > 3 and 'selected'"></td>
145                                                 </tr>
146                                               </table>
147                                             </a></li>
148                                           </ul>
149                                         </li>
150                                         <li class='dropdown-submenu'>
151                                           <a tabindex="-1" href="#">Styles</a>
152                                           <ul class="dropdown-menu" name="style">
153                                             <t t-foreach="styles" t-as="style">
154                                               <li t-att-class="style_in_product(style, product) and 'active' or ''"><a href="#" t-att-data-id="style.id" t-att-data-class="style.html_class"><t t-esc="style.name"/></a></li>
155                                             </t>
156                                           </ul>
157                                         </li>
158                                       </ul>
159                                     </div>
160                                   </div>
161
162                                   <t t-call="website_sale.products_cart"/>
163                                 </div>
164
165                             </td>
166                             </t>
167                             <td t-if="td_product == None"/>
168                           </t>
169                         </tr>
170                       </tbody>
171                     </table>
172                   </div>
173                 </div>
174                 <div>
175                     <t t-call="website.pager">
176                         <t t-set="classname">pull-right</t>
177                     </t>
178                 </div>
179               </div>
180               <div class="oe_structure mb32"/>
181             </div>
182         </t>
183     </template>
184
185     <!-- Product Description-->
186
187     <template id="product_description" inherit_option_id="website_sale.products_cart" name="Product Description">
188         <xpath expr="//div[@class='oe_product_description']" position="inside">
189             <p class="text-muted oe_subdescription">
190                 <span t-field="product.description_sale"/>
191             </p>
192         </xpath>
193     </template>
194
195     <!-- Add to cart button-->
196
197     <template id="add_to_basket" inherit_option_id="website_sale.products_cart" name="Add to Cart">
198         <xpath expr="//div[@class='product_price']" position="inside">
199             <a t-href="./add_cart/?product_id=#{ product.id }" class="js_add_cart_json">
200                 <span class="icon-shopping-cart"/>
201             </a>
202         </xpath>
203     </template>
204
205     <!-- List view of products -->
206
207     <template id="list_view" inherit_option_id="website_sale.products" name="List View">
208         <xpath expr="//div[@id='products_grid']/table" position="replace">
209           <div class="row">
210             <t t-set="products" t-value="Ecommerce.get_products(product_ids)"/>
211             <t t-foreach="products" t-as="product">
212               <div class="col-md-12 oe_list_products oe-height-1">
213                 <t t-call="website_sale.products_cart"/>
214               </div>
215             </t>
216           </div>
217         </xpath>
218     </template>
219
220
221     <!-- product -->
222
223     <template id="product" name="Product">
224         <t t-call="website.layout">
225             <t t-set="head">
226                 <script type="text/javascript" src="/website_sale/static/src/js/website_sale.js"></script>
227             </t>
228             <t t-set="additional_title" t-value="product.name"/>
229             <div id="wrap">
230
231               <section class="container mt8">
232                 <div class="row">
233                   <div class="col-sm-5">
234                       <ol class="breadcrumb">
235                           <li><a t-href="/shop">Products</a></li>
236                           <li t-if="search.get('category')"><a t-att-href="'/shop/" t-keep-query="category,search,facettes"><span t-field="category.name"/></a></li>
237                           <li class="active"><span t-field="product.name"></span></li>
238                       </ol>
239                   </div><div class="col-sm-3">
240                       <t t-call="website.publish_management">
241                         <t t-set="object" t-value="product"/>
242                         <t t-set="publish_edit" t-value="True"/>
243                         <li class='dropdown-submenu'>
244                             <a tabindex="-1" href="#">Promote</a>
245                             <ul class="dropdown-menu" name="sequence">
246                                 <li><a href="#" class="js_go_to_top">Push to top</a></li>
247                                 <li><a href="#" class="js_go_to_bottom">Push to bottom</a></li>
248                             </ul>
249                         </li>
250                       </t>
251                   </div><div class="col-sm-3 col-sm-offset-1">
252                       <form t-action="/shop/" method="get" class="pull-right" t-keep-query="category,facettes">
253                           <div class="input-group">
254                               <t t-if="search">
255                               <t t-foreach="search.items()" t-as="key">
256                                   <input t-att-name="key[0]" t-att-value="key[1]"/>
257                               </t>
258                               </t>
259                               <span class="input-group-addon"><span class="glyphicon glyphicon-search"/></span>
260                               <input type="text" name="search" class="search-query form-control" placeholder="Search..." t-att-value="search or ''"/>
261                           </div>
262                       </form>
263                   </div>
264                 </div>
265               </section>
266
267               <section class="container oe_website_sale mb16" id="product_detail">
268                 <div class="row">
269                   <div class="col-sm-7 col-md-7 col-lg-7">
270                       <span t-field="product.image" style="max-height: 500px" t-field-options='{"widget": "image"}'/>
271                   </div><div class="col-sm-5 col-md-5 col-lg-4 col-lg-offset-1">
272                       <h1 t-field="product.name">Product Name</h1>
273
274                       <form t-action="./add_cart/" class="js_add_cart_json">
275                           <input type="hidden" t-if="len(product.product_variant_ids) &lt;= 1" name="product_id" t-att-value="product.id"/>
276                           <t t-if="len(product.product_variant_ids) &gt; 1">
277                               <label label-default="label-default" class="radio" t-foreach="product.product_variant_ids" t-as="product">
278                                   <input type="radio" name="product_id" t-att-value="product.id" t-att-checked="product == product.product_variant_ids[0] or None"/>
279                                   <t t-esc="product.variants or ''">Standard</t>
280                                   <span class="badge" t-if="product.price_extra">
281                                       <t t-esc="product.price_extra > 0 and '+' or ''"/><span t-field="product.price_extra" t-field-options='{
282                                                    "widget": "monetary",
283                                                    "display_currency": "website.pricelist_id.currency_id"
284                                                }'/>
285                                   </span>
286                               </label>
287                               <br/>
288                           </t>
289
290                           <div class="product_price mt16" t-if="product.product_variant_ids">
291                               <h4>
292                                   <b><span class="oe_price" t-esc="product.product_variant_ids[0].price" /> â‚¬</b>
293
294                                   <t t-if="product.product_variant_ids[0].lst_price != product.product_variant_ids[0].price">
295                                     <span class="text-danger" style="text-decoration: line-through;">
296                                         <t t-esc="product.product_variant_ids[0].lst_price" /> â‚¬
297                                     </span>&amp;nbsp;
298                                   </t>
299                               </h4>
300                           </div>
301                           <button class="btn btn-primary btn-lg mt8">Add to Cart</button>
302                           <hr t-if="product.description_sale"/>
303                           <p t-field="product.description_sale" class="text-muted"/>
304                           <hr/>
305                           <p class="text-muted">
306                               30-day money-back guarantee<br/>
307                               Free Shipping in U.S.<br/>
308                               Buy now, get in 2 days
309                           </p>
310                       </form>
311                   </div>
312                 </div>
313               </section>
314               <div t-field="product.website_description" class="oe_structure" id="product_full_description"/>
315             </div>
316         </t>
317     </template>
318
319     <template id="recommended_products" inherit_id="website_sale.product" inherit_option_id="website_sale.product" name="Recommended Products">
320         <xpath expr="//div[@id='product_full_description']" position="after">
321             <div class="container mt32" t-if="product.recommended_products()">
322                 <h3>Customers who have bought this product also bought:</h3>
323                 <div class='row mt16' style="margin-left: 15px !important;">
324                 <t t-foreach="product.recommended_products()" t-as="product">
325                     <div class='col-md-2 thumbnail' style='width: 170px; margin-right: 16px;'>
326                         <div class='mt16 text-center'>
327                             <span t-field="product.image_small"/>
328                             <h5>
329                                 <a t-href="/shop/product/#{ product.id }/"
330                                    style="display: block">
331                                     <span t-field='product.name'
332                                           style="display: block"/>
333                                 </a>
334                             </h5>
335                         </div>
336                     </div>
337                 </t>
338                 </div>
339             </div>
340         </xpath>
341     </template>
342
343     <!-- Page Shop my cart -->
344
345     <template id="mycart" name="Your Cart" page="True">
346         <t t-call="website.layout">
347             <t t-set="head">
348                 <script type="text/javascript" src="/website_sale/static/src/js/website_sale.js"></script>
349                 <link rel='stylesheet' href='/website_sale/static/src/css/website_sale.css'/>
350                 <t t-raw="head or ''"/>
351             </t>
352             <div id="wrap">
353               <div class="container oe_website_sale">
354
355                 <ul class="wizard pull-right">
356                     <li class="text-primary">Review Order<span class="chevron"></span></li>
357                     <li class="text-muted">Shipping &amp; Billing<span class="chevron"></span></li>
358                     <li class="text-muted">Payment<span class="chevron"></span></li>
359                     <li class="text-muted">Confirmation<span class="chevron"></span></li>
360                 </ul>
361                 <h1 class="mb32">Shopping Cart</h1>
362                 <div class="row">
363                     <div class="col-md-3 text-muted" id="right_column">
364                         <h4>Policies</h4>
365                         <ul class="list-unstyled mb32">
366                             <li>&#9745; 30-days money-back guarantee</li>
367                             <li>&#9745; Invoice sent by e-Mail</li>
368                         </ul>
369                         <h4>Secure Payment</h4>
370                         <ul class="list-unstyled mb32">
371                             <li>&#9745; 256 bit encryption</li>
372                             <li>&#9745; Processed by Ogone</li>
373                         </ul>
374                     </div>
375                     <div class="col-md-8 col-md-offset-1 oe_mycart">
376                         <div t-if="not website_sale_order or not website_sale_order.order_line" class="well well-lg">
377                             Your cart is empty!
378                         </div>
379                         <table class='table table-striped table-condensed' id="mycart_products" t-if="website_sale_order and website_sale_order.order_line">
380                             <colgroup>
381                                 <col width="80"/>
382                                 <col/>
383                                 <col width="100"/>
384                                 <col width="120"/>
385                             </colgroup>
386                             <thead>
387                                 <tr>
388                                     <th colspan="2">Product</th>
389                                     <th>Price</th>
390                                     <th>Quantity</th>
391                                 </tr>
392                             </thead>
393                             <tbody>
394                                 <tr t-foreach="website_sale_order.order_line" t-as="line">
395                                     <td colspan="2" t-if="not line.product_id.product_tmpl_id"></td>
396                                     <td t-if="line.product_id.product_tmpl_id">
397                                         <span t-field="line.product_id.image_small"
398                                               t-field-options='{"widget": "image", "class": "img-rounded"}'/>
399                                     </td>
400                                     <td t-if="line.product_id.product_tmpl_id">
401                                         <div>
402                                             <a t-href="/shop/product/#{ line.product_id.product_tmpl_id.id }/">
403                                                 <strong t-field="line.product_id.name"/>
404                                             </a>
405                                         </div>
406                                         <div class="text-muted" t-field="line.product_id.description_sale"/>
407                                     </td>
408                                     <td class="text-center">
409                                        <del class="text-danger" t-if="line.product_id.lst_price &gt; line.price_unit">
410                                            <span t-field="line.product_id.lst_price" t-field-options='{
411                                                "widget": "monetary",
412                                                "display_currency": "website.pricelist_id.currency_id"
413                                            }'/>
414                                        </del>
415                                        <span t-field="line.price_unit" t-field-options='{
416                                            "widget": "monetary",
417                                            "display_currency": "website.pricelist_id.currency_id"
418                                        }'/>
419                                     </td>
420                                     <td>
421                                         <div class="input-group">
422                                             <span class="input-group-addon">
423                                                 <a t-href="./remove_cart/?order_line_id=#{ line.id }" t-att-data-id="line.id" class="mb8 js_add_cart_json">
424                                                     <span class="icon-minus"/>
425                                                 </a>
426                                             </span>
427                                             <input type="text" class="js_quantity form-control"
428                                                 t-att-data-id="line.id" t-att-value="int(line.product_uom_qty)"/>
429                                             <span class="input-group-addon">
430                                                 <a t-href="./add_cart/?order_line_id=#{ line.id }" t-att-data-id="line.id" class="mb8 float_left js_add_cart_json">
431                                                     <span class="icon-plus"/>
432                                                 </a>
433                                             </span>
434                                         </div>
435
436                                     </td>
437                                 </tr>
438                             </tbody>
439                         </table>
440                         <table class='pull-right mb16' id="mycart_total">
441                             <colgroup>
442                                 <col width="100"/>
443                                 <col width="120"/>
444                             </colgroup>
445                             <thead>
446                                 <tr style="border-top: 1px solid #000">
447                                     <th><h3>Total:</h3></th>
448                                     <th class="text-right"><h3>
449                                         <span t-field="website_sale_order.amount_total" t-field-options='{
450                                             "widget": "monetary",
451                                             "display_currency": "website.pricelist_id.currency_id"
452                                         }'/></h3>
453                                     </th>
454                                 </tr>
455                                 <tr class="text-muted">
456                                     <td><abbr title="Taxes may be updated after providing shipping address">Incl. Taxes:</abbr></td>
457                                     <td class="text-right">
458                                         <span t-field="website_sale_order.amount_tax" t-field-options='{
459                                             "widget": "monetary",
460                                             "display_currency": "website.pricelist_id.currency_id"
461                                         }'/>
462                                     </td>
463                                 </tr>
464                             </thead>
465                         </table>
466                         <div class="clearfix"/>
467                         <a t-href="/shop" class="btn btn-default mb32"><span class="icon-long-arrow-left"/> Continue Shopping</a>
468                         <a t-if="website_sale_order and website_sale_order.order_line" t-href="/shop/checkout/" class="btn btn-primary pull-right mb32">Process Checkout <span class="icon-long-arrow-right"/></a>
469                         <div class="oe_structure"/>
470                     </div>
471                 </div>
472
473               </div>
474               <div class="oe_structure"/>
475             </div>
476         </t>
477     </template>
478
479     <!-- Page Shop -->
480
481     <template id="products_categories" inherit_option_id="website_sale.products" name="Product Categories">
482         <xpath expr="//div[@id='products_grid']" position="before">
483             <div id="categories" class="col-md-3">
484                 <ul class="nav nav-pills nav-stacked mt16">
485                     <li t-att-class=" '' if search.get('category') else 'active' "><a t-href="/shop/">All Products</a></li>
486                     <t t-set="categ" t-value="Ecommerce.get_categories()"/>
487                     <t t-foreach="categ[0]" t-as="category">
488                         <t t-call="website_sale.categories_recursive"/>
489                     </t>
490                 </ul>
491             </div>
492         </xpath>
493         <xpath expr="//div[@id='products_grid']" position="attributes">
494             <attribute name="class">col-md-9</attribute>
495         </xpath>
496     </template>
497
498     <template id="products_attributes" inherit_option_id="website_sale.products_categories" name="Product Attributes">
499         <xpath expr="//div[@id='categories']" position="inside">
500             <form t-action="/shop/attributes/" method="post" t-keep-query="category,search">
501                 <ul class="nav nav-pills nav-stacked mt16">
502                     <t t-set="attribute_ids" t-value="Ecommerce.get_attribute_ids()"/>
503                     <t t-foreach="attribute_ids" t-as="attribute_id">
504                         <li t-if="attribute_id.value_ids and attribute_id.type == 'distinct'">
505                             <div t-field="attribute_id.name"/>
506                             <ul class="nav nav-pills nav-stacked">
507                                 <t t-foreach="attribute_id.value_ids" t-as="value_id">
508                                     <li t-att-class="Ecommerce.has_search_attributes(attribute_id.id, value_id.id) and 'active' or ''">
509                                         <label style="margin: 0 20px;">
510                                             <input type="checkbox" t-att-name="'att-%s-%s' % (attribute_id.id, value_id.id)"
511                                                 t-att-checked="Ecommerce.has_search_attributes(attribute_id.id, value_id.id) and 'checked' or ''"/>
512                                             <span style="font-weight: normal" t-field="value_id.name"/>
513                                         </label>
514                                     </li>
515                                 </t>
516                             </ul>
517                         </li>
518                         <li t-if="attribute_id.type == 'float' and attribute_id.float_min != attribute_id.float_max">
519                             <div t-field="attribute_id.name"/>
520                             <t t-set="attribute" t-value="Ecommerce.has_search_attributes(attribute_id.id)"/>
521                             <div style="margin: 0 20px;" class="js_slider"
522                               t-att-data-id="attribute_id.id"
523                               t-att-data-value-min="attribute and attribute[1][0] or attribute_id.float_min"
524                               t-att-data-value-max="attribute and attribute[1][1] or attribute_id.float_max"
525                               t-att-data-min="attribute_id.float_min"
526                               t-att-data-max="attribute_id.float_max"></div>
527                         </li>
528                     </t>
529                 </ul>
530                 <button class="btn btn-xs btn-primary mt16">Apply filter</button>
531             </form>
532         </xpath>
533     </template>
534
535     <template id="suggested_products_list" inherit_id="website_sale.mycart" inherit_option_id="website_sale.mycart" name="Suggested Products in list view">
536         <xpath expr="//table[@id='mycart_products']" position="after">
537             <table t-if="suggested_products" class='table table-striped table-condensed'>
538                 <colgroup>
539                     <col width="80"/>
540                     <col/>
541                     <col width="100"/>
542                     <col width="120"/>
543                 </colgroup>
544                 <thead>
545                     <tr>
546                         <th colspan="2">Suggested products</th>
547                     </tr>
548                 </thead>
549                 <tbody>
550                     <tr t-foreach="suggested_products" t-as="product">
551
552                         <td>
553                             <a t-href="/shop/product/#{ product.product_tmpl_id.id }/">
554                                 <span t-field="product.image_small"
555                                       t-field-options='{"widget": "image", "class": "img-rounded"}'/>
556                             </a>
557                         </td>
558                         <td>
559                             <div>
560                                 <a t-href="/shop/product/#{ product.product_tmpl_id.id }/">
561                                     <strong t-field="product.name"/>
562                                 </a>
563                             </div>
564                             <div class="text-muted" t-field="product.description_sale"/>
565                         </td>
566                         <td>
567                             <span t-field="product.lst_price" t-field-options='{
568                                 "widget": "monetary",
569                                 "display_currency": "website.pricelist_id.currency_id"
570                             }'/>
571                         </td>
572                         <td class="text-center">
573                             <a t-href="./add_cart/?product_id=#{ product.id }"><strong>Add to Cart</strong></a>
574                         </td>
575                     </tr>
576                 </tbody>
577             </table>
578         </xpath>
579     </template>
580
581     <template id="reduction_code" inherit_option_id="website_sale.mycart" name="Reduction Code">
582         <xpath expr="//div[@id='right_column']" position="inside">
583             <h4>Coupon Code</h4>
584             <p>
585                 Have a coupon code? Fill in this field and apply.
586             </p>
587             <form t-if="website_sale_order and website_sale_order.order_line" t-action="/shop/mycart/" method="post" class="mb32">
588                 <div class="input-group">
589                     <input name="promo" class='form-control' type="text" placeholder="code..." t-att-value="website_sale_order.pricelist_id.code or ''"/>
590                     <div class="input-group-btn">
591                         <button class="btn btn-default">Apply</button>
592                     </div>
593                 </div>
594             </form>
595         </xpath>
596     </template>
597
598
599     <!-- Page confirm my cart -->
600
601     <template id="checkout">
602         <t t-call="website.layout">
603           <t t-set="head">
604               <script type="text/javascript" src="/website_sale/static/src/js/website_sale.js"></script>
605               <link rel='stylesheet' href='/website_sale/static/src/css/website_sale.css'/>
606               <t t-raw="head or ''"/>
607           </t>
608           <t t-set="additional_title">Shop - Checkout</t>
609           <div id="wrap">
610             <div class="container oe_website_sale">
611                 <ul class="wizard pull-right">
612                     <li><a href="/shop/mycart" class="text-success">Review Order<span class="chevron"></span></a></li>
613                     <li class="text-primary">Shipping &amp; Billing<span class="chevron"></span></li>
614                     <li class="text-muted">Payment<span class="chevron"></span></li>
615                     <li class="text-muted">Confirmation<span class="chevron"></span></li>
616                 </ul>
617                 <h1>Your Address</h1>
618                 <form t-action="/shop/confirm_order/" method="post">
619
620                 <div class="row">
621                 <div class="col-md-8 oe_mycart">
622                     <h3 class="page-header mt16">Billing Information
623                         <small t-if="user_id.id == website.public_user.id"> or
624                             <a t-if="not partner" t-attf-href="/web#action=redirect&amp;url=#{ request.httprequest.host_url }/shop/checkout/">sign in</a>
625                         </small>
626                     </h3>
627                         <div class="row">
628                             <div t-attf-class="form-group #{error.get('name') and 'has-error' or ''} col-lg-6">
629                                 <label class="control-label" for="contact_name">Your Name</label>
630                                 <input type="text" name="name" class="form-control" t-att-value="checkout.get('name')"/>
631                             </div>
632                             <div t-attf-class="form-group #{error.get('company') and 'has-error' or ''} col-lg-6">
633                                 <label class="control-label" for="company" style="font-weight: normal">Your Company</label>
634                                 <input type="text" name="company" class="form-control" t-att-value="checkout.get('company')"/>
635                             </div>
636                             <div t-attf-class="form-group #{error.get('email') and 'has-error' or ''} col-lg-6">
637                                 <label class="control-label" for="contact_name">Email</label>
638                                 <input type="email" name="email" class="form-control" t-att-value="checkout.get('email')"/>
639                             </div>
640                             <div t-attf-class="form-group #{ error.get('phone') and 'has-error' or ''} col-lg-6">
641                                 <label class="control-label" for="phone">Telephone</label>
642                                 <input type="tel" name="phone" class="form-control" t-att-value="checkout.get('phone')"/>
643                             </div>
644
645                             <div t-attf-class="form-group #{error.get('street') and 'has-error' or ''} col-lg-6">
646                                 <label class="control-label" for="street">Street</label>
647                                 <input type="text" name="street" class="form-control" t-att-value="checkout.get('street')"/>
648                             </div>
649                             <div class="clearfix"/>
650
651                             <div t-attf-class="form-group #{error.get('city') and 'has-error' or ''} col-lg-6">
652                                 <label class="control-label" for="city">City</label>
653                                 <input type="text" name="city" class="form-control" t-att-value="checkout.get('city')"/>
654                             </div>
655                             <div t-attf-class="form-group #{error.get('zip') and 'has-error' or ''} col-lg-6">
656                                 <label class="control-label" for="zip">Zip / Postal Code</label>
657                                 <input type="text" name="zip" class="form-control" t-att-value="checkout.get('zip')"/>
658                             </div>
659                             <div t-attf-class="form-group #{error.get('state_id') and 'has-error' or ''} col-lg-6">
660                                 <label class="control-label" for="state_id" style="font-weight: normal">State / Province</label>
661                                 <select name="state_id" class="form-control">
662                                     <option value="">select...</option>
663                                     <t t-foreach="states or []" t-as="state">
664                                         <option t-att-value="state.id" t-att-selected="state.id == checkout.get('state_id')"><t t-esc="state.name"/></option>
665                                     </t>
666                                 </select>
667                             </div>
668                             <div t-attf-class="form-group #{error.get('country_id') and 'has-error' or ''} col-lg-6">
669                                 <label class="control-label" for="contact_name">Country</label>
670                                 <select name="country_id" class="form-control">
671                                     <option value="">Country...</option>
672                                     <t t-foreach="countries or []" t-as="country">
673                                         <option t-att-value="country.id" t-att-selected="country.id == checkout.get('country_id')"><t t-esc="country.name"/></option>
674                                     </t>
675                                 </select>
676                             </div>
677
678                             <div class="clearfix"/>
679
680                             <div class="form-group col-lg-6">
681                                 <label>
682                                     <input t-if="not shipping" type="checkbox" name="shipping_different"/>
683                                     <input t-if="shipping" type="checkbox" name="shipping_different" checked="1"/>
684                                     Ship to a different address
685                                 </label>
686                             </div>
687                         </div>
688
689                         <div class="js_shipping row mb16" t-att-style="not shipping and 'display:none' or ''">
690                             <h3 class="oe_shipping col-lg-12 mt16">Shipping Information</h3>
691
692                             <div t-attf-class="form-group #{error.get('shipping_name') and 'has-error' or ''} col-lg-6">
693                                 <label class="control-label" for="contact_name">Name (Shipping)</label>
694                                 <input type="text" name="shipping_name" class="form-control" t-att-value="checkout.get('shipping_name', '')"/>
695                             </div>
696                             <div t-attf-class="form-group #{error.get('shipping_phone') and 'has-error' or ''} col-lg-6">
697                                 <label class="control-label" for="contact_name">Telephone</label>
698                                 <input type="tel" name="shipping_phone" class="form-control" t-att-value="checkout.get('shipping_phone', '')"/>
699                             </div>
700                             <div t-attf-class="form-group #{error.get('shipping_street') and 'has-error' or ''} col-lg-6">
701                                 <label class="control-label" for="contact_name">Street</label>
702                                 <input type="text" name="shipping_street" class="form-control" t-att-value="checkout.get('shipping_street', '')"/>
703                             </div>
704                             <div class="clearfix"/>
705                             <div t-attf-class="form-group #{error.get('shipping_city') and 'has-error' or ''} col-lg-6">
706                                 <label class="control-label" for="contact_name">City</label>
707                                 <input type="text" name="shipping_city" class="form-control" t-att-value="checkout.get('shipping_city', '')"/>
708                             </div>
709                             <div t-attf-class="form-group #{error.get('shipping_zip') and 'has-error' or ''} col-lg-6">
710                                 <label class="control-label" for="contact_name">Zip / Postal Code</label>
711                                 <input type="text" name="shipping_zip" class="form-control" t-att-value="checkout.get('shipping_zip', '')"/>
712                             </div>
713                             <div t-attf-class="form-group #{error.get('shipping_state_id') and 'has-error' or ''} col-lg-6">
714                                 <label class="control-label" for="contact_name" style="font-weight: normal">State / Province</label>
715                                 <select name="shipping_state_id" class="form-control">
716                                     <option value="">State / Province...</option>
717                                     <t t-foreach="states or []" t-as="state">
718                                         <option t-att-value="state.id" t-att-selected="state.id == checkout.get('shipping_state_id')"><t t-esc="state.name"/></option>
719                                     </t>
720                                 </select>
721                             </div>
722                             <div t-attf-class="form-group #{error.get('shipping_country_id') and 'has-error' or ''} col-lg-6">
723                                 <label class="control-label" for="contact_name">Country</label>
724                                 <select name="shipping_country_id" class="form-control">
725                                     <option value="">Country...</option>
726                                     <t t-foreach="countries or []" t-as="country">
727                                         <option t-att-value="country.id" t-att-selected="country.id == checkout.get('shipping_country_id')"><t t-esc="country.name"/></option>
728                                     </t>
729                                 </select>
730                             </div>
731                         </div>
732                         <button type="submit" class="btn btn-default btn-primary pull-right mb32">Confirm <span class="icon-long-arrow-right"/></button>
733                 </div>
734                 <div class="col-lg-offset-1 col-lg-3 text-muted">
735                     <h3 class="page-header mt16">Your Order <small><a href="/shop/mycart"><span class="icon-arrow-right"/> change</a></small></h3>
736                     <div class="row">
737                         <div class="col-sm-6 text-right">Subtotal:</div>
738                         <div class="col-sm-6"><span t-esc="website_sale_order.amount_untaxed" t-field-options='{
739                             "widget": "monetary",
740                             "display_currency": "website.pricelist_id.currency_id"
741                         }'/></div>
742                         <div class="col-sm-6 text-right">Taxes:</div>
743                         <div class="col-sm-6"><span t-field="website_sale_order.amount_tax" t-field-options='{
744                             "widget": "monetary",
745                             "display_currency": "website.pricelist_id.currency_id"
746                         }'/></div>
747                         <div class="col-sm-6 text-right"><h4>Total To Pay:</h4></div>
748                         <div class="col-sm-6"><h4><span t-field="website_sale_order.amount_total" t-field-options='{
749                             "widget": "monetary",
750                             "display_currency": "website.pricelist_id.currency_id"
751                         }'/></h4></div>
752                     </div>
753                 </div>
754             </div>
755             </form>
756           </div>
757           </div>
758         </t>
759     </template>
760
761     <template id="payment">
762         <t t-call="website.layout">
763             <t t-set="head">
764                 <script type="text/javascript" src="/website_sale/static/src/js/website_sale.js"></script>
765                 <link rel='stylesheet' href='/website_sale/static/src/css/website_sale.css'/>
766                 <t t-raw="head or ''"/>
767             </t>
768             <t t-set="additional_title">Shop - Select Payment Mode</t>
769             <div id="wrap">
770               <div class="container oe_website_sale">
771
772                 <ul class="wizard pull-right">
773                     <li><a href="/shop/mycart" class="text-success">Review Order<span class="chevron"></span></a></li>
774                     <li><a href="/shop/checkout" class="text-success">Shipping &amp; Billing<span class="chevron"></span></a></li>
775                     <li class="text-primary">Payment<span class="chevron"></span></li>
776                     <li class="text-muted">Confirmation<span class="chevron"></span></li>
777                 </ul>
778                 <h1 class="mb32">Validate Order</h1>
779                 <div class="row">
780                 <div class="col-md-8 oe_mycart">
781                     <table class='table table-striped table-condensed' id="mycart_products" t-if="website_sale_order and website_sale_order.order_line">
782                         <colgroup>
783                             <col width="80"/>
784                             <col/>
785                             <col width="100"/>
786                             <col width="120"/>
787                         </colgroup>
788                         <thead>
789                             <tr>
790                                 <th colspan="2">Product</th>
791                                 <th>Price</th>
792                                 <th>Quantity</th>
793                             </tr>
794                         </thead>
795                         <tbody>
796                             <tr t-foreach="website_sale_order.order_line" t-as="line">
797                                 <td colspan="2" t-if="not line.product_id.product_tmpl_id"></td>
798                                 <td t-if="line.product_id.product_tmpl_id">
799                                     <a t-href="/shop/product/#{ line.product_id.product_tmpl_id.id }/">
800                                         <span t-field="line.product_id.image_small"
801                                               t-field-options='{"widget": "image", "class": "img-rounded"}'/>
802                                     </a>
803                                 </td>
804                                 <td t-if="line.product_id.product_tmpl_id">
805                                    <strong t-field="line.product_id.name"/>
806                                 </td>
807                                 <td class="text-center">
808                                    <span t-field="line.price_unit" t-field-options='{
809                                        "widget": "monetary",
810                                        "display_currency": "website.pricelist_id.currency_id"
811                                    }'/>
812                                 </td>
813                                 <td>
814                                    <div t-esc="line.product_uom_qty"/>
815                                 </td>
816                             </tr>
817                         </tbody>
818                     </table>
819                     <table class='pull-right mb16' id="mycart_total">
820                         <colgroup>
821                             <col width="100"/>
822                             <col width="120"/>
823                         </colgroup>
824                         <thead>
825                             <tr style="border-top: 1px solid #000">
826                                 <th><h3>Total:</h3></th>
827                                 <th class="text-right"><h3><span t-field="website_sale_order.amount_total" t-field-options='{
828                                     "widget": "monetary",
829                                     "display_currency": "website.pricelist_id.currency_id"
830                                 }'/></h3></th>
831                             </tr>
832                             <tr class="text-muted">
833                                 <td><abbr title="Taxes may be updated after providing shipping address">Incl. Taxes:</abbr></td>
834                                 <td class="text-right"><span t-field="website_sale_order.amount_tax" t-field-options='{
835                                     "widget": "monetary",
836                                     "display_currency": "website.pricelist_id.currency_id"
837                                 }'/></td>
838                             </tr>
839                         </thead>
840                     </table>
841                     <div class="clearfix"/>
842                     <div class="oe_structure"/>
843                   </div>
844                   <div class="col-md-3 col-md-offset-1 text-muted" id="right_column">
845                       <h4>Bill To:</h4>
846                       <div t-field="website_sale_order.partner_invoice_id"/>
847                       <div>
848                         <a href="/shop/checkout"><span class="icon-arrow-right"/> Change Address</a>
849                       </div>
850
851                       <h4 class="mt32">Ship To:</h4>
852                       <div t-field="website_sale_order.partner_shipping_id"/>
853                       <div>
854                         <a href="/shop/checkout"><span class="icon-arrow-right"/> Change Address</a>
855                       </div>
856
857                   </div>
858                 </div>
859
860                 <div class="js_payment mb64">
861                     <p>Select your payment method:</p>
862                     <div>
863                         <t t-foreach="payments or []" t-as="payment">
864                             <label>
865                                 <input t-att-value="payment.id" type="radio" name="payment_type"/> <t t-esc="payment.name"/>
866                             </label>
867                         </t>
868                     </div>
869                     <t t-foreach="payments or []" t-as="payment">
870                         <div t-att-data-id="payment.id" t-raw="payment._content" class="hidden"/>
871                     </t>
872                     <a t-href="/shop/payment_validate/" class="btn btn-primary mt16">Validate &amp; Pay <span class="icon-long-arrow-right"/></a>
873                 </div>
874
875               </div>
876               <div class="oe_structure"/>
877             </div>
878
879         </t>
880     </template>
881  </data>
882 </openerp>