本文整理汇总了C#中Entidades.ObterValorLíquido方法的典型用法代码示例。如果您正苦于以下问题:C# Entidades.ObterValorLíquido方法的具体用法?C# Entidades.ObterValorLíquido怎么用?C# Entidades.ObterValorLíquido使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Entidades
的用法示例。
在下文中一共展示了Entidades.ObterValorLíquido方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CriarItem
private ListViewItem CriarItem(ref DadosBgCarregar dados, DateTime hoje, ref double valorTotal, ref double valorTotalLíquido, ref double valorPendente, Entidades.Pagamentos.Pagamento p)
{
ListViewItem item = new ListViewItem(new string[11] { "", "", "", "", "", "", "", "", "", "", "" });
ListaPagamentoItem itemPagamento = new ListaPagamentoItem(p);
valorTotal += p.Valor;
item.SubItems[colData.Index].Text = p.Data.ToShortDateString();
item.SubItems[colRegistradoPor.Index].Text = p.RegistradoPor.Nome;
item.SubItems[colValor.Index].Text = Math.Abs(p.Valor).ToString("C", DadosGlobais.Instância.Cultura);
item.SubItems[colDescrição.Index].Text = p.DescriçãoCompleta;
if (p is IProrrogável)
{
IProrrogável prorrogável = (IProrrogável)p;
itemPagamento.ProrrogadoPara = prorrogável.ProrrogadoPara;
if (prorrogável.ProrrogadoPara.HasValue)
item.SubItems[colProrrogação.Index].Text = prorrogável.ProrrogadoPara.Value.ToShortDateString();
else
item.SubItems[colProrrogação.Index].Text = "";
}
else
itemPagamento.ProrrogadoPara = null;
if (p is Cheque)
itemPagamento.Vencimento = ((Cheque) p).Vencimento;
else
itemPagamento.Vencimento = p.ÚltimoVencimento;
if (itemPagamento.Vencimento.HasValue)
{
item.SubItems[colVencimento.Index].Text =
itemPagamento.Vencimento.Value.ToString("dd/MM/yyyy");
}
if (p.Pendente)
valorPendente += p.Valor;
if (venda != null)
{
itemPagamento.Dias = p.ObterDiasJuros(venda);
item.SubItems[colDias.Index].Text = itemPagamento.Dias.ToString();
try
{
itemPagamento.ValorLíquido = p.ObterValorLíquido(venda);
}
catch
{
itemPagamento.ValorLíquido = 0;
}
valorTotalLíquido += itemPagamento.ValorLíquido;
item.SubItems[colValorLíquido.Index].Text = itemPagamento.ValorLíquido.ToString("C", Entidades.Configuração.DadosGlobais.Instância.Cultura);
}
if (p.Venda.HasValue)
item.SubItems[colPagaVenda.Index].Text = Entidades.Relacionamento.Venda.Venda.FormatarCódigo(p.Venda.Value);
long? pagoNaVenda = null;
dados.hashPagoNaVenda.TryGetValue(p.Código, out pagoNaVenda);
if (pagoNaVenda.HasValue)
item.SubItems[colPagoNaVenda.Index].Text = Entidades.Relacionamento.Venda.Venda.FormatarCódigo(pagoNaVenda.Value).ToString();
else
item.SubItems[colPagoNaVenda.Index].Text = "";
item.ImageKey = p.Tipo.ToString();
if (p.Pendente)
{
item.UseItemStyleForSubItems = true;
item.BackColor = Color.Yellow;
if (p.ÚltimoVencimento < hoje)
item.ForeColor = Color.Red;
}
hashItemListaPagamento[item] = itemPagamento;
return item;
}