|
@@ -0,0 +1,53 @@
|
|
|
+<?xml version="1.0" encoding="UTF-8"?>
|
|
|
+<templates id="template" xml:space="preserve">
|
|
|
+
|
|
|
+ <!-- Cabecera -->
|
|
|
+ <!-- <t t-extend="ClientListScreenWidget">
|
|
|
+ <t t-jquery="div.subwindow-container" t-operation="replace">
|
|
|
+ <div class='subwindow-container-fix touch-scrollable scrollable-y'>
|
|
|
+ <table class='client-list'>
|
|
|
+ <thead>
|
|
|
+ <tr>
|
|
|
+ <th>Name</th>
|
|
|
+ <th>RUC-DNI</th>
|
|
|
+ <th>Address</th>
|
|
|
+ <th>Phone</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody class='client-list-contents'>
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+ </div>
|
|
|
+ </t>
|
|
|
+ </t> -->
|
|
|
+
|
|
|
+ <!-- Lineas -->
|
|
|
+ <!-- <t t-extend="ClientLine">
|
|
|
+ <t t-jquery="tr.client-line" t-operation="replace">
|
|
|
+ <td><t t-esc='partner.name' /></td>
|
|
|
+ <td><t t-esc='partner.ruc' /></td>
|
|
|
+ <td><t t-esc='partner.address' /></td>
|
|
|
+ <td><t t-esc='partner.phone or partner.mobile or ""' /></td>
|
|
|
+ </t>
|
|
|
+ </t> -->
|
|
|
+
|
|
|
+ <!-- Mostrar Formulario -->
|
|
|
+ <t t-extend="ClientDetails">
|
|
|
+ <t t-jquery="div.client-details-left>div:first-child" t-operation="before">
|
|
|
+ <div class='client-detail'>
|
|
|
+ <span class='label'>RUC-DNI</span>
|
|
|
+ <span class='detail client-ruc'><t t-esc='partner.ruc' /></span>
|
|
|
+ </div>
|
|
|
+ </t>
|
|
|
+ </t>
|
|
|
+
|
|
|
+ <!-- Editar Formulario -->
|
|
|
+ <t t-extend="ClientDetailsEdit">
|
|
|
+ <t t-jquery="div.client-details-left>div:first-child" t-operation="before">
|
|
|
+ <div class='client-detail'>
|
|
|
+ <span class='label'>RUC</span>
|
|
|
+ <input class='detail client-ruc' name='ruc' t-att-value='partner.ruc' placeholder='RUC-DNI'></input>
|
|
|
+ </div>
|
|
|
+ </t>
|
|
|
+ </t>
|
|
|
+</templates>
|