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