我刚刚安装了PrestaShop API,似乎没有办法找到如何检索客户订单。我有客户列表,我有订单列表,但我没有任何链接。
7d7tgy0s1#
http://localhost/api/orders?filter[id_customer]=[1]几乎不存在其他过滤器,more in docs
http://localhost/api/orders?filter[id_customer]=[1]
gg0vcinb2#
使用v1.7.x:$orders = Order::getCustomerOrders($id_customer);
$orders = Order::getCustomerOrders($id_customer);
nafvub8i3#
如果你还需要得到订单的详细信息(比如产品),你可以使用这个:
$order = new Order($id_order['id_order']); $products = $order->getProducts();
3条答案
按热度按时间7d7tgy0s1#
http://localhost/api/orders?filter[id_customer]=[1]
几乎不存在其他过滤器,more in docs
gg0vcinb2#
使用v1.7.x:
$orders = Order::getCustomerOrders($id_customer);
nafvub8i3#
如果你还需要得到订单的详细信息(比如产品),你可以使用这个: