private void gPrazoEntrega_DoubleClick(object sender, EventArgs e) { if (bsPrazoEntrega.Current != null) { using (TFLanPrazoEntrega fPrazo = new TFLanPrazoEntrega()) { fPrazo.St_detalhe = true; fPrazo.rPrazo = bsPrazoEntrega.Current as CamadaDados.Compra.Lancamento.TRegistro_PrazoEntrega; fPrazo.ShowDialog(); } } }
private void InserirPrazoEntrega() { using (TFLanPrazoEntrega fPrazo = new TFLanPrazoEntrega()) { if (fPrazo.ShowDialog() == DialogResult.OK) { if (fPrazo.rPrazo != null) { bsPrazoEntrega.Add(fPrazo.rPrazo); } } } }
private void InserirPrazoEntrega() { if (bsItemNegociacao.Current != null) { using (TFLanPrazoEntrega fPrazo = new TFLanPrazoEntrega()) { if (fPrazo.ShowDialog() == DialogResult.OK) { if (fPrazo.rPrazo != null) { (bsItemNegociacao.Current as CamadaDados.Compra.Lancamento.TRegistro_NegociacaoItem).lPrazoEntrega.Add(fPrazo.rPrazo); bsItemNegociacao.ResetCurrentItem(); } } } } }