本文解答了关于《买卖双方实际支付金额是否一致》相关内容,同时关于1、买卖双方实际支付金额是否一致,2、买卖双方实际支付金额是否一致怎么判断,3、买卖双方付款方式,4、买卖双方实际交易量,5、买方实付价,的相关问答本篇文章福途教育网小编也整理了进来,希望对您有帮助。
买卖双方实际支付金额是否一致
* @param request
* @param response
* @return
*/
@RequestMapping(value="findOrderQuantityPrice", produces = "application/json; charset=utf-8")
public ResponseDTO findOrderQuantityPrice(@RequestBody ConfirmPriceDTO ConfirmPriceDTO,HttpServletRequest request,HttpServletResponse response){
logger.info("in ConfirmPriceController-findOrderQuantityPrice, input parameter ConfirmPriceDTO:{}",JSONObject.toJSONString(ConfirmPriceDTO));
ResponseDTO responseDTO =null;
responseDTO=orderInfoService.findOrderQuantityPrice(ConfirmPriceDTO);
logger.info("in ConfirmPriceController-findOrderQuantityPrice, return parameter responseDTO:{}",JSONObject.toJSONString(responseDTO));
return responseDTO;
}
/**
*
* @Description: 买卖双方协商价格
* @param request
* @param response
* @return
*/
@RequestMapping(value="confirmOrderPrice" ,produces = "application/json; charset=utf-8")
public ResponseDTO confirmOrderPrice(@RequestBody ConfirmPriceDTO confirmPriceDTO,HttpServletRequest request,HttpServletResponse response){
logger.info("in ConfirmPriceController-confirmOrderPrice, input parameter confirmPriceDTO:{}",JSON.toJSONString(confirmPriceDTO));
String token = request.getHeader("token");
String userId = redisTemplate.opsForValue().get(token);
confirmPriceDTO.setUserId(userId);
ResponseDTO responseDTO =null;
responseDTO=orderInfoService.confirmOrderPrice(confirmPriceDTO);
logger.info("in ConfirmPriceController-confirmOrderPrice, return parameter responseDTO:{}",JSON.toJSONString(responseDTO));
return responseDTO;
}
@RequestMapping(value="confirmPrice",produces = "application/json; charset=utf-8")
public ResponseDTO confirmPrice(@RequestBody ConfirmPriceDTO confirmPriceDTO,HttpServletRequest request,HttpServletResponse response){
ResponseDTO responseDTO = new ResponseDTO();
//orderInfoService.confirmPrice(accountDto);
String token = request.getHeader("token");
String userId = redisTemplate.opsForValue().get(token);
confirmPriceDTO.setUserId(userId);
responseDTO=orderInfoService.confirmPrice(confirmPriceDTO);
return responseDTO;
}
}
总结:以上是编辑:【是我的柔情】整理及AI智能原创关于《买卖双方实际支付金额是否一致
》优质内容解答希望能帮助到您。