于继渤 2 年 前
コミット
1889410db9

+ 10 - 1
src/main/java/com/dk/mdm/controller/ivt/InboundController.java

@@ -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);
+    }
 
 }

+ 1 - 1
src/main/java/com/dk/mdm/service/ivt/IntoReturnService.java

@@ -305,5 +305,5 @@ public class IntoReturnService extends BaseService<IntoReturn> {
 //        List<IntoReturnResponse> intoReturnResponsesList = intoReturnMapper.selectByCond(new IntoReturnQuery().setIntoReturnIdList(intoReturnIdList));
         return null;
     }
-    
+
 }