This commit is contained in:
김민구
2024-01-24 18:26:24 +09:00
2 changed files with 3 additions and 3 deletions

View File

@@ -31,7 +31,7 @@
<when test="searchn == 1">o.activation = 1 and w.name like concat('%',#{search},'%')</when> <when test="searchn == 1">o.activation = 1 and w.name like concat('%',#{search},'%')</when>
</choose> </choose>
</where> </where>
order by o.expected_delivery_date desc limit #{start}, #{perPage} order by o.expected_delivery_date asc limit #{start}, #{perPage}
</select> </select>

View File

@@ -163,7 +163,7 @@
datatype: "json" datatype: "json"
}).done(function (data) { }).done(function (data) {
if (data == true) { if (data == true) {
alert("고 정보가 생성되었습니다."); alert("고 정보가 생성되었습니다.");
var form = document.createElement("form"); var form = document.createElement("form");
form.action = "/out/read"; form.action = "/out/read";
@@ -180,7 +180,7 @@
window.location.href = "/out/list"; window.location.href = "/out/list";
} else { } else {
alert("고 정보 생성에 실패하였습니다."); alert("고 정보 생성에 실패하였습니다.");
} }
}).fail(function () { }).fail(function () {
alert("오류가 발생했습니다."); alert("오류가 발생했습니다.");