From bce58228855c18a0baea8ed47deca21d55674669 Mon Sep 17 00:00:00 2001 From: sungsu Date: Wed, 24 Jan 2024 18:22:03 +0900 Subject: [PATCH] =?UTF-8?q?#=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/resources/mappers/ProductOutMapper.xml | 2 +- src/main/webapp/WEB-INF/views/out/create.jsp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/resources/mappers/ProductOutMapper.xml b/src/main/resources/mappers/ProductOutMapper.xml index a218d5f..7baf5a8 100644 --- a/src/main/resources/mappers/ProductOutMapper.xml +++ b/src/main/resources/mappers/ProductOutMapper.xml @@ -31,7 +31,7 @@ o.activation = 1 and w.name like concat('%',#{search},'%') - order by o.expected_delivery_date desc limit #{start}, #{perPage} + order by o.expected_delivery_date asc limit #{start}, #{perPage} diff --git a/src/main/webapp/WEB-INF/views/out/create.jsp b/src/main/webapp/WEB-INF/views/out/create.jsp index 821cc7f..22d7513 100644 --- a/src/main/webapp/WEB-INF/views/out/create.jsp +++ b/src/main/webapp/WEB-INF/views/out/create.jsp @@ -163,7 +163,7 @@ datatype: "json" }).done(function (data) { if (data == true) { - alert("재고 정보가 생성되었습니다."); + alert("출고 정보가 생성되었습니다."); var form = document.createElement("form"); form.action = "/out/read"; @@ -180,7 +180,7 @@ window.location.href = "/out/list"; } else { - alert("재고 정보 생성에 실패하였습니다."); + alert("출고 정보 생성에 실패하였습니다."); } }).fail(function () { alert("오류가 발생했습니다.");