- URL 하드코딩 → .env APP_URL 기반 동적 URL로 변경 - DB 연결 하드코딩 → .env 기반으로 변경 - MySQL strict mode DATE 오류 수정
37 lines
1.8 KiB
PHP
37 lines
1.8 KiB
PHP
<!-- 모달 1: lotModal -->
|
|
<div class="modal fade" id="lotModal" tabindex="-999" aria-labelledby="lotModalLabel" aria-hidden="true" data-bs-backdrop="static">
|
|
<div class="modal-dialog modal-lg">
|
|
<div class="modal-content" style="width:750px;">
|
|
<div class="modal-header">
|
|
<h5 class="modal-title" id="lotModalLabel">원자재(철판) LOT</h5>
|
|
<button type="button" class="btn-close cancelBtn" aria-label="Close"></button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<!-- 모달 바디는 AJAX로 로드됨 -->
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-primary btn-sm nullBtn">공백 삽입</button>
|
|
<button type="button" class="btn btn-secondary btn-sm cancelBtn">취소</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- 모달 1: lotModal_fabric -->
|
|
<div class="modal fade" id="lotModal_fabric" tabindex="-999" aria-labelledby="lotModalLabel_fabric" aria-hidden="true" data-bs-backdrop="static">
|
|
<div class="modal-dialog modal-lg">
|
|
<div class="modal-content" style="width:750px;">
|
|
<div class="modal-header">
|
|
<h5 class="modal-title" id="lotModalLabel_fabric">원단 Lot </h5>
|
|
<button type="button" class="btn-close cancelBtn_fabric" aria-label="Close"></button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<!-- 모달 바디는 AJAX로 로드됨 -->
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-primary btn-sm nullBtn_fabric">공백 삽입</button>
|
|
<button type="button" class="btn btn-secondary btn-sm cancelBtn_fabric">취소</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |