Guest User

Untitled

a guest
Sep 12th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.32 KB | None | 0 0
  1. <table class="table table-responsive table-hover" id="tablepesquisaprodutos" style="font-size:12px;">
  2. <thead>
  3. <tr>
  4. <th></th>
  5. <th>Código</th>
  6. <th>Descrição</th>
  7. <th>Qtd</th>
  8. <th>Preço Un.</th>
  9. <th>Desc %</th>
  10. <th>Desc R$</th>
  11. <th>Total</th>
  12. <th>ICMS</th>
  13. <th>Alíquota</th>
  14. <th>V.ICMS</th>
  15. <th>%ISS</th>
  16. <th>V.ISS</th>
  17. <th>%IPI</th>
  18. <th>V.IPI</th>
  19. </tr>
  20. </thead>
  21. <tbody>
  22. @foreach (var item in Model.PedidosProdutosF)
  23. {
  24. <tr>
  25. <td><input type="checkbox" class="link-check" onclick="PegaID(@item.Id);" onchange="cbChange(this);" /></td>
  26. <td>@item.CodigoProduto</td>
  27. <td>@item.Produto.nome</td>
  28. <td>@item.Qtd</td>
  29. <td>@item.PrecoUnitario.ToString("N2")</td>
  30. <td>@item.DescontoP.ToString("N2")</td>
  31. <td>@item.DescontoV.ToString("N2")</td>
  32. <td>@item.Total.ToString("N2")</td>
  33. <td>@item.ICMS</td>
  34. <td>@item.Aliquota.ToString("N2")</td>
  35. <td>@item.VICMS.ToString("N2")</td>
  36. <td>@item.ISS.ToString("N2")</td>
  37. <td>@item.VISS.ToString("N2")</td>
  38. <td>@item.IPI.ToString("N2")</td>
  39. <td>@item.VIPI.ToString("N2")</td>
  40. </tr>
  41. }
  42.  
  43. </tbody>
  44. </table>
Add Comment
Please, Sign In to add comment