0

我有一个DataGridView,包含项目、描述、数量、费率和总计列。我有两种类型的项目,一个项目有 vapasi == 是(vapasi 是一种存款金额),另一个项目有 vapasi == 否。我想通过区分项目与 vapasi & 来计算“总”列的总和没有 vapasi 的项目,&想要将这个计算的总数显示到两个相应的文本框中,即 'txtboxwithvapasi',n 'txtboxwithoutvapasi',它们在网格之后。我做了以下代码:

private void grdPurchase_CellEndEdit_1(object sender, DataGridViewCellEventArgs e)
{
    try
    {
        try
        {
            string value = grdPurchase.Rows[e.RowIndex].Cells[e.ColumnIndex].Value.ToString();
            if (e.ColumnIndex == 2)
            {
                int val = int.Parse(value);
                quantity = val;
            }
            if (e.ColumnIndex == 4)
            {
                float val = float.Parse(value);
                total = val;

                if (vapasi1 == "Yes")
                {
                    vtot += total; //vtot=0+10

                    txt_forvapasitotal.Text = vtot.ToString(); //10
                    float vapsitot =float.Parse(txt_forvapasitotal.Text);
                    float vapsicalculate = (vapsitot * a);
                    float tax = vapsicalculate / 100;
                    float with_vapasi = vtot + tax;
                    txt_withvapasi.Text =Convert.ToString(with_vapasi);
                }
                else
                {
                    nvtot = 0;

                    for (int i = 0; i < grdPurchase.Rows.Count; i++)
                    {
                        if (vapasi1 == "No")
                        {
                            if (grdPurchase.Rows[e.RowIndex].Cells[3].Selected == true)
                            {
                                nvtot += float.Parse(grdPurchase[4, i].EditedFormattedValue.ToString());
                                txt_withoutvapasitot.Text = nvtot.ToString();
                            }
                        }
                    }
                }
              txt_vapasiincludedtot.Text =(float.Parse(txt_withvapasi.Text) +float.Parse(txt_withoutvapasitot.Text)).ToString();
          }
          if (e.ColumnIndex == 1)
          {
              int val = int.Parse(value);
              materialid = val;
              string vapasi = "Select material_vapasi from tbl_material_master where active_flag=1 AND material_id =" + materialid + "";
              SqlCommand cmd = new SqlCommand(vapasi, con);
              sdr = cmd.ExecuteReader();
              if (sdr.HasRows)
              {
                  while (sdr.Read())
                  {
                      vapasi1 = sdr["material_vapasi"].ToString();
                  }
              }
           }
        }
        catch (Exception ex)
        {
            MessageBox.Show(ex.Message.ToString());
        }
        grdPurchase.Columns[3].ReadOnly = false;
    }
    catch (Exception ex)
    {
        MessageBox.Show(ex.Message.ToString());
    }
}

问题是:-当我在第一行选择带有 vapasi 的项目和在第二行没有 vapasi 的项目时,它工作正常。但是如果我在第三行选择任何项目,那么它在 'txtboxwithoutvapasi' 中的所有三个项目的总和没有区分项目。

4

1 回答 1

0

您需要跟踪网格中每一行的vapasi是“是”还是“否”,但您使用的是单个变量。您不能将此列添加到网格中(如果您不想将其显示给用户,则作为隐藏列)?然后,每当您需要计算总数时,您只需遍历网格行并检查vapasi 列而不是vapasi1 变量

于 2012-06-20T08:04:41.603 回答