Guest User

Untitled

a guest
Nov 16th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.15 KB | None | 0 0
  1. <div class="widget-body" id="multiplicar">
  2. <table class="table table-bordered table-striped table-white" id="lol">
  3. <thead>
  4. <input style="background: #ff4841; color: white; border-color: black" type="button" id="btn" name=""value="+" onclick="sumar();"/>
  5. <input style="background: #ff4841; color: white; border-color: black" type="button" id="btn2" name=""value="-" onclick="restar();"/>
  6. <tr>
  7. <th class="center">No.</th>
  8. <th><?php echo __("Description"); ?></th>
  9. <th><?php echo __("Quantity"); ?></th>
  10. <th><?php echo __("Unit"); ?></th>
  11. <th><?php echo __("Precio"); ?></th>
  12. <th><?php echo __("Total"); ?></th>
  13. </tr>
  14.  
  15.  
  16. </thead>
  17.  
  18. <?php for ($i=0; $i<$quantity; $i++) : echo $quantity; ?>
  19.  
  20.  
  21.  
  22. <?php $n=$i+1; ?>
  23. <tbody>
  24. <tr>
  25. <td class="center"><?php echo $n; ?></td>
  26. <td><input name="bl_<?php echo $i; ?>" id="bl_<?php echo $i; ?>" type="text" class="span12 inputbox" size="15"></td>
  27. <td><input name="can_<?php echo $i; ?>" id="1<?php echo $i; ?>" type="text" class="span6 inputbox" size="15" value= 0 onchange="multiplicar()"></td>
  28. <td>
  29. <select name="medida_<?php echo $i; ?>" id="medida_<?php echo $i; ?>" class="selectpicker span9" >
  30. <option value="PZA">PZA</option>
  31. <option value="KGS">KGS</option>
  32. <option value="CJA">CJA</option>
  33. <option value="PAQ">PAQ</option>
  34. <option value="MTS">MTS</option>
  35. <option value="SERV">SERV</option>
  36. </select>
  37. </td>
  38.  
  39. <td><input name="dp_<?php echo $i; ?>" id="2<?php echo $i; ?>" type="text" class="span6 inputbox" size="15" value= 0 onclick="multiplicar()" ></td>
  40.  
  41. <td><input name="to_<?php echo $i; ?>" id="3<?php echo $i; ?>" type="text" class="span6 inputbox" size="15" ></td>
  42.  
  43.  
  44.  
  45. </tr>
  46. </tbody>
  47. <?php endfor; ?>
Add Comment
Please, Sign In to add comment