[IMP] connector_opencart: avoid making a queue.job for an already imported order

This commit is contained in:
Jared Kipe
2021-08-24 10:20:29 -07:00
parent 6c45c0380c
commit af42f105d3
2 changed files with 9 additions and 2 deletions

View File

@@ -84,8 +84,7 @@ class Orders(Resource):
if id_larger_than:
url += '/id_larger_than/%s' % id_larger_than
if modified_from:
# TODO remove details if it gets into main route
url += 'details/modified_from/%s' % modified_from
url += '/modified_from/%s' % modified_from
return self.connection.send_request(method='GET', url=url)
def get(self, id):