public void ProcessRequest(HttpContext context)
        {
            context.Response.ContentType = "text/plain";

            NFMT.Common.UserModel user = Utility.UserUtility.CurrentUser;
            NFMT.Common.ResultModel result = new NFMT.Common.ResultModel();
            string resultStr = "撤返失败";

            int repoId = 0;
            if (!string.IsNullOrEmpty(context.Request.Form["id"]))
            {
                if (!int.TryParse(context.Request.Form["id"], out repoId))
                {
                    context.Response.Write("参数错误");
                    context.Response.End();
                }
            }

            NFMT.WareHouse.BLL.RepoBLL bll = new NFMT.WareHouse.BLL.RepoBLL();
            result = bll.Get(user, repoId);
            if (result.ResultStatus != 0)
            {
                context.Response.Write("获取数据错误");
                context.Response.End();
            }

            NFMT.WareHouse.Model.Repo repo = result.ReturnValue as NFMT.WareHouse.Model.Repo;

            result = bll.GoBack(user, repo);
            resultStr = result.Message;

            context.Response.Write(resultStr);
        }
Exemple #2
0
        protected void Page_Load(object sender, EventArgs e)
        {
            NFMT.Common.UserModel user = Utility.UserUtility.CurrentUser;
            string redirectUrl = string.Format("{0}WareHouse/RepoList.aspx", NFMT.Common.DefaultValue.NftmSiteName);

            if (!IsPostBack)
            {
                Utility.VerificationUtility ver = new Utility.VerificationUtility();
                ver.JudgeOperate(this.Page, 50, new List<NFMT.Common.OperateEnum>() { NFMT.Common.OperateEnum.修改 });

                this.navigation1.Routes.Add("回购", redirectUrl);
                this.navigation1.Routes.Add("回购修改", string.Empty);

                int repoId = 0;
                if (string.IsNullOrEmpty(Request.QueryString["id"]) || !int.TryParse(Request.QueryString["id"], out repoId) || repoId <= 0)
                    Response.Redirect(redirectUrl);

                this.hidid.Value = repoId.ToString();

                NFMT.WareHouse.BLL.RepoBLL repoBLL = new NFMT.WareHouse.BLL.RepoBLL();
                NFMT.Common.ResultModel result = repoBLL.Get(user, repoId);
                if (result.ResultStatus != 0)
                    Response.Redirect(redirectUrl);

                NFMT.WareHouse.Model.Repo repo = result.ReturnValue as NFMT.WareHouse.Model.Repo;
                if (repo == null)
                    Response.Redirect(redirectUrl);

                repoApplyId = repo.RepoApplyId;
                this.txbMemo.Value = repo.Memo;

                NFMT.WareHouse.BLL.RepoApplyBLL repoApplyBLL = new NFMT.WareHouse.BLL.RepoApplyBLL();
                result = repoApplyBLL.GetPledgeStockId(user, repoApplyId);
                if (result.ResultStatus != 0)
                    Response.Redirect(redirectUrl);

                this.hidsidsDown.Value = result.ReturnValue != null ? result.ReturnValue.ToString() : "";

                NFMT.WareHouse.BLL.RepoDetailBLL repoDetailBLL = new NFMT.WareHouse.BLL.RepoDetailBLL();
                result = repoDetailBLL.GetStockIds(user, repoId);
                if (result.ResultStatus != 0)
                    Response.Redirect(redirectUrl);

                this.hidsidsUp.Value = result.ReturnValue.ToString();

            }
        }
Exemple #3
0
        protected void Page_Load(object sender, EventArgs e)
        {
            System.Web.Script.Serialization.JavaScriptSerializer serializer = new System.Web.Script.Serialization.JavaScriptSerializer();
            NFMT.Common.UserModel user = Utility.UserUtility.CurrentUser;
            string redirectUrl = string.Format("{0}WareHouse/RepoList.aspx", NFMT.Common.DefaultValue.NftmSiteName);

            if (!IsPostBack)
            {
                Utility.VerificationUtility ver = new Utility.VerificationUtility();
                ver.JudgeOperate(this.Page, 50, new List<NFMT.Common.OperateEnum>() { NFMT.Common.OperateEnum.提交审核, NFMT.Common.OperateEnum.作废, NFMT.Common.OperateEnum.撤返, NFMT.Common.OperateEnum.执行完成, NFMT.Common.OperateEnum.执行完成撤销 });

                this.navigation1.Routes.Add("回购", redirectUrl);
                this.navigation1.Routes.Add("回购明细", string.Empty);

                if (string.IsNullOrEmpty(Request.QueryString["id"]) || !int.TryParse(Request.QueryString["id"], out repoId) || repoId <= 0)
                    Response.Redirect(redirectUrl);

                this.hidid.Value = repoId.ToString();

                NFMT.WareHouse.BLL.RepoBLL repoBLL = new NFMT.WareHouse.BLL.RepoBLL();
                NFMT.Common.ResultModel result = repoBLL.Get(user, repoId);
                if (result.ResultStatus != 0)
                    Response.Redirect(redirectUrl);

                repo = result.ReturnValue as NFMT.WareHouse.Model.Repo;
                if (repo == null)
                    Response.Redirect(redirectUrl);

                repoApplyId = repo.RepoApplyId;
                this.txbMemo.InnerText = repo.Memo;

                NFMT.WareHouse.BLL.RepoDetailBLL repoDetailBLL = new NFMT.WareHouse.BLL.RepoDetailBLL();
                result = repoDetailBLL.GetStockIds(user, repoId);
                if (result.ResultStatus != 0)
                    Response.Redirect(redirectUrl);

                this.hidsids.Value = result.ReturnValue.ToString();

                string json = serializer.Serialize(repo);
                this.hidModel.Value = json;
            }
        }