using LYFZ.BLL;
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;
namespace LYFZ.Software.MainBusiness.OAShopManagement
{
public class frmAddApply : LYFZ.Software.UI.OAShopManagement.frmAddApply
{
public frmAddApply()
{
LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentAndEmployee(this.comboBoxTreeViewEx1);
this.btnRelease.Click += btnRelease_Click;
this.btnClose.Click += btnClose_Click;
this.Load += frmReleaseTask_Load;
this.comboBoxTreeViewEx1.IsNodeMouseClick = true;
this.btnSet.Click += btnSet_Click;
}
void btnSet_Click(object sender, EventArgs e)
{
LYFZ.Software.MainBusiness.InitialSet.FrmSystemSet frm = new LYFZ.Software.MainBusiness.InitialSet.FrmSystemSet();
frm.TypeName = BLL.BLL_ErpSystemCategory.GetSysTemCategoryCode(BLL.SysTemCategoryCodeType.事项类别).ToUpper();
frm.Version = "Version";
if (frm.ShowDialog() == DialogResult.OK)
{
FinancialManagement.frmEditStatisticsProgram.LoadAllSystemCategory();
FinancialManagement.frmEditStatisticsProgram.BindTreeView_SystemCategory(BLL.BLL_ErpSystemCategory.GetSysTemCategoryCode(BLL.SysTemCategoryCodeType.事项类别).ToUpper(), this.cmbCategory.TreeView);
}
}
BLL_ErpShopEvententry ctbll = new BLL_ErpShopEvententry();
string _id = "";
///
/// ID
///
public string ID { get { return this._id; } set { this._id = value; } }
Model.Model_ErpShopEvententry model = new Model.Model_ErpShopEvententry();
void frmReleaseTask_Load(object sender, EventArgs e)
{
FinancialManagement.frmEditStatisticsProgram.BindTreeView_SystemCategory(BLL.BLL_ErpSystemCategory.GetSysTemCategoryCode(BLL.SysTemCategoryCodeType.事项类别).ToUpper(), this.cmbCategory.TreeView);
if (!string.IsNullOrEmpty(this.ID))
{
model = ctbll.GetModel(Convert.ToInt32(ID));
FinancialManagement.frmEditStatisticsProgram.SetSelectItme(this.cmbCategory, model.Matter_Category);
this.comboBoxTreeViewEx1.Text = frmMattersApply.UserIDToName(model.Matter_UpdateName);
this.comboBoxTreeViewEx1.Tag = model.Matter_UpdateName;
this.txtTitle.Text = model.Matter_Title;
this.txtInfo.Text = model.Matter_content;
}
}
void btnClose_Click(object sender, EventArgs e)
{
this.Close();
}
void btnRelease_Click(object sender, EventArgs e)
{
if (this.cmbCategory.TreeView.SelectedNode == null && string.IsNullOrEmpty(this.cmbCategory.StrGetName))
{
MessageBoxCustom.Show("请选申请事项类别");
return;
}
if (string.IsNullOrEmpty(this.txtTitle.Text.Trim()))
{
MessageBoxCustom.Show("请输入申请事项主题");
return;
}
if (this.comboBoxTreeViewEx1.Tag == null)
{
MessageBoxCustom.Show("请选申请事项审批人");
return;
}
if (string.IsNullOrEmpty(this.txtInfo.Text.Trim()))
{
MessageBoxCustom.Show("请输入申请事项内容");
return;
}
if (this.txtTitle.Text.Trim().Length > 100)
{
MessageBoxCustom.Show("申请事项主题不能超过100个字");
return;
}
if (this.txtInfo.Text.Trim().Length > 200)
{
MessageBoxCustom.Show("申请事项主题不能超过200个字");
return;
}
model.Matter_ID = LYFZ.WinAPI.CustomPublicMethod.GenerateId();
model.Matter_UpdateName = comboBoxTreeViewEx1.Tag.ToString();
model.Matter_content = txtInfo.Text.Trim();
model.Matter_Title = this.txtTitle.Text.Trim();
model.Matter_CreateDatetime = SDateTime.Now;
model.Matter_CreateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
model.Matter_Category = this.cmbCategory.TreeView.SelectedNode != null ? this.cmbCategory.TreeView.SelectedNode.Name : this.cmbCategory.StrGetName;
model.Matter_state = state.申请中.ToString();
model.Matter_Type = 0;
//model.Matter_InstructedTime = LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime();
//model.Matter_LeadershipInstruction = "";
model.Matter_opinion = "";
model.Matter_UpdateDatetime = LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime();
if (model.ID > 0)
{
if (ctbll.Update(model))
{
System.Threading.ThreadPool.QueueUserWorkItem(new System.Threading.WaitCallback(ShopEvententryPushMessage), model);
MessageBoxCustom.Show("重新申请发送成功");
this.DialogResult = System.Windows.Forms.DialogResult.OK;
}
else
{
MessageBoxCustom.Show("重新申请发送失败"); return;
}
}
else
{
if (ctbll.Add(model))
{
System.Threading.ThreadPool.QueueUserWorkItem(new System.Threading.WaitCallback(ShopEvententryPushMessage), model);
MessageBoxCustom.Show("申请发送成功");
this.DialogResult = System.Windows.Forms.DialogResult.OK;
}
else
{
MessageBoxCustom.Show("申请发送成功"); return;
}
}
}
///
/// 发布时推送消息
///
void ShopEvententryPushMessage(object b)
{
try
{
if (b != null)
{
LYFZ.Model.Model_ErpShopEvententry eModel = (LYFZ.Model.Model_ErpShopEvententry)b;
ctbll.ShopEvententryPushMessage(eModel);
}
}
catch { }
}
}
}