mirror of
https://github.com/suhf/No1WMS.git
synced 2026-02-04 12:13:24 +09:00
#수정
stock/create.jsp StockService.java StockController.java
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -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>
|
||||
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user