Esempio n. 1
0
        private bool GenerarDiferencias()
        {
            string Reporte  = "Diferencias";
            string FileName = GetFileName(Reporte);

            if (CheckFile(FileName, Reporte))
            {
                Diferencias       Diferencias = new Diferencias();
                List <Diferencia> lstReporte  = Diferencias.Generar(semanaToReport);
                List <string>     header      = GetHeader(semanaToReport, "Diferencias de Boletos (BSP vs BackOffice)");
                string            footer      = lstReporte.Count.ToString() + " registros";
                CreateExcelFile.CreateExcelDocument(lstReporte, Reporte, FileName, header.ToArray(), footer);
                return(true);
            }
            return(false);
        }
Esempio n. 2
0
 //--------------------------------------------------
 //Calcula las diferencias entre cuadro y factura
 //--------------------------------------------------
 private void btnCalcular_Click(object sender, EventArgs e)
 {
     GridViewObj.objCell(cuadroGrid, 8, 2).Value = Math.Round(double.Parse(txtGastosC.Text) + double.Parse(txtIva.Text) + double.Parse(txtImp.Text) + double.Parse(txtOtro.Text), 2);
     Diferencias.calcularDiferencias(cuadroGrid, new string[] { txtGastosC.Text, txtIva.Text, txtImp.Text });
     txtResumen.Text = data.resumen(GridViewObj.objCell(cuadroGrid, 8, 3).Value.ToString());
 }