コード例 #1
0
 private void GerarPedido()
 {
     using (TFFecharCotacao fFechar = new TFFecharCotacao())
     {
         fFechar.pStatus = "OC";
         fFechar.ShowDialog();
         afterBusca();
     }
 }
コード例 #2
0
 private void AprovarRequisicao()
 {
     using (TFFecharCotacao fFechar = new TFFecharCotacao())
     {
         fFechar.pStatus = "AA";
         fFechar.ShowDialog();
         afterBusca();
     }
 }
コード例 #3
0
 private void GerarOrdemCompra()
 {
     using (TFFecharCotacao fFechar = new TFFecharCotacao())
     {
         fFechar.pStatus = "AP";
         fFechar.ShowDialog();
         afterBusca();
     }
 }
コード例 #4
0
 private void FecharCotacao()
 {
     using (TFFecharCotacao fFechar = new TFFecharCotacao())
     {
         fFechar.pStatus = "FE";
         fFechar.ShowDialog();
         afterBusca();
     }
 }