Exemplo n.º 1
0
        private void TrimestreList_SelectedIndexChanged(object sender, EventArgs e)
        {
            ComboBox cb = (ComboBox)sender;

            if (cb.SelectedIndex > 0)
            {
                SetDefaultFields(true);

                int        id = Int32.Parse(TrimestreList.SelectedValue.ToString());
                Trimestres tr = _context.Trimestres.Where(t => t.TrimestreId == id).FirstOrDefault();
                if (tr != null)
                {
                    tbName.Text   = tr.Name;
                    tbsDate.Value = tr.StartDate;
                    tbeDate.Value = tr.EndDate;
                    if (tr.Active == 1)
                    {
                        tbActive.Checked = true;
                    }
                    else
                    {
                        tbActive.Checked = false;
                    }
                }
                else
                {
                    MessageBox.Show("El trimestre no existe.");
                }
            }
            else
            {
                SetDefaultFields(false);
            }
        }
Exemplo n.º 2
0
        private void GenerateReport_Click(object sender, EventArgs e)
        {
            var students = StudentsService.GetAllQueryable();

            var oldStudents = HistoryStudentService.GetAllQueryable();

            bool includeOld = true;

            if (ActivateFilter.Checked)
            {
                if (ListTrimestres.SelectedItem != null && ListTrimestres.SelectedIndex > 0)
                {
                    int        id        = Int32.Parse(ListTrimestres.SelectedValue.ToString());
                    Trimestres trimestre = TrimestresService.Get(id).Result;
                    students   = students.Where(s => s.RegisteredDate >= trimestre.StartDate && s.RegisteredDate <= trimestre.EndDate).Select(s => s);
                    includeOld = false;
                }
                if (ListTeachers.SelectedItem != null && ListTeachers.SelectedIndex > 0)
                {
                    int id = Int32.Parse(ListTeachers.SelectedValue.ToString());
                    students = students.Where(s => s.TeacherId == id).Select(s => s);
                }
                if (ListSubjects.SelectedItem != null && ListSubjects.SelectedIndex > 0)
                {
                    int      id      = Int32.Parse(ListSubjects.SelectedValue.ToString());
                    Subjects subject = SubjectsService.GetById(id).Result;
                    students = students.Where(s => s.SubjectCode == subject.SubjectCode).Select(s => s);
                }
                if (!textBox1.Text.Equals(""))
                {
                    string txt = textBox1.Text;
                    students = students.Where(s => s.LoginName.ToLower().Contains(txt.ToLower().Trim()) || s.DisplayName.ToLower().Contains(txt.ToLower().Trim())).Select(s => s);
                }
            }
            ReportBox.Rows.Clear();
            ShowStudents(students.ToList());
            int count = students.Count();

            if (includeOld)
            {
                ShowOldStudents(oldStudents.ToList());
                count += oldStudents.Count();
            }

            results.Text = count.ToString() + " resultados encontrados.";
        }
Exemplo n.º 3
0
        public async Task <Response> Delete(Trimestres trimestres)
        {
            using (AppProfessorContext context = new AppProfessorContext())
            {
                using (Transation_Scoper db = new Transation_Scoper(context))
                {
                    var result = await db.DoDelete <Trimestres>(trimestres).EndTransaction();

                    return(new Response
                    {
                        IsSucess = result.estado,
                        list = trimestres,
                        Messgems = result.Exception,
                    });
                }
            }
        }
