Skip to content

Commit

Permalink
Fix issue #309
Browse files Browse the repository at this point in the history
Error SQL al validar carritos que provienen de un pedido al que se le han agregado productos después de distribuir.
  • Loading branch information
jorix committed Oct 15, 2023
1 parent c5aa9c6 commit e021dc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion php/lib/shop_cart_manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public function commit_string()
{
return '('
. $this->_cart_id . ','
. $this->_order_item_id . ','
. ( $this->_order_item_id != 'undefined' ? $this->_order_item_id : 'null' ) . ','
. $this->_product_id . ','
. $this->_quantity . ','
. $this->_iva_percent . ','
Expand Down

0 comments on commit e021dc8

Please sign in to comment.