Пример #1
0
        public ActionResult DashboardAuditorFiscal(int projectId, string path, DateTime? inicio, DateTime? fim)
        {
            var id = new OtfsProjectId(projectId);

            var backlogsItemsPendentes = _otfsBacklogItemServices.RetorarBacklogItens(id, path);

            var model = new DashboardAuditorViewModel
            {
                Interation = path,
                FimSprint = fim,
                InicioSprint = inicio,
                ItemsPendentes = backlogsItemsPendentes.BacklogsItemsPendentes,
                ItemsAndamento = backlogsItemsPendentes.BacklogsItemsAndamento,
                ItemsComitadas = backlogsItemsPendentes.BacklogsItemsParaTestes,
                ItemsParaBuild = backlogsItemsPendentes.BacklogsItemsParaBuild,
                ItemsPublicados = backlogsItemsPendentes.BacklogsItemsPublicados
            };

            return View(model);
        }
Пример #2
0
        public ActionResult DashboardTimer()
        {
            var id = new OtfsProjectId(202);

            var backlogsItemsPendentes = _otfsBacklogItemServices.RetorarBacklogItens(id, "documentosfiscais.set.govrn\\Implementações de Abril");

            var model = new DashboardAuditorViewModel
            {
                Interation = "documentosfiscais.set.govrn\\Implementações de Abril",
                FimSprint = null,
                InicioSprint = null,
                ItemsPendentes = backlogsItemsPendentes.BacklogsItemsPendentes,
                ItemsAndamento = backlogsItemsPendentes.BacklogsItemsAndamento,
                ItemsComitadas = backlogsItemsPendentes.BacklogsItemsParaTestes,
                ItemsParaBuild = backlogsItemsPendentes.BacklogsItemsParaBuild,
                ItemsPublicados = backlogsItemsPendentes.BacklogsItemsPublicados
            };

            return View(model);
        }