|
|
@@ -0,0 +1,57 @@
|
|
|
+package com.uas.platform.b2b.controller;
|
|
|
+
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.data.domain.Page;
|
|
|
+import org.springframework.stereotype.Controller;
|
|
|
+import org.springframework.web.bind.annotation.PathVariable;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestMethod;
|
|
|
+import org.springframework.web.bind.annotation.ResponseBody;
|
|
|
+
|
|
|
+import com.uas.platform.b2b.model.PurchaseAccept;
|
|
|
+import com.uas.platform.b2b.service.PurchaseAcceptService;
|
|
|
+import com.uas.platform.b2b.support.SystemSession;
|
|
|
+import com.uas.platform.core.model.PageInfo;
|
|
|
+import com.uas.platform.core.model.PageParams;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 卖家获取对应的客户采购验收单
|
|
|
+ *
|
|
|
+ * @author suntg
|
|
|
+ *
|
|
|
+ */
|
|
|
+@Controller
|
|
|
+@RequestMapping("/sale/accept")
|
|
|
+public class SaleAcceptController {
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private PurchaseAcceptService purchaseAcceptService;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 作为卖家,客户的采购验收单(全部)
|
|
|
+ *
|
|
|
+ * @param json
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @RequestMapping(method = RequestMethod.GET)
|
|
|
+ @ResponseBody
|
|
|
+ public Page<PurchaseAccept> getReceivedPurchaseAccepts(PageParams params) {
|
|
|
+ PageInfo info = new PageInfo(params);
|
|
|
+ // 我作为卖家,把我的企业ID作为供应商ID传入
|
|
|
+ info.filter("vendUU", SystemSession.getUser().getEnterprise().getUu());
|
|
|
+ return purchaseAcceptService.findAllByPageInfo(info);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 作为卖家,根据变更单ID查找客户采购验收(含明细)
|
|
|
+ *
|
|
|
+ * @param id
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @RequestMapping(value = "/{id}", method = RequestMethod.GET)
|
|
|
+ @ResponseBody
|
|
|
+ public PurchaseAccept getReceivedPurchaseAcceptById(@PathVariable("id") Long id) {
|
|
|
+ return purchaseAcceptService.findById(id);
|
|
|
+ }
|
|
|
+
|
|
|
+}
|