#180 상품 엑셀 일괄등록 기능 추가
This commit is contained in:
@ -131,6 +131,7 @@ if ($sfl || $stx) // 검색렬일 때만 처음 버튼을 보여줌
|
||||
|
||||
<div id="btn_add">
|
||||
<a href="./itemform.php">상품등록</a>
|
||||
<a href="./itemexcel.php" onclick="return excelform(this.href);" target="_blank">상품일괄등록</a>
|
||||
<a href="./itemsellrank.php" class="btn_add_optional">상품판매순위</a>
|
||||
</div>
|
||||
|
||||
@ -222,6 +223,13 @@ $(function() {
|
||||
return false;
|
||||
});
|
||||
});
|
||||
|
||||
function excelform(url)
|
||||
{
|
||||
var opt = "width=600,height=450,left=10,top=10";
|
||||
window.open(url, "win_excel", opt);
|
||||
return false;
|
||||
}
|
||||
</script>
|
||||
|
||||
<?php
|
||||
|
||||
Reference in New Issue
Block a user