From 1b1a2e68cfd02074fc3300a0cc0fa40888a92f10 Mon Sep 17 00:00:00 2001
From: LiFan <2308045698@qq.com>
Date: 星期一, 15 七月 2024 11:57:06 +0800
Subject: [PATCH] update

---
 jrj/project/business/Company/HrPosition.cpp |  438 +++++++++++++++++++++++++++++++-----------------------
 1 files changed, 249 insertions(+), 189 deletions(-)

diff --git a/jrj/project/business/Company/HrPosition.cpp b/jrj/project/business/Company/HrPosition.cpp
index cb4571d..3acacfb 100644
--- a/jrj/project/business/Company/HrPosition.cpp
+++ b/jrj/project/business/Company/HrPosition.cpp
@@ -1,211 +1,271 @@
-#include <wobject/xstring.hpp>
-#include <xcontrol/xtreeview.hpp>
-#include <xcontrol/xdwgrid.hpp>
+use "win.vl"
+use "dev:vm[xdwgrid.vm]"
+use "dev:vm[xdwtable.vm]"
+use "pref.vl"
+use "dev:vm[xml.vm]"
+use "dev:vm[xaserverarg.vm]"
+use "dev:vm[xaserver.vm]"
+use "dev:vm[xutil.vm]"
+use "frame.vl"
+use "treeview.vm"
 
