Пример #1
0
        public void Listar_Cuadre()
        {
            DateTime fecha = dt_fecha.Value;

            txt_recibo_pagado.Text  = S_Factura.Listar_Cuadre(fecha)[0].VALOR_PAGADO.ToString("N2");
            txt_recibo_anulado.Text = S_Factura.Listar_Cuadre(fecha)[0].VALOR_ANULADO.ToString("N2");
            decimal total_recibo = Convert.ToDecimal(txt_recibo_pagado.Text) - Convert.ToDecimal(txt_recibo_anulado.Text);

            txt_recibo_total.Text = total_recibo.ToString("N2");
        }