Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. if (body.response.offer.trade_offer_state == 3) {
  2. console.log('zaakceptowane');
  3. for(var a = 0; a < items.length; a++) {
  4.  
  5. mysqlConnection.query('DELETE FROM `items` WHERE `id`= ? ',[items[a].id]);
  6. }
  7. }
  8. if (body.response.offer.trade_offer_state == 7) {
  9. for(var a = 0; a < items.length; a++) {
  10. mysqlConnection.query('UPDATE `items` SET `status`= ? WHERE `id`= ? ',['1',items[a].id]);
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement