Add SKUs to eSIM Order Form

Christopher Vollick created

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.

Change summary

config.ru | 2 ++
1 file changed, 2 insertions(+)

Detailed changes

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"],