/// <summary> /// 更新一条数据 /// </summary> public bool Update(Bsam.Core.Model.Models.Model.Inv_Onhand_Qty model) { StringBuilder strSql = new StringBuilder(); strSql.Append("update Inv_Onhand_Qty set "); strSql.Append("Id=@Id,"); strSql.Append("MitemId=@MitemId,"); strSql.Append("InvId=@InvId,"); strSql.Append("DistrictId=@DistrictId,"); strSql.Append("LocId=@LocId,"); strSql.Append("Trans_Qty=@Trans_Qty,"); strSql.Append("DateTimeCreated=@DateTimeCreated,"); strSql.Append("UserCreator=@UserCreator,"); strSql.Append("DateTimeModified=@DateTimeModified,"); strSql.Append("UserModified=@UserModified,"); strSql.Append("State=@State,"); strSql.Append("OrgId=@OrgId"); strSql.Append(" where "); SQLiteParameter[] parameters = { new SQLiteParameter("@Id", DbType.Int32, 8), new SQLiteParameter("@MitemId", DbType.Int32, 4), new SQLiteParameter("@InvId", DbType.Int32, 4), new SQLiteParameter("@DistrictId", DbType.Int32, 4), new SQLiteParameter("@LocId", DbType.Int32, 4), new SQLiteParameter("@Trans_Qty", DbType.Decimal, 8), new SQLiteParameter("@DateTimeCreated", DbType.Date), new SQLiteParameter("@UserCreator", DbType.String, 0), new SQLiteParameter("@DateTimeModified", DbType.Date), new SQLiteParameter("@UserModified", DbType.String, 0), new SQLiteParameter("@State", DbType.bit, 1), new SQLiteParameter("@OrgId", DbType.String, 0) }; parameters[0].Value = model.Id; parameters[1].Value = model.MitemId; parameters[2].Value = model.InvId; parameters[3].Value = model.DistrictId; parameters[4].Value = model.LocId; parameters[5].Value = model.Trans_Qty; parameters[6].Value = model.DateTimeCreated; parameters[7].Value = model.UserCreator; parameters[8].Value = model.DateTimeModified; parameters[9].Value = model.UserModified; parameters[10].Value = model.State; parameters[11].Value = model.OrgId; int rows = DbHelperSQLite.ExecuteSql(strSql.ToString(), parameters); if (rows > 0) { return(true); } else { return(false); } }
/// <summary> /// 增加一条数据 /// </summary> public bool Add(Bsam.Core.Model.Models.Model.Inv_Onhand_Qty model) { StringBuilder strSql = new StringBuilder(); strSql.Append("insert into Inv_Onhand_Qty("); strSql.Append("Id,MitemId,InvId,DistrictId,LocId,Trans_Qty,DateTimeCreated,UserCreator,DateTimeModified,UserModified,State,OrgId)"); strSql.Append(" values ("); strSql.Append("@Id,@MitemId,@InvId,@DistrictId,@LocId,@Trans_Qty,@DateTimeCreated,@UserCreator,@DateTimeModified,@UserModified,@State,@OrgId)"); SQLiteParameter[] parameters = { new SQLiteParameter("@Id", DbType.Int32, 8), new SQLiteParameter("@MitemId", DbType.Int32, 4), new SQLiteParameter("@InvId", DbType.Int32, 4), new SQLiteParameter("@DistrictId", DbType.Int32, 4), new SQLiteParameter("@LocId", DbType.Int32, 4), new SQLiteParameter("@Trans_Qty", DbType.Decimal, 8), new SQLiteParameter("@DateTimeCreated", DbType.Date), new SQLiteParameter("@UserCreator", DbType.String, 0), new SQLiteParameter("@DateTimeModified", DbType.Date), new SQLiteParameter("@UserModified", DbType.String, 0), new SQLiteParameter("@State", DbType.bit, 1), new SQLiteParameter("@OrgId", DbType.String, 0) }; parameters[0].Value = model.Id; parameters[1].Value = model.MitemId; parameters[2].Value = model.InvId; parameters[3].Value = model.DistrictId; parameters[4].Value = model.LocId; parameters[5].Value = model.Trans_Qty; parameters[6].Value = model.DateTimeCreated; parameters[7].Value = model.UserCreator; parameters[8].Value = model.DateTimeModified; parameters[9].Value = model.UserModified; parameters[10].Value = model.State; parameters[11].Value = model.OrgId; int rows = DbHelperSQLite.ExecuteSql(strSql.ToString(), parameters); if (rows > 0) { return(true); } else { return(false); } }
private void ShowInfo() { Bsam.Core.Model.Models.BLL.Inv_Onhand_Qty bll = new Bsam.Core.Model.Models.BLL.Inv_Onhand_Qty(); Bsam.Core.Model.Models.Model.Inv_Onhand_Qty model = bll.GetModel(); this.lblId.Text = model.Id.ToString(); this.lblMitemId.Text = model.MitemId.ToString(); this.lblInvId.Text = model.InvId.ToString(); this.lblDistrictId.Text = model.DistrictId.ToString(); this.lblLocId.Text = model.LocId.ToString(); this.lblTrans_Qty.Text = model.Trans_Qty.ToString(); this.lblDateTimeCreated.Text = model.DateTimeCreated.ToString(); this.lblUserCreator.Text = model.UserCreator; this.lblDateTimeModified.Text = model.DateTimeModified.ToString(); this.lblUserModified.Text = model.UserModified; this.lblState.Text = model.State?"是":"否"; this.lblOrgId.Text = model.OrgId; }
private void ShowInfo() { Bsam.Core.Model.Models.BLL.Inv_Onhand_Qty bll = new Bsam.Core.Model.Models.BLL.Inv_Onhand_Qty(); Bsam.Core.Model.Models.Model.Inv_Onhand_Qty model = bll.GetModel(); this.txtId.Text = model.Id.ToString(); this.txtMitemId.Text = model.MitemId.ToString(); this.txtInvId.Text = model.InvId.ToString(); this.txtDistrictId.Text = model.DistrictId.ToString(); this.txtLocId.Text = model.LocId.ToString(); this.txtTrans_Qty.Text = model.Trans_Qty.ToString(); this.txtDateTimeCreated.Text = model.DateTimeCreated.ToString(); this.txtUserCreator.Text = model.UserCreator; this.txtDateTimeModified.Text = model.DateTimeModified.ToString(); this.txtUserModified.Text = model.UserModified; this.chkState.Checked = model.State; this.txtOrgId.Text = model.OrgId; }
/// <summary> /// 得到一个对象实体 /// </summary> public Bsam.Core.Model.Models.Model.Inv_Onhand_Qty GetModel() { //该表无主键信息,请自定义主键/条件字段 StringBuilder strSql = new StringBuilder(); strSql.Append("select Id,MitemId,InvId,DistrictId,LocId,Trans_Qty,DateTimeCreated,UserCreator,DateTimeModified,UserModified,State,OrgId from Inv_Onhand_Qty "); strSql.Append(" where "); SQLiteParameter[] parameters = { }; Bsam.Core.Model.Models.Model.Inv_Onhand_Qty model = new Bsam.Core.Model.Models.Model.Inv_Onhand_Qty(); DataSet ds = DbHelperSQLite.Query(strSql.ToString(), parameters); if (ds.Tables[0].Rows.Count > 0) { return(DataRowToModel(ds.Tables[0].Rows[0])); } else { return(null); } }
/// <summary> /// 得到一个对象实体 /// </summary> public Bsam.Core.Model.Models.Model.Inv_Onhand_Qty DataRowToModel(DataRow row) { Bsam.Core.Model.Models.Model.Inv_Onhand_Qty model = new Bsam.Core.Model.Models.Model.Inv_Onhand_Qty(); if (row != null) { if (row["Id"] != null && row["Id"].ToString() != "") { model.Id = int.Parse(row["Id"].ToString()); } if (row["MitemId"] != null && row["MitemId"].ToString() != "") { model.MitemId = int.Parse(row["MitemId"].ToString()); } if (row["InvId"] != null && row["InvId"].ToString() != "") { model.InvId = int.Parse(row["InvId"].ToString()); } if (row["DistrictId"] != null && row["DistrictId"].ToString() != "") { model.DistrictId = int.Parse(row["DistrictId"].ToString()); } if (row["LocId"] != null && row["LocId"].ToString() != "") { model.LocId = int.Parse(row["LocId"].ToString()); } if (row["Trans_Qty"] != null && row["Trans_Qty"].ToString() != "") { model.Trans_Qty = decimal.Parse(row["Trans_Qty"].ToString()); } if (row["DateTimeCreated"] != null && row["DateTimeCreated"].ToString() != "") { model.DateTimeCreated = DateTime.Parse(row["DateTimeCreated"].ToString()); } if (row["UserCreator"] != null) { model.UserCreator = row["UserCreator"].ToString(); } if (row["DateTimeModified"] != null && row["DateTimeModified"].ToString() != "") { model.DateTimeModified = DateTime.Parse(row["DateTimeModified"].ToString()); } if (row["UserModified"] != null) { model.UserModified = row["UserModified"].ToString(); } if (row["State"] != null && row["State"].ToString() != "") { if ((row["State"].ToString() == "1") || (row["State"].ToString().ToLower() == "true")) { model.State = true; } else { model.State = false; } } if (row["OrgId"] != null) { model.OrgId = row["OrgId"].ToString(); } } return(model); }
protected void btnSave_Click(object sender, EventArgs e) { string strErr = ""; if (!PageValidate.IsNumber(txtId.Text)) { strErr += "Id格式错误!\\n"; } if (!PageValidate.IsNumber(txtMitemId.Text)) { strErr += "MitemId格式错误!\\n"; } if (!PageValidate.IsNumber(txtInvId.Text)) { strErr += "InvId格式错误!\\n"; } if (!PageValidate.IsNumber(txtDistrictId.Text)) { strErr += "DistrictId格式错误!\\n"; } if (!PageValidate.IsNumber(txtLocId.Text)) { strErr += "LocId格式错误!\\n"; } if (!PageValidate.IsDecimal(txtTrans_Qty.Text)) { strErr += "Trans_Qty格式错误!\\n"; } if (!PageValidate.IsDateTime(txtDateTimeCreated.Text)) { strErr += "DateTimeCreated格式错误!\\n"; } if (this.txtUserCreator.Text.Trim().Length == 0) { strErr += "UserCreator不能为空!\\n"; } if (!PageValidate.IsDateTime(txtDateTimeModified.Text)) { strErr += "DateTimeModified格式错误!\\n"; } if (this.txtUserModified.Text.Trim().Length == 0) { strErr += "UserModified不能为空!\\n"; } if (this.txtOrgId.Text.Trim().Length == 0) { strErr += "OrgId不能为空!\\n"; } if (strErr != "") { MessageBox.Show(this, strErr); return; } int Id = int.Parse(this.txtId.Text); int MitemId = int.Parse(this.txtMitemId.Text); int InvId = int.Parse(this.txtInvId.Text); int DistrictId = int.Parse(this.txtDistrictId.Text); int LocId = int.Parse(this.txtLocId.Text); decimal Trans_Qty = decimal.Parse(this.txtTrans_Qty.Text); DateTime DateTimeCreated = DateTime.Parse(this.txtDateTimeCreated.Text); string UserCreator = this.txtUserCreator.Text; DateTime DateTimeModified = DateTime.Parse(this.txtDateTimeModified.Text); string UserModified = this.txtUserModified.Text; bool State = this.chkState.Checked; string OrgId = this.txtOrgId.Text; Bsam.Core.Model.Models.Model.Inv_Onhand_Qty model = new Bsam.Core.Model.Models.Model.Inv_Onhand_Qty(); model.Id = Id; model.MitemId = MitemId; model.InvId = InvId; model.DistrictId = DistrictId; model.LocId = LocId; model.Trans_Qty = Trans_Qty; model.DateTimeCreated = DateTimeCreated; model.UserCreator = UserCreator; model.DateTimeModified = DateTimeModified; model.UserModified = UserModified; model.State = State; model.OrgId = OrgId; Bsam.Core.Model.Models.BLL.Inv_Onhand_Qty bll = new Bsam.Core.Model.Models.BLL.Inv_Onhand_Qty(); bll.Add(model); Maticsoft.Common.MessageBox.ShowAndRedirect(this, "保存成功!", "add.aspx"); }