|
|
@@ -46,6 +46,18 @@ public class SaleOrderChangeController {
|
|
|
return purchaseOrderChangeService.findAllByPageInfo(info);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 作为卖家,根据变更单ID查找采购变更单(含明细)
|
|
|
+ *
|
|
|
+ * @param id
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @RequestMapping(value = "/{id}", method = RequestMethod.GET)
|
|
|
+ @ResponseBody
|
|
|
+ public PurchaseOrderChange getReceivedPurchaseOrderItemById(@PathVariable("id") Long id) {
|
|
|
+ return purchaseOrderChangeService.findById(id);
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 作为卖家,回复收到的采购变更单
|
|
|
*
|