Ver Fonte

Módulo para impresión de por su pollo

sebas há 3 anos atrás
pai
commit
f030e73f94
1 ficheiros alterados com 9 adições e 9 exclusões
  1. 9 9
      static/src/xml/pos.xml

+ 9 - 9
static/src/xml/pos.xml

@@ -33,10 +33,10 @@
                 <table class="table table-condensed" style="font-size: 8px;">
                     <thead>
                         <tr>
-                            <th style="font-size:8px;font-family: Courier New;width:0.6cm;overflow: auto; text-align: center;"><b>Cant.</b></th>
-                            <th style="font-size:8px;font-family: Courier New;width:4.0cm;overflow: auto; text-align: left;"><b>Producto</b>&#160;&#160;</th>
-                            <th style="font-size:8px;font-family: Courier New;width:1.6cm;overflow: auto; text-align: center;"><b>Precio</b>&#160;</th>
-                            <th style="font-size:8px;font-family: Courier New;width:1.6cm;overflow: auto; text-align: center;"><b>SubTotal</b>&#160;</th>
+                            <th style="font-size:8px;font-family: Courier New;width:0.6cm;overflow: auto; text-align: center;">Cant&#160;</th>
+                            <th style="font-size:8px;font-family: Courier New;width:3.5cm;overflow: auto; text-align: left;"><b>Producto</b>&#160;&#160;</th>
+                            <th style="font-size:8px;font-family: Courier New;width:1.0cm;overflow: auto; text-align: center;"><b>Precio</b>&#160;</th>
+                            <th style="font-size:8px;font-family: Courier New;width:1.0cm;overflow: auto; text-align: center;"><b>SubTotal</b>&#160;</th>
                         </tr>
                     </thead>
                     <tbody>
@@ -70,19 +70,19 @@
                         <tr t-foreach="orderlines" t-as="l">
 
                               <!-- CANTIDAD -->
-                              <th style="font-size:8px;font-family: Arial;width:0.5cm;overflow: auto; text-align: center;">
+                              <th style="font-size:8px;font-family: Arial;width:0.6cm;overflow: auto; text-align: center;">
                                     <span t-esc="l.quantity"/>
                               </th>
 
                               <!-- NOMBRE DEL PRODUCTO -->
-                              <th style="font-size:8px;font-family: Arial;width:4.0cm;overflow: auto; text-align: left;">
-                                    <span t-esc="l.get_product().display_name"/>
+                              <th style="font-size:8px;font-family: Arial;width:3.5cm;overflow: auto; text-align: left;">
+                                    <![CDATA[&nbsp;]]><span t-esc="l.get_product().display_name"/>
                               </th>
-                              <th style="font-size:8px;font-family: Arial;width:1.6cm;overflow: auto; text-align: right;">
+                              <th style="font-size:8px;font-family: Arial;width:1.0cm;overflow: auto; text-align: right;">
                                     <![CDATA[&nbsp;]]><span t-esc="l.price"/>
                               </th>
                               <!-- PRECIO UNITARIO -->
-                              <th style="font-size:8px;font-family: Arial;width:1.6cm;overflow: auto; text-align: right;">
+                              <th style="font-size:8px;font-family: Arial;width:1.0cm;overflow: auto; text-align: right;">
                                     <![CDATA[&nbsp;]]><span t-esc="(l.quantity * l.price)"/>
                               </th>
                         </tr>