/// <summary> /// 作废 /// </summary> public void BlankOut() { try { bfl.ModifyBankOutAuditing(int.Parse(this.OperationCode)); } catch (Exception ex) { ApplicationLog.WriteLog(this.ToString(), ex, ""); Response.Write(Rms.Web.JavaScript.Alert(true, "作废出错:" + ex.Message)); throw ex; } }
protected void btnBankOut_Click(object sender, EventArgs e) { try { RmsOA.BFL.GK_OA_EquipmentMaintainApplyBFL bfl = new RmsOA.BFL.GK_OA_EquipmentMaintainApplyBFL(); bfl.ModifyBankOutAuditing(int.Parse(this.EquipmentFormView.DataKey.Value.ToString())); } catch (Exception ex) { ApplicationLog.WriteLog(this.ToString(), ex, ""); Response.Write(Rms.Web.JavaScript.Alert(true, "作废出错:" + ex.Message)); throw ex; } }