Skip to content

Commit f6631b3

Browse files
committed
Merge branch 'release/1.3'
2 parents 96c5a12 + 8fa1def commit f6631b3

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

magento/sales.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,17 @@ def info(self, order_increment_id):
6666
'sales_order.info', [order_increment_id]
6767
)
6868

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+
6980
def addcomment(self, order_increment_id,
7081
status, comment=None, notify=False):
7182
"""

magento/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
:copyright: © 2013 by Openlabs Technologies & Consulting (P) Limited
99
:license: BSD, see LICENSE for more details.
1010
"""
11-
VERSION = '1.2'
11+
VERSION = '1.3'

0 commit comments

Comments
 (0)