diff --git a/source/static/payshipment.php b/source/static/payshipment.php index 20da8e7..9300a36 100644 --- a/source/static/payshipment.php +++ b/source/static/payshipment.php @@ -14,12 +14,7 @@ try { if ($rate->id == $_REQUEST["rateid"]) { $cost = $rate->rate; $retail_rate = $rate->retail_rate ?? ($rate->list_rate ?? $rate->rate); - if ($retail_rate - $cost > 3) { - // Cap at $3 profit to be nice - $price = $cost + 3.00; - } else { - $price = $cost + 1.00; - } + $price = $retail_rate + 1.00; } }