protected void Page_Load(object sender, EventArgs e) { NFMT.Common.UserModel user = Utility.UserUtility.CurrentUser; NFMT.Common.ResultModel result = new NFMT.Common.ResultModel(); string redirectUrl = string.Format("{0}WareHouse/StockReceiptUpdateList.aspx", NFMT.Common.DefaultValue.NftmSiteName); this.hidBDStyleId.Value = ((int)NFMT.Data.StyleEnum.报关状态).ToString(); if (!IsPostBack) { Utility.VerificationUtility ver = new Utility.VerificationUtility(); ver.JudgeOperate(this.Page, 131, new List<NFMT.Common.OperateEnum>() { NFMT.Common.OperateEnum.录入 }); this.navigation1.Routes.Add("库存净重回执修改列表", redirectUrl); this.navigation1.Routes.Add("库存净重回执修改", string.Empty); detailId = 0; if (string.IsNullOrEmpty(Request.QueryString["id"]) || !int.TryParse(Request.QueryString["id"], out detailId) || detailId <= 0) this.WarmAlert("参数错误", redirectUrl); stockId = 0; if (string.IsNullOrEmpty(Request.QueryString["stockId"]) || !int.TryParse(Request.QueryString["stockId"], out stockId) || stockId <= 0) this.WarmAlert("参数错误", redirectUrl); stockLogId = 0; if (string.IsNullOrEmpty(Request.QueryString["stockLogId"]) || !int.TryParse(Request.QueryString["stockLogId"], out stockLogId) || stockLogId <= 0) this.WarmAlert("参数错误", redirectUrl); NFMT.WareHouse.BLL.StockBLL stockBLL = new NFMT.WareHouse.BLL.StockBLL(); result = stockBLL.Get(user, stockId); if (result.ResultStatus != 0) this.WarmAlert(result.Message, redirectUrl); stock = result.ReturnValue as NFMT.WareHouse.Model.Stock; if (stock == null) this.WarmAlert("获取库存出错", redirectUrl); NFMT.WareHouse.BLL.StockNameBLL stockNameBLL = new NFMT.WareHouse.BLL.StockNameBLL(); result = stockNameBLL.Get(user, stock.StockNameId); if (result.ResultStatus != 0) this.WarmAlert(result.Message, redirectUrl); stockName = result.ReturnValue as NFMT.WareHouse.Model.StockName; if (stockName == null) this.WarmAlert("获取业务单号出错", redirectUrl); NFMT.WareHouse.BLL.StockReceiptDetailBLL stockReceiptDetailBLL = new NFMT.WareHouse.BLL.StockReceiptDetailBLL(); result = stockReceiptDetailBLL.Get(user, detailId); if (result.ResultStatus != 0) this.WarmAlert(result.Message, redirectUrl); stockReceiptDetail = result.ReturnValue as NFMT.WareHouse.Model.StockReceiptDetail; if (stockName == null) this.WarmAlert("获取仓库回执出错", redirectUrl); this.spStockStatus.InnerText = ((NFMT.WareHouse.StockStatusEnum)stock.StockStatus).ToString(); } }
protected void Page_Load(object sender, EventArgs e) { NFMT.Common.UserModel user = Utility.UserUtility.CurrentUser; NFMT.Common.ResultModel result = new NFMT.Common.ResultModel(); string redirectUrl = string.Format("{0}WareHouse/SplitDocList.aspx", NFMT.Common.DefaultValue.NftmSiteName); this.hidBDStyleId.Value = ((int)NFMT.Data.StyleEnum.报关状态).ToString(); if (!IsPostBack) { Utility.VerificationUtility ver = new Utility.VerificationUtility(); ver.JudgeOperate(this.Page, 93, 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); int splitDocId = 0; if (string.IsNullOrEmpty(Request.QueryString["id"]) || !int.TryParse(Request.QueryString["id"], out splitDocId) || splitDocId <= 0) Response.Redirect(redirectUrl); NFMT.WareHouse.BLL.SplitDocBLL splitDocBLL = new NFMT.WareHouse.BLL.SplitDocBLL(); result = splitDocBLL.Get(user, splitDocId); if (result.ResultStatus != 0) Response.Redirect(redirectUrl); splitDoc = result.ReturnValue as NFMT.WareHouse.Model.SplitDoc; if (splitDoc == null) Response.Redirect(redirectUrl); NFMT.WareHouse.BLL.StockBLL stockBLL = new NFMT.WareHouse.BLL.StockBLL(); result = stockBLL.Get(user, splitDoc.OldStockId); if (result.ResultStatus != 0) Response.Redirect(redirectUrl); stock = result.ReturnValue as NFMT.WareHouse.Model.Stock; if (stock == null) Response.Redirect(redirectUrl); NFMT.WareHouse.BLL.StockNameBLL stockNameBLL = new NFMT.WareHouse.BLL.StockNameBLL(); result = stockNameBLL.Get(user, stock.StockNameId); if (result.ResultStatus != 0) Response.Redirect(redirectUrl); stockName = result.ReturnValue as NFMT.WareHouse.Model.StockName; if (stockName == null) Response.Redirect(redirectUrl); this.spStockStatus.InnerText = ((NFMT.WareHouse.StockStatusEnum)stock.StockStatus).ToString(); System.Web.Script.Serialization.JavaScriptSerializer serializer = new System.Web.Script.Serialization.JavaScriptSerializer(); this.hidModel.Value = serializer.Serialize(splitDoc); //attach this.attach1.BusinessIdValue = this.splitDoc.SplitDocId; } }
protected void Page_Load(object sender, EventArgs e) { NFMT.Common.UserModel user = Utility.UserUtility.CurrentUser; string redirectUrl = string.Format("{0}Funds/ReceivableStockList.aspx", NFMT.Common.DefaultValue.NftmSiteName); System.Web.Script.Serialization.JavaScriptSerializer serializer = new System.Web.Script.Serialization.JavaScriptSerializer(); if (!IsPostBack) { this.navigation1.Routes.Add("库存收款分配", redirectUrl); this.navigation1.Routes.Add("库存收款分配修改", string.Empty); int receivableAllotId = 0; if (string.IsNullOrEmpty(Request.QueryString["id"]) || !int.TryParse(Request.QueryString["id"], out receivableAllotId) || receivableAllotId <= 0) Response.Redirect(redirectUrl); this.hidid.Value = receivableAllotId.ToString(); NFMT.Funds.BLL.StcokReceivableBLL stcokReceivableBLL = new NFMT.Funds.BLL.StcokReceivableBLL(); NFMT.Funds.BLL.ContractReceivableBLL contractReceivableBLL = new NFMT.Funds.BLL.ContractReceivableBLL(); NFMT.Common.ResultModel result = stcokReceivableBLL.GetStockId(user, receivableAllotId); if (result.ResultStatus != 0) Response.Redirect(redirectUrl); int stockId = (int)result.ReturnValue; this.hidStockId.Value = stockId.ToString(); //库存信息 NFMT.WareHouse.BLL.StockBLL stockBLL = new NFMT.WareHouse.BLL.StockBLL(); result = stockBLL.GetStockContractOutCorp(user, stockId); if (result.ResultStatus != 0) Response.Redirect(redirectUrl); this.hidCorps.Value = Newtonsoft.Json.JsonConvert.SerializeObject(result.ReturnValue); result = stockBLL.Get(user, stockId); if (result.ResultStatus != 0) Response.Redirect(redirectUrl); NFMT.WareHouse.Model.Stock stock = result.ReturnValue as NFMT.WareHouse.Model.Stock; if (stock != null) { this.hidStockNameId.Value = stock.StockNameId.ToString(); NFMT.WareHouse.BLL.StockNameBLL stockNameBLL = new NFMT.WareHouse.BLL.StockNameBLL(); result = stockNameBLL.Get(user, stock.StockNameId); if (result.ResultStatus != 0) Response.Redirect(redirectUrl); NFMT.WareHouse.Model.StockName stockName = result.ReturnValue as NFMT.WareHouse.Model.StockName; if (stockName != null) this.spanRefNo.InnerText = stockName.RefNo; this.spanStockDate.InnerText = stock.StockDate.ToShortDateString(); NFMT.User.Model.Corporation corp = NFMT.User.UserProvider.Corporations.SingleOrDefault(a => a.CorpId == stock.CorpId); if (corp != null) this.spanCorpId.InnerText = corp.CorpName; NFMT.Data.Model.MeasureUnit measureUnit = NFMT.Data.BasicDataProvider.MeasureUnits.SingleOrDefault(a => a.MUId == stock.UintId); if (measureUnit != null) this.spanGrossAmout.InnerText = stock.GrossAmount + measureUnit.MUName; NFMT.Data.Model.Asset asset = NFMT.Data.BasicDataProvider.Assets.SingleOrDefault(a => a.AssetId == stock.AssetId); if (asset != null) this.spanAssetId.InnerText = asset.AssetName; NFMT.Data.Model.Brand brand = NFMT.Data.BasicDataProvider.Brands.SingleOrDefault(a => a.BrandId == stock.BrandId); if (brand != null) this.spanBrandId.InnerText = brand.BrandName; NFMT.Funds.BLL.ReceivableAllotBLL receivableAllotBLL = new NFMT.Funds.BLL.ReceivableAllotBLL(); result = receivableAllotBLL.GetStockAllotAmount(user, stockId); if (result.ResultStatus != 0) Response.Redirect(redirectUrl); this.spanAllotAmount.InnerText = result.ReturnValue == null ? "" : result.ReturnValue.ToString(); //分配信息 result = receivableAllotBLL.Get(user, receivableAllotId); if (result.ResultStatus != 0) Response.Redirect(redirectUrl); NFMT.Funds.Model.ReceivableAllot receivableAllot = result.ReturnValue as NFMT.Funds.Model.ReceivableAllot; if (receivableAllot != null) { this.txbMemo.Value = receivableAllot.AllotDesc; this.hidcurrencyId.Value = receivableAllot.CurrencyId.ToString(); this.hidAllotFrom.Value = receivableAllot.AllotFrom.ToString(); if (receivableAllot.AllotFrom == NFMT.Data.DetailProvider.Details(NFMT.Data.StyleEnum.分配来源)["Receivable"].StyleDetailId) { //获取收款登记相关 result = stcokReceivableBLL.GetReceIds(user, receivableAllotId); if (result.ResultStatus != 0) Response.Redirect(redirectUrl); this.hidReceIds.Value = result.ReturnValue.ToString(); result = stcokReceivableBLL.GetRowsDetail(user, receivableAllotId); if (result.ResultStatus != 0) Response.Redirect(redirectUrl); System.Data.DataTable dt = result.ReturnValue as System.Data.DataTable; this.hidRowDetail.Value = Newtonsoft.Json.JsonConvert.SerializeObject(dt); } else if (receivableAllot.AllotFrom == NFMT.Data.DetailProvider.Details(NFMT.Data.StyleEnum.分配来源)["CorpReceivable"].StyleDetailId) { //获取公司收款相关 result = contractReceivableBLL.GetCorpRefIds(user, receivableAllotId); if (result.ResultStatus != 0) Response.Redirect(redirectUrl); this.hidCorpRefIds.Value = result.ReturnValue.ToString(); result = contractReceivableBLL.GetRowsDetailByCorp(user, receivableAllotId); if (result.ResultStatus != 0) Response.Redirect(redirectUrl); System.Data.DataTable dtCorp = result.ReturnValue as System.Data.DataTable; this.hidRowDetailCorp.Value = Newtonsoft.Json.JsonConvert.SerializeObject(dtCorp); } else if (receivableAllot.AllotFrom == NFMT.Data.DetailProvider.Details(NFMT.Data.StyleEnum.分配来源)["ContractReceivable"].StyleDetailId) { //获取合约收款相关 result = stcokReceivableBLL.GetReceIdsForContract(user, receivableAllotId); if (result.ResultStatus != 0) Response.Redirect(redirectUrl); this.hidReceIdsForContract.Value = result.ReturnValue.ToString(); result = stcokReceivableBLL.GetRowsDetailForContract(user, receivableAllotId); if (result.ResultStatus != 0) Response.Redirect(redirectUrl); System.Data.DataTable dt = result.ReturnValue as System.Data.DataTable; this.hidRowDetailForContract.Value = Newtonsoft.Json.JsonConvert.SerializeObject(dt); } } } } }
protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { Utility.VerificationUtility ver = new Utility.VerificationUtility(); ver.JudgeOperate(this.Page, 123, new List<NFMT.Common.OperateEnum>() { NFMT.Common.OperateEnum.修改 }); string redirectUrl = "PayContractAllotToStockList.aspx"; this.navigation1.Routes.Add("合约付款分配至库存列表", redirectUrl); this.navigation1.Routes.Add("合约付款分配至库存修改", string.Empty); NFMT.Common.ResultModel result = new NFMT.Common.ResultModel(); NFMT.Common.UserModel user = Utility.UserUtility.CurrentUser; int detailId = 0; if (string.IsNullOrEmpty(Request.QueryString["id"]) || !int.TryParse(Request.QueryString["id"], out detailId) || detailId <= 0) this.Page.WarmAlert("参数错误", redirectUrl); //获取合约付款分配至库存 NFMT.Funds.BLL.PaymentStockDetailBLL paymentStockDetailBLL = new NFMT.Funds.BLL.PaymentStockDetailBLL(); result = paymentStockDetailBLL.Get(user, detailId); if (result.ResultStatus != 0) this.Page.WarmAlert(result.Message, redirectUrl); paymentStockDetail = result.ReturnValue as NFMT.Funds.Model.PaymentStockDetail; if (paymentStockDetail == null) this.Page.WarmAlert("获取合约付款分配至库存失败", redirectUrl); //获取库存 NFMT.WareHouse.BLL.StockBLL stockBLL = new NFMT.WareHouse.BLL.StockBLL(); result = stockBLL.Get(user, paymentStockDetail.StockId); if (result.ResultStatus != 0) this.Page.WarmAlert(result.Message, redirectUrl); NFMT.WareHouse.Model.Stock stock = result.ReturnValue as NFMT.WareHouse.Model.Stock; if (stock == null) this.Page.WarmAlert("获取库存失败", redirectUrl); //获取业务单号 NFMT.WareHouse.BLL.StockNameBLL stockNameBLL = new NFMT.WareHouse.BLL.StockNameBLL(); result = stockNameBLL.Get(user, stock.StockNameId); if (result.ResultStatus != 0) this.Page.WarmAlert(result.Message, redirectUrl); stockName = result.ReturnValue as NFMT.WareHouse.Model.StockName; if (stockName == null) this.Page.WarmAlert("获取业务单号失败", redirectUrl); //获取付款 int paymentId = paymentStockDetail.PaymentId; NFMT.Funds.BLL.PaymentBLL paymentBLL = new NFMT.Funds.BLL.PaymentBLL(); result = paymentBLL.Get(user, paymentId); if (result.ResultStatus != 0) this.Page.WarmAlert(result.Message, redirectUrl); curPayment = result.ReturnValue as NFMT.Funds.Model.Payment; if (curPayment == null) this.Page.WarmAlert("获取付款失败", redirectUrl); //获取虚拟付款 if (curPayment.VirtualBala > 0) { NFMT.Funds.BLL.PaymentVirtualBLL paymentVirtualBLL = new NFMT.Funds.BLL.PaymentVirtualBLL(); result = paymentVirtualBLL.GetByPaymentId(user, curPayment.PaymentId); if (result.ResultStatus != 0) Response.Redirect(redirectUrl); NFMT.Funds.Model.PaymentVirtual paymentVirtual = result.ReturnValue as NFMT.Funds.Model.PaymentVirtual; if (paymentVirtual == null) Response.Redirect(redirectUrl); this.curPaymentVirtual = paymentVirtual; } //获取付款申请 NFMT.Funds.BLL.PayApplyBLL payApplyBLL = new NFMT.Funds.BLL.PayApplyBLL(); result = payApplyBLL.Get(user, curPayment.PayApplyId); if (result.ResultStatus != 0) this.Page.WarmAlert(result.Message, redirectUrl); curPayApply = result.ReturnValue as NFMT.Funds.Model.PayApply; if (curPayApply == null) this.Page.WarmAlert("获取付款申请失败", redirectUrl); //获取合约款 NFMT.Funds.BLL.PaymentContractDetailBLL paymentContractDetailBLL = new NFMT.Funds.BLL.PaymentContractDetailBLL(); result = paymentContractDetailBLL.GetByPaymentId(user, paymentId); if (result.ResultStatus != 0) this.Page.WarmAlert(result.Message, redirectUrl); paymentContractDetail = result.ReturnValue as NFMT.Funds.Model.PaymentContractDetail; if (paymentContractDetail == null) this.Page.WarmAlert("获取合约款失败", redirectUrl); //获取子合约 NFMT.Contract.BLL.ContractSubBLL contractSubBLL = new NFMT.Contract.BLL.ContractSubBLL(); result = contractSubBLL.Get(user, paymentContractDetail.ContractSubId); if (result.ResultStatus != 0) this.Page.WarmAlert(result.Message, redirectUrl); curSub = result.ReturnValue as NFMT.Contract.Model.ContractSub; if (curSub == null) this.Page.WarmAlert("获取子合约失败", redirectUrl); //合约 NFMT.Contract.BLL.ContractBLL bll = new NFMT.Contract.BLL.ContractBLL(); result = bll.Get(user, curSub.ContractId); if (result.ResultStatus != 0) this.Page.WarmAlert(result.Message, redirectUrl); NFMT.Contract.Model.Contract contract = result.ReturnValue as NFMT.Contract.Model.Contract; if (contract == null || contract.ContractId == 0) this.Page.WarmAlert("获取合约失败", redirectUrl); //获取可分配款 result = paymentStockDetailBLL.LoadByPaymentId(user, paymentId); if (result.ResultStatus != 0) this.Page.WarmAlert(result.Message, redirectUrl); List<NFMT.Funds.Model.PaymentStockDetail> paymentStockDetails = result.ReturnValue as List<NFMT.Funds.Model.PaymentStockDetail>; if (paymentStockDetails == null || !paymentStockDetails.Any()) this.Page.WarmAlert("获取库存财务付款明细失败", redirectUrl); canAllotBala = curPayment.PayBala - paymentStockDetails.Sum(a => a.PayBala) + paymentStockDetail.PayBala; this.contractExpander1.CurContract = contract; this.contractExpander1.CurContractSub = curSub; this.contractExpander1.RedirectUrl = redirectUrl; this.PayMatterStyle = (int)NFMT.Data.StyleEnum.付款事项; this.PayModeStyle = (int)NFMT.Data.StyleEnum.PayMode; } }
protected void Page_Load(object sender, EventArgs e) { string redirectUrl = string.Format("{0}Funds/ReceivableStockReadyStockList.aspx", NFMT.Common.DefaultValue.NftmSiteName); NFMT.Common.ResultModel result = new NFMT.Common.ResultModel(); NFMT.Common.UserModel user = Utility.UserUtility.CurrentUser; if (!IsPostBack) { this.navigation1.Routes.Add("库存收款分配", string.Format("{0}Funds/ReceivableStockList.aspx", NFMT.Common.DefaultValue.NftmSiteName)); this.navigation1.Routes.Add("可收款分配库存列表", redirectUrl); this.navigation1.Routes.Add("库存收款分配新增", string.Empty); int stockId = 0; if (string.IsNullOrEmpty(Request.QueryString["id"]) || !int.TryParse(Request.QueryString["id"], out stockId) || stockId <= 0) Response.Redirect(redirectUrl); this.hidStockId.Value = stockId.ToString(); NFMT.WareHouse.BLL.StockBLL stockBLL = new NFMT.WareHouse.BLL.StockBLL(); result = stockBLL.GetCurrencyId(user, stockId); if (result.ResultStatus != 0) Response.Redirect(redirectUrl); this.hidCurrencyId.Value = result.ReturnValue.ToString(); result = stockBLL.GetStockContractOutCorp(user, stockId); if (result.ResultStatus != 0) Response.Redirect(redirectUrl); this.hidCorps.Value = Newtonsoft.Json.JsonConvert.SerializeObject(result.ReturnValue); result = stockBLL.Get(user, stockId); if (result.ResultStatus != 0) Response.Redirect(redirectUrl); NFMT.WareHouse.Model.Stock stock = result.ReturnValue as NFMT.WareHouse.Model.Stock; if (stock != null) { this.hidStockNameId.Value = stock.StockNameId.ToString(); NFMT.WareHouse.BLL.StockNameBLL stockNameBLL = new NFMT.WareHouse.BLL.StockNameBLL(); result = stockNameBLL.Get(user, stock.StockNameId); if (result.ResultStatus != 0) Response.Redirect(redirectUrl); NFMT.WareHouse.Model.StockName stockName = result.ReturnValue as NFMT.WareHouse.Model.StockName; if (stockName != null) this.spanRefNo.InnerText = stockName.RefNo; this.spanStockDate.InnerText = stock.StockDate.ToShortDateString(); NFMT.User.Model.Corporation corp = NFMT.User.UserProvider.Corporations.SingleOrDefault(a => a.CorpId == stock.CorpId); if (corp != null) this.spanCorpId.InnerText = corp.CorpName; NFMT.Data.Model.MeasureUnit measureUnit = NFMT.Data.BasicDataProvider.MeasureUnits.SingleOrDefault(a => a.MUId == stock.UintId); if (measureUnit != null) this.spanGrossAmout.InnerText = stock.GrossAmount + measureUnit.MUName; NFMT.Data.Model.Asset asset = NFMT.Data.BasicDataProvider.Assets.SingleOrDefault(a => a.AssetId == stock.AssetId); if (asset != null) this.spanAssetId.InnerText = asset.AssetName; NFMT.Data.Model.Brand brand = NFMT.Data.BasicDataProvider.Brands.SingleOrDefault(a => a.BrandId == stock.BrandId); if (brand != null) this.spanBrandId.InnerText = brand.BrandName; } } }
protected void Page_Load(object sender, EventArgs e) { Utility.VerificationUtility ver = new Utility.VerificationUtility(); ver.JudgeOperate(this.Page, 58, new List<NFMT.Common.OperateEnum>() { NFMT.Common.OperateEnum.修改 }); int allotId = 0; string redirctUrl = "CashInAllotStockList.aspx"; NFMT.Common.UserModel user = Utility.UserUtility.CurrentUser; NFMT.Common.ResultModel result = new NFMT.Common.ResultModel(); if (string.IsNullOrEmpty(Request.QueryString["id"]) || !int.TryParse(Request.QueryString["id"], out allotId) || allotId <= 0) Response.Redirect(redirctUrl); //获取收款分配主表 NFMT.Funds.BLL.CashInBLL cashInBLL = new NFMT.Funds.BLL.CashInBLL(); result = cashInBLL.Get(user, allotId); if (result.ResultStatus != 0) Response.Redirect(redirctUrl); cashInAllot = result.ReturnValue as NFMT.Funds.Model.CashInAllot; if (cashInAllot == null) Response.Redirect(redirctUrl); NFMT.Common.StatusEnum status = NFMT.Common.StatusEnum.已生效; if (cashInAllot.AllotStatus == NFMT.Common.StatusEnum.已完成) status = NFMT.Common.StatusEnum.已完成; else if (cashInAllot.AllotStatus == NFMT.Common.StatusEnum.已作废) status = NFMT.Common.StatusEnum.已作废; else if (cashInAllot.AllotStatus == NFMT.Common.StatusEnum.已关闭) status = NFMT.Common.StatusEnum.已关闭; //通过收款分配Id获取库存收款分配明细表 NFMT.Funds.BLL.CashInStcokBLL cashInStcokBLL = new NFMT.Funds.BLL.CashInStcokBLL(); result = cashInStcokBLL.LoadByAllot(user, allotId, status); if (result.ResultStatus != 0) Response.Redirect(redirctUrl); NFMT.Funds.Model.CashInStcok cashInStock = result.ReturnValue as NFMT.Funds.Model.CashInStcok; if (cashInStock == null) Response.Redirect(redirctUrl); int stockLogId = cashInStock.StockLogId; //获取库存流水 NFMT.WareHouse.BLL.StockLogBLL stockLogBLL = new NFMT.WareHouse.BLL.StockLogBLL(); result = stockLogBLL.Get(user, stockLogId); if (result.ResultStatus != 0) Response.Redirect(redirctUrl); NFMT.WareHouse.Model.StockLog stockLog = result.ReturnValue as NFMT.WareHouse.Model.StockLog; if (stockLog == null || stockLog.StockLogId <= 0) Response.Redirect(redirctUrl); this.curStockLog = stockLog; //获取子合约 NFMT.Contract.BLL.ContractSubBLL subBLL = new NFMT.Contract.BLL.ContractSubBLL(); result = subBLL.Get(user, stockLog.SubContractId); if (result.ResultStatus != 0) Response.Redirect(redirctUrl); NFMT.Contract.Model.ContractSub sub = result.ReturnValue as NFMT.Contract.Model.ContractSub; if (sub == null || sub.SubId <= 0) Response.Redirect(redirctUrl); this.curSub = sub; //合约抬头 NFMT.Contract.BLL.ContractCorporationDetailBLL ccdBll = new NFMT.Contract.BLL.ContractCorporationDetailBLL(); //内部公司 result = ccdBll.LoadCorpListByContractId(user, sub.ContractId, true); List<NFMT.Contract.Model.ContractCorporationDetail> innerCorps = result.ReturnValue as List<NFMT.Contract.Model.ContractCorporationDetail>; foreach (NFMT.Contract.Model.ContractCorporationDetail innerCorp in innerCorps) { this.spnInCorpNames.InnerHtml += string.Format("[{0}] ", innerCorp.CorpName); } //外部公司 result = ccdBll.LoadCorpListByContractId(user, sub.ContractId, false); List<NFMT.Contract.Model.ContractCorporationDetail> outCorps = result.ReturnValue as List<NFMT.Contract.Model.ContractCorporationDetail>; foreach (NFMT.Contract.Model.ContractCorporationDetail outCorp in outCorps) { this.spnOutCorpNames.InnerHtml += string.Format("[{0}] ", outCorp.CorpName); } NFMT.Data.Model.MeasureUnit mu = NFMT.Data.BasicDataProvider.MeasureUnits.FirstOrDefault(temp => temp.MUId == sub.UnitId); if (mu != null && mu.MUId > 0) this.spnSignAmount.InnerHtml = string.Format("{0},{1}", sub.SignAmount, mu.MUName); //获取库存 NFMT.WareHouse.BLL.StockBLL stockBLL = new NFMT.WareHouse.BLL.StockBLL(); result = stockBLL.Get(user, stockLog.StockId); if (result.ResultStatus != 0) Response.Redirect(redirctUrl); NFMT.WareHouse.Model.Stock stock = result.ReturnValue as NFMT.WareHouse.Model.Stock; if (stock == null || stock.StockId <= 0) Response.Redirect(redirctUrl); this.curStock = stock; //获取业务单号 NFMT.WareHouse.BLL.StockNameBLL stockNameBLL = new NFMT.WareHouse.BLL.StockNameBLL(); result = stockNameBLL.Get(user, stock.StockNameId); if (result.ResultStatus != 0) Response.Redirect(redirctUrl); NFMT.WareHouse.Model.StockName stockName = result.ReturnValue as NFMT.WareHouse.Model.StockName; if (stockName == null || stockName.StockNameId <= 0) Response.Redirect(redirctUrl); this.spanRefNo.InnerHtml = stockName.RefNo; this.spanStockDate.InnerHtml = stock.StockDate.ToShortDateString(); NFMT.User.Model.Corporation ownCorp = NFMT.User.UserProvider.Corporations.FirstOrDefault(temp => temp.CorpId == stock.CorpId); if (ownCorp != null && ownCorp.CorpId > 0) this.spanCorpId.InnerHtml = ownCorp.CorpName; if (mu != null && mu.MUId > 0) this.spanGrossAmout.InnerHtml = string.Format("{0},{1}", stock.GrossAmount, mu.MUName); NFMT.Data.Model.Asset ass = NFMT.Data.BasicDataProvider.Assets.FirstOrDefault(temp => temp.AssetId == stock.AssetId); if (ass != null && ass.AssetId > 0) this.spanAssetId.InnerHtml = ass.AssetName; NFMT.Data.Model.Brand bra = NFMT.Data.BasicDataProvider.Brands.FirstOrDefault(temp => temp.BrandId == stock.BrandId); if (bra != null && bra.BrandId > 0) this.spanBrandId.InnerHtml = bra.BrandName; this.navigation1.Routes.Add("库存分配列表", redirctUrl); this.navigation1.Routes.Add("库存分配修改", string.Empty); this.JsonOutCorp = Newtonsoft.Json.JsonConvert.SerializeObject(outCorps); for (int i = 0; i < outCorps.Count; i++) { NFMT.Contract.Model.ContractCorporationDetail corp = outCorps[i]; if (corp.CorpId > 0) { if (i != 0) this.curOutCorpIds += ","; this.curOutCorpIds += corp.CorpId; } } NFMT.Funds.BLL.CashInStcokBLL bll = new NFMT.Funds.BLL.CashInStcokBLL(); NFMT.Common.SelectModel select = bll.GetCurDetailsSelect(1, 100, "cisr.RefId desc", stockLogId); result = bll.Load(user, select); int totalRows = result.AffectCount; System.Data.DataTable dt = result.ReturnValue as System.Data.DataTable; this.JsonContractSelect = Newtonsoft.Json.JsonConvert.SerializeObject(dt, new Newtonsoft.Json.Converters.DataTableConverter()); }
protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { this.navigation1.Routes.Add("库存查看", "StockList.aspx"); this.navigation1.Routes.Add("库存流水查看", string.Empty); int stockId = 0; if (string.IsNullOrEmpty(Request.QueryString["id"])) Response.Redirect("StockList.aspx"); if (!int.TryParse(Request.QueryString["id"], out stockId)) Response.Redirect("StockList.aspx"); this.hidStockId.Value = stockId.ToString(); NFMT.Common.UserModel user = Utility.UserUtility.CurrentUser; NFMT.WareHouse.BLL.StockBLL stockBLL = new NFMT.WareHouse.BLL.StockBLL(); NFMT.Common.ResultModel result = stockBLL.Get(user, stockId); if (result.ResultStatus != 0) Response.Redirect("StockList.aspx"); NFMT.WareHouse.Model.Stock stock = result.ReturnValue as NFMT.WareHouse.Model.Stock; if(stock==null) Response.Redirect("StockList.aspx"); this.spnStockDate.InnerHtml = stock.StockDate.ToShortDateString(); NFMT.WareHouse.BLL.StockNameBLL stockNameBLL = new NFMT.WareHouse.BLL.StockNameBLL(); result = stockNameBLL.Get(user, stock.StockNameId); if (result.ResultStatus != 0) Response.Redirect("StockList.aspx"); NFMT.WareHouse.Model.StockName stockName = result.ReturnValue as NFMT.WareHouse.Model.StockName; if(stockName==null) Response.Redirect("StockList.aspx"); this.spnStockName.InnerHtml = stockName.RefNo; NFMT.User.Model.Corporation corp = NFMT.User.UserProvider.Corporations.SingleOrDefault(temp => temp.CorpId == stock.CorpId); if(corp!=null && corp.CorpId>0) this.spnOwnCorp.InnerHtml = corp.CorpName; NFMT.Data.DetailCollection col = NFMT.Data.DetailProvider.Details(NFMT.Data.StyleEnum.CustomType); if (col != null && col.Count != 0) { NFMT.Data.Model.BDStyleDetail detail = col[stock.CustomsType]; if (detail != null) this.spnCustomType.InnerHtml = detail.DetailName; } NFMT.Data.Model.Asset ass = NFMT.Data.BasicDataProvider.Assets.SingleOrDefault(temp => temp.AssetId == stock.AssetId); if(ass!=null && ass.AssetId>0) this.spnAsset.InnerHtml = ass.AssetName; NFMT.Data.Model.Brand bra = NFMT.Data.BasicDataProvider.Brands.SingleOrDefault(temp => temp.BrandId == stock.BrandId); if(bra!=null && bra.BrandId>0) this.spnBrand.InnerHtml = bra.BrandName; NFMT.Data.Model.MeasureUnit mu = NFMT.Data.BasicDataProvider.MeasureUnits.Single(temp => temp.MUId == stock.UintId); this.spnStockAmount.InnerHtml = string.Format("{0}{1}", stock.GrossAmount.ToString(), mu.MUName); this.spnStockStatus.InnerHtml = stock.StockStatusName; } }