You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sqlite3 $DB "select t.id, t.date, u.name, i.name, ti.quantity from transactions t, transaction_items ti, items i, users u where t.date > date('$TODAY', '-7 days') and t.date <= '$TODAY 23:59:59' and ti.element_id = i.id and t.id = ti.transaction_id and t.user_id = u.id and ti.canceled = 0;"