From 871adf001724fb4af2552ab4f580939b9bbc2dda Mon Sep 17 00:00:00 2001 From: LiFan <2308045698@qq.com> Date: 星期一, 15 七月 2024 16:34:56 +0800 Subject: [PATCH] update Company --- jrj/project/business/Company/HrEmployeeAdd.cpp | 191 ++++++++++++++++++++++++----------------------- 1 files changed, 97 insertions(+), 94 deletions(-) diff --git a/jrj/project/business/Company/HrEmployeeAdd.cpp b/jrj/project/business/Company/HrEmployeeAdd.cpp index 32d7ae0..904dfff 100644 --- a/jrj/project/business/Company/HrEmployeeAdd.cpp +++ b/jrj/project/business/Company/HrEmployeeAdd.cpp @@ -1,51 +1,53 @@ -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" -use "dev:code[HrEmployee.vx]" -use "publiccode.vl" +#include <wobject/xstring.hpp> +#include <xcontrol/xtreeview.hpp> +#include <xcontrol/xdwgrid.hpp> +#include <wobject/xdouble.hpp> +#include <xcontrol/xlayersheet.hpp> -//unit vclient.vobject tpp -unit vbusiness.xpage -[ - HrEmployeeAdd is extend frame; - about HrEmployeeAdd - [ - field: - [ +#include "vbusiness/vframe/listwin.vframe.vbusiness.hpp" +#include "viewobject/view.base.hpp" + +using xml = KXMLDOMDocument; +class __declspec(dllexport) HrEmployeeAdd : public xframe +{ +public: HrEmployee lw_obj; - xdwgrid__ dw_list; + xdwgrid dw_list; - xnode__ m_agentNode; //Agent Condition - string m_agentCond; //Agent Node - string m_sTxt; - ] - - method: - [ - int SetAgent() - { - 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; - } + xnode m_agentNode; //Agent Condition + xstring m_agentCond; //Agent Node + xstring m_sTxt; +public: + HrEmployeeAdd(void* implPtr, HWND hWnd) :xframe(implPtr, hWnd) {} +public: + static HrEmployeeAdd* CreateInstance(void* implPtr, void* hWnd) + { + HrEmployeeAdd* pWin = new HrEmployeeAdd(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) + { + xstring s = agent.xml(); + m_agentNode = SetAgentNode(anode, s); + } + } + return 1; + } //焦点激活处理函数 - int OnSetFocus(ref TEvent evt, int param) + int OnSetFocus(TEvent* evt, LPARAM param) { SetAgent(); //重置工具条 @@ -54,17 +56,17 @@ int OnRetrieve() { - control__ xc = new control__; - xc.setNativePointer(this.GetControl("QueryTxt")); - m_sTxt = xc.GetText() + ""; - xml__ x = new xml__; - x.setNativePointer(x.CreateInstance()); - xaserverarg__ arg = new xaserverarg__; - arg.setNativePointer(arg.CreateInstance()); - arg.AddArg("sTxt", m_sTxt); - if (url::post("OrganizationStruct/select.Employee", arg.GetString(), x) != 1) + control xc = new control; + xc.setNativePointer(GetControl(L"QueryTxt")); + m_sTxt = xc.GetText() + L""; + xml x ; + + xaserverarg arg; + + arg.AddArg(L"sTxt", m_sTxt); + if (xurl::post(L"OrganizationStruct/select.Employee", arg.GetString(), x) != 1) { - trace(x.GetXmlDoc().text); + trace(x.text()); return -1; } else @@ -90,50 +92,50 @@ int row = dw_list.GetNextSelectRow(1); if (row < 1) { - alert("请选择人员!"); + alert(L"请选择人员!"); return 1; } - string sPositionID, sPositionName; - string sOrgID, sOrgName; - string sJobID, sJobName; + xstring sPositionID, sPositionName; + xstring sOrgID, sOrgName; + xstring sJobID, sJobName; int wid = lw_obj.tv_org.GetId(); - int hitem = treeview__::GetSelectedItem(wid); - msxml::IXMLDOMElement ele = treeview__::GetItemData(wid, hitem); + int hitem = treeview::GetSelectedItem(wid); + KXMLDOMElement ele = treeview::GetItemData(wid, hitem); if (ele) { - sPositionID = ele.SelectSingleNode("id").text; - sPositionName = ele.SelectSingleNode("name").text; - sOrgID = ele.SelectSingleNode("OrgID").text; - sOrgName = ele.SelectSingleNode("OrgName").text; - sJobID = ele.SelectSingleNode("JobID").text; - sJobName = ele.SelectSingleNode("JobName").text; + sPositionID = ele.selectSingleNode(L"id").text(); + sPositionName = ele.selectSingleNode(L"name").text(); + sOrgID = ele.selectSingleNode(L"OrgID").text(); + sOrgName = ele.selectSingleNode(L"OrgName").text(); + sJobID = ele.selectSingleNode(L"JobID").text(); + sJobName = ele.selectSingleNode(L"JobName").text(); } while (row > 0) { - msxml::IXMLDOMElement e = dw_list.GetRowElement(row); - string sEmployeeNo = e.selectSingleNode("EmployeeNo").text + ""; - string sPersonID = e.selectSingleNode("PersonID").text + ""; - string sPersonName = e.selectSingleNode("Name").text + ""; + KXMLDOMElement e = dw_list.GetRowElement(row); + xstring sEmployeeNo = e.selectSingleNode(L"EmployeeNo").text + L""; + xstring sPersonID = e.selectSingleNode(L"PersonID").text + L""; + xstring sPersonName = e.selectSingleNode(L"Name").text + L""; int nRow = lw_obj.dw_emp.InsertRow(0); - lw_obj.dw_emp.SetItemString(nRow, "EmployeeNo", sEmployeeNo); - lw_obj.dw_emp.SetItemString(nRow, "PersonID", sPersonID); - lw_obj.dw_emp.SetItemDisplayString(nRow, "PersonID", sPersonName); + lw_obj.dw_emp.SetItemString(nRow, L"EmployeeNo", sEmployeeNo); + lw_obj.dw_emp.SetItemString(nRow, L"PersonID", sPersonID); + lw_obj.dw_emp.SetItemDisplayString(nRow, L"PersonID", sPersonName); - lw_obj.dw_emp.SetItemString(nRow, "PositionID", sPositionID); - lw_obj.dw_emp.SetItemDisplayString(nRow, "PositionID", sPositionName); - lw_obj.dw_emp.SetItemString(nRow, "OrgID", sOrgID); - lw_obj.dw_emp.SetItemDisplayString(nRow, "OrgID", sOrgName); - lw_obj.dw_emp.SetItemString(nRow, "JobID", sJobID); - lw_obj.dw_emp.SetItemDisplayString(nRow, "JobID", sJobName); + lw_obj.dw_emp.SetItemString(nRow, L"PositionID", sPositionID); + lw_obj.dw_emp.SetItemDisplayString(nRow, L"PositionID", sPositionName); + lw_obj.dw_emp.SetItemString(nRow, L"OrgID", sOrgID); + lw_obj.dw_emp.SetItemDisplayString(nRow, L"OrgID", sOrgName); + lw_obj.dw_emp.SetItemString(nRow, L"JobID", sJobID); + lw_obj.dw_emp.SetItemDisplayString(nRow, L"JobID", sJobName); - lw_obj.dw_emp.SetItemString(nRow, "Status", "Y"); - lw_obj.dw_emp.SetItemDisplayString(nRow, "Status", "有效"); - string sdate = publiccode::GetCurDate() + ""; - lw_obj.dw_emp.SetItemString(nRow, "StartDate", sdate + ""); - lw_obj.dw_emp.SetItemString(nRow, "EndDate", "2050-12-31"); + lw_obj.dw_emp.SetItemString(nRow, L"Status", L"Y"); + lw_obj.dw_emp.SetItemDisplayString(nRow, L"Status", L"有效"); + xstring sdate = publiccode::GetCurDate() + L""; + lw_obj.dw_emp.SetItemString(nRow, L"StartDate", sdate + L""); + lw_obj.dw_emp.SetItemString(nRow, L"EndDate", L"2050-12-31"); row = dw_list.GetNextSelectRow(row + 1); } @@ -142,29 +144,30 @@ } //命令发布函数 - int OnCmdDispatch(string comdid) + int OnCmdDispatch(xstring comdid) { - if (comdid == "xmOk") + if (comdid == L"xmOk") OnOK(); - else if (comdid == "query") + else if (comdid == L"query") OnRetrieve(); - else if (comdid == "xmCancel") + else if (comdid == L"xmCancel") CloseWindow(); return 0; } //命令处理事件 - int OnXCommand(ref TXCommandEvent evt, int param) + int OnXCommand(TEvent* evt, LPARAM param) { - return OnCmdDispatch(evt.pStrID); + return OnCmdDispatch(evt->xcommand.pStrID); } int OnAttachEvent() { //绑定工具条点击事件 - AttachEvent("WM_XCOMMAND", OnXCommand); + AttachEvent(L"WM_XCOMMAND", (FEvent)&HrEmployeeAdd::OnXCommand); //获取焦点事件,用于重置工具条 - AttachEvent("WM_SETFOCUS", OnSetFocus); + AttachEvent(L"WM_SETFOCUS", (FEvent)&HrEmployeeAdd::OnSetFocus); + return 1; } int OnInitial() @@ -176,9 +179,9 @@ int onload() { - dw_list = new xdwgrid__; - dw_list.setNativePointer(this.GetControl("dw_list")); - dw_list.openUrl("组织架构.vface/template/HrEmployee/PersonSel"); + dw_list = new xdwgrid; + dw_list.setNativePointer(GetControl(L"dw_list")); + dw_list.openUrl(L"组织架构.vface/template/HrEmployee/PersonSel"); dw_list.SetSelectionMode(3); //3 dw_list.SetReadOnly(true); -- Gitblit v1.9.3