품질인정제도 추가
This commit is contained in:
@@ -120,6 +120,123 @@ $roleData = [
|
||||
]
|
||||
]
|
||||
],
|
||||
'운영자' => [
|
||||
'sales_records' => [
|
||||
[
|
||||
"id" => "sale_001",
|
||||
"customer_name" => "대박 식당",
|
||||
"program_id" => "prog_pro",
|
||||
"contract_date" => "2024-10-15",
|
||||
"duration_months" => 84,
|
||||
"join_fee" => 2000000,
|
||||
"subscription_fee" => 100000,
|
||||
"total_amount" => 2000000,
|
||||
"status" => "Active",
|
||||
"dates" => [
|
||||
"contract" => "2024-10-15",
|
||||
"join_fee" => "2024-10-16",
|
||||
"service_start" => "2024-11-01",
|
||||
"subscription_fee" => "2024-11-25",
|
||||
"product_modified" => "2024-10-15"
|
||||
],
|
||||
"history" => [
|
||||
[
|
||||
"date" => "2024-10-15",
|
||||
"type" => "New Contract",
|
||||
"program_id" => "prog_pro",
|
||||
"description" => "Initial contract signed (Pro Plan)"
|
||||
]
|
||||
]
|
||||
]
|
||||
],
|
||||
'current_user' => [
|
||||
"id" => "user_admin",
|
||||
"name" => "운영자",
|
||||
"role" => "운영자",
|
||||
"sub_managers" => []
|
||||
]
|
||||
],
|
||||
'영업관리' => [
|
||||
'sales_records' => [
|
||||
[
|
||||
"id" => "sale_201",
|
||||
"customer_name" => "서초 IT센터",
|
||||
"program_id" => "prog_pro",
|
||||
"contract_date" => "2024-09-10",
|
||||
"duration_months" => 84,
|
||||
"join_fee" => 2000000,
|
||||
"subscription_fee" => 100000,
|
||||
"total_amount" => 2000000,
|
||||
"status" => "Active",
|
||||
"dates" => [
|
||||
"contract" => "2024-09-10",
|
||||
"join_fee" => "2024-09-11",
|
||||
"service_start" => "2024-10-01",
|
||||
"subscription_fee" => "2024-10-25",
|
||||
"product_modified" => "2024-09-10"
|
||||
],
|
||||
"history" => [
|
||||
[
|
||||
"date" => "2024-09-10",
|
||||
"type" => "New Contract",
|
||||
"program_id" => "prog_pro",
|
||||
"description" => "Initial contract signed (Pro Plan)"
|
||||
]
|
||||
]
|
||||
]
|
||||
],
|
||||
'current_user' => [
|
||||
"id" => "user_sales_admin",
|
||||
"name" => "영업관리자",
|
||||
"role" => "영업관리",
|
||||
"sub_managers" => [
|
||||
[
|
||||
"id" => "user_2B",
|
||||
"name" => "한성실 대리",
|
||||
"role" => "Sub-Manager",
|
||||
"total_sales" => 35000000,
|
||||
"active_contracts" => 4,
|
||||
"performance_grade" => "A"
|
||||
]
|
||||
]
|
||||
]
|
||||
],
|
||||
'매니저' => [
|
||||
'sales_records' => [
|
||||
[
|
||||
"id" => "sale_301",
|
||||
"customer_name" => "잠실 마트",
|
||||
"program_id" => "prog_basic",
|
||||
"contract_date" => "2024-08-15",
|
||||
"duration_months" => 84,
|
||||
"join_fee" => 1000000,
|
||||
"subscription_fee" => 50000,
|
||||
"total_amount" => 1000000,
|
||||
"status" => "Active",
|
||||
"dates" => [
|
||||
"contract" => "2024-08-15",
|
||||
"join_fee" => "2024-08-16",
|
||||
"service_start" => "2024-09-01",
|
||||
"subscription_fee" => "2024-09-25",
|
||||
"product_modified" => "2024-08-15"
|
||||
],
|
||||
"history" => [
|
||||
[
|
||||
"date" => "2024-08-15",
|
||||
"type" => "New Contract",
|
||||
"program_id" => "prog_basic",
|
||||
"description" => "Initial contract signed (Basic Plan)"
|
||||
]
|
||||
]
|
||||
]
|
||||
],
|
||||
'current_user' => [
|
||||
"id" => "user_manager",
|
||||
"name" => "매니저",
|
||||
"role" => "매니저",
|
||||
"sub_managers" => []
|
||||
]
|
||||
],
|
||||
'2차영업담당' => [
|
||||
'sales_records' => [
|
||||
[
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>영업 관리 시스템 - codebridge-x</title>
|
||||
<title>영업 관리 시스템</title>
|
||||
|
||||
<!-- Fonts: Pretendard -->
|
||||
<link rel="stylesheet" as="style" crossorigin href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/static/pretendard.css" />
|
||||
|
||||
Reference in New Issue
Block a user