private bool saveData() { bool blnResult = false; string strMessage = string.Empty; string strScript = string.Empty; Item_group_detail item_group_detail = new Item_group_detail(); cItem_group_detail oItem_group_detail = new cItem_group_detail(); DataSet ds = new DataSet(); try { #region set Data item_group_detail.item_group_detail_id = string.IsNullOrEmpty(hdditem_group_detail_id.Value) ? 0 : int.Parse(hdditem_group_detail_id.Value); item_group_detail.item_group_detail_code = txtitem_group_detail_code.Text.Trim(); item_group_detail.item_group_detail_name = txtitem_group_detail_name.Text.Trim(); item_group_detail.item_group_code = cboItemGroup.SelectedValue; item_group_detail.c_active = chkStatus.Checked == true ? "Y" : "N"; item_group_detail.c_created_by = Session["username"].ToString(); item_group_detail.c_updated_by = Session["username"].ToString(); #endregion string strCheckAdd = " and item_group_detail_id = '" + item_group_detail.item_group_detail_id + "' "; var item = oItem_group_detail.GET(strCheckAdd); if (item != null) { blnResult = oItem_group_detail.SP_ITEM_GROUP_DETAIL_UPD(item_group_detail); } else { blnResult = oItem_group_detail.SP_ITEM_GROUP_DETAIL_INS(item_group_detail); } } catch (Exception ex) { if (ex.Message.Contains("duplicate key")) { strScript = @"ไม่สามารถแก้ไขข้อมูลได้ เนื่องจาก"; if (ex.Message.Contains("IX_item_group_detail_code")) { strScript += "ข้อมูลรหัสรายละเอียดหมวดค่าใช้จ่าย : " + txtitem_group_detail_code.Text + " ซ้ำ"; } else if (ex.Message.Contains("IX_item_group_detail_name")) { strScript += "ข้อมูลรายละเอียดหมวดค่าใช้จ่าย : " + txtitem_group_detail_name.Text + " ซ้ำ"; } MsgBox(strScript); } else { lblError.Text = ex.Message.ToString(); } } finally { oItem_group_detail.Dispose(); } return(blnResult); }
private void setData() { cItem_group_detail oItem_group_detail = new cItem_group_detail(); string strMessage = string.Empty, strCriteria = string.Empty; try { strCriteria = " and item_group_detail_id = '" + ViewState["item_group_detail_id"].ToString() + "' "; var item = oItem_group_detail.GET(strCriteria); if (item != null) { hdditem_group_detail_id.Value = item.item_group_detail_id.ToString(); txtitem_group_detail_code.Text = item.item_group_detail_code; txtitem_group_detail_name.Text = item.item_group_detail_name; InitcboYear(); if (cboYear.Items.FindByValue(item.item_group_year) != null) { cboYear.SelectedIndex = -1; cboYear.Items.FindByValue(item.item_group_year).Selected = true; } InitcboItemGroup(); if (cboItemGroup.Items.FindByValue(item.item_group_code) != null) { cboItemGroup.SelectedIndex = -1; cboItemGroup.Items.FindByValue(item.item_group_code).Selected = true; } chkStatus.Checked = item.c_active == "Y"; //if (strC_active.Equals("Y")) //{ // txtitem_group_detail_name.ReadOnly = false; // txtitem_group_detail_name.CssClass = "textbox"; // chkStatus.Checked = true; //} //else //{ // txtitem_group_detail_name.ReadOnly = true; // txtitem_group_detail_name.CssClass = "textboxdis"; // chkStatus.Checked = false; //} ////cboItemGroup.Enabled = false; ////cboItemGroup.CssClass = "textboxdis"; //cboYear.Enabled = false; //cboYear.CssClass = "textboxdis"; txtUpdatedBy.Text = item.c_updated_by; txtUpdatedDate.Text = item.d_created_date.ToString(); BindGridView(); } } catch (Exception ex) { lblError.Text = ex.Message.ToString(); } }