Added missing semicolon

This commit is contained in:
Bernd Bestel 2023-08-05 21:51:13 +02:00
parent a44d746176
commit bae4a7f04c
No known key found for this signature in database
GPG Key ID: 71BD34C0D4891300

View File

@ -130,4 +130,4 @@ WHERE sl.undone = 0
OR (sl.transaction_type = 'stock-edit-new' AND sl.stock_id IN (SELECT stock_id FROM stock_edited_entries) AND sl.id IN (SELECT stock_log_id_of_newest_edited_entry FROM stock_edited_entries))
)
AND IFNULL(sl.price, 0) > 0
AND IFNULL(sl.amount, 0) > 0
AND IFNULL(sl.amount, 0) > 0;