fix: [item-management] FG 선택 시 수식 산출 탭 자동 전환 제거

- FG 품목 선택 시 수식 산출 탭 버튼만 표시하고 자동 전환하지 않음
- 수식 산출 자동 실행(calculateFormula) 호출 제거
- 사용자가 현재 탭을 유지하면서 필요 시 수식 산출 탭 클릭
This commit is contained in:
김보곤
2026-03-18 15:37:06 +09:00
parent b469ae9bfc
commit 4f0e792d37

View File

@@ -389,7 +389,6 @@ function getTypeTitle(type) {
// ── 가변사이즈 탭 표시/숨김 ──
function showFormulaTab() {
document.getElementById('tab-formula-bom').style.display = '';
switchBomTab('formula');
}
function hideFormulaTab() {
@@ -444,7 +443,6 @@ function setSelectValue(selectId, value) {
setSelectValue('input-finishing-type', parsed.finishing);
}
showFormulaTab();
calculateFormula();
} else {
hideFormulaTab();
}