mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-31 13:25:32 +08:00
57 lines
2.4 KiB
HTML
57 lines
2.4 KiB
HTML
<!--
|
|
Copyright 2012-2026 ShopeX (https://www.shopex.cn)
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<!-- <div class="action-bar clearfix">
|
|
<div class="span-auto"><strong class="action-bar-info">科目操作:</strong></div>
|
|
<div class="flt"><{button label='添加费用科目'}></div>
|
|
<div class="flt"><{button label='删除费用科目'}></div>
|
|
</div> -->
|
|
<div class="division">
|
|
<table width="100%" class="gridlist" border="0" cellspacing="0" cellpadding="0">
|
|
<thead>
|
|
<tr>
|
|
<th></th>
|
|
<th><{t}>科目类型<{/t}></th>
|
|
<th><{t}>科目编码<{/t}></th>
|
|
<th><{t}>科目名称<{/t}></th>
|
|
<th><{t}>科目编号<{/t}></th>
|
|
<th><{t}>业务渠道<{/t}></th>
|
|
<th><{t}>是否与订单相关<{/t}></th>
|
|
<th><{t}>创建时间<{/t}></th>
|
|
<th><{t}>修改时间<{/t}></th>
|
|
<th><{t}>备注<{/t}></th>
|
|
<th><{t}>状态<{/t}></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<{foreach from=$fee_items item=item key=key}>
|
|
<tr>
|
|
<th><{if $item.inlay == 'false'}><input type='checkbox' name='fee_item_id[]' value='<{$item.fee_item_id}>'><{/if}></th>
|
|
<th><{$fee_type.fee_type}></th>
|
|
<th><{$fee_type.fee_type_code}></th>
|
|
<th><{$item.fee_item}></th>
|
|
<th><{$item.fee_item_code}></th>
|
|
<th><{$item.channel}></th>
|
|
<th><{if $item.related_order == 'false'}>否<{else}>是<{/if}></th>
|
|
<th><{if $item.createtime}><{$item.createtime|cdate:'FDATE_FTIME'}><{/if}></th>
|
|
<th><{if $item.last_modified}><{$item.last_modified|cdate:'FDATE_FTIME'}><{/if}></th>
|
|
<th><{$item.memo}></th>
|
|
<th><{if $item.delete == 'false'}>可用<{else}>不可用<{/if}></th>
|
|
</tr>
|
|
<{/foreach}>
|
|
</tbody>
|
|
</table>
|
|
</div> |