26c22352a289b93fe32f81cc3f2db54823f26faa..a77e79db55c10b7fd352fb2d198731e37b780f19
7 天以前 lifan
update
a77e79 对比 | 目录
7 天以前 lifan
update
2a6901 对比 | 目录
7 天以前 lifan
update
7cd1ff 对比 | 目录
已修改3个文件
30 ■■■■■ 文件已修改
jrj/project/business/AR/ExchageInput3.cpp 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
jrj/project/business/Supplier/maint.Document.Supplier.cpp 补丁 | 查看 | 原始文档 | blame | 历史
jrj/project/business/VATNotify/maint.vatinvoice..cpp 28 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
jrj/project/business/AR/ExchageInput3.cpp
@@ -488,7 +488,7 @@
            dw_arg.SetRowSelectorWidth(0);
            dw_arg.SetHScrollState(false);
            dw_arg.SetVScrollState(false);
            dw_arg.SetItemString(1, L"DateType", L"本年");
            tabname = L"sign";
            tabagent = L"";
jrj/project/business/Supplier/maint.Document.Supplier.cpp
Binary files differ
jrj/project/business/VATNotify/maint.vatinvoice..cpp
@@ -319,7 +319,32 @@
            }
            return 1;
        }
        int OnItemClick(TEvent* evt, LPARAM p)
        {
            DWNMHDR& hdr1 = *(DWNMHDR*)evt->notify.pnmh;
            xstring colname = hdr1.colname;
            DWNMHDR& hdr = *(DWNMHDR*)evt->notify.pnmh;
            xstring value = hdr.data;
            xaserverarg arg;
            if (value == L"附件上传")
            {
                if (dw_base.GetGuid(1) == L"")
                {
                    alert(L"请先保存,在添加附件!");
                    return 0;
                }
                arg.AddArg(L"entityid", dw_base.GetGuid(1));
                OpenWindow(L"dev:xpage[maint.Document.Test.v3.vx]", arg);
            }
            return 1;
        }
        int OnAttachEvent()
        {
            //绑定工具条点击事件
@@ -328,6 +353,7 @@
            AttachEvent(L"WM_SETFOCUS", (FEvent)&MaintVATInvoice::OnSetFocus);
            AttachEvent(L"dw_list",L"DWV_ITEMCHANGED", (FEvent)&MaintVATInvoice::OnItemChanged);
            AttachEvent(L"dw_base",L"DWV_ITEMCHANGED", (FEvent)&MaintVATInvoice::OnItemChangedTwo);
            AttachEvent(L"dw_base", L"DWV_CLICKED", (FEvent)&MaintVATInvoice::OnItemClick);
            return 1;
        }