From 1f403ebe406e8746f376f3befc9353b7c1da1d4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E6=95=8F?= <962239776@qq.com> Date: Mon, 24 Jun 2019 13:47:38 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E4=BB=A3=E7=A0=81=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/cn/estsh/i3plus/pojo/wms/bean/SapCyco.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/i3plus-pojo-wms/src/main/java/cn/estsh/i3plus/pojo/wms/bean/SapCyco.java b/modules/i3plus-pojo-wms/src/main/java/cn/estsh/i3plus/pojo/wms/bean/SapCyco.java index 787a9e1..6864439 100644 --- a/modules/i3plus-pojo-wms/src/main/java/cn/estsh/i3plus/pojo/wms/bean/SapCyco.java +++ b/modules/i3plus-pojo-wms/src/main/java/cn/estsh/i3plus/pojo/wms/bean/SapCyco.java @@ -52,7 +52,7 @@ public class SapCyco extends SapBase{ @AnnoOutputColumn private String zxm; - @ApiParam(value = "库存账冻结标识") + @ApiParam(value = "库存账冻结标志") @AnnoOutputColumn private String zdjbs; From aed953a03e02890d9f6f67d22ecc4f97f51e6fd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BA=8E=E5=AD=A6=E6=9D=B0?= Date: Mon, 24 Jun 2019 16:08:59 +0800 Subject: [PATCH 2/2] =?UTF-8?q?1.=20FIFO=20=E6=8E=A8=E8=8D=90=E6=97=B6?= =?UTF-8?q?=E8=A6=81=E5=8A=A0=E4=B8=8A=20sn=5Fstatus=20=3D=2040=20?= =?UTF-8?q?=E7=9A=84=E7=AD=9B=E9=80=89=E6=9D=A1=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/cn/estsh/i3plus/pojo/wms/repository/WmsStockSnRepository.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/i3plus-pojo-wms/src/main/java/cn/estsh/i3plus/pojo/wms/repository/WmsStockSnRepository.java b/modules/i3plus-pojo-wms/src/main/java/cn/estsh/i3plus/pojo/wms/repository/WmsStockSnRepository.java index 80ccc6e..2bb7afa 100644 --- a/modules/i3plus-pojo-wms/src/main/java/cn/estsh/i3plus/pojo/wms/repository/WmsStockSnRepository.java +++ b/modules/i3plus-pojo-wms/src/main/java/cn/estsh/i3plus/pojo/wms/repository/WmsStockSnRepository.java @@ -30,7 +30,7 @@ public interface WmsStockSnRepository extends BaseRepository { */ @Query(value = "from WmsStockSn " + "where organizeCode=?1 " + - "and zoneNo=?2 and partNo=?3 and isValid=?4 and isDeleted=?5 " + + "and zoneNo=?2 and partNo=?3 and isValid=?4 and isDeleted=?5 and snStatus=40 " + "order by fixLotNo, dateCode, lotNo") List findByFifoSNByZoneNo(String organizeCode, String zoneNo, String partNo, int isValid, int isDeleted); }