Skip to content

Commit

Permalink
fixed problem with abandoned carts update
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgeeurekalabs committed Jan 27, 2023
1 parent 3704798 commit 4a8d443
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AbandonedCart/Model/AbandonedCartSendData.php
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ public function sendAbandonedCartData($quoteId = null): array
$abandonedCarts = $this->quoteResourceCollectionFactory->create()
->addFieldToSelect('*')
->addFieldToFilter('ac_synced_date', [
['lt' => new \Zend_Db_Expr('main_table.updated_at')],
['lt' => new \Zend_Db_Expr('updated_at')],
['null' => true]
])
->addFieldToFilter(
Expand Down

0 comments on commit 4a8d443

Please sign in to comment.