|
|
@ -72,7 +72,8 @@ public class OutRechargePriceController { |
|
|
|
if (outRechargePrice.getType() == null |
|
|
|
if (outRechargePrice.getType() == null |
|
|
|
|| outRechargePrice.getPrice() == null |
|
|
|
|| outRechargePrice.getPrice() == null |
|
|
|
|| outRechargePrice.getRealPrice() == null |
|
|
|
|| outRechargePrice.getRealPrice() == null |
|
|
|
|| outRechargePrice.getGoodsId() == null |
|
|
|
// || outRechargePrice.getGoodsId() == null
|
|
|
|
|
|
|
|
|| outRechargePrice.getSort() == null |
|
|
|
) { |
|
|
|
) { |
|
|
|
log.error("SecOrganizationController -> insertPrice() error!"); |
|
|
|
log.error("SecOrganizationController -> insertPrice() error!"); |
|
|
|
throw ErrorHelp.genException(SysCode.System, ErrorCode.REQ_PARAMS_ERROR, ""); |
|
|
|
throw ErrorHelp.genException(SysCode.System, ErrorCode.REQ_PARAMS_ERROR, ""); |
|
|
@ -80,6 +81,7 @@ public class OutRechargePriceController { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
outRechargePrice.setCreateTime(new Date()); |
|
|
|
outRechargePrice.setCreateTime(new Date()); |
|
|
|
|
|
|
|
outRechargePrice.setStatus(0); |
|
|
|
|
|
|
|
|
|
|
|
outRechargePriceService.insertRechargePrice(outRechargePrice); |
|
|
|
outRechargePriceService.insertRechargePrice(outRechargePrice); |
|
|
|
|
|
|
|
|
|
|
@ -100,7 +102,8 @@ public class OutRechargePriceController { |
|
|
|
|| outRechargePrice.getId() == null |
|
|
|
|| outRechargePrice.getId() == null |
|
|
|
|| outRechargePrice.getPrice() == null |
|
|
|
|| outRechargePrice.getPrice() == null |
|
|
|
|| outRechargePrice.getRealPrice() == null |
|
|
|
|| outRechargePrice.getRealPrice() == null |
|
|
|
|| outRechargePrice.getGoodsId() == null |
|
|
|
// || outRechargePrice.getGoodsId() == null
|
|
|
|
|
|
|
|
|| outRechargePrice.getSort() == null |
|
|
|
) { |
|
|
|
) { |
|
|
|
log.error("SecOrganizationController -> updatePrice() error!"); |
|
|
|
log.error("SecOrganizationController -> updatePrice() error!"); |
|
|
|
throw ErrorHelp.genException(SysCode.System, ErrorCode.REQ_PARAMS_ERROR, ""); |
|
|
|
throw ErrorHelp.genException(SysCode.System, ErrorCode.REQ_PARAMS_ERROR, ""); |
|
|
@ -113,6 +116,7 @@ public class OutRechargePriceController { |
|
|
|
throw ErrorHelp.genException(SysCode.System, ErrorCode.UPDATE_DATA_ERROR, ""); |
|
|
|
throw ErrorHelp.genException(SysCode.System, ErrorCode.UPDATE_DATA_ERROR, ""); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
outRechargePrice.setStatus(0); |
|
|
|
outRechargePrice.setCreateTime(outRechargePrice1.getCreateTime()); |
|
|
|
outRechargePrice.setCreateTime(outRechargePrice1.getCreateTime()); |
|
|
|
|
|
|
|
|
|
|
|
outRechargePriceService.updateRechargePrice(outRechargePrice); |
|
|
|
outRechargePriceService.updateRechargePrice(outRechargePrice); |
|
|
@ -155,4 +159,28 @@ public class OutRechargePriceController { |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@RequestMapping(value = "/onAndOffShelves", method = RequestMethod.GET) |
|
|
|
|
|
|
|
@ResponseBody |
|
|
|
|
|
|
|
@ApiOperation(value = "上下架") |
|
|
|
|
|
|
|
public ResponseData onAndOffShelves(@RequestParam(value = "id", required = true) Long id) { |
|
|
|
|
|
|
|
try { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
OutRechargePrice outRechargePrice = outRechargePriceService.findById(id); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (outRechargePrice.getStatus() == 1) { |
|
|
|
|
|
|
|
outRechargePrice.setStatus(0); |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
outRechargePrice.setStatus(1); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
outRechargePriceService.updateRechargePrice(outRechargePrice); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return ResponseMsgUtil.success("修改成功"); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} catch (Exception e) { |
|
|
|
|
|
|
|
log.error("HighUserController --> findByUserId() error!", e); |
|
|
|
|
|
|
|
return ResponseMsgUtil.exception(e); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|