Platform Manager - 統合管理コンソール
ログイン中:
テナント管理
テナント(契約組織)の作成、設定、連携オプション(Slack等)を管理します。
新しいテナント作成
テナント設定:
テナント一覧
| コード | 名前 | ステータス | 操作 |
|---|
組織管理 (システムアカウント)
従業員データ(給与計算・労務情報など)は、別途 HR管理システム で管理されます。
新しいアカウント作成
登録アカウント一覧
| ユーザー名 | メール | 所属テナント | Slack ID | ステータス | 操作 |
|---|
マジックリンクを送信しました。メールをご確認ください。
// 全ユーザーを保存する変数 let allUsers = []; // テナントでユーザーをフィルター function filterUsersByTenant() { const selectedTenantCode = document.getElementById('tenantFilter').value; if (selectedTenantCode === '') { // すべてのユーザーを表示 renderUsers(allUsers); } else { // テナントコードを実際のテナントIDに変換 const actualTenantId = tenantMapping[selectedTenantCode] || selectedTenantCode; // 選択されたテナントのユーザーのみ表示 const filteredUsers = allUsers.filter(user => user.tenant_id === actualTenantId); renderUsers(filteredUsers); } } // アラート表示 function showAlert(elementId, message, type) { const alertDiv = document.getElementById(elementId); alertDiv.innerHTML = `
`; setTimeout(() => { alertDiv.innerHTML = ''; }, 5000); } // 初期化 window.addEventListener('DOMContentLoaded', function () { // 管理者用のプレフィルデータ document.getElementById('email').value = 'platform@admin.com'; // ページ読み込み時にマジックリンクトークンをチェック checkMagicLinkLogin(); });