Skip to content

Instantly share code, notes, and snippets.

@simonrenoult
Created May 18, 2018 14:53
Show Gist options
  • Save simonrenoult/800586fa43b17042acd846e59c7a9117 to your computer and use it in GitHub Desktop.
Save simonrenoult/800586fa43b17042acd846e59c7a9117 to your computer and use it in GitHub Desktop.
const SHIPMENT_PRICE_STEP = 25;
const SHIPMENT_WEIGHT_STEP = 10;
const orderShipmentPrice = SHIPMENT_PRICE_STEP * Math.round(orderTotalWeight / SHIPMENT_WEIGHT_STEP);
let totalAmount = orderProductListPrice + orderShipmentPrice;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment