From 26c872c4c2c1e56925f755e927b58fbe07da2bcb Mon Sep 17 00:00:00 2001 From: xj qian <qianxj15@sina.com> Date: 星期五, 19 七月 2024 13:56:44 +0800 Subject: [PATCH] update quote --- jrj/project/business/Company/CompanyMaint.cpp | 558 +++++++++++++++++++++++++++++++++++++------------------ 1 files changed, 375 insertions(+), 183 deletions(-) diff --git a/jrj/project/business/Company/CompanyMaint.cpp b/jrj/project/business/Company/CompanyMaint.cpp index cb4571d..518d0ae 100644 --- a/jrj/project/business/Company/CompanyMaint.cpp +++ b/jrj/project/business/Company/CompanyMaint.cpp @@ -1,211 +1,403 @@ #include <wobject/xstring.hpp> #include <xcontrol/xtreeview.hpp> #include <xcontrol/xdwgrid.hpp> +#include <wobject/xdouble.hpp> +#include <xcontrol/xlayersheet.hpp> +#include <xcontrol/xdwpages.hpp> #include "vbusiness/vframe/listwin.vframe.vbusiness.hpp" #include "viewobject/view.base.hpp" using xml = KXMLDOMDocument; - class __declspec(dllexport) Deduction : public xframe +class __declspec(dllexport) CompanyMaint : public xframe +{ +public: + xlayersheet m_layer; + xdwtable dw_detail; + xdwtable dw_bank; + xstring m_operate; + xstring m_sguid; + + xnode m_agentNode; //Agent Condition + xstring m_agentCond; //Agent Node +public: + CompanyMaint(void* implPtr, HWND hWnd) :xframe(implPtr, hWnd) {} +public: + static CompanyMaint* CreateInstance(void* implPtr, void* hWnd) { - public: - xdwgrid dw_list; - xstring EntityID; - xstring InvoiceNo; + CompanyMaint* pWin = new CompanyMaint(implPtr, (HWND)hWnd); + return pWin; + } - xnode m_agentNode; //Agent Condition - - public: - Deduction(void* implPtr, HWND hWnd) :xframe(implPtr, hWnd) {} - public: - static Deduction* CreateInstance(void* implPtr, void* hWnd) + int SetAgent() + { + xstring xfNodeAgentArea = L"agentarea"; + xnode anode = GetAgentNode(xfNodeAgentArea); + if (m_agentNode) { - Deduction* pWin = new Deduction(implPtr, (HWND)hWnd); - return pWin; + SetAgentNode(anode, m_agentNode); } - int SetAgent() + else { - xstring xfNodeAgentArea = L"agentarea"; - xnode anode = GetAgentNode(xfNodeAgentArea); - if (m_agentNode) + KXMLDOMElement xframeElement = GetElement(); + KXMLDOMElement agent = xframeElement.selectSingleNode(L"agent/" + xfNodeAgentArea + L"[1]/*"); + if (agent) { - SetAgentNode(anode, m_agentNode); + xstring s = agent.xml(); + m_agentNode = SetAgentNode(anode, s); } - else + } + return 1; + } + + //焦点激活处理函数 + int OnSetFocus(TEvent* evt, LPARAM param) + { + SetAgent(); + + //重置工具条 + return 1; + } + + int OnPreSave() + { + xdwtable dw = new xdwtable; + dw.setNativePointer(dw_detail.FindDwTable(L"CompanyInfo")); + xstring sPartyNo = dw.GetItemString(1, L"PartyNo"); + if (sPartyNo == L"") + { + xstring sGetNo = publiccode::GetIdentityNo(L""); + dw.SetItemString(1, L"PartyNo", sGetNo); + //alert(L"公司编号为空!"); + //return -1; + } + xstring sPartyName = dw.GetItemString(1, L"Name"); + if (sPartyName == L"") + { + alert(L"公司名称为空!"); + return -1; + } + + xstring suserid = publiccode::GetUser().id; + xstring sdate = publiccode::GetCurrentDate(); + dw.SetItemString(1, L"ModifierID", suserid); + dw.SetItemString(1, L"ModifyDate", sdate); + + dw.setNativePointer(dw_bank.FindDwTable(L"item", 0)); + if (dw) + { + xstring sno; + xstring sname; + xstring status; + + int i; + int row = dw.GetRowCount(); + for (i = 1; i <= row; i++) { - KXMLDOMElement xframeElement = GetElement(); - KXMLDOMElement agent = xframeElement.selectSingleNode(L"agent/" + xfNodeAgentArea + L"[1]/*"); - if (agent) + status = dw.GetItemString(i, L"Status") + L""; + if (status == L"") { - xstring s = agent.xml(); - m_agentNode = SetAgentNode(anode, s); + dw.SetItemString(i, L"Status", L"Y"); + //alert(L"第"+i.toString()+L"行状态为空"); + //return -1; } + /* + sno=dw.GetItemString(i,L"BankAccountNo",0)+L""; + sname=dw.GetItemString(i,L"BankName",0)+L""; + status=dw.GetItemString(i,L"Status",0)+L""; + if (sno==L"" || sno==nil) + { + if(sname !=L"" && sname != nil) + { + alert(L"第"+i.toString()+L"行银行编号为空"); + return -1; + } + } + + if (sname==L"" || sname==nil) + { + if(sno !=L"" && sno != nil) + { + alert(L"第"+i.toString()+L"行银行名称为空"); + return -1; + } + } + else + { + if (status==L"" || status==nil) + { + dw.SetItemString(i,L"Status",L"Y"); + //alert(L"第"+i.toString()+L"行状态为空"); + //return -1; + } + } + */ } - return 1; } + return 1; + } - int OnRowChanged(TEvent* evt, LPARAM p) - { - DWNMHDR& hdr = *(DWNMHDR*)evt->notify.pnmh; - int row = hdr.row; - SetAgent(); - return 1; - } + int OnSave() + { + dw_detail.AcceptText(); + dw_bank.AcceptText(); + int rec; + rec = OnPreSave(); + if (rec == -1) + return -1; - //焦点激活处理函数 - int OnSetFocus(TEvent* evt, LPARAM param) - { - //重置工具条 - SetAgent(); - return 1; - } + HCURSOR hIcon = xutil::SetCursorWait(); + + xstring val, val2; + xml x; - //命令发布函数 - 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 OnXCommand(TEvent* evt, LPARAM param) - { - return OnCmdDispatch(evt->xcommand.pStrID); - } - - xstring GetGuid() - { - return publiccode::GetGuid(); - } - - 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 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 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 OnRetrieve(xstring InvoiceNo, xstring EntityID) - { - xml x; - - xaserverarg arg ; + auto xdoc = x; + dw_detail.DwUpdateAllTo(xdoc); + //val = xdoc.xml ; + dw_bank.DwUpdateAllTo(xdoc); + val = xdoc.xml(); + trace(val); + xaserverarg args; + args.setNativePointer(args.CreateInstance()); + args.AddArg(L"content", val); + args.AddArg(L"dbmap", L"CompanyInfo.dbmap"); + //trace(m_EntityValueEx); + xml x1; - arg.AddArg(L"InvoiceNo", InvoiceNo); - arg.AddArg(L"InvoiceNoEx", xcontrol(GetControl(L"search")).GetText()); - arg.AddArg(L"EntityID", EntityID); - - //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() + if (xurl::post(L"OrganizationStruct/update.companyinfoex", args.GetString(), x1) != 1) + //if (xaserver::ExecXAction(L"",L"[update.CompanyInfoEx.xa]",args.GetString(),x1) !=1) { - SetArg(); - dw_list = GetControl(L"dw_list"); - dw_list.openUrl(L"/sale/view/AR/template/Deduction"); - - 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; + xstring error = x1.text(); + trace(error); } - - int onloaded() + else { - SetAgent(); - - return 1; + trace(x1.xml()); + if (x1.selectSingleNode(L"error")) + { + alert(L"保存出错2!"); + return 0; + } + MessageBox(GetHWND(), L"保存成功!", L"提示", 0); } - }; + xutil::RestoreCursor(hIcon); + dw_detail.ResetUpdateStatus(); + dw_bank.ResetUpdateStatus(); + dw_detail.DwUpdateAllTo(x); + val = x.xml(); + trace(val); + return 1; + } + + int OnItemChanged(TEvent* evt, LPARAM p) + { + DWNMHDR& dwhdr = *(DWNMHDR*)evt->notify.pnmh; + int row = dwhdr.row; + xstring col = dwhdr.colname; + xstring data = dwhdr.data; + if (col == L"Name") + { + xml x; + + xaserverarg arg; + + arg.AddArg(L"Name", data); + } + + return 1; + } + + int OnChildContent(TEvent* evt, LPARAM p) + { + DWNMHDR& dwhdr = *(DWNMHDR*)evt->notify.pnmh; + xstring col = dwhdr.colname; + if (col != L"") { + xml x; + + xaserverarg arg; + + xstring query; + query = L"[IResourceMSSql.xq]"; + if (col == L"TradeType") { + arg.AddArg(L"ResourceType", L"TradeType");//贸易方式 + } + if (xaserver::ExecXQuery(GetServerUrl(), query, arg.GetString(), x) == 1) + dwhdr.data = x.xml(); + //trace(x.GetXml()); + } + return 1; + } + + int OnAddRow() + { + int h = m_layer.GetSheetIndex(); + if (h == 1) + { + xdwtable dw = new xdwtable; + dw.setNativePointer(dw_bank.GetCurTable()); + xstring dw_n = dw.GetDwName(); + if (dw_n == L"item") + { + int row = dw.InsertRow(0); + dw.SetItemString(row, L"Status", L"Y"); + } + } + return 1; + } + + int OnInsertRow() + { + int h = m_layer.GetSheetIndex(); + if (h == 1) + { + xdwtable dw = new xdwtable; + dw.setNativePointer(dw_bank.GetCurTable()); + xstring dw_n = dw.GetDwName(); + if (dw_n == L"item") + { + int row = dw.GetRow(); + int crow = dw.InsertRow(row); + dw.SetItemString(crow, L"Status", L"Y"); + } + } + return 1; + } + + int OnDeleteRow() + { + int h = m_layer.GetSheetIndex(); + if (h == 1) + { + xdwtable dw = new xdwtable; + dw.setNativePointer(dw_bank.GetCurTable()); + xstring dw_n = dw.GetDwName(); + if (dw_n == L"item") + { + int row = dw.GetRow(); + dw.DeleteRow(row); + } + } + return 1; + } + + //命令发布函数 + int OnCmdDispatch(xstring comdid) + { + if (comdid == L"Save") OnSave(); + else if (comdid == L"AddRow") OnAddRow(); + else if (comdid == L"InsertRow") OnInsertRow(); + else if (comdid == L"DeleteRow") OnDeleteRow(); + return 0; + } + + //命令处理事件 + int OnXCommand(TEvent* evt, LPARAM param) + { + return OnCmdDispatch(evt->xcommand.pStrID); + } + + int OnAttachEvent() + { + //绑定工具条点击事件 + AttachEvent(L"WM_XCOMMAND", (FEvent)&CompanyMaint::OnXCommand); + //获取焦点事件,用于重置工具条 + AttachEvent(L"WM_SETFOCUS", (FEvent)&CompanyMaint::OnSetFocus); + //下拉框 提供内容 + AttachEvent(L"dw_detail", L"DWV_CHILDCONTENT", (FEvent)&CompanyMaint::OnChildContent); + AttachEvent(L"dw_detail", L"DWV_ITEMCHANGED", (FEvent)&CompanyMaint::OnItemChanged); + return 1; + } + + int OnRetrieve() + { + xml x; + + xaserverarg arg; + + arg.AddArg(L"guid", m_sguid); + //trace(m_sguid); + //if (xurl::get(L"OrganizationStruct/detail.CompanyInfo",arg.GetString(),x) != 1) + if (xurl::post(L"OrganizationStruct/detail.CompanyInfo", arg.GetString(), x) != 1) + { + trace(x.text()); + return -1; + } + else + { + dw_detail.Retrieve(x); + dw_detail.Redraw(); + dw_bank.Retrieve(x); + dw_bank.Redraw(); + //trace(x.GetXml()); + } + + return 1; + } + + int OnInitial() + { + SetArg(); + SetAgent(); + xaserverarg arg; + arg = GetArg(); + if (arg) + { + m_operate = arg.GetArgString(L"operate"); + m_sguid = arg.GetArgString(L"guid"); + } + /*if ( m_sguid == L"" || m_sguid == nil) + { + m_sguid = win::GetGuid(); + trace(m_sguid); + }*/ + + OnAttachEvent(); + + return 1; + } + + int onload() + { + m_layer = GetControl(L"cTab"); + + dw_detail = GetControl(L"dw_detail"); + dw_detail.openUrl(L"组织架构.vface/template/company/detail"); + dw_detail.SetColHeaderHeight(0); + dw_detail.SetRowSelectorWidth(0); + dw_bank = GetControl(L"dw_bank"); + dw_bank.openUrl(L"组织架构.vface/template/company/bank"); + + OnInitial(); + if (m_sguid != L"") { + OnRetrieve(); + } + else { + xdwtable dw = dw_detail.FindDwTable(L"CompanyInfo", 0); + dw.SetItemString(1, L"Status", L"1"); + dw.SetItemString(1, L"InternalFlag", L"Y"); + dw.SetItemString(1, L"Type", L"0"); + xstring suserid = publiccode::GetUser().id; + /*xstring susername = publiccode::GetUserInfo().name; + xstring sdate = publiccode::GetCurDate(); + dw.SetItemString(1,L"CreatorID",suserid); + dw.SetItemDisplayString(1,L"CreatorID",susername); + dw.SetItemString(1,L"CreateDate",sdate);*/ + + dw = dw_detail.FindDwTable(L"address", 0); + dw.SetItemString(1, L"IdentifyAddressFlag", L"Y"); + dw.SetItemString(1, L"Status", L"1"); + dw = dw_detail.FindDwTable(L"Regist", 0); + dw.SetItemString(1, L"IdentifyAddressFlag", L"N"); + dw.SetItemString(1, L"Status", L"1"); + + dw = dw_bank.FindDwTable(L"item", 0); + if (dw) { + //KXMLDOMElement ele = dw.GetElement(); + //trace(ele.xml); + //dw.SetItemString(1,L"Status",L"Y"); + } + } + return 1; + } + +}; \ No newline at end of file -- Gitblit v1.9.3