private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
        {
            if (dataGridView1.CurrentCell == dataGridView1.CurrentRow.Cells[5])
            {
                if (dataGridView1.CurrentRow.Cells[3].Value.ToString().Contains("بيع"))
                {
                    Show_Details_Purchasing_Customer showDetails = new Show_Details_Purchasing_Customer(dataGridView1.CurrentRow.Cells[0].Value, false);
                    showDetails.ShowDialog();
                }
                else if (dataGridView1.CurrentRow.Cells[3].Value.ToString().Contains("مرتجع من عميل"))
                {
                    Show_Details_Purchasing_Customer showDetails = new Show_Details_Purchasing_Customer(dataGridView1.CurrentRow.Cells[0].Value, true);
                    showDetails.ShowDialog();
                }
                else if (dataGridView1.CurrentRow.Cells[3].Value.ToString().Contains("شراء"))
                {
                    ShowDetails_Purchasing_Supplier showDetails = new ShowDetails_Purchasing_Supplier(dataGridView1.CurrentRow.Cells[0].Value, true);
                    showDetails.ShowDialog();
                }
                else if (dataGridView1.CurrentRow.Cells[3].Value.ToString().Contains("مرتجع الى مورد"))
                {
                    ShowDetails_Purchasing_Supplier showDetails = new ShowDetails_Purchasing_Supplier(dataGridView1.CurrentRow.Cells[0].Value, false);
                    showDetails.ShowDialog();
                }

                //Store_BillDetails store_ = new Store_BillDetails(dataGridView1.CurrentRow.Cells[0].Value.ToString(),
                //                                                 dataGridView1.CurrentRow.Cells[1].Value.ToString(),
                //                                                 dataGridView1.CurrentRow.Cells[3].Value.ToString(),
                //                                                 dataGridView1.CurrentRow.Cells[4].Value.ToString()
                //    );
                //store_.ShowDialog();
            }
        }
Exemplo n.º 2
0
 private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
 {
     if (dataGridView1.CurrentCell == dataGridView1.CurrentRow.Cells[8])
     {
         if (dataGridView1.CurrentRow.Cells[7].Value.ToString() == "تسديد الى مورد")
         {
             ShowDetails_Bank_Supplier showDetails = new ShowDetails_Bank_Supplier(dataGridView1.CurrentRow.Cells[0].Value);
             showDetails.ShowDialog();
         }
         else if (dataGridView1.CurrentRow.Cells[7].Value.ToString() == "تسديد من عميل")
         {
             ShowDetails_Bank_Customer showDetails = new ShowDetails_Bank_Customer(dataGridView1.CurrentRow.Cells[0].Value);
             showDetails.ShowDialog();
         }
         else if (dataGridView1.CurrentRow.Cells[7].Value.ToString() == "ايراد من بيع")
         {
             Show_Details_Purchasing_Customer showDetails = new Show_Details_Purchasing_Customer(dataGridView1.CurrentRow.Cells[0].Value, false);
             showDetails.ShowDialog();
         }
         else if (dataGridView1.CurrentRow.Cells[7].Value.ToString() == "دفع من شراء")
         {
             ShowDetails_Purchasing_Supplier showDetails = new ShowDetails_Purchasing_Supplier(dataGridView1.CurrentRow.Cells[0].Value, true);
             showDetails.ShowDialog();
         }
         else if (dataGridView1.CurrentRow.Cells[7].Value.ToString() == "ايراد")
         {
         }
     }
 }
Exemplo n.º 3
0
 private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
 {
     if (dataGridView1.CurrentCell == dataGridView1.CurrentRow.Cells[8])
     {
         if (dataGridView1.CurrentRow.Cells[7].Value.ToString().Contains("بيع"))
         {
             Show_Details_Purchasing_Customer showDetails = new Show_Details_Purchasing_Customer(dataGridView1.CurrentRow.Cells[0].Value, false);
             showDetails.ShowDialog();
         }
         else if (dataGridView1.CurrentRow.Cells[7].Value.ToString().Contains("مرتجع"))
         {
             Show_Details_Purchasing_Customer showDetails = new Show_Details_Purchasing_Customer(dataGridView1.CurrentRow.Cells[0].Value, true);
             showDetails.ShowDialog();
         }
         else if (dataGridView1.CurrentRow.Cells[7].Value.ToString() == "تحويل بنكى")
         {
             ShowDetails_Bank_Customer showDetails = new ShowDetails_Bank_Customer(dataGridView1.CurrentRow.Cells[0].Value);
             showDetails.ShowDialog();
         }
         else if (dataGridView1.CurrentRow.Cells[7].Value.ToString() == "تسديد نقدى")
         {
             ShowDetails_Payback_Customer showDetails = new ShowDetails_Payback_Customer(dataGridView1.CurrentRow.Cells[0].Value, dataGridView1.CurrentRow.Cells[7].Value);
             showDetails.ShowDialog();
         }
         else if (dataGridView1.CurrentRow.Cells[7].Value.ToString() == "خصم")
         {
             ShowDetails_Payback_Customer showDetails = new ShowDetails_Payback_Customer(dataGridView1.CurrentRow.Cells[0].Value, dataGridView1.CurrentRow.Cells[7].Value);
             showDetails.ShowDialog();
         }
     }
 }
