Skip to content

Products Delta Export (Last X Days)

Version 1.0.57 introduces delta export support for products, mirroring the previously available delta logic for orders.

You can now export only products that were:

  • Created within the last X days
  • Modified within the last X days

This enables incremental synchronization instead of full product exports.

When configuring a Product Export job, you can now:

  1. Enable the delta filter.
  2. Specify a relative time range (e.g., last 3, 7, or 30 days).
  3. Choose whether to filter by:
    • Creation date
    • Modification date

The system uses the following Shopware fields:

  • createdAt
  • updatedAt

These fields determine whether a product qualifies for inclusion in the export.

If you use the “latest created/updated” export mode:

  • After each export execution,
  • The product entity filter is automatically updated,
  • So that the next export only includes newly created or modified products.

This ensures consistent delta behavior without manual intervention.

The implementation follows the same logic and structure as the existing orders delta export, including:

  • Relative date filtering
  • Post-export filter update logic
  • Scheduled job compatibility
  • Consistent UI behavior

With Products Delta Export, you can:

  • Reduce export file size
  • Minimize system load
  • Speed up external synchronization
  • Avoid duplicate processing in third-party systems
  • Maintain near real-time product updates
  • Date filtering relies strictly on createdAt and updatedAt.
  • Behavior is fully aligned with the orders delta export logic.
  • All new filters include proper i18n labels for multilingual environments.