Compare commits
2 Commits
44035795d2
...
0493cd7708
| Author | SHA1 | Date | |
|---|---|---|---|
| 0493cd7708 | |||
|
|
f358b44e16 |
@@ -267,9 +267,9 @@ class Dept extends BaseController
|
|||||||
public function detail($id): string
|
public function detail($id): string
|
||||||
{
|
{
|
||||||
|
|
||||||
$id = (int) $id;
|
$id = (string) $id;
|
||||||
|
|
||||||
if ($id <= 0) {
|
if ($id === '') {
|
||||||
throw \CodeIgniter\Exceptions\PageNotFoundException::forPageNotFound();
|
throw \CodeIgniter\Exceptions\PageNotFoundException::forPageNotFound();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -120,9 +120,9 @@ class Record extends BaseController
|
|||||||
public function detail($id): string
|
public function detail($id): string
|
||||||
{
|
{
|
||||||
|
|
||||||
$id = (int) $id;
|
$id = (string) $id;
|
||||||
|
|
||||||
if ($id <= 0) {
|
if ($id === '') {
|
||||||
throw \CodeIgniter\Exceptions\PageNotFoundException::forPageNotFound();
|
throw \CodeIgniter\Exceptions\PageNotFoundException::forPageNotFound();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -163,9 +163,9 @@ class M702 extends BaseController
|
|||||||
// 상세화면
|
// 상세화면
|
||||||
public function detail($id)
|
public function detail($id)
|
||||||
{
|
{
|
||||||
$id = (int) $id;
|
$id = (string) $id;
|
||||||
|
|
||||||
if ($id <= 0) {
|
if ($id === '') {
|
||||||
throw \CodeIgniter\Exceptions\PageNotFoundException::forPageNotFound();
|
throw \CodeIgniter\Exceptions\PageNotFoundException::forPageNotFound();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -125,9 +125,9 @@ class M703 extends BaseController
|
|||||||
// 상세화면
|
// 상세화면
|
||||||
public function detail($id)
|
public function detail($id)
|
||||||
{
|
{
|
||||||
$id = (int) $id;
|
$id = (string) $id;
|
||||||
|
|
||||||
if ($id <= 0) {
|
if ($id === '') {
|
||||||
throw \CodeIgniter\Exceptions\PageNotFoundException::forPageNotFound();
|
throw \CodeIgniter\Exceptions\PageNotFoundException::forPageNotFound();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -121,9 +121,9 @@ class M704 extends BaseController
|
|||||||
// 상세화면
|
// 상세화면
|
||||||
public function detail($id)
|
public function detail($id)
|
||||||
{
|
{
|
||||||
$id = (int) $id;
|
$id = (string) $id;
|
||||||
|
|
||||||
if ($id <= 0) {
|
if ($id === '') {
|
||||||
throw \CodeIgniter\Exceptions\PageNotFoundException::forPageNotFound();
|
throw \CodeIgniter\Exceptions\PageNotFoundException::forPageNotFound();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -150,9 +150,9 @@ class M705 extends BaseController
|
|||||||
// 상세화면
|
// 상세화면
|
||||||
public function detail($id)
|
public function detail($id)
|
||||||
{
|
{
|
||||||
$id = (int) $id;
|
$id = (string) $id;
|
||||||
|
|
||||||
if ($id <= 0) {
|
if ($id === '') {
|
||||||
throw \CodeIgniter\Exceptions\PageNotFoundException::forPageNotFound();
|
throw \CodeIgniter\Exceptions\PageNotFoundException::forPageNotFound();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -110,9 +110,9 @@ class M706 extends BaseController
|
|||||||
// 상세화면
|
// 상세화면
|
||||||
public function detail($id)
|
public function detail($id)
|
||||||
{
|
{
|
||||||
$id = (int) $id;
|
$id = (string) $id;
|
||||||
|
|
||||||
if ($id <= 0) {
|
if ($id === '') {
|
||||||
throw \CodeIgniter\Exceptions\PageNotFoundException::forPageNotFound();
|
throw \CodeIgniter\Exceptions\PageNotFoundException::forPageNotFound();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -118,9 +118,9 @@ class M708 extends BaseController
|
|||||||
// 상세화면
|
// 상세화면
|
||||||
public function detail($id)
|
public function detail($id)
|
||||||
{
|
{
|
||||||
$id = (int) $id;
|
$id = (string) $id;
|
||||||
|
|
||||||
if ($id <= 0) {
|
if ($id === '') {
|
||||||
throw \CodeIgniter\Exceptions\PageNotFoundException::forPageNotFound();
|
throw \CodeIgniter\Exceptions\PageNotFoundException::forPageNotFound();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -117,9 +117,9 @@ class M709 extends BaseController
|
|||||||
// 상세화면
|
// 상세화면
|
||||||
public function detail($id)
|
public function detail($id)
|
||||||
{
|
{
|
||||||
$id = (int) $id;
|
$id = (string) $id;
|
||||||
|
|
||||||
if ($id <= 0) {
|
if ($id === '') {
|
||||||
throw \CodeIgniter\Exceptions\PageNotFoundException::forPageNotFound();
|
throw \CodeIgniter\Exceptions\PageNotFoundException::forPageNotFound();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -124,9 +124,9 @@ class M712 extends BaseController
|
|||||||
public function detail($id): string
|
public function detail($id): string
|
||||||
{
|
{
|
||||||
|
|
||||||
$id = (int) $id;
|
$id = (string) $id;
|
||||||
|
|
||||||
if ($id <= 0) {
|
if ($id === '') {
|
||||||
throw \CodeIgniter\Exceptions\PageNotFoundException::forPageNotFound();
|
throw \CodeIgniter\Exceptions\PageNotFoundException::forPageNotFound();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -121,9 +121,9 @@ class M713 extends BaseController
|
|||||||
// 상세화면
|
// 상세화면
|
||||||
public function detail($id): string
|
public function detail($id): string
|
||||||
{
|
{
|
||||||
$id = (int) $id;
|
$id = (string) $id;
|
||||||
|
|
||||||
if ($id <= 0) {
|
if ($id === '') {
|
||||||
throw \CodeIgniter\Exceptions\PageNotFoundException::forPageNotFound();
|
throw \CodeIgniter\Exceptions\PageNotFoundException::forPageNotFound();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -621,7 +621,7 @@ if (!empty($data['cert_register']) && $data['cert_register_save_yn'] != 'Y') { /
|
|||||||
|
|
||||||
<!-- 우측 : 정보 -->
|
<!-- 우측 : 정보 -->
|
||||||
<td valign="top" class="pt-2">
|
<td valign="top" class="pt-2">
|
||||||
<table class="tbl_basic4 w-100 tbl_basic2 table-bordered">
|
<table class="table table-sm w-100 tbl_basic2 table-bordered">
|
||||||
<colgroup>
|
<colgroup>
|
||||||
<col width="30%">
|
<col width="30%">
|
||||||
<col>
|
<col>
|
||||||
@@ -652,7 +652,7 @@ if (!empty($data['cert_register']) && $data['cert_register_save_yn'] != 'Y') { /
|
|||||||
<tr>
|
<tr>
|
||||||
<th>홍보확인서<br>미확인여부상세</th>
|
<th>홍보확인서<br>미확인여부상세</th>
|
||||||
<td>
|
<td>
|
||||||
<table class="w-100 tbl_basic2 table-bordered">
|
<table class="table w-100 tbl_basic2 table-bordered">
|
||||||
<tr>
|
<tr>
|
||||||
<?php
|
<?php
|
||||||
$checks = explode('|', $data['comment']);
|
$checks = explode('|', $data['comment']);
|
||||||
@@ -1093,7 +1093,7 @@ if (!empty($data['cert_register']) && $data['cert_register_save_yn'] != 'Y') { /
|
|||||||
|
|
||||||
<!-- 우측 : 정보 -->
|
<!-- 우측 : 정보 -->
|
||||||
<td valign="top" class="pt-2">
|
<td valign="top" class="pt-2">
|
||||||
<table class="tbl_basic4 w-100 tbl_basic2 table-bordered">
|
<table class="table table-sm w-100 tbl_basic2 table-bordered">
|
||||||
<colgroup>
|
<colgroup>
|
||||||
<col width="30%">
|
<col width="30%">
|
||||||
<col>
|
<col>
|
||||||
|
|||||||
@@ -560,7 +560,7 @@ if (!empty($data['cert_register']) && $data['cert_register_save_yn'] != 'Y') { /
|
|||||||
|
|
||||||
<!-- 우측 : 정보 -->
|
<!-- 우측 : 정보 -->
|
||||||
<td valign="top" class="pt-2">
|
<td valign="top" class="pt-2">
|
||||||
<table class="tbl_basic4 w-100 tbl_basic2 table-bordered">
|
<table class="table table-sm w-100 tbl_basic2 table-bordered">
|
||||||
<colgroup>
|
<colgroup>
|
||||||
<col width="30%">
|
<col width="30%">
|
||||||
<col>
|
<col>
|
||||||
@@ -591,7 +591,7 @@ if (!empty($data['cert_register']) && $data['cert_register_save_yn'] != 'Y') { /
|
|||||||
<tr>
|
<tr>
|
||||||
<th>홍보확인서<br>미확인여부상세</th>
|
<th>홍보확인서<br>미확인여부상세</th>
|
||||||
<td>
|
<td>
|
||||||
<table class="w-100 tbl_basic2 table-bordered">
|
<table class="table w-100 tbl_basic2 table-bordered">
|
||||||
<tr>
|
<tr>
|
||||||
<?php
|
<?php
|
||||||
$checks = explode('|', $data['comment']);
|
$checks = explode('|', $data['comment']);
|
||||||
@@ -1031,7 +1031,7 @@ if (!empty($data['cert_register']) && $data['cert_register_save_yn'] != 'Y') { /
|
|||||||
|
|
||||||
<!-- 우측 : 정보 -->
|
<!-- 우측 : 정보 -->
|
||||||
<td valign="top" class="pt-2">
|
<td valign="top" class="pt-2">
|
||||||
<table class="tbl_basic4 w-100 tbl_basic2 table-bordered">
|
<table class="table table-sm w-100 tbl_basic2 table-bordered">
|
||||||
<colgroup>
|
<colgroup>
|
||||||
<col width="30%">
|
<col width="30%">
|
||||||
<col>
|
<col>
|
||||||
|
|||||||
Reference in New Issue
Block a user