We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 96c5a12 + 8fa1def commit f6631b3Copy full SHA for f6631b3
magento/sales.py
@@ -66,6 +66,17 @@ def info(self, order_increment_id):
66
'sales_order.info', [order_increment_id]
67
)
68
69
+ def info_multi(self, order_ids):
70
+ """
71
+ This is multicall version of 'order.info'
72
73
+ return self.multiCall([
74
+ [
75
+ 'sales_order.info', [order_id]
76
+ ]
77
+ for order_id in order_ids
78
+ ])
79
+
80
def addcomment(self, order_increment_id,
81
status, comment=None, notify=False):
82
"""
magento/version.py
@@ -8,4 +8,4 @@
8
:copyright: © 2013 by Openlabs Technologies & Consulting (P) Limited
9
:license: BSD, see LICENSE for more details.
10
11
-VERSION = '1.2'
+VERSION = '1.3'
0 commit comments