private void cmbNumero_SelectedIndexChanged(object sender, EventArgs e) { if (cmbNumero.SelectedItem != null) { if (cmbNumero.SelectedItem.Equals("Remision")) { MostrarReporteRemision ReporteRemision = new MostrarReporteRemision(); ReporteRemision.NumeroRemision = Convert.ToInt32(TxtNumero.Text); ReporteRemision.ShowDialog(); } else if (cmbNumero.SelectedItem.Equals("Factura")) { MostrarReporteFactura ReporteFactura = new MostrarReporteFactura(); ReporteFactura.NumeroFactura = Convert.ToInt32(TxtNumero.Text); ReporteFactura.ShowDialog(); } else { MostrarReporteOrden ReporteOrden = new MostrarReporteOrden(); ReporteOrden.NumeroOrden = Convert.ToInt32(TxtNumero.Text); ReporteOrden.ShowDialog(); } } Clear(); }
public void Guardar()//Método para guardar { TxtObservaciones.Text = TxtObservaciones.Text.Trim(); var Fecha = DateOrden.Value.DayOfYear - DateTime.Now.DayOfYear; if (string.IsNullOrWhiteSpace(TxtCc.Text) || string.IsNullOrWhiteSpace(TxtNombre.Text) || string.IsNullOrWhiteSpace(TxtDireccion.Text) || string.IsNullOrWhiteSpace(TxtTelefono.Text) || string.IsNullOrWhiteSpace(DateOrden.Text) || cmbEmpleados.SelectedIndex.Equals(-1) || CbxEstado.SelectedIndex.Equals(-1)) { MessageBox.Show("Por favor ingrese la información solicitada", "SmartPrint", MessageBoxButtons.OK, MessageBoxIcon.Warning); } else if (DateTime.Now >= DateOrden.Value) { MessageBox.Show("No puede ser la fecha de vencimiento menor a la fecha de hoy", "SmartPrint", MessageBoxButtons.OK, MessageBoxIcon.Warning); } else if (Fecha > 30) { MessageBox.Show("No puede ingresar una fecha de vencimiento mayor a 30 días", "SmartPrint", MessageBoxButtons.OK, MessageBoxIcon.Warning); } else { try { Orden = new LOrdenServicio { NumeroOrden = (Convert.ToInt32(TxtOrdenServ.Text)), NumeroRemision = (Convert.ToInt32(TxtRemision.Text)), Cedula = TxtCc.Text, Asignado = cmbEmpleados.SelectedValue.ToString(), FechaOrden = DateOrden.Value, Estado = CbxEstado.SelectedItem.ToString(), Observaciones = TxtObservaciones.Text, Usuario = perfil["Usuario"] }; if (MessageBox.Show("¿Seguro que desea Continuar?", "SmartPrint", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { Orden.GuardarOrden(Orden); MessageBox.Show("Operación exitosa", "SmartPrint", MessageBoxButtons.OK, MessageBoxIcon.Information); Clear(); if (MessageBox.Show("¿Desea Generar Informe?", "SmartPrint", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { MostrarReporteOrden ReporteOrden = new MostrarReporteOrden(); ReporteOrden.NumeroOrden = Convert.ToInt32(TxtOrdenServ.Text); ReporteOrden.ShowDialog(); int Numeeo = (Int32.Parse(Orden.Mostrarcodigo()) + 1); TxtOrdenServ.Text = Numeeo.ToString("D5"); TxtOrdenServ.Enabled = false; } else { int Numeeo = (Int32.Parse(Orden.Mostrarcodigo()) + 1); TxtOrdenServ.Text = Numeeo.ToString("D5"); } } else { MessageBox.Show("Operación cancelada", "SmartPrint", MessageBoxButtons.OK, MessageBoxIcon.Warning); } } catch (Exception) { MessageBox.Show("Excepción no controlada", "SmartPrint", MessageBoxButtons.OK, MessageBoxIcon.Error); Dispose(); } } }