-#include "vbusiness/vframe/listwin.vframe.vbusiness.hpp"
-#include "viewobject/view.base.hpp"
+//unit vclient.vobject tpp
+unit vbusiness.xpage
+[
+	HrPosition is extend frame;
+	about HrPosition
+		[
+			field:
+			[
+				treeview__		tv_org;
+				xdwgrid__	dw_list;
+				string		sOrgID;
+				string		sOrgName;
 
-using xml = KXMLDOMDocument;
-	class __declspec(dllexport) Deduction : public xframe
-	{
-	public:
-		xdwgrid	dw_list;
-		xstring EntityID;
-		xstring InvoiceNo;
+				xnode__	m_agentNode;	//Agent Condition
+				string	m_agentCond;	//Agent Node
+			]
 
-		xnode	m_agentNode;	//Agent Condition
-
-	public:
-		Deduction(void* implPtr, HWND hWnd) :xframe(implPtr, hWnd) {}
-	public:
-		static Deduction* CreateInstance(void* implPtr, void* hWnd)
-		{
-			Deduction* pWin = new Deduction(implPtr, (HWND)hWnd);
-			return pWin;
-		}
-		int SetAgent()
-		{
-			xstring xfNodeAgentArea = L"agentarea";
-			xnode anode = GetAgentNode(xfNodeAgentArea);
-			if (m_agentNode)
-			{
-				SetAgentNode(anode, m_agentNode);
-			}
-			else
-			{
-				KXMLDOMElement xframeElement = GetElement();
-				KXMLDOMElement agent = xframeElement.selectSingleNode(L"agent/" + xfNodeAgentArea + L"[1]/*");
-				if (agent)
+				method:
+			[
+				int SetAgent()
 				{
-					xstring s = agent.xml();
-					m_agentNode = SetAgentNode(anode, s);
+					string xfNodeAgentArea = "agentarea";
+					xnode__ anode = new xnode__;
+					anode.setNativePointer(GetAgentNode(xfNodeAgentArea));
+					var xframeElement = GetElement();
+					var agent = xframeElement.selectSingleNode("agent/" + xfNodeAgentArea + "[1]/*");
+					if (agent)
+					{
+						string s = agent.xml;
+						SetAgentNodeContent(anode, s);
+					}
+					return 1;
 				}
-			}
-			return 1;
-		}
 
-		int OnRowChanged(TEvent* evt, LPARAM p)
-		{
-			DWNMHDR& hdr = *(DWNMHDR*)evt->notify.pnmh;
-			int row = hdr.row;
-			SetAgent();
-			return 1;
-		}
+				//焦点激活处理函数
+				int OnSetFocus(ref TEvent evt, int param)
+				{
+					SetAgent();
 
-		//焦点激活处理函数
-		int OnSetFocus(TEvent* evt, LPARAM param)
-		{
-			//重置工具条
-			SetAgent();
-			return 1;
-		}
+					//重置工具条
+					return 1;
+				}
 
-		//命令发布函数
-		int OnCmdDispatch(xstring comdid)
-		{
-			if (comdid == L"xmSave")
-			{
-				OnSave();
-				return 1;
-			}
-			if (comdid == L"xmSearch")
-			{
-				OnRetrieve(InvoiceNo, EntityID);
-				return 1;
-			}
-			if (comdid == L"xmClose")
-			{
-				CloseWindow();
-				return 1;
-			}
-			return 0;
-		}
+				int  OnRetrieve(string ls_orgid)
+				{
+					string query = "[MSSqlHrPosition.xq]";
+					xml__ x = new xml__;
+					x.setNativePointer(x.CreateInstance());
+					xaserverarg__ arg = new xaserverarg__;
+					arg.setNativePointer(arg.CreateInstance());
+					arg.AddArg("orgID", ls_orgid);
+					//if (xaserver__::ExecXQuery(GetServerUrl(),query,arg.GetString(),x)!=1)
+					if (url::post("OrganizationStruct/list.Position", arg.GetString(), x) != 1)
+					{
+						trace(x.GetXmlDoc().text);
+						return -1;
+					}
+					else
+					{
+						//trace(x.GetXml());
+							//dw_list.openUrl("组织架构.vface/template/HrPosition/list");	
+						dw_list.Retrieve(x);
+						dw_list.Redraw();
+					}
+					return 1;
+				}
 
-		//命令处理事件
-		int OnXCommand(TEvent* evt, LPARAM param)
-		{
-			return OnCmdDispatch(evt->xcommand.pStrID);
-		}
+				int OnTreeSelChanged(ref TXCommandEvent evt, int p)
+				{
+					int wid = tv_org.GetId();
+					int hitem = treeview__::GetSelectedItem(wid);
+					msxml::IXMLDOMElement ele = treeview__::GetItemData(wid, hitem);
+					string ls_orgid = ele.selectSingleNode("@guid").text;
+					sOrgID = ls_orgid + "";
+					sOrgName = ele.selectSingleNode("OrgName").text;
+					OnRetrieve(ls_orgid);
+					return 1;
+				}
 
-		xstring GetGuid()
-		{
-			return publiccode::GetGuid();
-		}
+				int OnSave()
+				{
+					xml__ x = new xml__;
+					x.setNativePointer(x.CreateInstance());
+					dw_list.AcceptText();
+					dw_list.DwUpdateAllToEx(x.GetXmlDoc());
 
-		int OnSave()
-		{
-			xml x;
-			
-			dw_list.AcceptText();
-			dw_list.DwUpdateAllToEx(x);
-			xaserverarg arg ;
-			
-			arg.AddArg(L"content", x.xml());
-			trace(x.xml());
-			if (xurl::get(L"/sale/data/AR/update/ARDeduction", arg.GetString(), x) != 1)
-			{
-				xstring error = x.text();
-				alert(L"err:" + error);
-				return 1;
-			}
-			xstring str = x.documentElement().getAttribute(L"text");
-			if (str == L"true")
-			{
-				dw_list.ResetUpdateStatus();
-				alert(L"保存成功!");
-			}
-			else
-			{
-				alert(L"保存失败!");
-			}
-			return 1;
-		}
+					string xdata = x.GetXml();
+					xaserverarg__ arg = new xaserverarg__;
+					arg.setNativePointer(arg.CreateInstance());
+					arg.AddArg("xdata", xdata);
+					//trace(x.GetXml());
+					//return 1;
 
-		int OnItemChanged(TEvent* evt, LPARAM p)
-		{
-			DWNMHDR& hdr = *(DWNMHDR*)evt->notify.pnmh;
-			xstring colname = hdr.colname;
-			xstring value = hdr.data;
-			int row = hdr.row;
-			xstring dwname = L"dw_list";
-			if (colname == L"DeductionAmount")
-			{
-				dw_list.SetItemString(row, L"SettlementAdjustID", EntityID);
-				xstring id = publiccode::GetGuid();
-				KXMLDOMElement ele = dw_list.GetRowElement(row);
-				ele.setAttribute(L"guid", id);
-				//dw_list.SetGuid(row,id);
-				//alert(ele.xml);
-				//alert(dw_list.GetGuid(row));
-			}
-			dw_list.Redraw();
-			return 1;
-		}
+					//string xAction="[MSSqlHrPositionUpdate.xa]";				
+					//if(xaserver__::ExecXAction(GetServerUrl(),xAction,arg.GetString())!=1)
+					if (url::post("OrganizationStruct/update.Position", arg.GetString(), x) != 1)
+					{
+						trace(x.GetXmlDoc().documentElement.text);
+						alert("保存失败1");
+					}
+					else
+					{
+						dw_list.ResetUpdateStatus();
+						alert("保存成功");
+					}
+					return 1;
+				}
 
-		int OnAttachEvent()
-		{
-			//绑定工具条点击事件
-			AttachEvent(L"WM_XCOMMAND", (FEvent)&Deduction::OnXCommand);
-			//获取焦点事件,用于重置工具条
-			AttachEvent(L"WM_SETFOCUS", (FEvent)&Deduction::OnSetFocus);
-			AttachEvent(L"dw_list", L"DWV_ROWFOCUSCHANGED", (FEvent)&Deduction::OnRowChanged);
-			AttachEvent(L"dw_list", L"DWV_ITEMCHANGED", (FEvent)&Deduction::OnItemChanged);
-			return 1;
-		}
+				int OnAddRow()
+				{
+					int wid = tv_org.GetId();
+					int hitem = treeview__::GetSelectedItem(wid);
+					if (!hitem)
+					{
+						alert("请选择组织架构!");
+						return 0;
+					}
+					//openUrl("组织架构.vface/xpage/Hr/HrPositionAdd", this);
+					OpenWindow("dev:xpage[HrPositionAdd.vx]", this);
+					return 1;
+				}
 
+				int OnInsertRow()
+				{
+					int row = dw_list.GetRow();
+					dw_list.InsertRow(row);
+					return 1;
+				}
 
-		int  OnRetrieve(xstring InvoiceNo, xstring EntityID)
-		{
-			xml x;
-			
-			xaserverarg arg ;
-		
-			arg.AddArg(L"InvoiceNo", InvoiceNo);
-			arg.AddArg(L"InvoiceNoEx", xcontrol(GetControl(L"search")).GetText());
-			arg.AddArg(L"EntityID", EntityID);
+				int OnDeleteRow()
+				{
+					int row = dw_list.GetRow();
+					if (row > 0)
+					{
+						string sPositionName = dw_list.GetItemString(row, "PositionName", 0);
+						int del_flog = win__::MessageBox(0, "确定要删除选中的岗位 " + sPositionName + " 吗?", "提示", 4);
+						if (del_flog == 7) { return 0; }
+						//判断HrEmployee里面是否存在该岗位
+						//string sPositionID = dw_list.GetItemString(row,"PositionID",0);
+						msxml::IXMLDOMElement e = dw_list.GetRowElement(row);
+						string sPositionID = e.selectSingleNode("@guid").text;
+						xml__ x = new xml__;
+						x.setNativePointer(x.CreateInstance());
+						xaserverarg__ args = new xaserverarg__;
+						args.setNativePointer(args.CreateInstance());
+						args.AddArg("guid", sPositionID);
+						//if(xaserver__::ExecXQuery(GetServerUrl(),"[HrpositionSel.xq]",args.GetString(),x)!=1)
+						if (url::post("OrganizationStruct/select.Position", args.GetString(), x) != 1)
+						{
+							trace(x.GetXml());
+							return 0;
+						}
+						var doc = x.GetXmlDoc();
+						string cnt = doc.text;
+						int ll_cnt = cnt.toInt();
+						if (ll_cnt == 0)	//判断HrEmploee里面是否存在该岗位
+						{
+							args.ClearArgs();
+							//xaserverarg__ Args = new xaserverarg__;
+							//Args.setNativePointer(Args.CreateInstance());
+							args.AddArg("guid", sPositionID);
+							//if(xaserver__::ExecXAction(GetServerUrl(),"[HrPositionDel.xa]",Args.GetString(),x)!=1)
+							if (url::post("OrganizationStruct/delete.Position", args.GetString(), x) != 1)
+							{
+								trace(x.GetXmlDoc().documentElement.text);
+								alert("删除失败");
+							}
+							else {
+								dw_list.DeleteRow(row);
+								alert("删除成功");
+							}
+						}
+						else
+						{
+							alert("其他地方已经使用该岗位,不允许删除!");
+							return 0;
+						}
+					}
+					return 1;
+				}
 
-			//trace(GetControl(L"search").GetText());
-			if (getUrl(L"/sale/data/AR/DeductionList", arg.GetString(), x) != 1)
-			{
-				trace(x.text());
-				return -1;
-			}
-			else
-			{
-				dw_list.Retrieve(x);
-				dw_list.Redraw();
-			}
-			dw_list.SetSelectionMode(1);
-			return 1;
-		}
+				int OnChildContent(ref TNotifyEvent evt, int param) {
+					ref DWNMHDR dwhdr = evt.pnmh;
+					string col = dwhdr.colname;
+					if (col != "") {
+						xml__ x = new xml__;
+						x.setNativePointer(x.CreateInstance());
+						xaserverarg__ arg = new xaserverarg__;
+						arg.setNativePointer(arg.CreateInstance());
+						string query;
+						query = "[IResourceMSSql.xq]";
+						if (col == "OrgID") {
+							arg.AddArg("ResourceType", "HrOrg");
+						}
+						else if (col == "JobID") {
+							arg.AddArg("ResourceType", "HrJob");
+						}
+						if (xaserver__::ExecXQuery(GetServerUrl(), query, arg.GetString(), x) == 1)
+							dwhdr.data = x.GetXml();
+						//trace(x.GetXml());
+					}
+					return 1;
+				}
 
-		int onload()
-		{
-			SetArg();
-			dw_list = GetControl(L"dw_list");
-			dw_list.openUrl(L"/sale/view/AR/template/Deduction");
+				//命令发布函数
+				int OnCmdDispatch(string comdid)
+				{
+					if (comdid == "Save")  OnSave();
+					else if (comdid == "AddRow") OnAddRow();
+					else if (comdid == "InsertRow") OnInsertRow();
+					else if (comdid == "DeleteRow") OnDeleteRow();
+					return 0;
+				}
 
-			dw_list.SetColumnState(L"ID", false);
-			dw_list.SetColumnState(L"GDNLineID", false);
-			dw_list.SetColumnState(L"SettlementAdjustID", false);
+				//命令处理事件
+				int OnXCommand(ref TXCommandEvent evt, int param)
+				{
+					return OnCmdDispatch(evt.pStrID);
+				}
 
+				int OnAttachEvent()
+				{
+					//绑定工具条点击事件
+					AttachEvent("WM_XCOMMAND", OnXCommand);
+					//获取焦点事件,用于重置工具条
+					AttachEvent("WM_SETFOCUS", OnSetFocus);
+					//获得树的选择事件
+					AttachEvent("tv_org", "TVN_SELCHANGED", OnTreeSelChanged);
+					//AttachEvent("dw_list","DWV_CHILDCONTENT",OnChildContent);
+					//AttachEvent("dw_list","DWV_ITEMCHANGED",OnItemChanged);	
+				}
 
-			if (GetWinParam())
-			{
-				xaserverarg arg = GetArg();
-				EntityID = arg.GetArgString(L"EntityID");
-				InvoiceNo = arg.GetArgString(L"InvoiceNo");
-			}
-			trace(InvoiceNo);
-			OnRetrieve(InvoiceNo, EntityID);
-			OnAttachEvent();
-			return 1;
-		}
+				int OnInitial()
+				{
+					SetAgent();
+					OnAttachEvent();
+					return 1;
+				}
 
-		int onloaded()
-		{
-			SetAgent();
+				int onload()
+				{
+					tv_org = new treeview__;
+					tv_org.setNativePointer(this.GetControl("tv_org"));
+					dw_list = new xdwgrid__;
+					dw_list.setNativePointer(this.GetControl("dw_list"));
+					dw_list.openUrl("组织架构.vface/template/HrPosition/list");
 
-			return 1;
-		}
-	};
+					OnInitial();
+
+					int wid = tv_org.GetId();
+					int root = treeview__::GetRootItem(wid);
+					treeview__::ExpandItem(wid, root);
+					//OnRetrieve();
+
+					return 1;
+				}
+			]
+
+		]
+]
\ No newline at end of file

--
Gitblit v1.9.3