From e1284aa3b1b400ecebb59126d7110a3bb4a6b000 Mon Sep 17 00:00:00 2001
From: zouyu <2723363702@qq.com>
Date: 星期五, 31 十月 2025 15:46:09 +0800
Subject: [PATCH] 原材料报检拆分功能V1

---
 basic-server/src/main/java/com/ruoyi/basic/mapper/IfsInventoryQuantityMapper.java |    9 ++++++++-
 1 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/basic-server/src/main/java/com/ruoyi/basic/mapper/IfsInventoryQuantityMapper.java b/basic-server/src/main/java/com/ruoyi/basic/mapper/IfsInventoryQuantityMapper.java
index 1963bb9..1eae395 100644
--- a/basic-server/src/main/java/com/ruoyi/basic/mapper/IfsInventoryQuantityMapper.java
+++ b/basic-server/src/main/java/com/ruoyi/basic/mapper/IfsInventoryQuantityMapper.java
@@ -3,6 +3,7 @@
 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 import com.ruoyi.basic.dto.IfsInventoryQuantityDto;
 import com.ruoyi.basic.pojo.IfsInventoryQuantity;
+import com.ruoyi.basic.vo.IfsInventoryQuantityVO;
 import org.apache.ibatis.annotations.Mapper;
 import org.apache.ibatis.annotations.Param;
 
@@ -24,7 +25,7 @@
      * @param ifsInventoryId
      * @return
      */
-    int selectReportCountById(@Param("ifsInventoryId") Integer ifsInventoryId);
+    int selectReportCountById(@Param("ifsInventoryId") Long ifsInventoryId);
 
 
     /**
@@ -39,4 +40,10 @@
                           @Param("supplierName") String supplierName,
                           @Param("startOfNextQuarter") LocalDateTime startOfNextQuarter,
                           @Param("endOfQuarter") LocalDateTime endOfQuarter);
+
+    List<IfsInventoryQuantityVO> selectSplitOrderList(@Param("partNo")String partNo,
+                                                      @Param("lineNo")String lineNo,
+                                                      @Param("releaseNo")String releaseNo,
+                                                      @Param("receiptNo")Integer receiptNo,
+                                                      @Param("orderNo")String orderNo);
 }

--
Gitblit v1.9.3