Important
We are updating the images for OroCommerce version 6.1 to align with the latest changes in the back-office design. During this transition, some images may still show older versions. Thank you for your patience as we work to update all visuals to reflect these changes.
Additional Capabilities
Save Service Data Between Synchronizations
If connector of your integration requires to store some data between imports, status entity could be used for this purposes. That’s might be useful for example when integration supports multiple modes(update/initial import) and need to store date of last synchronization or another example if your connector supports renew download it’s useful to store current state.
To use this feature your connector class should extends Oro\Bundle\IntegrationBundle\Provider\AbstractConnector
,
and then methods addStatusData
and getStatusData
will be available.
Example:
// your connector class
// ...
#[\Override]
public function read()
{
$item = parent::read();
// store last item updated at
if (null !== $item && !$this->getSourceIterator()->valid()) {
$this->addStatusData('lastItemUpdatedAt', $item['updated_at']);
}
return $item;
}
// ...
// retrieve data from status
$status = $this->container->get('doctrine')->getRepository('Oro\Bundle\IntegrationBundle\Entity\Channel')
->getLastStatusForConnector($channel, $this->getType(), Status::STATUS_COMPLETED);
/** @var array **/
$data = $status->getData();
$lastItemUpdatedAt = $data['lastItemUpdatedAt'];