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.
 
 
 
 

38 lines
1.6 KiB

<!-- $Id -->
{include file="pageheader.htm"}
{insert_scripts files="../js/utils.js,listtable.js"}
<div class="list-div" id="listDiv">
<form action="goods_batch.php?act=insert" method="post">
<table cellspacing="0" cellpadding="0" width="100%">
<tr>
<th><input type="checkbox" checked onclick="listTable.selectAll(this, 'checked')" />{$lang.record_id}</th>
{foreach from=$title_list key=field item=title}
{if $field_show.$field}<th>{$title}</th>{/if}
{/foreach}
<th>{$lang.goods_class}</th>
</tr>
{foreach from=$goods_list key=key item=goods}
<tr>
<td><input type="checkbox" name="checked[]" value="{$key}" checked /> {$key} </td>
{foreach from=$goods key=field item=value}
{if $field_show.$field}
<td><input type="text" name="{$field}[]" value="{$value}" size="15" /></td>
{else}
<input type="hidden" name="{$field}[]" value="{$value}" />
{/if}
{/foreach}
<td><select name="goods_class[]">{html_options options=$goods_class selected=$goods.is_real}</select></td>
</tr>
{/foreach}
<tr align="center">
<td colspan="7">
<input type="hidden" name="cat" value="{$smarty.request.cat}" />
<input type="submit" name="submit" value="{$lang.button_submit}" class="button" />
<input type="button" name="reset" onclick="history.go(-1)" value="{$lang.back}" class="button" />
</td>
</tr>
</table>
</form>
</div>
{include file="pagefooter.htm"}