\n {params.value === \"WiFi\" ? t(\"wifi\") : params.value === \"PulseHUB\" ? t(\"pulseProLevelMonitor\") : params.value}\n
\n );\n };\n\n useEffect(() => {\n var i = 0;\n var l_devices = [];\n var test_status = 1;\n\n if (devices !== undefined) {\n if (action === 'activate') {\n test_status = 0;\n }\n for (i = 0; i < devices.length; i++) {\n if (devices[i].type === \"cellular\" || devices[i].type === 'pressure') {\n if (devices[i].status === test_status) {\n l_devices.push(devices[i]);\n }\n }\n }\n for (i = 0; i < l_devices.length; i++) {\n if (l_devices[i].checked === undefined) {\n l_devices[i].checked = false;\n }\n }\n setDisplayDevices(l_devices);\n }\n }, [devices, action]);\n\n function findSubscriptionPlanCode(subscriptionInfo) {\n var plan_code = BillingPlans[0].plan_code;\n for (var i = 0; i < BillingPlans.length; i++) {\n if (BillingPlans[i].label === subscriptionInfo) {\n plan_code = BillingPlans[i].plan_code;\n break;\n }\n }\n return plan_code;\n }\n\n const handleSetNewCharge = (value) => {\n var amount = Math.abs(value).toFixed(2).toString();\n setEstCharge(amount);\n };\n\n const handleNextInvoice = (value) => {\n var amount = value.toFixed(2).toString()\n setEstNextInvoice(amount);\n };\n\n const handleClickOpenActivate = () => {\n setOpenStatusChange(true);\n setAction(\"activate\");\n };\n\n const handleClickOpenDisable = () => {\n setOpenStatusChange(true);\n setAction(\"deactivate\");\n };\n\n const handleConfirmSelection = () => {\n setOpenStatusChange(false);\n if (checkedList.length > 0) {\n updatePreview();\n setOpen(true);\n }\n }\n\n const handleCloseStatusChange = () => {\n setIsLoading(false);\n setOpen(false);\n setOpenStatusChange(false);\n setCheckedList([]);\n };\n const handleStatusChange = () => {\n var quantity = 0;\n var i;\n\n setIsLoading(true);\n\n for (i = 0; i < devices.length; i++) {\n if (devices[i].status === 1) {\n quantity = quantity + 1;\n }\n }\n\n for (i = 0; i < checkedList.length; i++) {\n quantity = action === \"activate\" ? quantity + 1 : quantity - 1;\n }\n\n // update Subscription will update device status if no billing errors.\n updateSubscription(quantity);\n };\n\n const updateDeviceStatus = () => {\n var code = \"\";\n var targetList = [];\n var l_action = action;\n\n if (checkedList.length > 2) {\n l_action = 'Q_' + action; //Set up to be a queued/batched transaction\n }\n\n for (var i = 0; i < checkedList.length; i++) {\n targetList.push({ 'uid': checkedList[i], 'code': code, 'action': l_action });\n }\n\n console.log(\"Update Device Status\");\n\n Auth.currentAuthenticatedUser()\n .then(data => {\n var body = JSON.stringify({\n 'devices': targetList, 'sync': 0,\n 'hasBillingInfo': hasBillingInfo\n });\n\n var requestOptions = {\n method: 'PUT',\n headers: {\n 'Content-Type': 'application/json',\n 'Authorization': data.signInUserSession.idToken.jwtToken\n },\n body: body\n };\n\n fetch(host + '/orgs/' + orgInfo.orgId + '/devices/', requestOptions)\n .then(results => results.json())\n .then(data => {\n if (data.error === \"OK\") {\n //Update and Create Subscription\n setDevices(data.deviceList);\n } else {\n if (data.error === \"error\" && data.errorList.length > 0) {\n alert(data.errorList[0].error);\n }\n else {\n alert(data.error)\n }\n }\n handleCloseStatusChange();\n }).catch((error) => {\n handleCloseStatusChange();\n console.log(error)\n })\n });\n }\n\n const updateSubscription = async (input_quantity) => {\n var msg = { status: 0, data: {} };\n var quantity = input_quantity;\n\n try {\n if (billingData.subscriptions.length == 0 && action !== \"activate\") {\n throw new Error(\"No subscription to delete\");\n }\n else if (billingData.subscriptions.length == 0 && action === \"activate\") {\n console.log(\"New Subscription\");\n\n const plan_code = findSubscriptionPlanCode(orgBilling.billing_plan);\n msg = await billing.newSubscription(\n orgInfo.orgId,\n plan_code,\n orgBilling.billing_curr,\n quantity,\n SubscriptionInfo.total_billing_cycles);\n }\n else {\n console.log(\"Update Subscription\");\n\n var sub = [{}];\n sub[0].quantity = quantity;\n sub[0].id = billingData.subscriptions[0].id;\n msg = await billing.updateSubscriptions(\n orgInfo.orgId,\n sub\n );\n }\n\n const { error, billing_account } = msg.data;\n\n if (msg.status === 404) {\n console.log(msg.status);\n }\n\n if (error !== 'OK' && msg.status !== 200) {\n if(error.includes(\"submitted values match the current subscriptions\")){\n //Still update the device status if the subscription value is correct.\n updateDeviceStatus();\n throw new Error(error);\n }\n else{\n alert(error);\n throw new Error(error);\n }\n }\n\n setBillingData(billing_account);\n updateDeviceStatus();\n } catch (error) {\n console.error(error);\n //handleCloseStatusChange();\n //No longer prevent activation for billing errors. Improve customer experience\n updateDeviceStatus();\n }\n };\n\n const updatePreview = () => {\n var newCharge = 0\n var nextInvoice = 0;\n var newQty = 0;\n var currentlyActive = 0;\n var l_billingPlan = BillingPlans[0];\n var i = 0;\n\n for (i = 0; i < BillingPlans.length; i++) {\n if (BillingPlans[i].label === orgBilling.billing_plan) {\n l_billingPlan = BillingPlans[i];\n break;\n }\n }\n\n newQty = checkedList.length;\n\n for (i = 0; i < devices.length; i++) {\n if (devices[i].status === 1) {\n currentlyActive = currentlyActive + 1;\n }\n }\n\n if (billingData.subscriptions.length == 0) {\n newCharge = Math.round(l_billingPlan.unit_cost[orgBilling.billing_curr] * newQty * 100) / 100;\n nextInvoice = newCharge;\n if (billingData.subscriptions.length > 0) {\n nextInvoice = Math.round(l_billingPlan.unit_cost[orgBilling.billing_curr] * (currentlyActive + newQty) * 100) / 100;\n }\n handleSetNewCharge(newCharge);\n } else {\n if (action === \"deactivate\") {\n newQty = newQty * -1;\n }\n previewSubscription();\n nextInvoice = Math.round(l_billingPlan.unit_cost[orgBilling.billing_curr] * (currentlyActive + newQty) * 100) / 100;\n }\n\n handleNextInvoice(nextInvoice);\n };\n\n const previewSubscription = async () => {\n var msg = { status: 0, data: {} };\n var newQty = 0;\n var currentlyActive = 0;\n var i = 0;\n\n try {\n if (billingData.subscriptions.length == 0) {\n console.log(\"No Subscription, cannot preview\");\n } else {\n newQty = checkedList.length;\n for (i = 0; i < devices.length; i++) {\n if (devices[i].status === 1) {\n currentlyActive = currentlyActive + 1;\n }\n }\n\n console.log(\"Update Subscription\");\n\n var sub = [{}];\n\n if (action === \"activate\") {\n sub[0].quantity = currentlyActive + newQty;\n } else {\n sub[0].quantity = currentlyActive - newQty;\n }\n\n sub[0].id = billingData.subscriptions[0].id;\n //console.log(sub);\n msg = await billing.previewSubscription(\n orgInfo.orgId,\n sub\n );\n }\n\n //console.log(msg.data);\n\n const { error, billing_preview } = msg.data;\n\n if (msg.status === 404) {\n console.log(msg.status);\n }\n\n if (error !== 'OK' && msg.status !== 200) {\n throw new Error(error);\n }\n\n handleSetNewCharge(billing_preview[0].estimated_total);\n } catch (error) {\n console.error(error);\n }\n };\n\n return (\n\n {params.value === \"WiFi\" ? t(\"wifi\") : params.value === \"PulseHUB\" ? \"Pulse Pro\" : t(params.value)}\n
\n );\n };\n\n function renderLink(params) {\n if (params.row.tankName === undefined) {\n return;\n }\n\n return (\n\n {t(\"creditCard\")}: {first_six?.slice(0, 4)}{' '}\n {first_six?.slice(4, 6)}.. ....{' '}\n {last_four}\n
\n{t(\"expiration\")}: {exp_month + '/' + exp_year}
\n{t(\"name\") + \": \"}{first_name + ' ' + last_name}
\n{t(\"preferredCurrency\")}: {orgBilling.billing_curr}
\n{t(\"subscriptions\")}: {t(orgBilling.billing_plan)}
\n{t(\"email\") + \": \"}{email}
\n{t(\"addressLine1\") + \": \"}{street1}
\n{t(\"addressLine2\") + \": \"}{street2}
\n{t(\"city\") + \": \"}{city}
\n{t(\"country\") + \": \"}{country}
\n{t(\"stateProvinceRegion\") + \": \"}{t(findRegionTranslationKey(country, region))}
\n{t(\"zipCode\") + \": \"}{postal_code}
\n{t(\"phone\") + \": \"}{phone}
\n{t(\"maximumCapacity\") + ': '}{calculatedMaxCapacity} {volumeUnit === 'gallons' ? t(\"gal\") : t(\"l\")}
\n{t(\"sendStatusReportEverydayAt\")}
\n \n{t(\"maximumCapacity\")}: {calculatedMaxCapacity} {volumeUnit === 'gallons' ? \"gal\" : \"L\"}
\n{t(\"maximumCapacity\")}: {tlm.FillCapacity} {tlm.VolumeUnit === 'gallons' ? t(\"gal\") : t(\"l\")}
\n