tengo la siguiente cuestion.. a ver si alguien me da una mano ya que me cuesta mucho esto..
tengo la pagina pedido.htm que tiene el siguiente codigo en donde el cliente escoge el articulo le pone una cantidad, elige un talle y lo agrega:
Código Javascript:
Ver original
<form NAME="itemsform" > <td width="45" valign="top"><p align="center>Art0766 </p> <td width="28" align="center" valign="top"><input TYPE= "value" NAME="agregar1" VALUE="1" SIZE="3" > </td> <td width="70" valign="top" align="center"><select size="1" name="newTalle" onChange="cambiarTalle()" id="talleSelect"> <option value="0">Talle</option> <option value="26">T2</option> <option value="26">T4</option> <option value="27">T6</option> </select> </td> <td width="94" valign="top"><div align="center"> <input name="text2" type="text" style="border:0;" size="2" > $ <input name="text3" type="text" style="border:0;" size="2"> <input type="button" name="cbtadd2" value="Agregar"onClick="buyItem('Art0766',document.itemsform.newTalle.value,document.itemsform.agregar1.value,document.itemsform.text2.value)" >
una vez agregado tengo otra pagina (estado.htm) en donde me tira el detalle delo que el cliente escogio de la pagina pedido.htm con los siguientes items:
Producto / Talle / CAntidad / Costo x unidad / Costo total
yo lo que necesitaria hacer es que a medida que se vallan agregando las filas se me valla sumando la columna CANTIDAD para que el cliente valla viendo el numero de cosas que va agregando ya que el minimo es de 70
el codigo que tengo de la pagina estado.htm es el siguiente:
<html>
<head>
Código Javascript:
</table>Ver original
<SCRIPT LANGUAGE="JavaScript"> totprice = 0; document.writeln('<form><table border="1" cellspacing="0" width="640" bgcolor="#E0E0E0" bordercolor="#FFFFFF" class="td">'); document.writeln('<TR><TD width="150"><b>Producto</b></TD><TD width="50"><b>Talle</b></TD><TD width="80" align="right"><b>Cantidad</b></TD><TD width="120" align="right"><b>Costo x unidad</b></TD><td width="100" align="right"><b>Costo total</b><TD width="90"> </TD></TR>'); itemlist = 0; for (var i = 0; i <= fulllist.length; i++) { if (fulllist.substring(i,i+1) == '[') { itemstart = i+1; } else if (fulllist.substring(i,i+1) == ']') { itemend = i; thequantity = fulllist.substring(itemstart, itemend); itemtotal = 0; itemtotal = (eval(theprice*thequantity)); temptotal = itemtotal * 100; var tax = itemtotal / 100 * (0 - 0); tax = Math.floor(tax * 100)/100 totprice = totprice + itemtotal + tax; itemlist=itemlist+1; document.writeln('<tr><td>'+talle+'</td><td>'+theitem+'</td><td align=right>'+thequantity+'</td><td align=right>'+theprice+'</td><td align=right>'+alterError(itemtotal)+'</td><td align=center><input TYPE="button" NAME="remove" VALUE="Quitar" onclick="javascript:removeItem('+itemlist+')"></td></tr>'); } else if (fulllist.substring(i,i+1) == '/') { talle = fulllist.substring(itemstart, i); itemstart = i+1; } else if (fulllist.substring(i,i+1) == ',') { theitem = fulllist.substring(itemstart, i); itemstart = i+1; } else if (fulllist.substring(i,i+1) == '#') { theprice = fulllist.substring(itemstart, i); itemstart = i+1; } } document.writeln('<tr><td colspan=4><b>Total</b></td><td align=right>'+alterError(totprice)+'</td><td colspan=4><b>cantidad</b></td><td align=right>'+(resultado)+'</td><td> </td></tr>'); document.writeln('</TABLE>'); } </SCRIPT>
</center>
</body>
</html>
diculpen las molestia y si me peuden ayudar se los agradeceria mucho!