--- partner (copy).py 2013-08-07 14:30:29.000000000 +0200 +++ partner.py 2013-08-10 16:27:55.918360839 +0200 @@ -237,6 +237,17 @@ return self._call('ol_customer.search', [filters] if filters else [{}]) + def read(self, id, attributes=None): + """ Returns the information of a record + + :rtype: dict + """ + if attributes is None: + return self._call('%s.info' % self._magento_model, + [int(id)]) + else: + return self._call('%s.info' % self._magento_model, + [int(id), attributes]) @magento class PartnerBatchImport(DelayedBatchImport):