#180 상품 엑셀 일괄등록 기능 추가

This commit is contained in:
chicpro
2013-05-29 16:44:15 +09:00
parent 64212a5c8d
commit fdb4a4cc57
6 changed files with 1574 additions and 0 deletions

View File

@ -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