Created
May 18, 2018 14:53
-
-
Save simonrenoult/800586fa43b17042acd846e59c7a9117 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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