Пример #1
0
        private void btn_generar_Click(object sender, EventArgs e)
        {
            if (!busco)
            {
                MessageBox.Show("Ingrese un cliente.");
                return;
            }
            if (dgv_detalle.Rows.Count == 0)
            {
                MessageBox.Show("Seleccione al menos 1 producto.");
                return;
            }
            bool var = transac.crear_NC(String.Format("{0:0000}", txt_cuit.Text), String.Format("{0:0000}", txt_nro.Text), Convert.ToDateTime(dtp_fecha.Text).ToString("yyyy/MM/dd"), dgv_detalle, Convert.ToDateTime(dtp_fecha.Text).AddMonths(1).ToString("yyyy/MM/dd"));

            if (var)
            {
                MessageBox.Show("Se creó con exito.");
            }
            Frm_NotaCotizacion nota = new Frm_NotaCotizacion();

            nota.nro_nc       = txt_nro.Text;
            nota.nro_sucursal = "1";
            nota.ShowDialog();
            this.Close();
        }
 private void btn_ver_Click(object sender, EventArgs e)
 {
     if (dgv_clientes.SelectedCells.Count == 0)
     {
         MessageBox.Show("No ha seleccionado ningún cliente.");
     }
     else
     {
         Frm_NotaCotizacion nc = new Frm_NotaCotizacion();
         nc.nro_nc       = dgv_clientes.CurrentRow.Cells[1].Value.ToString();
         nc.nro_sucursal = dgv_clientes.CurrentRow.Cells[0].Value.ToString();
         nc.ShowDialog();
     }
 }