//送部门审批 protected void butSendToDepartLeader_Click(object sender, EventArgs e) { U_ZCSPBU sp1 = new U_ZCSPBU(); string err1 = sp1.PiYueZcForDepart(this.zcczid.Text); sp1.Close(); if (err1 != null) { Util.alert(this.Page, err1); } else { PubComm.ShowInfo("已成功转交部门审批!", Application["root"] + "/ZcMng2/ZcDetail3.aspx?id=" + Request["id"].ToString()); } }
//提交资产审批处理 protected void Button2_Click(object sender, EventArgs e) { U_ZCSPBU sp1 = new U_ZCSPBU(); string err1 = sp1.PiYueZcForDepart(Request["id"]); sp1.Close(); if (err1 != null) { Util.alert(this.Page, err1); } else { PubComm.ShowInfo("已成功转交部门审批!", Application["root"] + "/ZcMng3/EditSbb.aspx?id=" + Request["id"].ToString() + "&menuIndex=5"); } }