mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 14:53:26 +08:00
接口【修复】:修复运费使用部分区域的情况下,续重费用计算错误的问题。
This commit is contained in:
@@ -157,7 +157,7 @@ namespace CoreCms.Net.Services
|
||||
//if (item.Property("area") == null) continue;
|
||||
var area = item["area"].ObjectToString();
|
||||
var firstunitAreaPrice = item["firstunitAreaPrice"].ObjectToDecimal(0);
|
||||
var continueunitAreaPrice = item["continueunitAreaPrice"].ObjectToInt(0);
|
||||
var continueunitAreaPrice = item["continueunitAreaPrice"].ObjectToDecimal(0);
|
||||
if (!string.IsNullOrEmpty(area))
|
||||
{
|
||||
var areaArr = CommonHelper.StringToIntArray(area);
|
||||
|
||||
Reference in New Issue
Block a user