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/HrOrgMaint.cpp |  443 +++++++++++++++++++++++++++++++------------------------
 1 files changed, 249 insertions(+), 194 deletions(-)

diff --git a/jrj/project/business/Company/HrOrgMaint.cpp b/jrj/project/business/Company/HrOrgMaint.cpp
index cb4571d..1989e32 100644
--- a/jrj/project/business/Company/HrOrgMaint.cpp
+++ b/jrj/project/business/Company/HrOrgMaint.cpp
@@ -1,211 +1,266 @@
-#include <wobject/xstring.hpp>
-#include <xcontrol/xtreeview.hpp>
-#include <xcontrol/xdwgrid.hpp>
+use "win.vl"
+use "treeview.vm"
+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 "list.vl"
+unit vbusiness.xpage
+[
+	HrOrgMaint is extend list;
+	about HrOrgMaint
+		[
+			control:
 
-#include "vbusiness/vframe/listwin.vframe.vbusiness.hpp"
-#include "viewobject/view.base.hpp"
+		method:
+			[
+				xdwtable__	dw_detail;
+				string		m_operate;
+				string		m_sguid;
+				string		m_tvOrgID;
+				string		m_tvOrgName;
+				string		m_tvRootOrgID;
+				string		m_tvRootOrgName;
 
-using xml = KXMLDOMDocument;
-	class __declspec(dllexport) Deduction : public xframe
-	{
-	public:
-		xdwgrid	dw_list;
-		xstring EntityID;
-		xstring InvoiceNo;
-
-		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)
+				xnode__	m_agentNode;	//Agent Condition
+				string	m_agentCond;	//Agent Node	
+				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 p)
+				{
+					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()
+				{
+					xml__ x = new xml__;
+					x.setNativePointer(x.CreateInstance());
+					xaserverarg__ arg = new xaserverarg__;
+					arg.setNativePointer(arg.CreateInstance());
+					arg.AddArg("guid", m_sguid);
+					if (url::get("OrganizationStruct/detail.HrOrg", arg.GetString(), x) != 1)
+					{
+						trace(x.GetXmlDoc().text);
+						return -1;
+					}
+					else
+					{
+						trace(x.GetXml());
+						dw_detail.Retrieve(x);
+						dw_detail.Redraw();
+					}
+					return 1;
+				}
 
-		//命令处理事件
-		int OnXCommand(TEvent* evt, LPARAM param)
-		{
-			return OnCmdDispatch(evt->xcommand.pStrID);
-		}
+				int OnSave()
+				{
+					int hIcon = xutil__::SetCursorWait();
+					//dw_detail.AcceptText();					
+					string val;
+					xml__ x = new xml__;
+					x.setNativePointer(x.CreateInstance());
+					var xdoc = x.GetXmlDoc();
+					dw_detail.DwUpdateAllTo(xdoc);
+					val = xdoc.xml;
+					//trace(val);
+					//return 1;
+					xaserverarg__ args = new xaserverarg__;
+					args.setNativePointer(args.CreateInstance());
+					args.AddArg("content", val);
+					//trace(val);
+					xml__ x1 = new xml__;
+					x1.setNativePointer(x1.CreateInstance());
+					if (url::post("OrganizationStruct/update.HrOrg", args.GetString(), x1) != 1)
+					{
+						string error = x1.GetXmlDoc().text;
+						trace(error);
+					}
+					else
+					{
+						win__::MessageBox(GetHWND(), "保存成功!", "提示", 0);
+					}
+					dw_detail.ResetUpdateStatus();
+					xutil__::RestoreCursor(hIcon);
+					return 1;
+				}
 
-		xstring GetGuid()
-		{
-			return publiccode::GetGuid();
-		}
+				int OnNew()
+				{
+					dw_detail.openUrl("组织架构.vface/template/HrOrg/detail");
+					if (m_operate == "new0")
+					{
+						dw_detail.SetItemString(1, "ParentOrgID", m_tvOrgID);
+						dw_detail.SetItemDisplayString(1, "ParentOrgID", m_tvOrgName);
+					}
+					dw_detail.SetItemString(1, "Status", "Y");
+					//dw_detail.SetItemDisplayString(1,"Status","有效");
+					return 1;
+				}
 
-		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;
-		}
+				//命令发布函数
+				int OnCmdDispatch(string comdid)
+				{
+					if (comdid == "New") OnNew();
+					if (comdid == "Save") OnSave();
+					if (comdid == "xmOk") OnSave();
+					if (comdid == "xmCancel") CloseWindow();
+					return 0;
+				}
 
-		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;
-		}
+				//命令处理事件
+				int OnXCommand(ref TXCommandEvent evt, int p)
+				{
+					return OnCmdDispatch(evt.pStrID);
+				}
 
-		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 OnChildContent(ref TNotifyEvent evt, int p)
+				{
+					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 == "OrgTypeID") {
+							arg.AddArg("ResourceType", "HrOrgType");//组织类型	
+						}
+						else if (col == "OrgAddress000") {
+							arg.AddArg("ResourceType", "HR_Address");//组织地址	
+						}
+						else if (col == "CompanyID") {
+							arg.AddArg("ResourceType", "CompanyInfo");//所属法人	
+						}
+						else if (col == "OrgProLine") {
+							arg.AddArg("ResourceType", "OrgProLine");//产品线
+						}
+						if (xaserver__::ExecXQuery(GetServerUrl(), query, arg.GetString(), x) == 1)
+							dwhdr.data = x.GetXml();
+						//trace(x.GetXml());
+					}
+					return 1;
+				}
+				int OnClicked(ref TNotifyEvent evt, int p)
+				{
+					ref DWNMHDR  hdr = evt.pnmh;
+
+					xaserverarg__ arg = new xaserverarg__;
+					arg.setNativePointer(arg.CreateInstance());
+
+					string colname = hdr.colname;
+					if (colname == "ParentOrgID")
+					{
+						openUrl("组织架构.vface/xpage/HrOrg/Chart", arg);
+						//trace(arg.GetString());
+						string comdid = arg.GetArgString("comdid");
+						if (comdid == "xmOk")
+						{
+							string OrgName = arg.GetArgString("OrgName");
+							string OrgID = arg.GetArgString("OrgId");
+							dw_detail.SetItemDisplayString(1, "ParentOrgID", OrgName);
+							dw_detail.SetItemString(1, "ParentOrgID", OrgID);
+							dw_detail.Redraw();
+						}
+					}
+					if (colname == "LeaderID")
+					{
+						openUrl("组织架构.vface/xpage/hremployee/select", arg);
+						comdid = arg.GetArgString("comdid");
+						if (comdid == "xmOk")
+						{
+							string sPersonID = arg.GetArgString("sPersonID");
+							//trace(sPersonID);
+							string sPersonName = arg.GetArgString("sPersonName");
+							dw_detail.SetItemDisplayString(1, colname, sPersonName);
+							dw_detail.SetItemString(1, colname, sPersonID);
+							dw_detail.Redraw();
+						}
+					}
+					return 1;
+				}
+
+				int OnAttachEvent()
+				{
+					//绑定工具条点击事件
+					AttachEvent("WM_XCOMMAND", OnXCommand);
+					//获取焦点事件,用于重置工具条
+					AttachEvent("WM_SETFOCUS", OnSetFocus);
+					//下拉框  提供内容
+					AttachEvent("dw_detail", "DWV_CHILDCONTENT", OnChildContent);
+					AttachEvent("dw_detail", "DWV_ITEMFOCUSCHANGED", OnClicked);
+				}
 
 
-		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 OnInitial()
+				{
+					SetAgent();
+					OnAttachEvent();
+					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 onload()
+				{
+					dw_detail = new xdwtable__;
+					dw_detail.setNativePointer(this.GetControl("dw_detail"));
+					dw_detail.openUrl("组织架构.vface/template/HrOrg/detail");
+					OnInitial();
 
-		int onload()
-		{
-			SetArg();
-			dw_list = GetControl(L"dw_list");
-			dw_list.openUrl(L"/sale/view/AR/template/Deduction");
+					xaserverarg__ arg = new xaserverarg__;
+					arg.setNativePointer(arg.CreateInstance());
+					arg = this.GetParam();
+					if (arg)
+					{
+						m_operate = arg.GetArgString("operate");
+						m_sguid = arg.GetArgString("guid");
+						m_tvOrgID = arg.GetArgString("tvOrgID");//组织树的ID
+						m_tvOrgName = arg.GetArgString("tvOrgName");//组织树的Name
+						m_tvRootOrgID = arg.GetArgString("tvRootOrgID");//组织树的ID
+						m_tvRootOrgName = arg.GetArgString("tvRootOrgName");//组织树的Name
+						//alert(m_tvRootOrgName);
+					}
+					/*if ( m_sguid == "" || m_sguid == nil)
+					{
+						m_sguid = win__::GetGuid();//错误
+						trace(m_sguid);
+					}*/
+					if (m_sguid != "") {
+						OnRetrieve();
+					};
+					if (m_operate == "new0")
+					{
+						//trace(m_tvOrgID);
+						dw_detail.SetItemString(1, "ParentOrgID", m_tvOrgID);
+						dw_detail.SetItemDisplayString(1, "ParentOrgID", m_tvOrgName);
+						dw_detail.SetItemString(1, "CompanyID", m_tvRootOrgID);
+						dw_detail.SetItemDisplayString(1, "CompanyID", m_tvRootOrgName);
+						dw_detail.SetItemString(1, "Status", "Y");
+						//dw_detail.SetItemDisplayString(1,"Status","有效");
+					}
+					return 1;
+				}
+			]
 
-			dw_list.SetColumnState(L"ID", false);
-			dw_list.SetColumnState(L"GDNLineID", false);
-			dw_list.SetColumnState(L"SettlementAdjustID", false);
-
-
-			if (GetWinParam())
-			{
-				xaserverarg arg = GetArg();
-				EntityID = arg.GetArgString(L"EntityID");
-				InvoiceNo = arg.GetArgString(L"InvoiceNo");
-			}
-			trace(InvoiceNo);
-			OnRetrieve(InvoiceNo, EntityID);
-			OnAttachEvent();
-			return 1;
-		}
-
-		int onloaded()
-		{
-			SetAgent();
-
-			return 1;
-		}
-	};
+		]
+]
\ No newline at end of file

--
Gitblit v1.9.3