//--------------------------------------------------------------------------------------------------
        //--------------------------------------    REPORT    ----------------------------------------------
        //--------------------------------------------------------------------------------------------------

        public ActionResult Report()
        {
            // Add a report to the view data.
            ViewData["Report"] = new DXReportVendedores();  // TODO: cambiar a reporte de sucursales

            return(View());
        }
        //--------------------------------------------------------------------------------------------------
        //--------------------------------------    REPORT    ----------------------------------------------
        //--------------------------------------------------------------------------------------------------

        public ActionResult Report()
        {
            // Add a report to the view data.
            ViewData["Report"] = new DXReportVendedores();

            return(View());
        }
 public ActionResult ReportPartial()
 {
     ViewData["Report"] = new DXReportVendedores(); // TODO: cambiar a reporte de sucursales
     return(PartialView("_reportList"));
 }
 public ActionResult ReportPartial()
 {
     ViewData["Report"] = new DXReportVendedores();
     return(PartialView("_reportList"));
 }