Browse Source

구매발주현황 수정

dwkim 2 years ago
parent
commit
79df628199

+ 2 - 2
src/main/java/com/oqpo/api/mapper/pomng/PchOrdMapper.java

@@ -22,8 +22,8 @@ public interface PchOrdMapper {
22 22
     int insertPchOdrBaseInfo(@Param("userId") String userId, PchOdrBaseInfoEntity entity)throws Exception;
23 23
     int insertPchOdrDtlPtcl(@Param("userId") String userId, List<PchOdrDtlPtclEntity> gridInsertData)throws Exception;
24 24
 
25
-    List<PchOdrBaseInfoEntity>  selectPchOdrGridList(@Param("brandId") String brandId, @Param("fromDt") String fromDt, @Param("toDt") String toDt, @Param("sPchOdrStCd") String sPchOdrStCd, @Param("sSpplyId") String sSpplyId, @Param("sWhsId") String sWhsId, @Param("sItemNm") String sItemNm, GridRequest gridRequest);
26
-    int selectPchOdrGridCnt(@Param("brandId") String brandId, @Param("fromDt") String fromDt, @Param("toDt") String toDt, @Param("sPchOdrStCd") String sPchOdrStCd, @Param("sSpplyId") String sSpplyId, @Param("sWhsId") String sWhsId, @Param("sItemNm") String sItemNm);
25
+    List<PchOdrBaseInfoEntity>  selectPchOdrGridList(@Param("sBrandId") String sBrandId, @Param("fromDt") String fromDt, @Param("toDt") String toDt, @Param("sPchOdrStCd") String sPchOdrStCd, @Param("sSpplyId") String sSpplyId, @Param("sWhsId") String sWhsId, @Param("sItemNm") String sItemNm, GridRequest gridRequest);
26
+    int selectPchOdrGridCnt(@Param("sBrandId") String sBrandId, @Param("fromDt") String fromDt, @Param("toDt") String toDt, @Param("sPchOdrStCd") String sPchOdrStCd, @Param("sSpplyId") String sSpplyId, @Param("sWhsId") String sWhsId, @Param("sItemNm") String sItemNm);
27 27
 
28 28
     PchOdrBaseInfoEntity selectPchOdrInfo(@Param("pchPodrUnqNo") String pchPodrUnqNo);
29 29
     List<PchOdrDtlPtclEntity> selectOdrDtlList(@Param("pchPodrUnqNo") String pchPodrUnqNo);

+ 2 - 0
src/main/java/com/oqpo/api/service/pomng/PchOrdService.java

@@ -381,6 +381,8 @@ public class PchOrdService extends CommonService {
381 381
         int gridPage = gridRequest.getGridPage();
382 382
         int gridSize = gridRequest.getGridSize();
383 383
 
384
+        System.out.println(sBrandId + "==" + fromDt + "==" + toDt + "==" + sPchOdrStCd + "==" + sSpplyId + "==" + sWhsId + "==" + sItemNm);
385
+
384 386
         fromDt = fromDt == null ? null : fromDt.replace(".", "");
385 387
         toDt = toDt == null ? null : toDt.replace(".", "");
386 388