Inventory Management System with QR Codes and Permissions with Airtable and Softr

Sdílet
Vložit
  • čas přidán 27. 08. 2024

Komentáře • 8

  • @HendrikYap
    @HendrikYap Před 5 měsíci +1

    Look forward to it!

  • @teresaautreyexperience
    @teresaautreyexperience Před 4 měsíci +1

    thank you! great presentation.

  • @marvinlear
    @marvinlear Před 6 měsíci +1

    Amazing where would we get the Java Script from im a bit of a nocode person.

    • @BusinessAutomatedTutorials
      @BusinessAutomatedTutorials  Před 6 měsíci

      Hi the code will be part of the template that I will link to this video - there is some last moment hickup with publishing the template.
      For now the code is here:
      function onScanSuccess(decodedText, decodedResult) {
      // Handle the scanned code as desired, e.g., display the text
      console.log(`Code matched = ${decodedText}`, decodedResult);
      document.getElementById('qr-reader-results').innerText = `Scanned Result: ${decodedText}`;
      window.location.href=decodedText;
      }
      function onScanFailure(error) {
      // For debugging purposes
      console.warn(`Code scan error = ${error}`);
      }
      window.addEventListener('load', () => {
      // Adjust configuration for mobile devices
      const isMobile = /iPhone|iPad|iPod|Android/i.test(navigator.userAgent);
      let config = {
      fps: 10,
      qrbox: {width: 250, height: 250},
      aspectRatio: isMobile ? 1 : undefined,
      facingMode: isMobile ? "environment" : "user",
      };
      let html5QrcodeScanner = new Html5QrcodeScanner(
      "qr-reader",
      config,
      /* verbose= */ false);
      html5QrcodeScanner.render(onScanSuccess, onScanFailure);
      });

    • @BusinessAutomatedTutorials
      @BusinessAutomatedTutorials  Před 5 měsíci +1

      Hi just published the template - you can find it here: dub.sh/sailing-club-template
      Let me know how it works!

    • @marvinlear
      @marvinlear Před 5 měsíci

      Your genius ive been looking for a solution like this for years even trying to make my own.@@BusinessAutomatedTutorials