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