|
@@ -0,0 +1,45 @@
|
|
|
+package com.iamberry.rst.controllers.order;
|
|
|
+
|
|
|
+import com.iamberry.rst.core.cm.SalesOrder;
|
|
|
+import com.iamberry.wechat.tools.ResponseJson;
|
|
|
+import org.springframework.stereotype.Controller;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestParam;
|
|
|
+import org.springframework.web.bind.annotation.ResponseBody;
|
|
|
+import org.springframework.web.servlet.ModelAndView;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author 献
|
|
|
+ * @company 深圳爱贝源科技有限公司
|
|
|
+ * @date 2018/8/23 17:21
|
|
|
+ * @tel 18271840547
|
|
|
+ * @website www.iamberry.com
|
|
|
+ */
|
|
|
+@Controller
|
|
|
+@RequestMapping("/admin/await_send")
|
|
|
+public class AwaitSendController {
|
|
|
+
|
|
|
+ // 仓库查询待发货订单
|
|
|
+ @RequestMapping("/listAwaitSendOrder")
|
|
|
+ public ModelAndView listAwaitSendOrder(SalesOrder salesOrder) {
|
|
|
+
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+
|
|
|
+ // 打单发货页面
|
|
|
+ @RequestMapping("/printOrderUI")
|
|
|
+ public ModelAndView printOrderUI(@RequestParam("orderId") String[] orders) {
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+
|
|
|
+ // 打单发货
|
|
|
+ @ResponseBody
|
|
|
+ @RequestMapping("/printOrder")
|
|
|
+ public ResponseJson printOrder(@RequestParam("post") String postType,
|
|
|
+ @RequestParam("orderId") String orderId) {
|
|
|
+
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+}
|