123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- using System.IO;
- using LYFZ.ComponentLibrary;
- namespace LYFZ.Software.MainBusiness.BulletinBoard
- {
- public partial class FrmBulletinBoard : LYFZ.Software.UI.BulletinBoard.FrmBulletinBoard
- {
- public FrmBulletinBoard()
- {
- }
- #region 加载
- protected override void FrmBulletinBoard_Shown(object sender, EventArgs e)
- {
-
- try
- {
-
- bindBulletinBoard();
- #region 权限设置
- #region 发布公告
- if (LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.BulletinBoardCompetence, CustomAttributes.OperatingAuthority.Announcement))
- {
- btnAnnouncement.Enabled = true;
- }
- else
- {
- btnAnnouncement.Enabled = false;
- }
- #endregion
- #region 发送邮件
- if (LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.BulletinBoardCompetence, CustomAttributes.OperatingAuthority.SendEmail))
- {
- btnReleaseMail.Enabled = true;
- }
- else
- {
- btnReleaseMail.Enabled = false;
- }
- #endregion
- #region 删除
- if (LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.BulletinBoardCompetence, CustomAttributes.OperatingAuthority.Delete))
- {
- btnDelete.Enabled = true;
- }
- else
- {
- btnDelete.Enabled = false;
- }
- #endregion
- #endregion
-
- }
- catch (Exception ex)
- {
-
- MessageBoxCustom.Show(ex.Message);
- }
- }
- #region 获取公告栏
- /// <summary>
- /// 获取公告栏
- /// </summary>
- public void bindBulletinBoard()
- {
- dgv.Columns["Imail_FromName"].Visible = true;
- dgv.Columns["Imail_FromName2"].Visible = false;
- dgv.Columns["Imail_Attachment"].Visible = true;
- dgv.Columns["Imail_ToName"].Visible = false;
- panelBulletinBoard.Visible = false;
- btnReleaseMail.Visible = false;
- btnAnnouncement.Visible = true;
- LYFZ.BLL.BLL_ErpInternalMail bll = new BLL.BLL_ErpInternalMail();
- DataTable dt = bll.View_ErpInternalMail("Imail_Type='0'").Tables[0];
- this.dgv.AutoGenerateColumns = false;
- this.dgv.DataSource = dt;
- lblCount.Text = dt.Rows.Count.ToString();
- }
- #endregion
- #region 获取内部邮件
- /// <summary>
- /// 获取内部邮件
- /// </summary>
- public void bindInternalMail()
- {
- dgv.Columns["Imail_FromName"].Visible = false;
- dgv.Columns["Imail_FromName2"].Visible = true;
- dgv.Columns["Imail_Attachment"].Visible = false;
- dgv.Columns["Imail_ToName"].Visible = true;
- panelBulletinBoard.Visible = true;
- btnReleaseMail.Visible = true;
- btnAnnouncement.Visible = false;
- LYFZ.BLL.BLL_ErpInternalMail bll = new BLL.BLL_ErpInternalMail();
- DataTable dt = new DataTable();
- if (radInbox.Checked)
- {
- dt = bll.View_ErpInternalMail("Imail_Type='1' and Imail_ToName like '%" + LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID + "%'").Tables[0];
- }
- if (radOutbox.Checked)
- {
- dt = bll.View_ErpInternalMail("Imail_Type='1' and Imail_FromName like '%" + LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID + "%'").Tables[0];
- }
- this.dgv.AutoGenerateColumns = false;
- this.dgv.DataSource = dt;
- lblCount.Text = dt.Rows.Count.ToString();
- }
- #endregion
- #endregion
- #region 单选点击公告栏
- protected override void radBulletinBoard_Click(object sender, EventArgs e)
- {
-
- bindBulletinBoard();
- }
- #endregion
- #region 单选点击内部邮件
- protected override void radInternalMail_Click(object sender, EventArgs e)
- {
-
- bindInternalMail();
- }
- #endregion
- #region 发布公告
- protected override void btnAnnouncement_Click(object sender, EventArgs e)
- {
- LYFZ.Software.MainBusiness.BulletinBoard.FrmAnnouncement set = new FrmAnnouncement();
- if (set.ShowDialog() == DialogResult.OK)
- {
- bindBulletinBoard();
- }
- }
- #endregion
- #region 查询
- protected override void btnSelect_Click(object sender, EventArgs e)
- {
-
- if (radBulletinBoard.Checked == true)
- {
- if (dgv.Rows.Count > 0)
- {
- int id = Convert.ToInt32(dgv.CurrentRow.Cells["ID"].Value);
- LYFZ.Software.MainBusiness.BulletinBoard.FrmSelectAnnouncement set = new FrmSelectAnnouncement();
- set.ID = id;
- set.ShowDialog();
- }
- }
- if (radInternalMail.Checked == true)
- {
- if (dgv.Rows.Count > 0)
- {
- int id = Convert.ToInt32(dgv.CurrentRow.Cells["ID"].Value);
- LYFZ.Software.MainBusiness.BulletinBoard.FrmSelectInternalMail set = new FrmSelectInternalMail();
- set.ID = id;
- set.ShowDialog();
- }
- }
- }
- protected override void dgv_DoubleClick(object sender, EventArgs e)
- {
- if (radBulletinBoard.Checked == true)
- {
- if (dgv.Rows.Count > 0)
- {
- int id = Convert.ToInt32(dgv.CurrentRow.Cells["ID"].Value);
- LYFZ.Software.MainBusiness.BulletinBoard.FrmSelectAnnouncement set = new FrmSelectAnnouncement();
- set.ID = id;
- set.ShowDialog();
- }
- }
- if (radInternalMail.Checked == true)
- {
- if (dgv.Rows.Count > 0)
- {
- int id = Convert.ToInt32(dgv.CurrentRow.Cells["ID"].Value);
- LYFZ.Software.MainBusiness.BulletinBoard.FrmSelectInternalMail set = new FrmSelectInternalMail();
- set.ID = id;
- set.ShowDialog();
- }
- }
- }
- #endregion
- #region 发送邮件
- protected override void btnReleaseMail_Click(object sender, EventArgs e)
- {
- LYFZ.Software.MainBusiness.BulletinBoard.FrmInternalMail set = new FrmInternalMail();
- if (set.ShowDialog() == DialogResult.OK)
- {
- bindInternalMail();
- }
- }
- #endregion
- #region 删除
- protected override void btnDelete_Click(object sender, EventArgs e)
- {
- try{
- if (this.dgv.SelectedRows.Count == 0)
- {
- MessageBoxCustom.Show("请选中你要删除的数据!");
- return;
- }
- if (MessageBoxCustom.Show("你确定要删除吗?", "删除提示", MessageBoxButtons.YesNo) == DialogResult.Yes)
- {
- LYFZ.BLL.BLL_ErpInternalMail bll = new BLL.BLL_ErpInternalMail();
- int id = Convert.ToInt32(this.dgv.CurrentRow.Cells["ID"].Value);
- //删除图片
- DataTable dt = bll.GetList("Id=" + id + "").Tables[0];
- if (!string.IsNullOrEmpty(dt.Rows[0]["Imail_Attachment"].ToString()))
- {
- File.Delete(BLL.BLL_ErpInternalMail.GetAnnouncementPath() + "\\" + dt.Rows[0]["Imail_Attachment"].ToString());
- }
- if (bll.Delete(id) == true)
- {
- MessageBoxCustom.Show("删除成功!");
- if (radBulletinBoard.Checked == true)
- {
- bindBulletinBoard();
- }
- if (radInternalMail.Checked == true)
- {
- bindInternalMail();
- }
-
- }
- else { MessageBoxCustom.Show("删除失败!"); }
- }
- }
- catch (Exception ex) { MessageBoxCustom.Show(ex.Message); }
- }
- #endregion
- #region 关闭
- protected override void btnClose_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- #endregion
- #region 发件箱
- protected override void radOutbox_Click(object sender, EventArgs e)
- {
-
- bindInternalMail();
- }
- #endregion
- #region 收件箱
- protected override void radInbox_Click(object sender, EventArgs e)
- {
-
- bindInternalMail();
- }
- #endregion
- }
- }
|