qweb.xml 1.81 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
<?xml version="1.0" encoding="UTF-8"?>
<template>
  <div t-name="CustomErrorBarcodePopupWidget">
      <div class="modal-dialog">
          <div class="popup popup-barcode">
              <p class="title">Unknown Barcode
                  <br />
                  <span class='barcode'><t t-esc="widget.options.barcode" /></span>
              </p>
              <p class="body">
                  Le Point de Vente n'a pas pu trouver de produit associé
                  au code-barre scanné.
              </p>
14
              <!--<p class="body last-product-scanned">
15 16 17
                  Dernier produit scanné :
                  <br />
                  <b><t t-esc="widget.options.last_product_name" /></b>
18
              </p>-->
19 20 21 22 23 24 25 26 27

              <div class="footer">
                  <div class="button cancel">
                      Ok
                  </div>
              </div>
          </div>
      </div>
  </div>
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
  <div t-name="CustomReturnToOrderMessageWidget">
      <div class="modal-dialog">
          <div class="popup popup-return-warning">
              <p class="title">
                Attention !
              </p>
              <p class="body">
                  Les paiements seront réinitialisés si vous retournez au panier.
              </p>
              <div class="footer">
                  <div class="button cancel">
                      Annuler
                  </div>
                  <div class="button return-to-order">
                    Retour au panier
                  </div>
              </div>
          </div>
      </div>
  </div>
48 49 50 51 52 53 54 55 56 57
  <t t-extend="PaymentScreen-Paymentlines" >
      <t t-jquery="table.paymentlines thead tr.label" t-operation="inner">
          <th>Due</th>
          <th>Paid</th>
          <th>Change</th>
          <th>Method</th>
          <th></th>
      </t>
  </t>

58
</template>