xj qian
2024-09-14 a24f5b167ed96bd8920216a104bf4d794079fb2e
update
已修改2个文件
23 ■■■■■ 文件已修改
jrj/project/business/Quote3.list3.cpp 补丁 | 查看 | 原始文档 | blame | 历史
jrj/project/business/QuoteFile.cpp 23 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
jrj/project/business/Quote3.list3.cpp
Binary files differ
jrj/project/business/QuoteFile.cpp
@@ -4723,6 +4723,21 @@
        return 1;
    }
    xstring GetTryFirstAttr(xstring str, xstring term)
    {
        xstring foundStr = L" " + term + L"=";
        wchar quote = L'"';
        int pos = str.find(foundStr);
        if (pos < 0) return L"";
        pos += foundStr.length();
        while (str.at(pos) == L' ')pos++;
        if (str.at(pos) == L'\'')quote = L'\'';
        int epos = ++pos;
        while (str.at(epos) && str.at(epos) != quote)epos++;
        if (!str.at(epos))return L"";
        return str.mid(pos, epos - pos);
    }
    int onload()
    {
        SetArg();
@@ -4754,7 +4769,11 @@
            x.loadXML(templ);
            */
            action = L"purch";
            action = GetTryFirstAttr(templ, L"action");
            if (action == L"") action = L"purch";
            entityItemID = GetTryFirstAttr(templ, L"TemplateItemID");
            if (entityItemID == L"")entityItemID = GetTryFirstAttr(templ, L"ItemID");
#if 0
            if (templ.find(L"action=\"") >= 0)
            {
                action = templ.mid(templ.find(L"action=\"") + 8, templ.find(L"\"", templ.find(L"action=\"") + 8) - (templ.find(L"action=\"") + 8));
@@ -4771,7 +4790,7 @@
                    entityItemID = templ.mid(templ.find(L" ItemID=\"") + 9, templ.find(L"\"", templ.find(L" ItemID=\"") + 9) - (templ.find(L" ItemID=\"") + 9));
                }
            }
#endif
            /*action = x.documentElement.getAttribute(L"action");
            if(action==L"") action=L"purch";
            entityItemID = x.documentElement.getAttribute(L"TemplateItemID");