private void VentasToolStripMenuItem1_Click(object sender, EventArgs e) { FrmVenta frm = FrmVenta.GetInstancia(); frm.MdiParent = this; frm.Show(); frm.Idtrabajador = Convert.ToInt32(this.Idtrabajador); }
public static FrmVenta GetInstancia() { if (_instancia == null) { _instancia = new FrmVenta(); } return(_instancia); }
private void DataListado_DoubleClick(object sender, EventArgs e) { FrmVenta form = FrmVenta.GetInstancia(); string par1, par2; par1 = Convert.ToString(this.dataListado.CurrentRow.Cells["idcliente"].Value); par2 = Convert.ToString(this.dataListado.CurrentRow.Cells["apellidos"].Value) + "" + Convert.ToString(this.dataListado.CurrentRow.Cells["nombre"].Value); form.setCliente(par1, par2); this.Hide(); }
private void DataListado_DoubleClick(object sender, EventArgs e) { FrmVenta form = FrmVenta.GetInstancia(); string par1, par2; decimal par3, par4; int par5; DateTime par6; par1 = Convert.ToString(this.dataListado.CurrentRow.Cells["iddetalle_ingreso"].Value); par2 = Convert.ToString(this.dataListado.CurrentRow.Cells["nombre"].Value); par3 = Convert.ToDecimal(this.dataListado.CurrentRow.Cells["precio_compra"].Value); par4 = Convert.ToDecimal(this.dataListado.CurrentRow.Cells["precio_venta"].Value); par5 = Convert.ToInt32(this.dataListado.CurrentRow.Cells["stock_actual"].Value); par6 = Convert.ToDateTime(this.dataListado.CurrentRow.Cells["fecha_vencimiento"].Value); form.setArticulo(par1, par2, par3, par4, par5, par6); this.Hide(); }
private void FrmVenta_FormClosing(object sender, FormClosingEventArgs e) { _instancia = null; }