stock/create.jsp
StockService.java
StockController.java
This commit is contained in:
sungsu
2024-01-22 12:10:58 +09:00
parent e2f8967403
commit 7dbae87749
3 changed files with 101 additions and 96 deletions

View File

@@ -146,9 +146,9 @@ public class StockController {
// 생성 - Ajax
@PostMapping("/create_process")
@ResponseBody
public boolean createProcess(StockDto dto) {
service.checkandUpdateOrCreateProcess(dto);
return true;
public int createProcess(StockDto dto) {
int c = service.checkandUpdateOrCreateProcess(dto);
return c;
}

View File

@@ -1,6 +1,5 @@
package com.no1.wms.stock;
import com.no1.wms.in.InDto;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@@ -149,15 +148,16 @@ public class StockService {
//createProcess
public boolean checkandUpdateOrCreateProcess(StockDto dto){
public int checkandUpdateOrCreateProcess(StockDto dto){
mapper.updateWarehousePlus(dto);
int j = mapper.checkIfExistsStock(dto);
if (j == 1){
mapper.updateStockProcess(dto);
return 1;
}else{
mapper.createStockProcess(dto);
return 2;
}
mapper.updateWarehousePlus(dto);
return true;
}
}

View File

@@ -20,7 +20,9 @@
<span id='Product_label' class="input-group-text">제품</span>
<input readonly id="stock_pro_name" type="text" class="form-control" placeholder="제품 검색">
<input hidden name="ProductName" id="product_id" value="${dto.product_id}">
<button id="product_search_button" class="btn-primary btn" onclick="showSearchModals('제품 검색','product_category_company_search')">검색</button>
<button id="product_search_button" class="btn-primary btn"
onclick="showSearchModals('제품 검색','product_category_company_search')">검색
</button>
</div>
<div class="input-group mb-3 w-40 col-centered">
@@ -39,7 +41,9 @@
<span id='Warehouse_label' class="input-group-text">창고</span>
<input readonly id="warehouse_name" type="text" class="form-control" placeholder="창고 검색">
<input hidden name="product_id" id="warehouse_id" value="${dto.warehouse_id}">
<button id="Warehouse_search_button" class="btn-primary btn" onclick="showSearchModals2('창고 검색','warehouse_capacity_currentCapacity')">검색</button>
<button id="Warehouse_search_button" class="btn-primary btn"
onclick="showSearchModals2('창고 검색','warehouse_capacity_currentCapacity')">검색
</button>
</div>
<div class="input-group mb-3 w-40 col-centered">
@@ -67,10 +71,6 @@
</div>
</div>
</div>
</div>
@@ -86,38 +86,38 @@
</div>
<script>
function showSearchModals(title, val){
function showSearchModals(title, val) {
$("#searchModalLabel").text(title);
const data = { name : val};
const data = {name: val};
$.ajax({
type : 'post', // 타입 (get, post, put 등등)
url : '/stock/show_modal', // 요청할 서버url
dataType : 'html', // 데이터 타입 (html, xml, json, text 등등)
data : data,
success : function(result) { // 결과 성공 콜백함수
type: 'post', // 타입 (get, post, put 등등)
url: '/stock/show_modal', // 요청할 서버url
dataType: 'html', // 데이터 타입 (html, xml, json, text 등등)
data: data,
success: function (result) { // 결과 성공 콜백함수
$("#search_modal_body").html(result);
searchModalBootStrap.show();
},
error : function(request, status, error) {
error: function (request, status, error) {
alert(error)
}
});
}
function showSearchModals2(title, val){
function showSearchModals2(title, val) {
$("#searchModalLabel").text(title);
const data = { name : val};
const data = {name: val};
$.ajax({
type : 'post', // 타입 (get, post, put 등등)
url : '/stock/show_modal', // 요청할 서버url
dataType : 'html', // 데이터 타입 (html, xml, json, text 등등)
data : data,
success : function(result) { // 결과 성공 콜백함수
type: 'post', // 타입 (get, post, put 등등)
url: '/stock/show_modal', // 요청할 서버url
dataType: 'html', // 데이터 타입 (html, xml, json, text 등등)
data: data,
success: function (result) { // 결과 성공 콜백함수
$("#search_modal_body").html(result);
searchModalBootStrap.show();
},
error : function(request, status, error) {
error: function (request, status, error) {
alert(error)
}
});
@@ -172,8 +172,13 @@
},
datatype: "json"
}).done(function (data) {
if (data == true) {
if (data != 0) {
if (data == 1) {
alert("기존 재고에 추가되었습니다.");
} else {
alert("재고 정보가 생성되었습니다.");
}
var form = document.createElement("form");
form.action = "/stock/read";