Пример #1
0
        //Borda
        public static string exibirBordaStatus(this TituloPagamentoResumoDTO OPagamento)
        {
            if (OPagamento.dtPagamento == null && OPagamento.dtVencimento < DateTime.Today)
            {
                return("border-red");
            }

            string descricaoAtivo = (OPagamento.idStatusPagamento == StatusPagamentoConst.PAGO ? "border-green" : (OPagamento.idStatusPagamento == StatusPagamentoConst.CANCELADO || OPagamento.idStatusPagamento == StatusPagamentoConst.ESTORNADO ? "border-red" : "border-yellow"));

            return(descricaoAtivo);
        }
Пример #2
0
        //Icone FA situacao financeira Associado
        public static string exibirIconeStatus(this TituloPagamentoResumoDTO OPagamento)
        {
            if (OPagamento.dtPagamento == null && OPagamento.dtVencimento < DateTime.Today)
            {
                return("fa-times-circle");
            }

            string descricaoAtivo = (OPagamento.idStatusPagamento == StatusPagamentoConst.PAGO ? "fa-check" : (OPagamento.idStatusPagamento == StatusPagamentoConst.CANCELADO || OPagamento.idStatusPagamento == StatusPagamentoConst.ESTORNADO ? "fa-times-circle" : "fa-exclamation"));

            return(descricaoAtivo);
        }