lifan
5 天以前 8bee504842b72ecf60805ed03f57767c53d47569
update
已修改7个文件
34 ■■■■■ 文件已修改
jrj/project/business/GDN/AdvanceChargeList.cpp 补丁 | 查看 | 原始文档 | blame | 历史
jrj/project/business/Supplier/list.Owner.Supplier.cpp 补丁 | 查看 | 原始文档 | blame | 历史
jrj/project/business/Supplier/maint.Document.Supplier.cpp 补丁 | 查看 | 原始文档 | blame | 历史
jrj/project/business/Supplier/maint.Owner.Supplier.cpp 补丁 | 查看 | 原始文档 | blame | 历史
jrj/project/business/Supplier/maintex.Owner.Supplier.cpp 补丁 | 查看 | 原始文档 | blame | 历史
jrj/project/start.vframe.vbusiness.cpp 12 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
jrj/project/viewobject/view.base.hpp 22 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
jrj/project/business/GDN/AdvanceChargeList.cpp
Binary files differ
jrj/project/business/Supplier/list.Owner.Supplier.cpp
Binary files differ
jrj/project/business/Supplier/maint.Document.Supplier.cpp
Binary files differ
jrj/project/business/Supplier/maint.Owner.Supplier.cpp
Binary files differ
jrj/project/business/Supplier/maintex.Owner.Supplier.cpp
Binary files differ
jrj/project/start.vframe.vbusiness.cpp
@@ -886,6 +886,18 @@
                OpenWindow(L"dev:xpage[maint.samplefee.vx]", arg);
                return 1;
            }
            if (name1 == L"SoleSupplierV3")
            {
                xaserverarg arg;
                arg.AddArg(L"EntityID", d1);
                arg.AddArg(L"config", L"/sale/view/SupplierV3/config/supplier/open");
                OpenWindow(L"dev:xpage[maintex.Owner.Supplier.v3.vx]", arg);
                return 1;
            }
        }
        return 0;
    }
jrj/project/viewobject/view.base.hpp
@@ -307,4 +307,26 @@
        }
        return 1;
    }
    static int AddTask(xstring serverUrl, xstring FlowID, xstring EntityID, xstring EntityNo, xstring Subject, xstring Content, xstring Status, xstring Category, xstring Reciever)
    {
        KXMLDOMDocument x;
        xaserverarg arg;
        arg.AddArg(L"FlowID", FlowID);
        arg.AddArg(L"EntityID", EntityID);
        arg.AddArg(L"EntityNo", EntityNo);
        arg.AddArg(L"Subject", Subject);
        arg.AddArg(L"Content", Content);
        arg.AddArg(L"Status", Status);
        arg.AddArg(L"Category", Category);
        arg.AddArg(L"Reciever", Reciever);
        if (xurl::get(L"/sale/data/business/task/add", arg.GetString(), x) != 1)
        {
            string error = x.text();
            trace(error);
            return 0;
        }
        return 1;
    }
};