private void btnOK_Click(object sender, System.EventArgs e) { try { if (!this.BOSValidate()) { return; } BillOfOutStorage bos = GetBOS(); 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.UpdateBOS(bos, busiLog); this.Popup("调拨单修改成功"); } catch (Exception ex) { this.Popup(ex.Message); } }