首页>代码>vue+maven+ssh的网上花店系统>/flowers/src/main/java/com/jack/controller/OrderController.java
package com.jack.controller;

import java.util.List;

import javax.servlet.http.HttpServletRequest;





import org.apache.log4j.Logger;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import com.jack.entity.Cart;
import com.jack.entity.Order;
import com.jack.entity.Product;
import com.jack.service.OrderItemService;
import com.jack.service.OrderService;
import com.jack.service.ProductService;
import com.util.controller.BaseController;
import com.util.entity.ResponseEntity;

@RestController
@RequestMapping("order")
public class OrderController extends BaseController {

	private static final Logger LOGGER=Logger.getLogger(OrderController.class);
	
	@Autowired 
	private OrderService orderService;
	
	@Autowired
	private ProductService productService;
	
	@Autowired
	private OrderItemService orderItemService;
	
	@GetMapping
	public ResponseEntity getOrderListByUserId(Order order,HttpServletRequest request){
		String userId=(String) super.getSessionParams(request, "userId");
		ResponseEntity re=new ResponseEntity();
		try{
			order.setUserId(userId);
			List<Order> orderList=orderService.findOrders(order);
			re.setData(orderList);
			re.setStatusCode("200");
		}catch(Exception e){
			e.printStackTrace();
			String errorMsg=e.getMessage();
			re.setStatusCode("500");
			re.setErrorMsg("500");
			LOGGER.info(errorMsg);
		}
		return re;
	}
	
	//从购物车中生成订单或直接生成订单
	@PostMapping
	public ResponseEntity saveOrder(Order order,Product product,HttpServletRequest request){
		Cart cart=(Cart) super.getSessionParams(request, "cart");
		ResponseEntity re=new ResponseEntity();
		try{
		   String id=orderService.generateOrder(cart, order, product);
		   re.setData(id);
		   re.setStatusCode("200");
		}catch(Exception e){		
			e.printStackTrace();
			String errorMsg=e.getMessage();
		    re.setStatusCode("500");
			re.setErrorCode("500");
			re.setErrorMsg(errorMsg);
			LOGGER.info(errorMsg);
		}
		return re;
	}
}
最近下载更多
wuni1105  LV2 5月16日
阿九11111  LV4 5月9日
微信网友_6505237310967808  LV1 2023年6月5日
hbsoft2008  LV16 2023年2月17日
张三helisi  LV4 2022年6月11日
对方说到底是  LV2 2022年5月29日
gch666  LV6 2022年5月23日
a1642865118  LV8 2022年5月22日
330786215  LV14 2022年4月18日
guojq1  LV3 2022年1月5日
最近浏览更多
暂无贡献等级
张泽帅  LV6 10月21日
040313  LV1 10月16日
黄志琴  LV1 9月29日
Sul_ALL  LV1 9月6日
Song3LL 7月22日
暂无贡献等级
樱花味小然子  LV5 7月18日
Luck_ZDM  LV12 7月2日
272704 6月29日
暂无贡献等级
zeng1206  LV7 6月16日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友