using BLL;
using System;
using System.Web;
namespace FineUIPro.Web.ZHGL.OccupationHealth
{
    public partial class HazardDetectionEdit :PageBase
    {
        #region 定义项
        /// 
        /// 主键
        /// 
        public string FileId
        {
            get
            {
                return (string)ViewState["FileId"];
            }
            set
            {
                ViewState["FileId"] = value;
            }
        }
        /// 
        /// 项目主键
        /// 
        public string ProjectId
        {
            get
            {
                return (string)ViewState["ProjectId"];
            }
            set
            {
                ViewState["ProjectId"] = value;
            }
        }
        #endregion
        #region 加载
        /// 
        /// 加载页面
        /// 
        /// 
        /// 
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                this.btnClose.OnClientClick = ActiveWindow.GetHideReference();
                BLL.UserService.InitUserDropDownList(this.drpCompileMan, this.CurrUser.LoginProjectId, true);
                this.ProjectId = this.CurrUser.LoginProjectId;
                this.FileId = Request.Params["FileId"];
                if (!string.IsNullOrEmpty(this.FileId))
                {
                    Model.OccupationHealth_HazardDetection HazardDetection = BLL.HazardDetectionService.GetHazardDetectionById(this.FileId);
                    if (HazardDetection != null)
                    {
                        this.ProjectId = HazardDetection.ProjectId;
                        this.txtFileCode.Text = BLL.CodeRecordsService.ReturnCodeByDataId(this.FileId);
                        this.txtFileName.Text = HazardDetection.FileName;
                        if (!string.IsNullOrEmpty(HazardDetection.CompileMan))
                        {
                            this.drpCompileMan.SelectedValue = HazardDetection.CompileMan;
                        }
                        this.txtCompileDate.Text = string.Format("{0:yyyy-MM-dd}", HazardDetection.CompileDate);
                        this.txtFileContent.Text = HttpUtility.HtmlDecode(HazardDetection.FileContent);
                    }
                }
                else
                {
                    ////自动生成编码
                    this.txtFileCode.Text = BLL.CodeRecordsService.ReturnCodeByMenuIdProjectId(BLL.Const.HazardDetectionMenuId, this.ProjectId, this.CurrUser.UnitId);
                    this.drpCompileMan.SelectedValue = this.CurrUser.UserId;
                    this.txtCompileDate.Text = string.Format("{0:yyyy-MM-dd}", DateTime.Now);
                    this.txtFileName.Text = this.SimpleForm1.Title;
                }
                ///初始化审核菜单
                this.ctlAuditFlow.MenuId = BLL.Const.HazardDetectionMenuId;
                this.ctlAuditFlow.DataId = this.FileId;
                this.ctlAuditFlow.ProjectId = this.ProjectId;
                this.ctlAuditFlow.UnitId = this.CurrUser.UnitId;
            }
        }
        #endregion
        #region 提交按钮
        /// 
        /// 提交按钮
        /// 
        /// 
        /// 
        protected void btnSubmit_Click(object sender, EventArgs e)
        {
            if (this.ctlAuditFlow.NextStep == BLL.Const.State_1 && this.ctlAuditFlow.NextPerson == BLL.Const._Null)
            {
                ShowNotify("请选择下一步办理人!", MessageBoxIcon.Warning);
                return;
            }
            this.SaveData(BLL.Const.BtnSubmit);
            PageContext.RegisterStartupScript(ActiveWindow.GetHideRefreshReference());
        }
        #endregion
        #region 保存
        /// 
        /// 保存按钮
        /// 
        /// 
        /// 
        protected void btnSave_Click(object sender, EventArgs e)
        {
            this.SaveData(BLL.Const.BtnSave);
            PageContext.RegisterStartupScript(ActiveWindow.GetHideRefreshReference());
        }
        /// 
        /// 保存数据
        /// 
        /// 
        private void SaveData(string type)
        {
            Model.OccupationHealth_HazardDetection HazardDetection = new Model.OccupationHealth_HazardDetection
            {
                FileCode = this.txtFileCode.Text.Trim(),
                FileName = this.txtFileName.Text.Trim()
            };
            if (this.drpCompileMan.SelectedValue != BLL.Const._Null)
            {
                HazardDetection.CompileMan = this.drpCompileMan.SelectedValue;
            }
            HazardDetection.CompileDate = Funs.GetNewDateTime(this.txtCompileDate.Text.Trim());
            HazardDetection.FileContent = HttpUtility.HtmlEncode(this.txtFileContent.Text);
            ////单据状态
            HazardDetection.States = BLL.Const.State_0;
            if (type == BLL.Const.BtnSubmit)
            {
                HazardDetection.States = this.ctlAuditFlow.NextStep;
            }
            if (!string.IsNullOrEmpty(this.FileId))
            {
                HazardDetection.FileId = this.FileId;
                BLL.HazardDetectionService.UpdateHazardDetection(HazardDetection);
                BLL.LogService.AddSys_Log(this.CurrUser, HazardDetection.FileCode, HazardDetection.FileId, BLL.Const.HazardDetectionMenuId, BLL.Const.BtnModify);
            }
            else
            {
                this.FileId = SQLHelper.GetNewID(typeof(Model.OccupationHealth_HazardDetection));
                HazardDetection.FileId = this.FileId;
                HazardDetection.ProjectId = this.ProjectId;
                BLL.HazardDetectionService.AddHazardDetection(HazardDetection);
                BLL.LogService.AddSys_Log(this.CurrUser, HazardDetection.FileCode, HazardDetection.FileId, BLL.Const.HazardDetectionMenuId, BLL.Const.BtnAdd);
            }
            ////保存流程审核数据         
            this.ctlAuditFlow.btnSaveData(this.ProjectId, BLL.Const.HazardDetectionMenuId, this.FileId, (type == BLL.Const.BtnSubmit ? true : false), this.txtFileName.Text.Trim(), "../OccupationHealth/HazardDetectionView.aspx?FileId={0}");
        }
        #endregion
        #region 附件上传
        /// 
        /// 上传附件
        /// 
        /// 
        /// 
        protected void btnAttachUrl_Click(object sender, EventArgs e)
        {
            if (string.IsNullOrEmpty(this.FileId))
            {
                SaveData(BLL.Const.BtnSave);
            }
            PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("../../AttachFile/webuploader.aspx?toKeyId={0}&path=FileUpload/HazardDetectionAttachUrl&menuId={1}", FileId, BLL.Const.HazardDetectionMenuId)));
        }
        #endregion
    }
}