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("오류가 발생했습니다.");