Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. SELECT t.date as `Date`,
  2. t.description as `Description`,
  3. m.modname as `Module name`,
  4. t.trans_id as `Transaction ID`,
  5. sql_currency(t.in,t.currency_id,0) as `In`,
  6. REPLACE(g.output,'\n','<br>') as `Output`
  7. FROM hb_gateway2trans g2t
  8. LEFT JOIN hb_gateway_log g ON g2t.gateway_log_id = g.id
  9. LEFT JOIN hb_transactions t ON g2t.transaction_id = t.id
  10. INNER JOIN hb_modules_configuration m ON t.module = m.id
  11. WHERE
  12. t.client_id = :client_id
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement