#include <wobject/xstring.hpp>
|
#include <xcontrol/xtreeview.hpp>
|
#include <xcontrol/xdwgrid.hpp>
|
#include <wobject/xdouble.hpp>
|
#include <xcontrol/xlayersheet.hpp>
|
|
#include "vbusiness/vframe/listwin.vframe.vbusiness.hpp"
|
#include "viewobject/view.base.hpp"
|
#include "hremployee.hpp"
|
|
using xml = KXMLDOMDocument;
|
class __declspec(dllexport) HrEmployeeAdd : public xframe
|
{
|
public:
|
HrEmployee* lw_obj;
|
xdwgrid dw_list;
|
|
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(TEvent* evt, LPARAM param)
|
{
|
SetAgent();
|
//ÖØÖù¤¾ßÌõ
|
return 1;
|
}
|
|
int OnRetrieve()
|
{
|
xcontrol xc = 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.text());
|
return -1;
|
}
|
else
|
{
|
dw_list.Retrieve(x);
|
dw_list.Redraw();
|
dw_list.SetReadOnly(true);
|
}
|
return 1;
|
}
|
|
int OnOK()
|
{
|
if (GetWinParam())
|
{
|
lw_obj = (HrEmployee*)GetWinParam();
|
}
|
else
|
return 0;
|
|
int row = dw_list.GetNextSelectRow(1);
|
if (row < 1)
|
{
|
alert(L"ÇëÑ¡ÔñÈËÔ±!");
|
return 1;
|
}
|
|
xstring sPositionID, sPositionName;
|
xstring sOrgID, sOrgName;
|
xstring sJobID, sJobName;
|
KXMLDOMElement ele = lw_obj->tv_org.GetItemData(lw_obj->tv_org.GetSelectedItem());
|
if (ele)
|
{
|
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)
|
{
|
KXMLDOMElement e = dw_list.GetRowElement(row);
|
xstring sEmployeeNo = e.selectSingleNode(L"EmployeeNo").text();
|
xstring sPersonID = e.selectSingleNode(L"PersonID").text();
|
xstring sPersonName = e.selectSingleNode(L"Name").text();
|
|
int nRow = lw_obj->dw_emp.InsertRow(0);
|
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, 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, L"Status", L"Y");
|
lw_obj->dw_emp.SetItemDisplayString(nRow, L"Status", L"ÓÐЧ");
|
xstring sdate = publiccode::GetCurrentDate();
|
lw_obj->dw_emp.SetItemString(nRow, L"StartDate", sdate);
|
lw_obj->dw_emp.SetItemString(nRow, L"EndDate", L"2050-12-31");
|
|
row = dw_list.GetNextSelectRow(row + 1);
|
}
|
CloseWindow();
|
return 1;
|
}
|
|
//ÃüÁî·¢²¼º¯Êý
|
int OnCmdDispatch(xstring comdid)
|
{
|
if (comdid == L"xmOk")
|
OnOK();
|
else if (comdid == L"query")
|
OnRetrieve();
|
else if (comdid == L"xmCancel")
|
CloseWindow();
|
return 0;
|
}
|
|
//ÃüÁî´¦Àíʼþ
|
int OnXCommand(TEvent* evt, LPARAM param)
|
{
|
return OnCmdDispatch(evt->xcommand.pStrID);
|
}
|
|
int OnAttachEvent()
|
{
|
//°ó¶¨¹¤¾ßÌõµã»÷ʼþ
|
AttachEvent(L"WM_XCOMMAND", (FEvent)&HrEmployeeAdd::OnXCommand);
|
//»ñÈ¡½¹µãʼþ£¬ÓÃÓÚÖØÖù¤¾ßÌõ
|
AttachEvent(L"WM_SETFOCUS", (FEvent)&HrEmployeeAdd::OnSetFocus);
|
return 1;
|
}
|
|
int OnInitial()
|
{
|
SetAgent();
|
OnAttachEvent();
|
return 1;
|
}
|
|
int onload()
|
{
|
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);
|
|
OnInitial();
|
OnRetrieve();
|
|
return 1;
|
}
|
};
|