Exemplo n.º 4
0
 private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
 {
     if (dataGridView1.CurrentCell == dataGridView1.CurrentRow.Cells[7])
     {
         if (dataGridView1.CurrentRow.Cells[6].Value.ToString().Contains("ايراد من عميل"))
         {
             Show_Details_Purchasing_Customer showDetails = new Show_Details_Purchasing_Customer(dataGridView1.CurrentRow.Cells[0].Value, false);
             showDetails.ShowDialog();
         }
         else if (dataGridView1.CurrentRow.Cells[6].Value.ToString() == "تسديد من عميل")
         {
             ShowDetails_Payback_Customer showDetails = new ShowDetails_Payback_Customer(dataGridView1.CurrentRow.Cells[0].Value, "تسديد نقدى");
             showDetails.ShowDialog();
         }
         else if (dataGridView1.CurrentRow.Cells[6].Value.ToString().Contains("صرف الى مورد"))
         {
             ShowDetails_Purchasing_Supplier showDetails = new ShowDetails_Purchasing_Supplier(dataGridView1.CurrentRow.Cells[0].Value, true);
             showDetails.ShowDialog();
         }
         else if (dataGridView1.CurrentRow.Cells[6].Value.ToString() == "تسديد الى مورد")
         {
             ShowDetails_Payback_Supplier showDetails = new ShowDetails_Payback_Supplier(dataGridView1.CurrentRow.Cells[0].Value, "تسديد نقدى");
             showDetails.ShowDialog();
         }
     }
 }
Exemplo n.º 5
0
        private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
        {
            if (dataGridView1.CurrentCell == dataGridView1.CurrentRow.Cells[7])
            {
                if (dataGridView1.CurrentRow.Cells[6].Value.ToString() == "تسديد الى مورد")
                {
                    ShowDetails_Bank_Supplier showDetails = new ShowDetails_Bank_Supplier(dataGridView1.CurrentRow.Cells[0].Value);
                    showDetails.ShowDialog();
                }
                else if (dataGridView1.CurrentRow.Cells[6].Value.ToString() == "تسديد من عميل")
                {
                    ShowDetails_Bank_Customer showDetails = new ShowDetails_Bank_Customer(dataGridView1.CurrentRow.Cells[0].Value);
                    showDetails.ShowDialog();
                }
                else if (dataGridView1.CurrentRow.Cells[6].Value.ToString() == "ايراد من بيع")
                {
                    Show_Details_Purchasing_Customer showDetails = new Show_Details_Purchasing_Customer(dataGridView1.CurrentRow.Cells[0].Value, false);
                    showDetails.ShowDialog();
                }
                else if (dataGridView1.CurrentRow.Cells[6].Value.ToString() == "دفع من شراء")
                {
                    ShowDetails_Purchasing_Supplier showDetails = new ShowDetails_Purchasing_Supplier(dataGridView1.CurrentRow.Cells[0].Value, true);
                    showDetails.ShowDialog();
                }
                else if (dataGridView1.CurrentRow.Cells[6].Value.ToString() == "ايراد")
                {
                }
            }



            //if (dataGridView1.CurrentRow.Cells[6].Value.ToString() != "ايداع الى البنك")
            //{
            //    Bank_BillDetaails BillDetails = new Bank_BillDetaails(int.Parse(dataGridView1.CurrentRow.Cells[0].Value.ToString())
            //                                                                 , dataGridView1.CurrentRow.Cells[6].Value
            //                                                                 , dataGridView1.CurrentRow.Cells[5].Value
            //                                                                 );
            //    BillDetails.ShowDialog();
            //}
        }