|
|
@@ -222,10 +222,10 @@ public class RateController {
|
|
|
public ResultMap saveAllReply(@PathVariable("orderId") String orderId, @RequestBody String json) {
|
|
|
List<RateGoods> rateGoodsList = FastjsonUtils.fromJsonArray(json, RateGoods.class);
|
|
|
for (RateGoods rateGoods : rateGoodsList){
|
|
|
- if (StringUtils.isEmpty(rateGoods.getAfterReturnMeg())){
|
|
|
+ if (!StringUtils.isEmpty(rateGoods.getAfterReturnMeg())){
|
|
|
rateGoods.setAfterReturnMegTime(new Date(System.currentTimeMillis()));
|
|
|
}
|
|
|
- if (StringUtils.isEmpty(rateGoods.getReturnMeg())){
|
|
|
+ if (!StringUtils.isEmpty(rateGoods.getReturnMeg())){
|
|
|
rateGoods.setReturnMegTime(new Date(System.currentTimeMillis()));
|
|
|
}
|
|
|
}
|