|
|
@@ -54,6 +54,15 @@ public class InboundController{
|
|
|
}
|
|
|
|
|
|
|
|
|
-
|
|
|
+ /**
|
|
|
+ * @desc : 查看来源单据,总单加明细 采购退货用
|
|
|
+ * @author : 于继渤
|
|
|
+ * @date : 2024/3/6 10:36
|
|
|
+ */
|
|
|
+ @ApiOperation(value = "条件查询", notes = "条件查询")
|
|
|
+ @PostMapping({"select_inbound_and_item"})
|
|
|
+ public ResponseResultVO<PageList<InboundResponse>> selectInboundAndItem(@RequestBody InboundQuery inboundQuery) {
|
|
|
+ return inboundService.selectInboundAndItem(inboundQuery);
|
|
|
+ }
|
|
|
|
|
|
}
|