diff --git a/CoreCms.Net.Services/Shop/CoreCmsShipServices.cs b/CoreCms.Net.Services/Shop/CoreCmsShipServices.cs index 11962bca..d898712d 100644 --- a/CoreCms.Net.Services/Shop/CoreCmsShipServices.cs +++ b/CoreCms.Net.Services/Shop/CoreCmsShipServices.cs @@ -156,7 +156,7 @@ namespace CoreCms.Net.Services var item = (JObject)jToken; //if (item.Property("area") == null) continue; var area = item["area"].ObjectToString(); - var firstunitAreaPrice = item["firstunitAreaPrice"].ObjectToInt(0); + var firstunitAreaPrice = item["firstunitAreaPrice"].ObjectToDecimal(0); var continueunitAreaPrice = item["continueunitAreaPrice"].ObjectToInt(0); if (!string.IsNullOrEmpty(area)) { @@ -222,7 +222,7 @@ namespace CoreCms.Net.Services return shipMoney; } - + } ///