简体   繁体   English

在Magento的api v2中有多个complexFilter

[英]Multiple complexFilter in Magento's api v2

Currently I'm having some difficulties with using new Magento's soap v2 from c# interface. 目前我在从c#界面使用新的Magento的soap v2时遇到了一些困难。

With php i was able to do something like this: 使用php我能够做到这样的事情:

$params["created_at"]["from"] = date("Y-m-d H:i:s",Functions::convert_time($dataDa));
$params["created_at"]["to"] = date("Y-m-d H:i:s",Functions::convert_time($dataA));
MageInterface::getSingleton()->shipmentList($params); 

In this mode i was able to find list of orders which were created from $dataDa to $dataA without problems. 在这种模式下,我能够找到从$ dataDa到$ dataA创建的订单列表没有问题。 With c# however it seems that only the last one of the selectors work. 然而,使用c#似乎只有最后一个选择器才能工作。

My code: 我的代码:

var cpf = new complexFilter[2];
cpf[0] = new complexFilter
                    {
                        key = "created_at",
                        value = new associativeEntity
                        {
                            key = "to",
                            value = uxDataA.DateTime.ToString("yy-MM-dd HH:mm:ss")
                        }
                    });
cpf[1] = new complexFilter
                    {
                        key = "created_at",
                        value = new associativeEntity
                        {
                            key = "from",
                            value = uxDataDa.DateTime.ToString("yy-MM-dd HH:mm:ss")
                        }
                    });
var filters = new filters();
filters.complex_filter = cpf;
var risultato = mage.salesOrderList(sessionKey, filters); 

In this mode only created_at->from criteria is taken in consideration (it's like second complex filter override previous one with the same key). 在此模式下,仅考虑条件中的created_at->(就像第二个复杂过滤器使用相同的键覆盖前一个过滤器)。 Ideas? 想法?

Thanks in advance. 提前致谢。

This works for me : 这对我有用:

private filters addFilter(filters filtresIn, string key, string op, string value)
    {
        filters filtres = filtresIn;
        if (filtres == null)
            filtres = new filters();

        complexFilter compfiltres = new complexFilter();
        compfiltres.key = key;
        associativeEntity ass = new associativeEntity();
        ass.key = op;
        ass.value = value;
        compfiltres.value = ass;

        List<complexFilter> tmpLst;
        if (filtres.complex_filter!=null)
            tmpLst = filtres.complex_filter.ToList();
        else tmpLst = new List<complexFilter>();

        tmpLst.Add(compfiltres);

        filtres.complex_filter = tmpLst.ToArray();

        return filtres;
    }

and call 并打电话

{
Mage_Api_Model_Server_V2_HandlerPortTypeClient clientSoap = new Mage_Api_Model_Server_V2_HandlerPortTypeClient();

        string sessionId = clientSoap.login(LOG, PASS);           
        filters filtres = new filters();    

        filtres = addFilter(filtres, "status", "eq", "processing");
        filtres = addFilter(filtres, "created_at", "from", "2014-09-07 08:00:00");
        filtres = addFilter(filtres, "created_at", "to", "2014-09-07 00:00:00");

        salesOrderEntity[] lst = clientSoap.salesOrderList(sessionId, filtres);
}

Solved, there was a bug (or the feature?) in mage\\sales\\order\\api\\v2.php 解决了,mage \\ sales \\ order \\ api \\ v2.php中有一个错误(或功能?)

See more info in this thread: http://www.magentocommerce.com/boards/viewthread/70368/ 查看此主题中的更多信息: http//www.magentocommerce.com/boards/viewthread/70368/

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM