feat(purchase): 구매 취소/반품 + 입고일 기준 월별 분석

- 상태 추가: cancelled(구매취소), returned(반품)
- API: PUT /:id/cancel, /:id/return, /:id/revert-cancel
- 데스크탑: 구매완료→취소 버튼, 입고완료→반품 버튼, 취소→되돌리기
- 분석 페이지: 구매일/입고일 기준 전환 토글, 입고일 기준 월간 분류 집계 + 입고 목록
- Settlement API: GET /received-summary, /received-list (입고일 기준)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Hyungi Ahn
2026-04-01 11:07:19 +09:00
parent 2c032bd9ea
commit 7c1369a1be
12 changed files with 352 additions and 37 deletions

View File

@@ -38,9 +38,13 @@
</div>
</div>
<!-- 월 선택 -->
<div class="flex items-center gap-3 mb-6">
<!-- 월 선택 + 기준일 전환 -->
<div class="flex items-center gap-3 mb-6 flex-wrap">
<input type="month" id="paMonth" class="px-3 py-2 border rounded-lg text-sm">
<div class="flex rounded-lg border overflow-hidden text-sm">
<button id="btnDatePurchase" onclick="setDateBasis('purchase')" class="px-3 py-2 bg-orange-600 text-white">구매일</button>
<button id="btnDateReceived" onclick="setDateBasis('received')" class="px-3 py-2 bg-white text-gray-600 hover:bg-gray-50">입고일</button>
</div>
<button onclick="loadAnalysis()" class="px-4 py-2 bg-orange-600 text-white rounded-lg text-sm hover:bg-orange-700">
<i class="fas fa-search mr-1"></i>조회
</button>
@@ -104,10 +108,34 @@
</div>
</div>
<!-- 입고 목록 (입고일 기준 모드에서만 표시) -->
<div id="paReceivedSection" class="hidden bg-white rounded-xl shadow-sm p-5 mt-6">
<h2 class="text-base font-semibold text-gray-800 mb-4"><i class="fas fa-box-open text-teal-500 mr-2"></i>월간 입고 내역</h2>
<div class="overflow-x-auto">
<table class="w-full text-sm">
<thead class="bg-gray-50 text-gray-600 text-xs uppercase">
<tr>
<th class="px-4 py-3 text-left">품목</th>
<th class="px-4 py-3 text-left">분류</th>
<th class="px-4 py-3 text-right">수량</th>
<th class="px-4 py-3 text-right">단가</th>
<th class="px-4 py-3 text-left">업체</th>
<th class="px-4 py-3 text-left">입고일</th>
<th class="px-4 py-3 text-left">보관위치</th>
<th class="px-4 py-3 text-left">상태</th>
</tr>
</thead>
<tbody id="paReceivedList" class="divide-y">
<tr><td colspan="8" class="px-4 py-8 text-center text-gray-400">-</td></tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<script src="/static/js/tkfb-core.js?v=2026033108"></script>
<script src="/static/js/purchase-analysis.js?v=2026031602"></script>
<script src="/static/js/tkfb-core.js?v=2026040103"></script>
<script src="/static/js/purchase-analysis.js?v=2026040103"></script>
</body>
</html>