Primer commit del sistema avantika sin cambios
This commit is contained in:
23
templates/lists/envios-tienda-prods4.tpl
Executable file
23
templates/lists/envios-tienda-prods4.tpl
Executable file
@@ -0,0 +1,23 @@
|
||||
<hr />
|
||||
<table width="600" cellpadding="0" cellspacing="0" border="1">
|
||||
<tr>
|
||||
<td width="150" align="center" height="30"><b>Código Barra</b></td>
|
||||
<td width="" align="center" height="30"><b>Producto</b></td>
|
||||
<td width="100" align="center"><b>Cantidad</b></td>
|
||||
</tr>
|
||||
{foreach from=$productos item=item key=key}
|
||||
<tr>
|
||||
<td align="center" height="30">{$item.codigoBarra}</td>
|
||||
<td align="left" height="30">{$item.nombre}</td>
|
||||
<td align="center">
|
||||
<input type="text" name="cantidad_{$item.envProdId}" value="{$item.cantidad}" class="smallInput" style="width:80px" readonly="readonly" />
|
||||
<input type="hidden" name="idEnvProds[]" value="{$item.envProdId}" />
|
||||
<input type="hidden" name="idProdItem_{$item.envProdId}" value="{$item.prodItemId}" />
|
||||
</td>
|
||||
</tr>
|
||||
{foreachelse}
|
||||
<tr>
|
||||
<td colspan="3" height="30" align="center">Ningún registro encontrado.</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</table>
|
||||
Reference in New Issue
Block a user