From 5fcb4d937a2d1dc8357986a81b36e6af819a96f9 Mon Sep 17 00:00:00 2001 From: Christopher Vollick <0@psycoti.ca> Date: Wed, 28 Aug 2024 12:23:28 -0400 Subject: [PATCH] Add SKUs to eSIM Order Form I've chosen 003 for the adapter and 002 for the card reader because, in order of our acquisition we had the esim.me cards first, then the card readers, and then the esim adapters. --- config.ru | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config.ru b/config.ru index 4c067f1647f75ea08aca308663c0daced86ad883..e5ba3c07281483b9ca2818e1a007c63cd9400707 100644 --- a/config.ru +++ b/config.ru @@ -372,6 +372,7 @@ class JmpPay < Roda { title: "Memory Card", description: "Memory Card", + sku: "003", quantity: params["esim_adapter_quantity"].to_i, value: params["currency"] == "CAD" ? 54.99 : 39.99, currency: params["currency"], @@ -380,6 +381,7 @@ class JmpPay < Roda { title: "Card Reader", description: "Card Reader", + sku: "002", quantity: params["pcsc_quantity"].to_i, value: params["currency"] == "CAD" ? 13.50 : 10, currency: params["currency"],