private void dgvGotoweProdukty_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
        {
            int intZamowienieID = Convert.ToInt32(dgvGotoweProdukty.CurrentRow.Cells[0].Value);

            if (db.vOdbior_Gotowych_Produktow.Where(doOdebrania => doOdebrania.ID_Zamowienia == intZamowienieID).Any())
            {
                int intElementID  = Convert.ToInt32(dgvGotoweProdukty.CurrentRow.Cells[3].Value);
                int intIloscSztuk = Convert.ToInt32(dgvGotoweProdukty.CurrentRow.Cells[4].Value);
                WyborPolkiDoOdlozenia wybieraniePolkiDoOdlozeniaElementu = new WyborPolkiDoOdlozenia("przyjecieGotowychProduktow", intZamowienieID, intElementID, intIloscSztuk);
                wybieraniePolkiDoOdlozeniaElementu.Show();
                this.Hide();
            }
        }
Beispiel #2
0
 private void dgvDostawyDoPrzyjecia_CellMouseDoubleClick(object sender, DataGridViewCellMouseEventArgs e)
 {
     if (db.vDostawyDoOdbioru.Where(doOdebrania => doOdebrania.Ilosc > 0).Any())
     {
         int intDostawaID   = Convert.ToInt32(dgvDostawyDoPrzyjecia.CurrentRow.Cells[0].Value);
         int intElementID   = Convert.ToInt32(dgvDostawyDoPrzyjecia.CurrentRow.Cells[1].Value);
         int intIlosc       = Convert.ToInt32(dgvDostawyDoPrzyjecia.CurrentRow.Cells[3].Value);
         int intIloscPaczek = Convert.ToInt32(dgvDostawyDoPrzyjecia.CurrentRow.Cells[4].Value);
         WyborPolkiDoOdlozenia wybieraniePolkiDoOdlozeniaElementu = new WyborPolkiDoOdlozenia("dostawa", intDostawaID, intElementID, intIlosc, intIloscPaczek);
         wybieraniePolkiDoOdlozeniaElementu.Show();
         this.Hide();
     }
 }
Beispiel #3
0
 private void dgvMaterialDoOdebrania_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
 {
     if (db.vNieodebraneMaterialyWgDostawcyZNazwaIOferta.Any())
     {
         int    intDostawaID              = Convert.ToInt32(dgvMaterialDoOdebrania.CurrentRow.Cells[1].Value);
         int    intElementID              = Convert.ToInt32(dgvMaterialDoOdebrania.CurrentRow.Cells[2].Value);
         int    intIlosc                  = Convert.ToInt32(dgvMaterialDoOdebrania.CurrentRow.Cells[4].Value);
         double intIloscLacznie           = Convert.ToDouble(dgvMaterialDoOdebrania.CurrentRow.Cells[4].Value);
         double intIloscWPaczce           = Convert.ToDouble(dgvMaterialDoOdebrania.CurrentRow.Cells[5].Value);
         double dblIlosc                  = intIloscLacznie / intIloscWPaczce;
         int    intIDZamowienieElement    = Convert.ToInt32(dgvMaterialDoOdebrania.CurrentRow.Cells[0].Value);
         WyborPolkiDoOdlozenia wyborPolki = new WyborPolkiDoOdlozenia("przyjecieResztek", intDostawaID, intElementID, dblIlosc, intIlosc, intIDZamowienieElement);
         wyborPolki.Show();
         this.Hide();
     }
 }