Example #1
0
 protected override void OnInit(EventArgs e)
 {
     base.OnInit(e);
     B_ModuleID = "Bas_Type";
     B_ModuleName = "类别";
     B_ToolBar1 = this.Toolbar1;
     B_IDAL = new RDFNew.Module.Admin.Bas.Bas_Type();
 }
Example #2
0
 protected override void OnInit(EventArgs e)
 {
     base.OnInit(e);
     B_ModuleID = "Bas_Type";
     B_ModuleName = "类别";
     B_PageDetail = "Bas_Type.aspx";
     B_ToolBar1 = this.Toolbar1;
     B_Window1 = this.Window1;
     B_Grid1 = this.Grid1;
     B_IDAL = new RDFNew.Module.Admin.Bas.Bas_Type();
     B_TableKey = "Bas_Type.TypeID";
     B_OrderBy = " Bas_Type.TypeGroup,Bas_Type.Seq ";
 }
Example #3
0
        protected override string AddData()
        {
            RDFNew.Module.Admin.Bas.Bas_Type obj = new RDFNew.Module.Admin.Bas.Bas_Type();
            DataTable dt = RDFNew.Module.DALHelper.GetMasterEmpty(null, "Bas_Type");
            DataRow dr;
            dr = dt.NewRow();
            dr["TypeID"] = App_Com.Helper.InputText(this.txtTypeID.Text, 500);
            dr["TypeGroup"] = App_Com.Helper.InputText(this.txtTypeGroup.Text, 500);
            dr["Seq"] = App_Com.Helper.InputText(this.txtSeq.Text, 500);
            dr["TypeName"] = App_Com.Helper.InputText(this.txtTypeName.Text, 500);
            dr["Enabled"] = this.ckbEnabled.Checked;
            dr["Remark"] = App_Com.Helper.InputText(this.txtRemark.Text, 500);

            dr["CrtBy"] = App_Com.Sys_User.GetUserInfo("UserID");
            dr["CrtOn"] = System.DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
            dt.Rows.Add(dr);
            object[] data = obj.ApplyMaster(dt.GetChanges(DataRowState.Added),
                                        App_Com.Helper.BuildLog("Bas_Type", "add"));
            if (data[0].ToString() != "0") //正常
                throw data[1] as Exception;
            else
                return data[1].ToString();
        }
Example #4
0
        protected override string UpdateData()
        {
            RDFNew.Module.Admin.Bas.Bas_Type obj = new RDFNew.Module.Admin.Bas.Bas_Type();
            object[] data = obj.GetMaster(B_Keyword);
            if (data[0].ToString() == "0") //正常
            {
                DataTable dt = data[1] as DataTable;
                if (dt.Rows.Count > 0)
                {
                    DataRow dr;
                    dr = dt.Rows[0];
                    dr["TypeName"] = App_Com.Helper.InputText(this.txtTypeName.Text, 500);
                    dr["Enabled"] = this.ckbEnabled.Checked;
                    dr["Remark"] = App_Com.Helper.InputText(this.txtRemark.Text, 500);

                    dr["ModBy"] = App_Com.Sys_User.GetUserInfo("UserID");
                    dr["ModOn"] = System.DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
                    data = obj.ApplyMaster(dt.GetChanges(DataRowState.Modified),
                                            App_Com.Helper.BuildLog("Bas_Type", "edit"));
                    if (data[0].ToString() != "0") //正常
                        throw data[1] as Exception;
                    else
                        return data[1].ToString();
                }
                else
                {
                    throw new Exception("需要修改的记录已不存在,请刷新后再试.");
                }
            }
            else
            {
                throw data[1] as Exception;
            }
        }