|
@@ -166,6 +166,9 @@ public class GoodsMgrController extends BaseApiController {
|
|
|
String description = URLDecoder.decode(goodsParam.getDescription());
|
|
|
goods.setDescription(description);
|
|
|
goods.setStatus(GoodsStatusEnum.PUT_INIT);
|
|
|
+ if(null == goods.getOriginPrice()) {
|
|
|
+ goods.setOriginPrice(goods.getExchangePrice());
|
|
|
+ }
|
|
|
// 多SKU
|
|
|
List<GoodsSku> skuList = goodsParam.getSkuList();
|
|
|
if(goods.getMultiSku() == 1) { //
|