mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-17 11:05:30 +08:00
40 lines
1.7 KiB
HTML
40 lines
1.7 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.
|
|
-->
|
|
|
|
<{foreach from=$iostock_data item=item}>
|
|
<{foreach from=$item.iostock item=iostock}>
|
|
<tr>
|
|
<td><{$item.bn}></td>
|
|
<td><{$item.name}></td>
|
|
<td><{$item.type_name}></td>
|
|
<td><{$item.brand_name}></td>
|
|
<td><{$item.spec_info}></td>
|
|
<td><{$item.unit}></td>
|
|
<td><{if $iostock.is_start=='1'}><{$iostock.stock_date}><{else}><{$iostock.iotime|cdate}><{/if}></td>
|
|
<td><{$iostock.original_bn}></td>
|
|
<td><{if $iostock.is_start=='1'}>期初<{else}><{$iostock.io_type_name}><{/if}></td>
|
|
<td><{if $iostock.io_type=='0'}><{$iostock.nums}><{/if}></td>
|
|
<td><{if $iostock.io_type=='0'}><{$iostock.unit_cost|cur}><{/if}></td>
|
|
<td><{if $iostock.io_type=='0'}><{$iostock.inventory_cost|cur}><{/if}></td>
|
|
<td><{if $iostock.io_type=='1'}><{$iostock.nums}><{/if}></td>
|
|
<td><{if $iostock.io_type=='1'}><{$iostock.unit_cost|cur}><{/if}></td>
|
|
<td><{if $iostock.io_type=='1'}><{$iostock.inventory_cost|cur}><{/if}></td>
|
|
<td><{$iostock.now_num}></td>
|
|
<td><{$iostock.now_unit_cost|cur}></td>
|
|
<td><{$iostock.now_inventory_cost|cur}></td>
|
|
</tr>
|
|
<{/foreach}>
|
|
<{/foreach}> |