Advertisement
Guest User

Untitled

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