private void gridView1_DoubleClick(object sender, EventArgs e)
 {
     FormCollection fc = Application.OpenForms;
     GridView view = (GridView)sender;
     GridHitInfo hitInfo = view.CalcHitInfo(view.GridControl.PointToClient(Control.MousePosition));
     if (hitInfo.HitTest == GridHitTest.RowCell)
     {
         if ((hitInfo.Column != null) && (hitInfo.Column == colSHHZDH))
         {
             string strTemp = view.GetRowCellDisplayText(hitInfo.RowHandle, colSHHZDID);
             string strSHHZDID = "[SHHZDID] = \'" + strTemp + "\'";
             if (fc["FrmPurchaseReceiveTotalDetail"] != null)
             {
                 fc["FrmPurchaseReceiveTotalDetail"].Close();
             }
             FrmPurchaseReceiveTotalDetail FrmPRTD = new FrmPurchaseReceiveTotalDetail(m_fgBranch, strSHHZDID);
             FrmPRTD.Show();
             FrmPRTD.Activate();
         }
     }
 }
        private void btnDetailQuery_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
        {
            if (selection.SelectedCount == 0)
            {
                //const string message = "没有勾选主单进行的详单查询时间会比较久(3分钟左右),继续么?";
                //const string caption = "详单查询?";
                //var result = MessageBox.Show(message, caption,
                //                             MessageBoxButtons.YesNo,
                //                             MessageBoxIcon.Question);
                //if (result == DialogResult.Yes)
                //{
                FrmPurchaseReceiveTotalDetail FrmPRTD = new FrmPurchaseReceiveTotalDetail(m_fgBranch);
                FrmPRTD.Show();
                FrmPRTD.Activate();
                //}

            }
            else
            {
                string strSHHZDID = null;
                for (int i = 0; i < selection.SelectedCount; ++i)
                {
                    int RowIndex = selection.GetSelectedRowIndex(i);
                    int RowHandle = gridView1.GetRowHandle(RowIndex);

                    string strTemp = gridView1.GetRowCellDisplayText(RowHandle, colSHHZDID);
                    strSHHZDID += "[SHHZDID] = \'" + strTemp + "\' Or ";
                }

                int index = strSHHZDID.LastIndexOf("'");
                strSHHZDID = strSHHZDID.Substring(0, index + 1).Trim();

                FrmPurchaseReceiveTotalDetail FrmPRTD = new FrmPurchaseReceiveTotalDetail(m_fgBranch, strSHHZDID);
                FrmPRTD.Show();
                FrmPRTD.Activate();
            }
        }