Files
sam-kd/account/modal.php
hskwon aca1767eb9 초기 커밋: 5130 레거시 시스템
- URL 하드코딩 → .env APP_URL 기반 동적 URL로 변경
- DB 연결 하드코딩 → .env 기반으로 변경
- MySQL strict mode DATE 오류 수정
2025-12-10 20:14:31 +09:00

75 lines
3.5 KiB
PHP

<!-- 이월자료 Modal -->
<div class="container-fluid justify-content-center align-items-center">
<div id="monthlyBalanceModal" class="modal fade" tabindex="-1">
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<div class="modal-header">
<h2 class="modal-title">이월자료 수정</h2>
<span class="close">&times;</span>
</div>
<div class="modal-body">
<table class="table table-hover">
<thead class="table-info">
<tr>
<th class="text-center" style="width:20%;">기준일자</th>
<th class="text-center" style="width:30%;">거래처명</th>
<th class="text-center" style="width:20%;">이월잔액</th>
<th class="text-center" style="width:30%;">적요</th>
<th style="display:none;">고유번호</th>
<th style="display:none;">secondordnum</th>
</tr>
</thead>
<tbody id="monthlyBalanceModalBody">
<!-- 데이터를 여기에 동적으로 추가 -->
</tbody>
</table>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-dark btn-sm" onclick="saveMonthlyBalanceData()"> <i class="bi bi-floppy2-fill"></i> 저장</button>
<span class="badge bg-dark close">&times;</span>
</div>
</div>
</div>
</div>
</div>
<!-- 판매일괄회계반영 Modal -->
<div class="container-fluid justify-content-center align-items-center">
<div id="monthlysaleModal" class="modal fade" tabindex="-1">
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<div class="modal-header">
<h2 class="modal-title"> 판매일괄회계반영(계산서발행) </h2>
<span class="close">&times;</span>
</div>
<div class="modal-body">
<table class="table table-hover">
<thead class="table-info">
<tr>
<th class="text-center" >기준일자</th>
<th class="text-center" >거래처명</th>
<th class="text-center" >당월 발생금액</th>
<th class="text-center" style="width:140px;" >계산서 발행</th>
<th class="text-center" >적요</th>
<th class="text-center" style="width:80px;" >고유번호</th>
</tr>
</thead>
<tbody id="monthlysaleModalBody">
<!-- 데이터를 여기에 동적으로 추가 -->
</tbody>
</table>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-dark btn-sm" onclick="saveMonthlyBalanceData()"> <i class="bi bi-floppy2-fill"></i> 저장</button>
<button type="button" class="btn btn-danger btn-sm" onclick="saveMonthlyDelete()"> <i class="bi bi-trash3-fill"></i> 삭제 </button>
<span class="badge bg-dark close">&times;</span>
</div>
</div>
</div>
</div>
</div>