FrmRatingSet.cs 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace LYFZ.Software.MainBusiness.CustomerSatisfactionRecord.Satisfaction
  10. {
  11. public partial class FrmRatingSet : LYFZ.Software.UI.CustomerSatisfactionRecord.Satisfaction.FrmRatingSet
  12. {
  13. LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder();
  14. LYFZ.BLL.BLL_ErpSatisfactionRatingSet bll = new BLL.BLL_ErpSatisfactionRatingSet();
  15. public FrmRatingSet()
  16. {
  17. }
  18. /// <summary>
  19. /// 窗体加载事件
  20. /// </summary>
  21. /// <param name="sender"></param>
  22. /// <param name="e"></param>
  23. protected override void FrmRatingSet_Shown(object sender, EventArgs e)
  24. {
  25. dgv.Rows.Clear();
  26. DataTable dt = new DataTable();
  27. LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate(object obj, BackgroundWorker backgroundWorker)
  28. {
  29. dt = bll.GetAllList().Tables[0];
  30. });
  31. if (dt.Rows.Count > 0)
  32. {
  33. for (int t = 0; t < dt.Rows.Count; t++)
  34. {
  35. DataGridViewRow dgvr = new DataGridViewRow();
  36. DataGridViewCell cell = null;
  37. cell = new DataGridViewTextBoxCell();
  38. cell.Value = dt.Rows[t]["ID"].ToString().Trim();
  39. dgvr.Cells.Add(cell);
  40. cell = new DataGridViewTextBoxCell();
  41. cell.Value = dt.Rows[t]["Sfrs_Name"].ToString().Trim();
  42. dgvr.Cells.Add(cell);
  43. cell = new DataGridViewTextBoxCell();
  44. cell.Value = dt.Rows[t]["Sfrs_Scores"].ToString().Trim();
  45. dgvr.Cells.Add(cell);
  46. cell = new DataGridViewTextBoxCell();
  47. cell.Value = dt.Rows[t]["Sfrs_TotalPoints"].ToString().Trim();
  48. dgvr.Cells.Add(cell);
  49. this.dgv.Rows.Add(dgvr);
  50. dgv.ClearSelection();
  51. }
  52. }
  53. }
  54. /// <summary>
  55. /// 保存
  56. /// </summary>
  57. /// <param name="sender"></param>
  58. /// <param name="e"></param>
  59. protected override void btnSave_Click(object sender, EventArgs e)
  60. {
  61. try
  62. {
  63. LYFZ.Model.Model_ErpSatisfactionRatingSet model = new Model.Model_ErpSatisfactionRatingSet();
  64. if (string.IsNullOrEmpty(txtSfrs_Name.Text))
  65. { MessageBoxCustom.Show("满意项目名称不能为空!"); return; }
  66. if (string.IsNullOrEmpty(txtSfrs_Scores.Text))
  67. { MessageBoxCustom.Show("满意分值不能为空!"); return; }
  68. #region 增加
  69. if (dgv.SelectedRows.Count == 0)
  70. {
  71. if (dgv.Rows.Count >= 5)
  72. { MessageBoxCustom.Show("最多只能添加5个项目!"); return; }
  73. if (bll.Exists("Sfrs_Name", this.txtSfrs_Name.Text) == true)
  74. { MessageBoxCustom.Show("满意项目已经存在!"); return; }
  75. model.Sfrs_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  76. model.Sfrs_Name = txtSfrs_Name.Text.ToString();
  77. model.Sfrs_Scores = Convert.ToInt32(txtSfrs_Scores.Text);
  78. model.Sfrs_CreateTime = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime();
  79. model.Sfrs_CreateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Name;
  80. if (bll.Add(model))
  81. {
  82. MessageBoxCustom.Show("保存成功!");
  83. this.FrmRatingSet_Shown(this, null);
  84. txtSfrs_Name.Text = "";
  85. txtSfrs_Scores.Text = "";
  86. }
  87. }
  88. #endregion
  89. #region 修改
  90. if (dgv.SelectedRows.Count > 0)
  91. {
  92. #region 判断满意项目是否存在
  93. if (!string.IsNullOrEmpty(txtSfrs_Name.Text))
  94. {
  95. DataTable dt = bll.GetList("id=" + dgv.CurrentRow.Cells["ID"].Value + "", "ID desc").Tables[0];
  96. if (dt.Rows.Count > 0)
  97. {
  98. string Sfrs_Name = dt.Rows[0]["Sfrs_Name"].ToString();
  99. if (Sfrs_Name != txtSfrs_Name.Text)
  100. {
  101. dt = bll.GetList("Sfrs_Name='" + txtSfrs_Name.Text + "'").Tables[0];
  102. if (dt.Rows.Count > 0)
  103. { MessageBoxCustom.Show("满意项目名称已经存在!"); return; }
  104. }
  105. }
  106. DataTable dt1 = bll.GetList("id != " + dgv.CurrentRow.Cells["ID"].Value + " And Sfrs_Scores = " + txtSfrs_Scores.Text.Trim() + "", "ID desc").Tables[0];
  107. if (dt1.Rows.Count > 0)
  108. { MessageBoxCustom.Show("满意项目分值已经存在!"); return; }
  109. }
  110. #endregion
  111. model = bll.GetModel(Convert.ToInt32(dgv.CurrentRow.Cells["ID"].Value));
  112. model.Sfrs_Name = txtSfrs_Name.Text.ToString();
  113. model.Sfrs_Scores = Convert.ToInt32(txtSfrs_Scores.Text);
  114. model.Sfrs_UpdateTime = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime();
  115. model.Sfrs_UpdateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Name;
  116. if (bll.Update(model))
  117. {
  118. MessageBoxCustom.Show("保存成功!");
  119. this.FrmRatingSet_Shown(this, null);
  120. txtSfrs_Name.Text = "";
  121. txtSfrs_Scores.Text = "";
  122. }
  123. }
  124. #endregion
  125. }
  126. catch (Exception ex)
  127. { MessageBoxCustom.Show(ex.Message); }
  128. }
  129. /// <summary>
  130. /// 文本框限制
  131. /// </summary>
  132. /// <param name="sender"></param>
  133. /// <param name="e"></param>
  134. protected override void txtSfrs_TotalPoints_KeyPress(object sender, KeyPressEventArgs e)
  135. {
  136. if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  137. { e.Handled = true; }
  138. }
  139. /// <summary>
  140. /// 文本框限制
  141. /// </summary>
  142. /// <param name="sender"></param>
  143. /// <param name="e"></param>
  144. protected override void txtSfrs_Scores_KeyPress(object sender, KeyPressEventArgs e)
  145. {
  146. if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  147. { e.Handled = true; }
  148. }
  149. /// <summary>
  150. /// dgv控件赋值
  151. /// </summary>
  152. /// <param name="sender"></param>
  153. /// <param name="e"></param>
  154. protected override void dgv_Click(object sender, EventArgs e)
  155. {
  156. if (dgv.SelectedRows.Count > 0)
  157. {
  158. DataTable dt = bll.GetList("ID=" + Convert.ToInt32(dgv.CurrentRow.Cells["ID"].Value) + "").Tables[0];
  159. if (dt.Rows.Count > 0)
  160. {
  161. txtSfrs_Name.Text = dt.Rows[0]["Sfrs_Name"].ToString();
  162. txtSfrs_Scores.Text = dt.Rows[0]["Sfrs_Scores"].ToString();
  163. }
  164. }
  165. }
  166. /// <summary>
  167. /// 取消
  168. /// </summary>
  169. /// <param name="sender"></param>
  170. /// <param name="e"></param>
  171. protected override void btnCanle_Click(object sender, EventArgs e)
  172. {
  173. this.Close();
  174. }
  175. /// <summary>
  176. /// 删除
  177. /// </summary>
  178. /// <param name="sender"></param>
  179. /// <param name="e"></param>
  180. protected override void btnDelete_Click(object sender, EventArgs e)
  181. {
  182. try
  183. {
  184. if (this.dgv.SelectedRows.Count == 0)
  185. { MessageBoxCustom.Show("请选中你要删除的数据!"); return; }
  186. DataTable dt = bll.GetList("ID='" + dgv.CurrentRow.Cells["Id"].Value + "'", "ID desc").Tables[0];
  187. if (MessageBoxCustom.Show("你确定要删除吗?", "删除提示", MessageBoxButtons.YesNo) == DialogResult.Yes)
  188. {
  189. if (bll.Delete(Convert.ToInt32(dgv.CurrentRow.Cells["Id"].Value)) == true)
  190. {
  191. string logsContent = "删除满意度设置名称:" + txtSfrs_Name.Text.Trim();
  192. LYFZ.BLL.BLL_ErpSystemLogs.WriteSystemLog(LYFZ.EnumPublic.SystemLogsType.删除满意度调查, logsContent, LYFZ.BLL.BLL_ErpUser.UsersModel.User_EmployeeID, LYFZ.BLL.BLL_ErpUser.UsersModel.User_Name);
  193. MessageBoxCustom.Show("删除成功!");
  194. this.FrmRatingSet_Shown(this, null);
  195. }
  196. else
  197. { MessageBoxCustom.Show("删除失败!"); }
  198. }
  199. }
  200. catch (Exception ex)
  201. { MessageBoxCustom.Show(ex.Message); }
  202. }
  203. }
  204. }