summaryrefslogtreecommitdiff
path: root/lib/approval/templates/벤더 가입 승인 요청.html
diff options
context:
space:
mode:
Diffstat (limited to 'lib/approval/templates/벤더 가입 승인 요청.html')
-rw-r--r--lib/approval/templates/벤더 가입 승인 요청.html233
1 files changed, 233 insertions, 0 deletions
diff --git a/lib/approval/templates/벤더 가입 승인 요청.html b/lib/approval/templates/벤더 가입 승인 요청.html
new file mode 100644
index 00000000..f3e216aa
--- /dev/null
+++ b/lib/approval/templates/벤더 가입 승인 요청.html
@@ -0,0 +1,233 @@
+<!-- 벤더 가입 승인 요청 템플릿 -->
+<!-- 이 템플릿은 approvalTemplates 테이블에 저장됩니다 -->
+<!-- 템플릿명: 벤더 가입 승인 요청 -->
+
+<div
+ style="
+ max-width: 900px;
+ margin: 0 auto;
+ font-family: 'Segoe UI', 'Malgun Gothic', sans-serif;
+ color: #333;
+ line-height: 1.6;
+ "
+>
+ <!-- 헤더 -->
+ <table
+ style="
+ width: 100%;
+ border-collapse: collapse;
+ margin-bottom: 20px;
+ border: 2px solid #000;
+ "
+ >
+ <thead>
+ <tr>
+ <th
+ colspan="3"
+ style="
+ background-color: #fff;
+ color: #000;
+ padding: 20px;
+ text-align: center;
+ font-size: 24px;
+ font-weight: 700;
+ "
+ >
+ 벤더 가입 승인 요청
+ </th>
+ </tr>
+ </thead>
+ </table>
+
+ <!-- 요청 정보 테이블 -->
+ <table
+ style="
+ width: 100%;
+ border-collapse: collapse;
+ margin-bottom: 20px;
+ border: 1px solid #666;
+ "
+ >
+ <thead>
+ <tr>
+ <th
+ colspan="2"
+ style="
+ background-color: #333;
+ color: #fff;
+ padding: 12px;
+ text-align: left;
+ font-size: 16px;
+ font-weight: 600;
+ border-bottom: 1px solid #666;
+ "
+ >
+ 요청 정보
+ </th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td
+ style="
+ background-color: #f5f5f5;
+ color: #333;
+ padding: 12px;
+ font-weight: 600;
+ width: 150px;
+ border: 1px solid #ccc;
+ "
+ >
+ 요청일
+ </td>
+ <td
+ style="
+ background-color: #fff;
+ color: #000;
+ padding: 12px;
+ border: 1px solid #ccc;
+ "
+ >
+ {{요청일}}
+ </td>
+ </tr>
+ <tr>
+ <td
+ style="
+ background-color: #f5f5f5;
+ color: #333;
+ padding: 12px;
+ font-weight: 600;
+ border: 1px solid #ccc;
+ "
+ >
+ 요청자
+ </td>
+ <td
+ style="
+ background-color: #fff;
+ color: #000;
+ padding: 12px;
+ border: 1px solid #ccc;
+ "
+ >
+ {{요청자}}
+ </td>
+ </tr>
+ <tr>
+ <td
+ style="
+ background-color: #f5f5f5;
+ color: #333;
+ padding: 12px;
+ font-weight: 600;
+ border: 1px solid #ccc;
+ "
+ >
+ 승인 대상
+ </td>
+ <td
+ style="
+ background-color: #fff;
+ color: #000;
+ padding: 12px;
+ font-weight: 600;
+ border: 1px solid #ccc;
+ "
+ >
+ {{업체수}}개 업체
+ </td>
+ </tr>
+ </tbody>
+ </table>
+
+ <!-- 승인 대상 업체 목록 -->
+ <table
+ style="
+ width: 100%;
+ border-collapse: collapse;
+ margin-bottom: 20px;
+ border: 1px solid #666;
+ "
+ >
+ <thead>
+ <tr>
+ <th
+ style="
+ background-color: #333;
+ color: #fff;
+ padding: 12px;
+ text-align: left;
+ font-size: 16px;
+ font-weight: 600;
+ border-bottom: 1px solid #666;
+ "
+ >
+ 승인 대상 업체
+ </th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td
+ style="
+ background-color: #fff;
+ color: #333;
+ padding: 15px;
+ border: 1px solid #ccc;
+ line-height: 1.8;
+ "
+ >
+ {{업체목록}}
+ </td>
+ </tr>
+ <tr>
+ <td style="background-color: #fff; padding: 0; border: 1px solid #ccc">
+ {{업체목록테이블}}
+ </td>
+ </tr>
+ </tbody>
+ </table>
+
+ <!-- 업체 상세 정보 -->
+ <table
+ style="
+ width: 100%;
+ border-collapse: collapse;
+ margin-bottom: 20px;
+ border: 1px solid #666;
+ "
+ >
+ <thead>
+ <tr>
+ <th
+ style="
+ background-color: #333;
+ color: #fff;
+ padding: 12px;
+ text-align: left;
+ font-size: 16px;
+ font-weight: 600;
+ border-bottom: 1px solid #666;
+ "
+ >
+ 업체 상세 정보
+ </th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td
+ style="
+ background-color: #fff;
+ color: #333;
+ padding: 20px;
+ border: 1px solid #ccc;
+ "
+ >
+ {{업체상세정보}}
+ </td>
+ </tr>
+ </tbody>
+ </table>
+</div>