0fe68819 by sayhoChun

hotfix) additional devel done

1 parent a9cad323
Showing 160 changed files with 35 additions and 6 deletions
This diff could not be displayed because it is too large.
......@@ -171,6 +171,7 @@
<tr>
<th class="no" width="5%">No</th>
<th width="2%"><input type="checkbox" id="jCheckAll"></th>
<th width="10%">하위메뉴</th>
<th width="50%">제목</th>
<th width="10%">등록일</th>
<th width="10%">-</th>
......@@ -187,6 +188,29 @@
<input type="checkbox" class="jNo" value="<?=$list[$i]["ppNo"] ?>" >
</td>
<td class="center">
<?
switch($list[$i]["productionType"]){
case "WB":
echo "윙바디";
break;
case "UW":
echo "상승윙바디";
break;
case "FW":
echo "냉동윙바디";
break;
case "FC":
echo "냉동컨테이저/탑";
break;
case "SP":
echo "특수차량";
break;
default :
break;
}
?>
</td>
<td class="center">
<?=$list[$i]["title"]?>
</td>
<td class="center">
......
......@@ -316,7 +316,10 @@ if (! class_exists("ApiBoard"))
$this->setPageForDevice($this->rownum);
$sql="
SELECT * FROM tblStaffBoard WHERE status=1 ORDER BY regDate DESC
SELECT *, (SELECT userName FROM tblUser where userNo = userFk) AS userName
FROM tblStaffBoard
WHERE status=1
ORDER BY regDate DESC
LIMIT {$this->startNum}, {$this->endNum}
";
......@@ -365,10 +368,11 @@ if (! class_exists("ApiBoard"))
title = '{$title}',
content = '{$content}',
imgPathSBoard1 = '{$imgPath1}',
imgPathSBoard2 = '{$imgPath1}',
imgPathSBoard3 = '{$imgPath1}',
imgPathSBoard4 = '{$imgPath1}',
imgPathSBoard5 = '{$imgPath1}',
imgPathSBoard2 = '{$imgPath2}',
imgPathSBoard3 = '{$imgPath3}',
imgPathSBoard4 = '{$imgPath4}',
imgPathSBoard5 = '{$imgPath5}'
WHERE sBoardNo = '{$no}'
";
$retMsg = "수정되었습니다";
}
......
......@@ -544,13 +544,14 @@ if (! class_exists("AdminBoard")){
$sql="
SELECT ppNo, title, regDate
SELECT ppNo, title, regDate, productionType
FROM tblProductionPortrait
WHERE status=1
ORDER BY ppNo DESC
{$limit}
";
$result=$this->getArray($sql);
return $result;
}
......