- 보류/해제: 현재 결재자가 문서를 보류하고 해제 - 전결: 이후 모든 결재를 건너뛰고 최종 승인 - 회수 강화: 회수 사유 입력, 첫 결재자 미처리 시에만 허용 - 복사 재기안: 완료/반려/회수 문서를 복사하여 새 draft 생성 - 참조 열람 추적: 미열람/열람 필터, mark-read API - ApprovalDelegation 모델 생성 (Phase 3 위임 대결 준비) - 뱃지 카운트에 reference_unread 추가
198 lines
8.9 KiB
PHP
198 lines
8.9 KiB
PHP
@extends('layouts.app')
|
|
|
|
@section('title', '참조함')
|
|
|
|
@section('content')
|
|
<div class="flex flex-col sm:flex-row sm:justify-between sm:items-center gap-4 mb-6">
|
|
<h1 class="text-2xl font-bold text-gray-800">참조함</h1>
|
|
</div>
|
|
|
|
{{-- 미열람/열람 필터 탭 --}}
|
|
<div class="flex gap-1 mb-4">
|
|
<button onclick="setReadFilter('')" id="tab-all"
|
|
class="px-4 py-2 rounded-lg text-sm font-medium transition bg-blue-600 text-white">
|
|
전체
|
|
</button>
|
|
<button onclick="setReadFilter('false')" id="tab-unread"
|
|
class="px-4 py-2 rounded-lg text-sm font-medium transition bg-gray-100 text-gray-700 hover:bg-gray-200">
|
|
미열람
|
|
<span id="unread-badge" class="ml-1 inline-flex items-center justify-center px-1.5 py-0.5 rounded-full text-xs bg-red-500 text-white" style="display:none;"></span>
|
|
</button>
|
|
<button onclick="setReadFilter('true')" id="tab-read"
|
|
class="px-4 py-2 rounded-lg text-sm font-medium transition bg-gray-100 text-gray-700 hover:bg-gray-200">
|
|
열람완료
|
|
</button>
|
|
</div>
|
|
|
|
<x-filter-collapsible id="filterForm">
|
|
<form id="filterForm" class="flex flex-wrap gap-2 sm:gap-4">
|
|
<input type="hidden" name="is_read" id="is_read_filter" value="">
|
|
<div class="flex-1 min-w-0 w-full sm:w-auto">
|
|
<input type="text" name="search" placeholder="제목, 문서번호 검색..."
|
|
class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
|
|
</div>
|
|
<button type="submit" class="bg-gray-600 hover:bg-gray-700 text-white px-6 py-2 rounded-lg transition w-full sm:w-auto">
|
|
검색
|
|
</button>
|
|
</form>
|
|
</x-filter-collapsible>
|
|
|
|
<div id="approval-table" class="bg-white rounded-lg shadow-sm overflow-hidden">
|
|
<div class="flex justify-center items-center p-12">
|
|
<div class="animate-spin rounded-full h-12 w-12 border-b-2 border-blue-600"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="pagination-area" class="mt-4"></div>
|
|
@endsection
|
|
|
|
@push('scripts')
|
|
<script>
|
|
let currentReadFilter = '';
|
|
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
loadReferences();
|
|
loadUnreadCount();
|
|
document.getElementById('filterForm').addEventListener('submit', function(e) {
|
|
e.preventDefault();
|
|
loadReferences();
|
|
});
|
|
});
|
|
|
|
function setReadFilter(value) {
|
|
currentReadFilter = value;
|
|
document.getElementById('is_read_filter').value = value;
|
|
|
|
// 탭 스타일 업데이트
|
|
['tab-all', 'tab-unread', 'tab-read'].forEach(id => {
|
|
const el = document.getElementById(id);
|
|
el.className = 'px-4 py-2 rounded-lg text-sm font-medium transition bg-gray-100 text-gray-700 hover:bg-gray-200';
|
|
});
|
|
const activeTab = value === '' ? 'tab-all' : (value === 'false' ? 'tab-unread' : 'tab-read');
|
|
document.getElementById(activeTab).className = 'px-4 py-2 rounded-lg text-sm font-medium transition bg-blue-600 text-white';
|
|
|
|
loadReferences();
|
|
}
|
|
|
|
function loadUnreadCount() {
|
|
fetch('/api/admin/approvals/badge-counts', {
|
|
headers: { 'Accept': 'application/json', 'X-CSRF-TOKEN': '{{ csrf_token() }}' }
|
|
})
|
|
.then(r => r.json())
|
|
.then(data => {
|
|
const count = data.data?.reference_unread || 0;
|
|
const badge = document.getElementById('unread-badge');
|
|
if (count > 0) {
|
|
badge.textContent = count;
|
|
badge.style.display = 'inline-flex';
|
|
}
|
|
})
|
|
.catch(() => {});
|
|
}
|
|
|
|
function loadReferences(page = 1) {
|
|
const form = document.getElementById('filterForm');
|
|
const params = new URLSearchParams(new FormData(form));
|
|
params.set('page', page);
|
|
params.set('per_page', 15);
|
|
|
|
fetch(`/api/admin/approvals/references?${params}`, {
|
|
headers: { 'Accept': 'application/json', 'X-CSRF-TOKEN': '{{ csrf_token() }}' }
|
|
})
|
|
.then(r => r.json())
|
|
.then(data => renderTable(data.data || [], data))
|
|
.catch(() => {
|
|
document.getElementById('approval-table').innerHTML = '<div class="p-8 text-center text-gray-500">데이터를 불러올 수 없습니다.</div>';
|
|
});
|
|
}
|
|
|
|
function renderTable(items, pagination) {
|
|
const container = document.getElementById('approval-table');
|
|
|
|
if (!items.length) {
|
|
container.innerHTML = '<div class="p-8 text-center text-gray-500">참조된 결재 문서가 없습니다.</div>';
|
|
document.getElementById('pagination-area').innerHTML = '';
|
|
return;
|
|
}
|
|
|
|
const statusBadge = (status) => {
|
|
const map = {
|
|
draft: '<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-gray-100 text-gray-700">임시저장</span>',
|
|
pending: '<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-blue-100 text-blue-700">진행</span>',
|
|
approved: '<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-green-100 text-green-700">완료</span>',
|
|
rejected: '<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-red-100 text-red-700">반려</span>',
|
|
cancelled: '<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-yellow-100 text-yellow-700">회수</span>',
|
|
on_hold: '<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-amber-100 text-amber-700">보류</span>',
|
|
};
|
|
return map[status] || status;
|
|
};
|
|
|
|
const userId = {{ auth()->id() }};
|
|
|
|
let html = `<div class="overflow-x-auto">
|
|
<table class="min-w-full divide-y divide-gray-200">
|
|
<thead class="bg-gray-50">
|
|
<tr>
|
|
<th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase">문서번호</th>
|
|
<th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase">제목</th>
|
|
<th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase">기안자</th>
|
|
<th class="px-4 py-3 text-center text-xs font-medium text-gray-500 uppercase">상태</th>
|
|
<th class="px-4 py-3 text-center text-xs font-medium text-gray-500 uppercase">열람</th>
|
|
<th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase">기안일</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody class="bg-white divide-y divide-gray-200">`;
|
|
|
|
items.forEach(item => {
|
|
const draftedAt = item.drafted_at ? new Date(item.drafted_at).toLocaleDateString('ko-KR') : (item.created_at ? new Date(item.created_at).toLocaleDateString('ko-KR') : '-');
|
|
|
|
// 참조 step에서 is_read 확인
|
|
const refStep = (item.steps || []).find(s => s.step_type === 'reference' && s.approver_id === userId);
|
|
const isRead = refStep?.is_read;
|
|
const readBadge = isRead
|
|
? '<span class="text-xs text-green-600">열람</span>'
|
|
: '<span class="inline-flex items-center px-2 py-0.5 rounded-full text-xs font-medium bg-red-100 text-red-600">미열람</span>';
|
|
const rowBold = isRead ? '' : 'font-bold';
|
|
|
|
html += `<tr class="hover:bg-gray-50 cursor-pointer ${rowBold}" onclick="goToApproval(${item.id})">
|
|
<td class="px-4 py-3 text-sm text-gray-600 whitespace-nowrap">${item.document_number || '-'}</td>
|
|
<td class="px-4 py-3 text-sm text-gray-800">${item.title || '-'}</td>
|
|
<td class="px-4 py-3 text-sm text-gray-600">${item.drafter?.name || '-'}</td>
|
|
<td class="px-4 py-3 text-center">${statusBadge(item.status)}</td>
|
|
<td class="px-4 py-3 text-center">${readBadge}</td>
|
|
<td class="px-4 py-3 text-sm text-gray-500 whitespace-nowrap">${draftedAt}</td>
|
|
</tr>`;
|
|
});
|
|
|
|
html += '</tbody></table></div>';
|
|
container.innerHTML = html;
|
|
|
|
const area = document.getElementById('pagination-area');
|
|
if (!pagination.last_page || pagination.last_page <= 1) { area.innerHTML = ''; return; }
|
|
let pHtml = '<div class="flex justify-center gap-1">';
|
|
for (let i = 1; i <= pagination.last_page; i++) {
|
|
const active = i === pagination.current_page ? 'bg-blue-600 text-white' : 'bg-white text-gray-700 hover:bg-gray-100';
|
|
pHtml += `<button onclick="loadReferences(${i})" class="px-3 py-1 rounded border text-sm ${active}">${i}</button>`;
|
|
}
|
|
pHtml += '</div>';
|
|
area.innerHTML = pHtml;
|
|
}
|
|
|
|
async function goToApproval(id) {
|
|
// 열람 추적 API 호출 후 상세 페이지로 이동
|
|
try {
|
|
await fetch(`/api/admin/approvals/${id}/mark-read`, {
|
|
method: 'POST',
|
|
headers: {
|
|
'X-CSRF-TOKEN': '{{ csrf_token() }}',
|
|
'Accept': 'application/json',
|
|
},
|
|
});
|
|
} catch (e) {
|
|
// 열람 추적 실패해도 이동은 진행
|
|
}
|
|
location.href = '/approval-mgmt/' + id;
|
|
}
|
|
</script>
|
|
@endpush
|