Enviado em 06/08/2013 - 16:28h
Pessoal estou com um problemão, pelo menos para mim.
<table border="0" width="100%">
<tr bgcolor="whitesmoke"><td colspan="12"><hr></td></tr>
<tr bgcolor="whitesmoke">
<td>Código de Barras: </td>
<td>Descrição: </td>
<td>Unidade: </td>
<td>Quant.:</td>
<td>Val. Unid.: </td>
<td>Total: </td>
<td>B.ICM:</td>
<td>ICMS: </td>
<td>IPI: </td>
<td>Base ST:</td>
<td>ST.: </td>
<td></td>
</tr>
<tr class="linhas">
<td style="text-align: center"><input type="text" name="barras[]" style="width:90px"></td>
<td style="text-align: center"><input type="text" name="desc[]"></td>
<td style="text-align: center"><input type="text" name="uni[]" style="width:50px"></td>
<td style="text-align: center"><input type="text" name="qt[]" style="width:40px"></td>
<td style="text-align: center"><input type="text" name="vu[]" style="width:50px"></td>
<td style="text-align: center"><input type="text" name="full[]" style="width:50px"></td>
<td style="text-align: center"><input type="text" name="bicm[]" style="width:50px"></td>
<td style="text-align: center"><input type="text" name="icms[]" style="width:50px"></td>
<td style="text-align: center"><input type="text" name="ipi[]" style="width:50px"></td>
<td style="text-align: center"><input type="text" name="bst[]" style="width:50px"></td>
<td style="text-align: center"><input type="text" name="st[]" style="width:50px"></td>
<td><a href="#" class="removerCampo" title="Remover linha"><i class="icon-trash"></i></a></td>
</tr>
<tr><td>
<input type="button" value="Adicionar produtos" class="btn btn-mini btn-primary adicionarCampo" target="_blank" onClick="window.open('popprodutono.php', this.target, 'width=850, height=430, scrollbars=yes'); return false;"/></td>
<td colspan="12" style="text-align: right">
</i><input type="text" name="desconto" id="desconto" style="width:100px" placeholder="Desconto">
<input type="text" name="total[]" style="width:100px" placeholder="Total de produtos" readonly="readonly"></td>
</tr>
</table>
<div class="row-fluid">
<div class="block"><form method="GET" action="#">
<p class="block-heading">Faça uma buscar: <input type="text" id="consulta" name="consulta" maxlength="255"/> <input type="submit" value="Buscar" class="btn btn-mini btn-primary"/> </p>
</form>
<div class="block-body">
<form name="form_combox" method="get" action="#" onsubmit="return confirma();">
<table border="0" width="100%" align="center">
<tr>
<table width="100%" border="1" align="center" cellspacing="0">
<tr bgcolor="whitesmoke">
<td width="2%"><input type="checkbox" name="selall" onClick="CheckAll();"></td>
<td width="15%"><strong>Código de barras</strong></td>
<td width="30%"><strong>Produto</strong></td>
<td width="20%"><strong>Grupo mercadoria</strong></td>
<td width="20%"><strong>Preço venda</strong></td>
<td><strong>Quantidade</strong></td>
</tr>
<?php
$sql = "SELECT p.idproduto, p.cod_barras, p.produto, p.preco_venda, p.quantidade, gm.nome
FROM produto p
INNER JOIN grupo_mercadoria gm ON gm.idgrupo_mercadoria = p.grupo_mercadoria_idgrupo_mercadoria
WHERE p.enable = 'Y'
ORDER BY p.produto";
$execute = mysql_query($sql) or die("Erro: " .mysql_error());
$cont = mysql_num_rows($execute);
for ($i = 0; $i < $cont; $i++){
$resultado = mysql_fetch_object($execute);
?>
<tr>
<td><input type="checkbox" name="excluir[]" value="<?php echo $resultado->idproduto; ?>"/></td>
<td><?php echo $resultado->cod_barras; ?></td>
<td><?php echo $resultado->produto;?></td>
<td><?php echo $resultado->nome ;?></td>
<td><?php echo $resultado->preco_venda; ?></td>
<td><?php echo $resultado->quantidade; ?></td>
</tr>
<?php
} // fexar for
?>
</table>
<table border="0" width="100%" align="center">
<tr><td>
<input type="submit" name="submit" value="Inserir Produto" class="btn btn-primary"/>
</td>
</tr>
</table>
</form>
</tr>
</table>
<!-- <p><a class="btn btn-primary btn-large">Learn more »</a></p>-->
</div>
</div>
</div>