FrmBulletinBoard.cs 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  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. using System.IO;
  10. using LYFZ.ComponentLibrary;
  11. namespace LYFZ.Software.MainBusiness.BulletinBoard
  12. {
  13. public partial class FrmBulletinBoard : LYFZ.Software.UI.BulletinBoard.FrmBulletinBoard
  14. {
  15. public FrmBulletinBoard()
  16. {
  17. }
  18. #region 加载
  19. protected override void FrmBulletinBoard_Shown(object sender, EventArgs e)
  20. {
  21. try
  22. {
  23. bindBulletinBoard();
  24. #region 权限设置
  25. #region 发布公告
  26. if (LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.BulletinBoardCompetence, CustomAttributes.OperatingAuthority.Announcement))
  27. {
  28. btnAnnouncement.Enabled = true;
  29. }
  30. else
  31. {
  32. btnAnnouncement.Enabled = false;
  33. }
  34. #endregion
  35. #region 发送邮件
  36. if (LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.BulletinBoardCompetence, CustomAttributes.OperatingAuthority.SendEmail))
  37. {
  38. btnReleaseMail.Enabled = true;
  39. }
  40. else
  41. {
  42. btnReleaseMail.Enabled = false;
  43. }
  44. #endregion
  45. #region 删除
  46. if (LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.BulletinBoardCompetence, CustomAttributes.OperatingAuthority.Delete))
  47. {
  48. btnDelete.Enabled = true;
  49. }
  50. else
  51. {
  52. btnDelete.Enabled = false;
  53. }
  54. #endregion
  55. #endregion
  56. }
  57. catch (Exception ex)
  58. {
  59. MessageBoxCustom.Show(ex.Message);
  60. }
  61. }
  62. #region 获取公告栏
  63. /// <summary>
  64. /// 获取公告栏
  65. /// </summary>
  66. public void bindBulletinBoard()
  67. {
  68. dgv.Columns["Imail_FromName"].Visible = true;
  69. dgv.Columns["Imail_FromName2"].Visible = false;
  70. dgv.Columns["Imail_Attachment"].Visible = true;
  71. dgv.Columns["Imail_ToName"].Visible = false;
  72. panelBulletinBoard.Visible = false;
  73. btnReleaseMail.Visible = false;
  74. btnAnnouncement.Visible = true;
  75. LYFZ.BLL.BLL_ErpInternalMail bll = new BLL.BLL_ErpInternalMail();
  76. DataTable dt = bll.View_ErpInternalMail("Imail_Type='0'").Tables[0];
  77. this.dgv.AutoGenerateColumns = false;
  78. this.dgv.DataSource = dt;
  79. lblCount.Text = dt.Rows.Count.ToString();
  80. }
  81. #endregion
  82. #region 获取内部邮件
  83. /// <summary>
  84. /// 获取内部邮件
  85. /// </summary>
  86. public void bindInternalMail()
  87. {
  88. dgv.Columns["Imail_FromName"].Visible = false;
  89. dgv.Columns["Imail_FromName2"].Visible = true;
  90. dgv.Columns["Imail_Attachment"].Visible = false;
  91. dgv.Columns["Imail_ToName"].Visible = true;
  92. panelBulletinBoard.Visible = true;
  93. btnReleaseMail.Visible = true;
  94. btnAnnouncement.Visible = false;
  95. LYFZ.BLL.BLL_ErpInternalMail bll = new BLL.BLL_ErpInternalMail();
  96. DataTable dt = new DataTable();
  97. if (radInbox.Checked)
  98. {
  99. dt = bll.View_ErpInternalMail("Imail_Type='1' and Imail_ToName like '%" + LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID + "%'").Tables[0];
  100. }
  101. if (radOutbox.Checked)
  102. {
  103. dt = bll.View_ErpInternalMail("Imail_Type='1' and Imail_FromName like '%" + LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID + "%'").Tables[0];
  104. }
  105. this.dgv.AutoGenerateColumns = false;
  106. this.dgv.DataSource = dt;
  107. lblCount.Text = dt.Rows.Count.ToString();
  108. }
  109. #endregion
  110. #endregion
  111. #region 单选点击公告栏
  112. protected override void radBulletinBoard_Click(object sender, EventArgs e)
  113. {
  114. bindBulletinBoard();
  115. }
  116. #endregion
  117. #region 单选点击内部邮件
  118. protected override void radInternalMail_Click(object sender, EventArgs e)
  119. {
  120. bindInternalMail();
  121. }
  122. #endregion
  123. #region 发布公告
  124. protected override void btnAnnouncement_Click(object sender, EventArgs e)
  125. {
  126. LYFZ.Software.MainBusiness.BulletinBoard.FrmAnnouncement set = new FrmAnnouncement();
  127. if (set.ShowDialog() == DialogResult.OK)
  128. {
  129. bindBulletinBoard();
  130. }
  131. }
  132. #endregion
  133. #region 查询
  134. protected override void btnSelect_Click(object sender, EventArgs e)
  135. {
  136. if (radBulletinBoard.Checked == true)
  137. {
  138. if (dgv.Rows.Count > 0)
  139. {
  140. int id = Convert.ToInt32(dgv.CurrentRow.Cells["ID"].Value);
  141. LYFZ.Software.MainBusiness.BulletinBoard.FrmSelectAnnouncement set = new FrmSelectAnnouncement();
  142. set.ID = id;
  143. set.ShowDialog();
  144. }
  145. }
  146. if (radInternalMail.Checked == true)
  147. {
  148. if (dgv.Rows.Count > 0)
  149. {
  150. int id = Convert.ToInt32(dgv.CurrentRow.Cells["ID"].Value);
  151. LYFZ.Software.MainBusiness.BulletinBoard.FrmSelectInternalMail set = new FrmSelectInternalMail();
  152. set.ID = id;
  153. set.ShowDialog();
  154. }
  155. }
  156. }
  157. protected override void dgv_DoubleClick(object sender, EventArgs e)
  158. {
  159. if (radBulletinBoard.Checked == true)
  160. {
  161. if (dgv.Rows.Count > 0)
  162. {
  163. int id = Convert.ToInt32(dgv.CurrentRow.Cells["ID"].Value);
  164. LYFZ.Software.MainBusiness.BulletinBoard.FrmSelectAnnouncement set = new FrmSelectAnnouncement();
  165. set.ID = id;
  166. set.ShowDialog();
  167. }
  168. }
  169. if (radInternalMail.Checked == true)
  170. {
  171. if (dgv.Rows.Count > 0)
  172. {
  173. int id = Convert.ToInt32(dgv.CurrentRow.Cells["ID"].Value);
  174. LYFZ.Software.MainBusiness.BulletinBoard.FrmSelectInternalMail set = new FrmSelectInternalMail();
  175. set.ID = id;
  176. set.ShowDialog();
  177. }
  178. }
  179. }
  180. #endregion
  181. #region 发送邮件
  182. protected override void btnReleaseMail_Click(object sender, EventArgs e)
  183. {
  184. LYFZ.Software.MainBusiness.BulletinBoard.FrmInternalMail set = new FrmInternalMail();
  185. if (set.ShowDialog() == DialogResult.OK)
  186. {
  187. bindInternalMail();
  188. }
  189. }
  190. #endregion
  191. #region 删除
  192. protected override void btnDelete_Click(object sender, EventArgs e)
  193. {
  194. try{
  195. if (this.dgv.SelectedRows.Count == 0)
  196. {
  197. MessageBoxCustom.Show("请选中你要删除的数据!");
  198. return;
  199. }
  200. if (MessageBoxCustom.Show("你确定要删除吗?", "删除提示", MessageBoxButtons.YesNo) == DialogResult.Yes)
  201. {
  202. LYFZ.BLL.BLL_ErpInternalMail bll = new BLL.BLL_ErpInternalMail();
  203. int id = Convert.ToInt32(this.dgv.CurrentRow.Cells["ID"].Value);
  204. //删除图片
  205. DataTable dt = bll.GetList("Id=" + id + "").Tables[0];
  206. if (!string.IsNullOrEmpty(dt.Rows[0]["Imail_Attachment"].ToString()))
  207. {
  208. File.Delete(BLL.BLL_ErpInternalMail.GetAnnouncementPath() + "\\" + dt.Rows[0]["Imail_Attachment"].ToString());
  209. }
  210. if (bll.Delete(id) == true)
  211. {
  212. MessageBoxCustom.Show("删除成功!");
  213. if (radBulletinBoard.Checked == true)
  214. {
  215. bindBulletinBoard();
  216. }
  217. if (radInternalMail.Checked == true)
  218. {
  219. bindInternalMail();
  220. }
  221. }
  222. else { MessageBoxCustom.Show("删除失败!"); }
  223. }
  224. }
  225. catch (Exception ex) { MessageBoxCustom.Show(ex.Message); }
  226. }
  227. #endregion
  228. #region 关闭
  229. protected override void btnClose_Click(object sender, EventArgs e)
  230. {
  231. this.Close();
  232. }
  233. #endregion
  234. #region 发件箱
  235. protected override void radOutbox_Click(object sender, EventArgs e)
  236. {
  237. bindInternalMail();
  238. }
  239. #endregion
  240. #region 收件箱
  241. protected override void radInbox_Click(object sender, EventArgs e)
  242. {
  243. bindInternalMail();
  244. }
  245. #endregion
  246. }
  247. }