示例#1
0
        private void dgvKurierzy_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
        {
            int             intIDZamowienie = Convert.ToInt32(cmbZamowienia.SelectedValue);
            int             intPracownikID  = Convert.ToInt32(cmbPracownicy.SelectedValue);
            int             intUmowaID      = Convert.ToInt32(dgvKurierzy.CurrentRow.Cells[0].Value);
            PopupAcceptDeny akceptujPrzypisanieKurieraIPracownika = new PopupAcceptDeny(intIDZamowienie, intPracownikID, intUmowaID, true);

            akceptujPrzypisanieKurieraIPracownika.Show();
            czyUruchamiacPoprzedniFormularz = false;
            this.Close();
        }
示例#2
0
 private void dgvMagazynZawartosc_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
 {
     if (db.vZawartoscMagazynuDoPrzydzialu.Where(element => element.ID_Element == intElement).Any() == true)
     {
         int             intPolka            = Convert.ToInt32(dgvMagazynZawartosc.CurrentRow.Cells[0].Value);
         int             intDostawa          = Convert.ToInt32(dgvMagazynZawartosc.CurrentRow.Cells[2].Value);
         int             intElement          = Convert.ToInt32(dgvMagazynZawartosc.CurrentRow.Cells[1].Value);
         int             intIlosc            = Convert.ToInt32(dgvMagazynZawartosc.CurrentRow.Cells[4].Value);
         PopupAcceptDeny popupAkceptujOdrzuc = new PopupAcceptDeny(intPolka, intDostawa, intElement, intIlosc, intZamowienie);
         popupAkceptujOdrzuc.Show();
     }
 }
示例#3
0
 private void dgvListaOfert_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
 {
     if (db.Oferta.Where(element => element.ID_Element == intElement).Any() == true)
     {
         double          ilosc               = Convert.ToDouble(Math.Abs(intIlosc));
         double          iloscWPaczce        = Convert.ToDouble(dgvListaOfert.CurrentRow.Cells[5].Value);
         int             intIloscPaczek      = Convert.ToInt32(Math.Ceiling(ilosc / iloscWPaczce));
         int             intDostawca         = Convert.ToInt32(dgvListaOfert.CurrentRow.Cells[2].Value);
         int             intOferta           = Convert.ToInt32(dgvListaOfert.CurrentRow.Cells[1].Value);
         int             intElementID        = Convert.ToInt32(dgvListaOfert.CurrentRow.Cells[0].Value);
         PopupAcceptDeny popupAkceptujOdrzuc = new PopupAcceptDeny(true, intDostawca, intZamowienie, intIloscPaczek, intOferta, intElementID);
         popupAkceptujOdrzuc.Show();
     }
 }
示例#4
0
 private void dgvMaterialyDoWydania_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
 {
     if (db.vMaterialyNiewydaneZDatami.Any())
     {
         int             intIDZamowienie = Convert.ToInt32(dgvMaterialyDoWydania.CurrentRow.Cells[0].Value);
         int             intElementID    = Convert.ToInt32(dgvMaterialyDoWydania.CurrentRow.Cells[2].Value);
         int             intIDDostawy    = Convert.ToInt32(dgvMaterialyDoWydania.CurrentRow.Cells[1].Value);
         int             intPolka        = Convert.ToInt32(dgvMaterialyDoWydania.CurrentRow.Cells[6].Value);
         int             intIlosc        = Convert.ToInt32(dgvMaterialyDoWydania.CurrentRow.Cells[4].Value);
         int             intPracownikID  = Convert.ToInt32(cmbPracownik.SelectedValue);
         PopupAcceptDeny akceptujWydanie = new PopupAcceptDeny(true, intIDZamowienie, intElementID, intIDDostawy, intPolka, intIlosc, intPracownikID);
         akceptujWydanie.Show();
     }
 }
示例#5
0
        private void btnPrzypiszCalyMagazyn_Click(object sender, EventArgs e)
        {
            PopupAcceptDeny popupAkceptujOdrzuc = new PopupAcceptDeny(intElement, intZamowienie);

            popupAkceptujOdrzuc.Show();
        }