You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
187 lines
8.8 KiB
187 lines
8.8 KiB
<!-- $Id: goods_list.htm 17126 2010-04-23 10:30:26Z liuhui $ -->
|
|
|
|
{if $full_page}
|
|
{include file="pageheader.htm"}
|
|
{insert_scripts files="../js/utils.js,listtable.js"}
|
|
<!-- 商品搜索 -->
|
|
{include file="goods_search.htm"}
|
|
<!-- 商品列表 -->
|
|
<form method="post" action="" name="listForm" onsubmit="return confirmSubmit(this)">
|
|
<!-- start goods list -->
|
|
<section class="content" id="listDiv">
|
|
{/if}
|
|
<table class="table table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
<input onclick='listTable.selectAll(this, "checkboxes")' type="checkbox" />
|
|
<a href="javascript:listTable.sort('goods_id'); ">{$lang.record_id}</a>{$sort_goods_id}
|
|
</th>
|
|
<th><a href="javascript:listTable.sort('goods_name'); ">{$lang.goods_name}</a>{$sort_goods_name}</th>
|
|
<th><a href="javascript:listTable.sort('goods_sn'); ">{$lang.goods_sn}</a>{$sort_goods_sn}</th>
|
|
<th><a href="javascript:listTable.sort('shop_price'); ">{$lang.shop_price}</a>{$sort_shop_price}</th>
|
|
<th><a href="javascript:listTable.sort('is_on_sale'); ">{$lang.is_on_sale}</a>{$sort_is_on_sale}</th>
|
|
<th><a href="javascript:listTable.sort('is_best'); ">熱門推薦</a>{$sort_is_best}</th>
|
|
<!-- <th><a href="javascript:listTable.sort('is_new'); ">{$lang.is_new}</a>{$sort_is_new}</th> -->
|
|
<!-- <th><a href="javascript:listTable.sort('is_hot'); ">{$lang.is_hot}</a>{$sort_is_hot}</th> -->
|
|
<th><a href="javascript:listTable.sort('sort_order'); ">{$lang.sort_order}</a>{$sort_sort_order}</th>
|
|
{if $use_storage}
|
|
<th><a href="javascript:listTable.sort('goods_number'); ">{$lang.goods_number}</a>{$sort_goods_number}</th>
|
|
{/if}
|
|
<th><a href="javascript:listTable.sort('sales_volume_base'); ">{$lang.sales_volume_base}</a>{$sort_sales_volume_base}</th>
|
|
<th>{$lang.handler}</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
{foreach from=$goods_list item=goods}
|
|
<tr>
|
|
<td><input type="checkbox" name="checkboxes[]" value="{$goods.goods_id}" />{$goods.goods_id}</td>
|
|
<td class="first-cell" style="{if $goods.is_promote}color:red;{/if}">{if $goods.is_sale}<font color=blue>【秒殺中】</font>{/if}<span onclick="listTable.edit(this, 'edit_goods_name', {$goods.goods_id})">{$goods.goods_name|escape:html}</span></td>
|
|
<td align="center"><span onclick="listTable.edit(this, 'edit_goods_sn', {$goods.goods_id})">{$goods.goods_sn}</span></td>
|
|
<td align="center"><span onclick="listTable.edit(this, 'edit_goods_price', {$goods.goods_id})">{$goods.shop_price}</span></td>
|
|
<td align="center"><img src="images/{if $goods.is_on_sale}yes{else}no{/if}.gif" onclick="listTable.toggle(this, 'toggle_on_sale', {$goods.goods_id})" /></td>
|
|
<td align="center"><img src="images/{if $goods.is_best}yes{else}no{/if}.gif" onclick="listTable.toggle(this, 'toggle_best', {$goods.goods_id})" /></td>
|
|
<!-- <td align="center"><img src="images/{if $goods.is_new}yes{else}no{/if}.gif" onclick="listTable.toggle(this, 'toggle_new', {$goods.goods_id})" /></td> -->
|
|
<!-- <td align="center"><img src="images/{if $goods.is_hot}yes{else}no{/if}.gif" onclick="listTable.toggle(this, 'toggle_hot', {$goods.goods_id})" /></td> -->
|
|
<td align="center"><span onclick="listTable.edit(this, 'edit_sort_order', {$goods.goods_id})">{$goods.sort_order}</span></td>
|
|
{if $use_storage}
|
|
<td align="center"><span onclick="listTable.edit(this, 'edit_goods_number', {$goods.goods_id})">{$goods.goods_number}</span></td>
|
|
{/if}
|
|
<td align="center"><span onclick="listTable.edit(this, 'edit_sales_volume_base', {$goods.goods_id})">{$goods.sales_volume_base}</span></td>
|
|
<td align="center">
|
|
<a href="goods.php?act=edit&goods_id={$goods.goods_id}{if $code neq 'real_goods'}&extension_code={$code}{/if}" title="{$lang.edit}"><img src="images/icon_edit.gif" width="21" height="21" border="0" /></a>
|
|
<a href="goods.php?act=copy&goods_id={$goods.goods_id}{if $code neq 'real_goods'}&extension_code={$code}{/if}" title="{$lang.copy}"><img src="images/icon_copy.gif" width="21" height="21" border="0" /></a>
|
|
<a href="javascript:;" onclick="listTable.remove({$goods.goods_id}, '{$lang.trash_goods_confirm}')" title="{$lang.trash}"><img src="images/icon_trash.gif" width="21" height="21" border="0" /></a>
|
|
{if $specifications[$goods.goods_type] neq ''}<a href="goods.php?act=product_list&goods_id={$goods.goods_id}" title="{$lang.item_list}"><img src="images/icon_docs.gif" width="21" height="21" border="0" /></a>{else}<img src="images/empty.gif" width="21" height="21" border="0" />{/if}
|
|
{if $specifications[$goods.goods_type] neq ''}<a href="product_spec_pic.php?act=list&goods_id={$goods.goods_id}" title="{$lang.specification_pic}"><img src="images/guigou_icon.png" width="21" height="21" border="0" /></a>{else}<img src="images/empty.gif" width="21" height="21" border="0" />{/if}
|
|
{if $add_handler}
|
|
|
|
|
{foreach from=$add_handler item=handler}
|
|
<a href="{$handler.url}&goods_id={$goods.goods_id}" title="{$handler.title}"><img src="images/{$handler.img}" width="21" height="21" border="0" /></a>
|
|
{/foreach}
|
|
{/if}
|
|
</td>
|
|
</tr>
|
|
{foreachelse}
|
|
<tr><td class="no-records" colspan="10">{$lang.no_records}</td></tr>
|
|
{/foreach}
|
|
</table>
|
|
<!-- end goods list -->
|
|
|
|
<!-- 分頁 -->
|
|
<table id="page-table" cellspacing="0">
|
|
<tr>
|
|
<td>
|
|
<div>
|
|
<input type="hidden" name="act" value="batch" />
|
|
<select name="type" id="selAction" onchange="changeAction()">
|
|
<option value="">{$lang.select_please}</option>
|
|
<option value="trash">{$lang.trash}</option>
|
|
<option value="on_sale">{$lang.on_sale}</option>
|
|
<option value="not_on_sale">{$lang.not_on_sale}</option>
|
|
<option value="best">{$lang.best}</option>
|
|
<option value="not_best">{$lang.not_best}</option>
|
|
<option value="new">{$lang.new}</option>
|
|
<option value="not_new">{$lang.not_new}</option>
|
|
<option value="hot">{$lang.hot}</option>
|
|
<option value="not_hot">{$lang.not_hot}</option>
|
|
<option value="move_to">{$lang.move_to}</option>
|
|
{if $suppliers_list > 0}
|
|
<option value="suppliers_move_to">{$lang.suppliers_move_to}</option>
|
|
{/if}
|
|
</select>
|
|
<select name="target_cat" style="display:none">
|
|
<option value="0">{$lang.select_please}</option>{$cat_list}
|
|
</select>
|
|
{if $suppliers_list > 0}
|
|
<!--二級主菜單:轉移供貨商-->
|
|
<select name="suppliers_id" style="display:none">
|
|
<option value="-1">{$lang.select_please}</option>
|
|
<option value="0">{$lang.lab_to_shopex}</option>
|
|
{foreach name=sln from=$suppliers_list item=sl}
|
|
<option value="{$sl.suppliers_id}">{$sl.suppliers_name}</option>
|
|
{/foreach}
|
|
</select>
|
|
<!--end!-->
|
|
{/if}
|
|
{if $code neq 'real_goods'}
|
|
<input type="hidden" name="extension_code" value="{$code}" />
|
|
{/if}
|
|
<input type="submit" value="{$lang.button_submit}" id="btnSubmit" name="btnSubmit" class="button" disabled="true" />
|
|
</div>
|
|
|
|
</td>
|
|
<td align="right" nowrap="true">
|
|
{include file="page.htm"}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
{if $full_page}
|
|
</section>
|
|
</form>
|
|
|
|
<script type="text/javascript">
|
|
listTable.recordCount = {$record_count};
|
|
listTable.pageCount = {$page_count};
|
|
|
|
{foreach from=$filter item=item key=key}
|
|
listTable.filter.{$key} = '{$item}';
|
|
{/foreach}
|
|
|
|
{literal}
|
|
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';
|
|
|
|
{if $suppliers_list > 0}
|
|
frm.elements['suppliers_id'].style.display = frm.elements['type'].value == 'suppliers_move_to' ? '' : 'none';
|
|
{/if}
|
|
|
|
if (!document.getElementById('btnSubmit').disabled &&
|
|
confirmSubmit(frm, false))
|
|
{
|
|
frm.submit();
|
|
}
|
|
}
|
|
{/literal}
|
|
</script>
|
|
{include file="pagefooter.htm"}
|
|
{/if} |