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