private void btnOK_Click(object sender, System.EventArgs e)
        {
            try
            {
                if (!this.BOVValidate())
                {
                    return;
                }
                BillOfValidate bov = GetBOV();

                Dept curDept = Session[ConstValue.LOGIN_DEPT_SESSION] as Dept;
                Oper curOper = Session[ConstValue.LOGIN_USER_SESSION] as Oper;

                BusiLog busiLog = new BusiLog();
                busiLog.cnvcOperName = curOper.cnvcOperName;
                busiLog.cnvcDeptID   = curDept.cnvcDeptID;
                busiLog.cnvcDeptName = curDept.cnvcDeptName;

                ReportQueryFacade.UpdateBOV(bov, busiLog);
                this.Popup("验收单修改成功");
            }
            catch (Exception ex)
            {
                this.Popup(ex.Message);
            }
        }