121 lines
4.8 KiB
PHP
121 lines
4.8 KiB
PHP
|
<!-- $Id: goods_list.htm 17126 2010-04-23 10:30:26Z liuhui $ -->
|
||
|
|
||
|
<?php if ($this->_var['full_page']): ?>
|
||
|
<?php echo $this->fetch('pageheader.htm'); ?>
|
||
|
<?php echo $this->smarty_insert_scripts(array('files'=>'../js/utils.js,listtable.js')); ?>
|
||
|
|
||
|
<!-- 商品搜索 -->
|
||
|
<?php echo $this->fetch('goods_search.htm'); ?>
|
||
|
<!-- 商品列表 -->
|
||
|
<form method="post" action="" name="listForm" onsubmit="return confirmSubmit(this)">
|
||
|
<!-- start goods list -->
|
||
|
<div class="list-div" id="listDiv">
|
||
|
<?php endif; ?>
|
||
|
<table id="simple-table" class="table table-bordered table-hover">
|
||
|
<tr>
|
||
|
<th>
|
||
|
<a href="javascript:listTable.sort('id'); "><?php echo $this->_var['lang']['record_id']; ?></a><?php echo $this->_var['sort_id']; ?>
|
||
|
</th>
|
||
|
<th><a href="javascript:listTable.sort('cname'); ">名稱</a><?php echo $this->_var['sort_cname']; ?></th>
|
||
|
<th><a href="javascript:listTable.sort('is_on_sale'); ">是否上架</a><?php echo $this->_var['sort_is_on_sale']; ?></th>
|
||
|
<!-- <th><a href="javascript:listTable.sort('sort_order'); "><?php echo $this->_var['lang']['sort_order']; ?></a><?php echo $this->_var['sort_sort_order']; ?></th>-->
|
||
|
<th><?php echo $this->_var['lang']['handler']; ?></th>
|
||
|
<tr>
|
||
|
<?php $_from = $this->_var['room_list']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }; $this->push_vars('', 'room');if (count($_from)):
|
||
|
foreach ($_from AS $this->_var['room']):
|
||
|
?>
|
||
|
<tr>
|
||
|
<td> <?php echo $this->_var['room']['id']; ?></td>
|
||
|
<td class="first-cell"><?php echo htmlspecialchars($this->_var['room']['name']); ?></td>
|
||
|
<td align="center"><img src="images/<?php if ($this->_var['room']['enable']): ?>yes<?php else: ?>no<?php endif; ?>.gif" onclick="listTable.toggle(this, 'toggle_enable', <?php echo $this->_var['room']['id']; ?>)" /></td>
|
||
|
<!-- <td align="center"><span onclick="listTable.edit(this, 'edit_sort_order', <?php echo $this->_var['room']['id']; ?>)"><?php echo $this->_var['room']['sort_order']; ?></span></td>-->
|
||
|
<td align="center">
|
||
|
<a href="room.php?act=edit&id=<?php echo $this->_var['room']['id']; ?>" title="<?php echo $this->_var['lang']['edit']; ?>"><img src="images/icon_edit.gif" width="21" height="21" border="0" /></a>
|
||
|
<a href="javascript:;" onclick="listTable.remove(<?php echo $this->_var['room']['id']; ?>, '確認刪除')" title="刪除"><img src="images/icon_trash.gif" width="21" height="21" border="0" /></a>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<?php endforeach; else: ?>
|
||
|
<tr><td class="no-records" colspan="10"><?php echo $this->_var['lang']['no_records']; ?></td></tr>
|
||
|
<?php endif; unset($_from); ?><?php $this->pop_vars();; ?>
|
||
|
</table>
|
||
|
<!-- end goods list -->
|
||
|
|
||
|
<!-- 分页 -->
|
||
|
<table id="page-table" cellspacing="0">
|
||
|
<tr>
|
||
|
<td align="right" nowrap="true">
|
||
|
<?php echo $this->fetch('page.htm'); ?>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
|
||
|
<?php if ($this->_var['full_page']): ?>
|
||
|
</div>
|
||
|
</form>
|
||
|
|
||
|
<script type="text/javascript">
|
||
|
listTable.recordCount = <?php echo $this->_var['record_count']; ?>;
|
||
|
listTable.pageCount = <?php echo $this->_var['page_count']; ?>;
|
||
|
|
||
|
<?php $_from = $this->_var['filter']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }; $this->push_vars('key', 'item');if (count($_from)):
|
||
|
foreach ($_from AS $this->_var['key'] => $this->_var['item']):
|
||
|
?>
|
||
|
listTable.filter.<?php echo $this->_var['key']; ?> = '<?php echo $this->_var['item']; ?>';
|
||
|
<?php endforeach; endif; unset($_from); ?><?php $this->pop_vars();; ?>
|
||
|
|
||
|
|
||
|
onload = function()
|
||
|
{
|
||
|
startCheckOrder(); // 开始检查订单
|
||
|
document.forms['listForm'].reset();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param: bool ext 其他条件:用于转移分类
|
||
|
*/
|
||
|
function confirmSubmit(frm, ext)
|
||
|
{
|
||
|
if (frm.elements['type'].value == 'trash')
|
||
|
{
|
||
|
return confirm(batch_trash_confirm);
|
||
|
}
|
||
|
else if (frm.elements['type'].value == 'not_on_sale')
|
||
|
{
|
||
|
return confirm(batch_no_on_sale);
|
||
|
}
|
||
|
else if (frm.elements['type'].value == 'move_to')
|
||
|
{
|
||
|
ext = (ext == undefined) ? true : ext;
|
||
|
return ext && frm.elements['target_cat'].value != 0;
|
||
|
}
|
||
|
else if (frm.elements['type'].value == '')
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function changeAction()
|
||
|
{
|
||
|
var frm = document.forms['listForm'];
|
||
|
|
||
|
// 切换分类列表的显示
|
||
|
frm.elements['target_cat'].style.display = frm.elements['type'].value == 'move_to' ? '' : 'none';
|
||
|
|
||
|
<?php if ($this->_var['suppliers_list'] > 0): ?>
|
||
|
frm.elements['suppliers_id'].style.display = frm.elements['type'].value == 'suppliers_move_to' ? '' : 'none';
|
||
|
<?php endif; ?>
|
||
|
|
||
|
if (!document.getElementById('btnSubmit').disabled &&
|
||
|
confirmSubmit(frm, false))
|
||
|
{
|
||
|
frm.submit();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
<?php echo $this->fetch('pagefooter.htm'); ?>
|
||
|
<?php endif; ?>
|