From 97e2acb59314e2ca4bee55abc9571c1c5045f73d Mon Sep 17 00:00:00 2001 From: LiFan <2308045698@qq.com> Date: 星期一, 08 七月 2024 18:20:38 +0800 Subject: [PATCH] update --- jrj/project/business/AP/list.ap.cpp | 18 +++++++++--------- 1 files changed, 9 insertions(+), 9 deletions(-) diff --git a/jrj/project/business/AP/list.ap.cpp b/jrj/project/business/AP/list.ap.cpp index 11b76e5..d56cafa 100644 --- a/jrj/project/business/AP/list.ap.cpp +++ b/jrj/project/business/AP/list.ap.cpp @@ -162,7 +162,7 @@ if (row < 1) return 1; KXMLDOMElement ele = dw_list.GetRowElement(row); xstring APID = ele.selectSingleNode(L"APID").text(); - ele.Release(); + xaserverarg arg; arg.AddArg(L"APID", APID); @@ -188,10 +188,10 @@ { xstring id = L""; xstring name = L""; - int h = xcombobox::GetCurSel(evt.hCtrl); + int h = xcombobox::GetCurSel(evt->command.hCtrl); if (h > -1) { - xstring txt = xcombobox::GetLBText(evt.hCtrl, h); + xstring txt = xcombobox::GetLBText(evt->command.hCtrl, h); apType = L"---"; if (txt == L"已付货款") { @@ -297,10 +297,10 @@ xstring payTypeTwo = GetPayType(); if (payTypeTwo == L"已付货款" || payTypeTwo == L"待付货款") { - int h = xcombobox::GetCurSel(evt.hCtrl); + int h = xcombobox::GetCurSel(evt->command.hCtrl); if (h > -1) { - xstring txt = xcombobox::GetLBText(evt.hCtrl, h); + xstring txt = xcombobox::GetLBText(evt->command.hCtrl, h); if (txt == L"出运日期") { apType = L"000"; @@ -323,10 +323,10 @@ } else if (payTypeTwo == L"预付货款") { - int h1 = xcombobox::GetCurSel(evt.hCtrl); + int h1 = xcombobox::GetCurSel(evt->command.hCtrl); if (h1 > -1) { - xstring txt1 = xcombobox::GetLBText(evt.hCtrl, h1); + xstring txt1 = xcombobox::GetLBText(evt->command.hCtrl, h1); if (txt1 == L"出运日期") { apType = L"001"; @@ -349,10 +349,10 @@ } else if (payTypeTwo == L"预付货款(已冲)L") { - int h2 = xcombobox::GetCurSel(evt.hCtrl); + int h2 = xcombobox::GetCurSel(evt->command.hCtrl); if (h2 > -1) { - xstring txt2 = xcombobox::GetLBText(evt.hCtrl, h2); + xstring txt2 = xcombobox::GetLBText(evt->command.hCtrl, h2); if (txt2 == L"出运日期") { apType = L"001"; -- Gitblit v1.9.3