60ac1f699b0d584f1424925000c25f85d0f1420e..456ac9b9d4038b721345606e729248a0faa99e7a
2 天以前 lifan
update
456ac9 对比 | 目录
2 天以前 lifan
update
4d56fe 对比 | 目录
2 天以前 lifan
upadte
110d37 对比 | 目录
7 天以前 lifan
update
8bee50 对比 | 目录
已修改11个文件
36 ■■■■■ 文件已修改
jrj/ext-jrj/list.Test.ap.cpp 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
jrj/project/business/Expense/APCheckList.cpp 补丁 | 查看 | 原始文档 | blame | 历史
jrj/project/business/Expense/ExportCredit.cpp 补丁 | 查看 | 原始文档 | blame | 历史
jrj/project/business/Expense/maint.expense.ap.cpp 补丁 | 查看 | 原始文档 | blame | 历史
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/ext-jrj/list.Test.ap.cpp
@@ -178,7 +178,7 @@
        int row = dw_list.GetRow();
        if (row < 1) return 1;
        xstring APID = dw_list.GetItemString(row, L"APID");
        trace(APID);
        if (printStr == L"")printStr = L" " + APID;
        xaserverarg arg;
jrj/project/business/Expense/APCheckList.cpp
Binary files differ
jrj/project/business/Expense/ExportCredit.cpp
Binary files differ
jrj/project/business/Expense/maint.expense.ap.cpp
Binary files differ
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;
    }
};