|
|
@@ -48,6 +48,18 @@ public class SaleNoticeController {
|
|
|
info.filter("vendUU", SystemSession.getUser().getEnterprise().getUu());
|
|
|
return purchaseNoticeService.findAllByPageInfo(info);
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 作为卖家,收到的送货提醒,对应id
|
|
|
+ *
|
|
|
+ * @param id
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @RequestMapping(value = "/{id}", method = RequestMethod.GET)
|
|
|
+ @ResponseBody
|
|
|
+ public PurchaseNotice getReceivedPurchaseNoticeById(@PathVariable("id") Long id) {
|
|
|
+ return purchaseNoticeService.findById(id);
|
|
|
+ }
|
|
|
|
|
|
/**
|
|
|
* 作为卖家,收到的送货提醒(待发货)
|