You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.1 KiB
Plaintext
36 lines
1.1 KiB
Plaintext
@using GCI.DTO.MovimentosFinanceiros
|
|
@using GCI.PortalCondomino.Models
|
|
@model RecibosDetalheModel
|
|
|
|
<div class="table-responsive col-xs-11">
|
|
<table border="0" cellspacing="0" cellpadding="0" class="table table-striped last-cell-right mb40">
|
|
<thead>
|
|
<tr>
|
|
<td><b>Documento</b></td>
|
|
<td><b>Descrição</b></td>
|
|
<td><b>Valor</b></td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach (var linha in Model.Registos)
|
|
{
|
|
<tr>
|
|
<td>
|
|
@if (linha.Tipo == ReciboDetalhe.TipoReciboDetalhe.Aviso)
|
|
{
|
|
<span>A </span>
|
|
}
|
|
else
|
|
{
|
|
<span>C </span>
|
|
}
|
|
@linha.NDocumento
|
|
</td>
|
|
<td>@linha.Descricao</td>
|
|
<td>@linha.Valor.ToString("C2")</td>
|
|
</tr>
|
|
}
|
|
</tbody>
|
|
</table>
|
|
</div>
|