Primer commit del sistema avantika sin cambios
This commit is contained in:
80
templates/forms/agregar-cliente-datos.tpl
Executable file
80
templates/forms/agregar-cliente-datos.tpl
Executable file
@@ -0,0 +1,80 @@
|
||||
<div id="divForm">
|
||||
<form id="frmDatosClte" name="frmDatosClte" method="post">
|
||||
<input type="hidden" id="type" name="type" value="updateClte" />
|
||||
<input type="hidden" id="clienteId" name="clienteId" value="{$info.clienteId}" />
|
||||
<fieldset>
|
||||
|
||||
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td width="130" height="40">* RFC y Homoclave:</td>
|
||||
<td><input name="rfc" id="rfc" type="text" class="largeInput" style="width:290px" value="{$info.rfc}" /></td>
|
||||
<td width="10"></td>
|
||||
<td width="130">* Nombre Completo o Razón Social:</td>
|
||||
<td><input name="razonSocial" id="razonSocial" type="text" class="largeInput" style="width:290px" value="{$info.nombre}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td height="50">* Dirección</td>
|
||||
<td><input name="calle" id="calle" type="text" class="largeInput" style="width:290px" value="{$info.calle}" /></td>
|
||||
<td width="10"></td>
|
||||
<td>* No. Ext:</td>
|
||||
<td><input name="noExt" id="noExt" type="text" class="largeInput" style="width:290px" value="{$info.noExt}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td height="50">No. Int:</td>
|
||||
<td><input name="noInt" id="noInt" type="text" class="largeInput" style="width:290px" value="{$info.noInt}" /></td>
|
||||
<td width="10"></td>
|
||||
<td>Referencia</td>
|
||||
<td><input name="referencia" id="referencia" type="text" class="largeInput" style="width:290px" value="{$info.referencia}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td height="50">Colonia:</td>
|
||||
<td><input name="colonia" id="colonia" type="text" class="largeInput" style="width:290px" value="{$info.colonia}" /></td>
|
||||
<td width="10"></td>
|
||||
<td>Localidad</td>
|
||||
<td><input name="localidad" id="localidad" type="text" class="largeInput" style="width:290px" value="{$info.localidad}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td height="50">Municipio o Delegación:</td>
|
||||
<td><input name="municipio" id="municipio" type="text" class="largeInput" style="width:290px" value="{$info.municipio}" /></td>
|
||||
<td width="10"></td>
|
||||
<td>Código Postal:</td>
|
||||
<td><input name="cp" id="cp" type="text" class="largeInput" style="width:290px" value="{$info.cp}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td height="50">Estado:</td>
|
||||
<td><input name="estado" id="estado" type="text" class="largeInput" style="width:290px" value="{$info.estado}" /></td>
|
||||
<td width="10"></td>
|
||||
<td>* Pais:</td>
|
||||
<td><input name="pais" id="pais" type="text" class="largeInput" style="width:290px" value="{$info.pais}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td height="50">Teléfono:</td>
|
||||
<td><input name="telefono" id="telefono" type="text" class="largeInput" style="width:290px" value="{$info.telefono}" /></td>
|
||||
<td width="10"></td>
|
||||
<td>Correo electrónico:</td>
|
||||
<td><input name="email" id="email" type="text" class="largeInput" style="width:290px" value="{$info.email}" /></td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
|
||||
<div class="formLine">
|
||||
<hr />
|
||||
* Campos requeridos
|
||||
</div>
|
||||
</fieldset>
|
||||
</form>
|
||||
|
||||
<div align="center" style="display:none" id="loader">
|
||||
<img src="{$WEB_ROOT}/images/loading.gif">
|
||||
<br>
|
||||
Guardando Información...
|
||||
<br />Este proceso puede tardar unos segundos.
|
||||
<br />
|
||||
</div>
|
||||
|
||||
<div style="clear:both"></div>
|
||||
<div style="margin-left:415px">
|
||||
<a class="button" name="btnSave" onclick="UpdateClte()"><span>Guardar</span></a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
Reference in New Issue
Block a user