kkapil9112/Hguuuuuv45botPublic · Bot Template

AITelegram commerce bot for an admin-managed digital store: admins create categories, products, time-based plans, stock entries and license keys, and can grant reseller roles or adjust user balances. End users can view their balance, start a deposit flow with an inline amount keypad, apply coupon codes, and navigate back to the store menu. It uses Bot properties for product/stock/coupon data and Libs.ResourcesLib for per-user balances.

Commercecommerceshopreselleradmin-panelbalanceproduct-management
ProfileTelegram
102 commands0 envUpdated 29d agoCreated Aug 7, 2026
Back to folder

commands/_onPressQR.js

javascript · 59 lines

Raw
1/**#command2name: /onPressQR3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12try {13  if (!content) {14    Bot.sendMessage("⚠️ <b>Gateway Error:</b> No response from server. Try again.", { parse_mode: "HTML" });15    return;16  }17 18  var res = (typeof content === "object") ? content : JSON.parse(content);19 20  if (res.status === "success" && res.data) {21    var orderId = res.data.order_id;22    var qrUrl = res.data.qr_url;23    var qrAmount = res.data.amount;24    var expireTime = res.data.expires_at_ist;25 26    User.setProperty("pending_order_id", orderId, "string");27 28    var caption = "🦆 <tg-emoji emoji-id='5893431652578758294'>💰</tg-emoji> <b>PAYMENT GATEWAY</b>\n" +29                  "━━━━━━━━━━━━━━━━━━━━━━\n" +30                  "🌈 <b>Amount: ₹" + qrAmount + "</b>\n" +31                  "📲 <i>Scan QR & Complete Payment</i>\n" +32                  "⏳ <b>Expire Time:</b> " + expireTime + "\n\n" +33                  "✅ <i>After Payment Click Verify Payment Button</i>\n" +34                  "━━━━━━━━━━━━━━━━━━━━━━\n" +35                  "🌐 <tg-emoji emoji-id='6192553546102085729'>🤖</tg-emoji> <i>Auto Verification System Powered</i>";36 37    Api.sendPhoto({38      photo: qrUrl,39      caption: caption,40      parse_mode: "HTML",41      reply_markup: JSON.stringify({42        inline_keyboard: [43          [44            { text: "Verify Payment", callback_data: "/check" }45          ],46          [47            { text: "Cancel / Back", callback_data: "/cancel_order" }48          ]49        ]50      })51    });52 53  } else {54    Bot.sendMessage("⚠️ <b>Failed to generate QR:</b> " + (res.message || "Unknown error"), { parse_mode: "HTML" });55  }56 57} catch (err) {58  Bot.sendMessage("⚠️ <b>Exception:</b> " + err.message, { parse_mode: "HTML" });59}