Authored by chenchao

add new prop load value

... ... @@ -45,6 +45,11 @@ public class ChargeGoods {
private boolean depositRequirement;
private BigDecimal storageManagementFee;
/**
* 闪购非寄存订单
*/
private BigDecimal quickDeliverServiceFee;
/**
* 实际价格
*
... ...
... ... @@ -13,4 +13,8 @@ public class FeeNRate {
* 仓储管理费
*/
BigDecimal storageManagementFee;
/**
* 闪购非寄存订单
*/
BigDecimal quickDeliverServiceFee;
}
... ...
... ... @@ -323,7 +323,6 @@ public class ProductProxyService extends AbsProxyService{
SkupTypeCodeSupport.CodeNode codeNode = SkupTypeCodeSupport.explain(skupa);
skupReq.setRegion(codeNode.getRegion());
}
ApiResponse resp = ufoServiceCaller.call(syncSkup, skupReq);
return (null == resp || null == resp.getData())? false : (boolean)resp.getData();
}
... ...