Exemplo n.º 4
0
 private async void Atualizar()
 {
     try
     {
         if (Validar1())
         {
             Cursor = Cursors.WaitCursor;
             if (!(await ExistingData((string)txtNome.EditValue) > 1))
             {
                 if (XtraMessageBox.Show("Atualizar uma informação implica Alteração de informação!\nPretendes mesmo continuar?!...", "Atualizar Informação", MessageBoxButtons.OKCancel, MessageBoxIcon.Warning) == DialogResult.OK)
                 {
                     var curs = new Trimestres
                     {
                         TrimestreID   = Convert.ToInt32(txtCodigo.Text),
                         Descricao     = (string)txtDescricao.Text,
                         TrimestreNome = (string)txtNome.Text,
                         Termino       = (int)txtIdade2.Value,
                         Inicio        = (int)txtIdade1.Value,
                     };
                     if ((await TrimestresControllers.GetInstacia().Update(curs)).IsSucess)
                     {
                         XtraMessageBox.Show("Serviço Inserido com Sucesso!...", "Sucesso", MessageBoxButtons.OK, MessageBoxIcon.Information);
                         LimparCampos();
                     }
                     else
                     {
                         XtraMessageBox.Show("Este Valor já existe tente novamente", "Má conclusão", MessageBoxButtons.OK, MessageBoxIcon.Error);
                     }
                 }
             }
             else
             {
                 XtraMessageBox.Show("Lamentamos mais já existe este login no Sistema\n Não pode existir PIN ou login com o mesmo acesso", "Má conclusão", MessageBoxButtons.OK, MessageBoxIcon.Error);
             }
         }
     }
     catch (System.Exception exception)
     {
         MessageBox.Show("Erro " + exception, "Erro de SQL", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
     finally
     {
         Cursor = Cursors.Default;
     }
 }
Exemplo n.º 5
0
 private async void Guardar()
 {
     try
     {
         if (Validar1())
         {
             Cursor = Cursors.WaitCursor;
             if (!(await ExistingData((string)txtNome.EditValue) > 0))
             {
                 var curs = new Trimestres
                 {
                     Descricao     = (string)txtDescricao.Text,
                     TrimestreNome = (string)txtNome.Text,
                     Termino       = (int)txtIdade2.Value,
                     Inicio        = (int)txtIdade1.Value,
                 };
                 if ((await TrimestresControllers.GetInstacia().Insert(curs)).IsSucess)
                 {
                     XtraMessageBox.Show("Serviço Inserido com Sucesso!...", "Sucesso", MessageBoxButtons.OK, MessageBoxIcon.Information);
                     LimparCampos();
                 }
                 else
                 {
                     XtraMessageBox.Show("Este Valor já existe tente novamente", "Má conclusão", MessageBoxButtons.OK, MessageBoxIcon.Error);
                 }
             }
             else
             {
                 XtraMessageBox.Show("Lamentamos mais já existe este login no Sistema\n Não pode existir PIN ou login com o mesmo acesso", "Má conclusão", MessageBoxButtons.OK, MessageBoxIcon.Error);
             }
         }
     }
     catch (System.Exception exception)
     {
         MessageBox.Show("Erro " + exception, "Erro de SQL", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
     finally
     {
         Cursor = Cursors.Default;
     }
 }
Exemplo n.º 6
0
        public frmTrimestreAdd(string Titulo, Trimestres models)
        {
            InitializeComponent();
            LimparCampos();
            ImplementacoaInicial();

            #region Aplicar
            this.txtTitulo.Text = $"Página: {Titulo}";
            #endregion

            #region AcoplarDados
            if (models != null)
            {
                txtCodigo.EditValue    = models.TrimestreID;
                txtNome.EditValue      = models.TrimestreNome;
                txtDescricao.EditValue = models.Descricao;
                txtIdade1.Value        = models.Inicio;
                txtIdade2.Value        = models.Termino;
                txtDescricao.Focus();
            }
            #endregion
        }
Exemplo n.º 7
0
        private void Add_Click(object sender, EventArgs e)
        {
            if (tbeDate.Value > tbsDate.Value)
            {
                //okey...
                string name   = tbsDate.Value.ToString("MMMM") + " - " + tbeDate.Value.ToString("MMMM") + "  " + tbeDate.Value.Year.ToString();
                int    active = 1;

                if (tbActive.Checked)
                {
                    active = 1;
                }
                else
                {
                    active = 0;
                }

                Trimestres tri = new Trimestres()
                {
                    Name      = name,
                    StartDate = tbsDate.Value,
                    EndDate   = tbeDate.Value,
                    Active    = active
                };
                //MessageBox.Show(name);
                _context.Trimestres.Add(tri);

                _context.SaveChanges();

                MessageBox.Show("El trimestre ha sido añadido con éxito.");

                this.Close();
            }
            else
            {
                MessageBox.Show("La fecha de término debe ser mayor a la fecha de inicio.");
            }
        }
Exemplo n.º 8
0
        private void SaveChanges_Click(object sender, EventArgs e)
        {
            int        id = Int32.Parse(TrimestreList.SelectedValue.ToString());
            Trimestres tr = _context.Trimestres.Where(t => t.TrimestreId == id).FirstOrDefault();

            if (tbActive.Checked)
            {
                tr.Active = 1;
            }
            else
            {
                tr.Active = 0;
            }
            tr.Name      = tbName.Text;
            tr.StartDate = tbsDate.Value;
            tr.EndDate   = tbeDate.Value;

            _context.SaveChanges();

            MessageBox.Show("Se han guardado los cambios.");

            this.Close();
        }
Exemplo n.º 9
0
        private string CreatePdfString()
        {
            string     trimestre        = ListTrimestres.SelectedValue.ToString();
            int        id               = Int32.Parse(trimestre);
            Trimestres tr               = TrimestresService.Get(id).Result;
            string     displayTrimestre = tr.Name + " | " + tr.StartDate.ToString("yyyy-MM-dd") + " - " + tr.EndDate.ToString("yyyyy-MM-dd");

            string content = "<!DOCTYPE html><html>" +
                             "<head>" +
                             "<style>" +
                             "@page { size: A4 portrait; }" +
                             "</style>" +
                             "<meta charset='UTF-8'><title>LTI ADMIN</title>" +
                             "</head>" +
                             "<body>" +
                             "<div align='center' style='width:100%;height:auto;padding:7px;margin-top:5px;margin-bottom:5px;'>" +
                             "<img src='http://www.intec.edu.do/identidad-corporativa/img/descargas-mini/logo-intec-mini.jpg' alt='INSTITUTO TECNOLOGICO DE SANTO DOMINGO' />" +
                             "<h2>LABORATORIO DE TECNOLOGIA DE LA INFORMACION</h2>" +
                             "<p><i>Reporte de firmas (consentimiento) de los estudiantes del Laboratorio.</i></p>" +
                             "</div>" +
                             "<div>" +
                             $"<h4>{displayTrimestre}</h4>" +
                             "</div>" +
                             "<br />" +
                             "<table width='100%'>" +
                             "<tr style='padding:2px;' align='center'>" +
                             "<th>No.</th>" +
                             "<th>ID</th>" +
                             "<th>Nombre</th>" +
                             "<th>Fecha</th>" +
                             "<th>Computador</th>" +
                             "</tr>";

            string temp  = "";
            long   count = 1;

            foreach (DataGridViewRow item in ReportBox.Rows)
            {
                temp += "<tr style='padding:1.5px;'>";

                temp += $"<td align='center' height='30'>{count}</td>";
                for (int i = 0; i < 4; i++)
                {
                    temp += "<td height='30' align='center'>";

                    if (i == 2)
                    {
                        string[] strs = item.Cells[i].Value.ToString().Split(' ');
                        temp += strs[0].ToString();
                    }
                    else
                    {
                        temp += item.Cells[i].Value.ToString();
                    }
                    temp += "</td>";
                }
                temp += "</tr>";
                count++;
            }
            content += temp;
            content += "</table></body></html>";
            return(content);
        }