using System;
using System.Collections.Generic;
using System.Data;
using System.Windows.Forms;
using DevExpress.XtraEditors;
using Gs.DevApp.Entity;
using Gs.DevApp.Properties;
using Gs.DevApp.ToolBox;
using Newtonsoft.Json;
namespace Gs.DevApp.DevFrm.User
{
public partial class Organization : XtraForm
{
public Organization()
{
InitializeComponent();
toolBarMenu1.btnAddClick += ToolBarMenu1_btnAddClick;
toolBarMenu1.btnEdtClick += ToolBarMenu1_btnEdtClick;
toolBarMenu1.btnSaveClick += ToolBarMenu1_btnSaveClick;
toolBarMenu1.btnLoadClick += ToolBarMenu1_btnLoadClick;
toolBarMenu1.btnDelClick += ToolBarMenu1_btnDelClick1;
toolBarMenu1.btnEscClick += ToolBarMenu1_btnEscClick;
toolBarMenu1.btnChkClick += ToolBarMenu1_btnChkClick;
toolBarMenu1.btnFChkClick += ToolBarMenu1_btnFChkClick;
tlMenu.DoubleClick += TlMenu_DoubleClick;
getTree();
}
private void TlMenu_DoubleClick(object sender, EventArgs e)
{
var clickedNode = tlMenu.SelectedNode;
if (clickedNode.FirstNode == null)
{
var rowGuid = clickedNode.Name;
getModel(rowGuid, false, 999);
}
}
///
/// 反审核
///
///
///
///
private void ToolBarMenu1_btnFChkClick(object sender, EventArgs e)
{
toolBarMenu1.guidKey = "";
string rowGuid, rowName;
(rowGuid, rowName) = UtilityHelper.GetCurrentRow(xtraTabControl1,
lbGuid, txt_name, tlMenu);
toolBarMenu1.guidKey = rowGuid;
}
///
/// 审核事件
///
///
///
private void ToolBarMenu1_btnChkClick(object sender, EventArgs e)
{
toolBarMenu1.guidKey = "";
string rowGuid, rowName;
(rowGuid, rowName) = UtilityHelper.GetCurrentRow(xtraTabControl1,
lbGuid, txt_name, tlMenu);
toolBarMenu1.guidKey = rowGuid;
}
///
/// 取消事件
///
///
///
private void ToolBarMenu1_btnEscClick(object sender, EventArgs e)
{
UtilityHelper.JumpToTab(xtraTabControl1, 0);
}
///
/// 删除事件
///
///
///
private void ToolBarMenu1_btnDelClick1(object sender, EventArgs e)
{
string rowGuid, rowName;
(rowGuid, rowName) = UtilityHelper.GetCurrentRow(xtraTabControl1,
lbGuid, txt_name, tlMenu);
if (string.IsNullOrEmpty(rowGuid))
{
MsgHelper.Warning("请先选择你要删除的行!");
return;
}
if (!MsgHelper.AskQuestion("你选择了【" + rowName + "】,确定删除吗?")) return;
var lst = new List();
lst.Add(rowGuid);
var _obj = lst;
try
{
var strJson = UtilityHelper.HttpPost("",
"Organization/DeleteModel",
JsonConvert.SerializeObject(_obj));
var _rtn = UtilityHelper.ReturnToDynamic(strJson);
if (_rtn.rtnCode > 0)
{
UtilityHelper.JumpToTab(xtraTabControl1, 0);
getTree();
}
MsgHelper.Warning("提示:" + _rtn.rtnMsg);
}
catch (Exception ex)
{
MsgHelper.Warning("提示:" + ex.Message);
}
}
///
/// 刷新事件
///
///
///
private void ToolBarMenu1_btnLoadClick(object sender, EventArgs e)
{
UtilityHelper.JumpToTab(xtraTabControl1, 0);
getTree();
}
///
/// 修改事件
///
///
///
private void ToolBarMenu1_btnEdtClick(object sender, EventArgs e)
{
string rowGuid, rowName;
(rowGuid, rowName) = UtilityHelper.GetCurrentRow(xtraTabControl1,
lbGuid, txt_name, tlMenu);
if (string.IsNullOrEmpty(rowGuid))
{
MsgHelper.Warning("请先选择你要操作的行!");
return;
}
getModel(rowGuid, true, 1);
}
///
/// 新增事件
///
///
///
private void ToolBarMenu1_btnAddClick(object sender, EventArgs e)
{
UtilityHelper.JumpToTab(xtraTabControl1, 1);
lbGuid.Text = "";
UtilityHelper.CleanValueByControl(panel1.Controls, true);
}
///
/// 保存事件
///
///
///
private void ToolBarMenu1_btnSaveClick(object sender, EventArgs e)
{
toolBarMenu1.isSetBtn = false;
if (string.IsNullOrEmpty(txt_factory.Text.Trim()))
{
MsgHelper.Warning("编号不能为空!");
txt_factory.Focus();
return;
}
if (string.IsNullOrEmpty(txt_name.Text.Trim()))
{
MsgHelper.Warning("名称不能为空!");
txt_name.Focus();
return;
}
if (string.IsNullOrEmpty(txt_conPeople.Text.Trim()))
{
MsgHelper.Warning("联系人不能为空!");
txt_conPeople.Focus();
return;
}
if (string.IsNullOrEmpty(txt_conTel.Text.Trim()))
{
MsgHelper.Warning("联系电话不能为空!");
txt_conTel.Focus();
return;
}
var _upGuid = txt_upGuid.Text.Trim().Length > 0
? txt_upGuid.SelectedValue.ToString()
: "";
var _obj = new
{
guid = lbGuid.Text.Trim(), //主建
upGuid = _upGuid, //上级的主建
name = txt_name.Text.Trim(), //名称
conPeople = txt_conPeople.Text, //联系人
conTel = txt_conPeople.Text, //联系电话
isStatus = txt_isStatus.Checked, //状态
factory = txt_factory.Text //组织编号
};
try
{
var strJson = UtilityHelper.HttpPost("",
"Organization/EditModel",
JsonConvert.SerializeObject(_obj));
var _rtn = UtilityHelper.ReturnToDynamic(strJson);
MsgHelper.Warning("提示:" + _rtn.rtnMsg);
if (_rtn.rtnCode > 0)
{
lbGuid.Text = _rtn.rtnData;
toolBarMenu1.isSetBtn = true;
UtilityHelper.ChangeEnableByControl(panel1.Controls, false);
}
}
catch (Exception ex)
{
MsgHelper.Warning("提示:" + ex.Message);
}
}
private void getTree()
{
tlMenu.Nodes.Clear();
var imageList = new ImageList();
imageList.Images.Add("icon1", Resources.publicfix_32x32);
imageList.Images.Add("icon2", Resources.user_16x16);
tlMenu.ImageList = imageList;
var pgq = new PageQueryModel(1, 999999, "factory");
var json = JsonConvert.SerializeObject(pgq);
try
{
var strReturn = UtilityHelper.HttpPost("",
"Organization/GetListPage", json);
var dd = UtilityHelper.ReturnToTablePage(strReturn);
var dt = dd.rtnData.list;
var drGrp = dt.Select("upGuid='' or upguid is null");
var dtComList = new DataTable();
dtComList.Columns.Add("guid", typeof(string));
dtComList.Columns.Add("name", typeof(string));
foreach (var _dy in drGrp)
{
dtComList.Rows.Add(_dy["guid"].ToString(),
_dy["name"].ToString());
var node = new TreeNode(); //定义结点
node.Text =
"(" + _dy["factory"] + ")" + _dy["name"]; //为结点赋值
node.Name = _dy["guid"].ToString();
node.ImageIndex = 0;
var drItem = dt.Select("upGuid='" + _dy["guid"] + "'");
foreach (var _dy2 in drItem)
{
var node22 = new TreeNode(); //定义结点
node22.Text =
"(" + _dy2["factory"] + ")" + _dy2["name"]; //为结点赋值
node22.Name = _dy2["guid"].ToString();
node22.ImageIndex = 1;
node.Nodes.Add(node22);
}
node.ExpandAll();
tlMenu.Nodes.Add(node);
}
txt_upGuid.DataSource = dtComList;
txt_upGuid.DisplayMember = "name";
txt_upGuid.ValueMember = "guid";
}
catch (Exception ex)
{
MsgHelper.Warning("提示:" + ex.Message);
}
}
private void getModel(string strGuid, bool isEdit, int tabIdx)
{
if (string.IsNullOrEmpty(strGuid))
{
MsgHelper.Warning("请先选择你要操作的行!");
return;
}
UtilityHelper.JumpToTab(xtraTabControl1, tabIdx);
var _obj = new
{
guid = strGuid //主建
};
try
{
var strJson = UtilityHelper.HttpPost("",
"Organization/GetModel", JsonConvert.SerializeObject(_obj));
var _rtn = UtilityHelper.ReturnToDynamic(strJson);
if (_rtn.rtnCode > 0)
{
var dy = _rtn.rtnData;
lbGuid.Text = strGuid;
UtilityHelper.SetValueByObj(panel1.Controls, dy, isEdit);
}
else
{
MsgHelper.Warning("提示:" + _rtn.rtnMsg);
}
}
catch (Exception ex)
{
MsgHelper.Warning("提示:" + ex.Message);
}
}
}
}