mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
54 lines
2.5 KiB
HTML
54 lines
2.5 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="division">
|
|
<h3>出入库详情</h3>
|
|
<table width="100%" class="gridlist" border="0" cellspacing="0" cellpadding="0">
|
|
<thead>
|
|
<tr>
|
|
<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=$rows item=item}>
|
|
<tr class="ColColorBlue" <{if $item.type_id == 1 || $item.type_id == 4 || $item.type_id == 30 || $item.type_id == 31 || $item.type_id == 50 || $item.type_id == 60 || $item.type_id == 7}> style="background-color: rgb(216, 216, 216);"<{/if}> >
|
|
<td><{$item.original_bn}></td>
|
|
<td><{$item.iostock_bn}></td>
|
|
<td><{$item.bn}></td>
|
|
<td><{$item.type_name}></td>
|
|
<!-- if $item.type_name == '采购入库' || $item.type_name =='退货入库' || $item.type_name =='换货入库' || $item.type_name =='调拨入库' ||$item.type_name =='残损入库' -->
|
|
<!-- 入库 -->
|
|
<{if $item.type_id == 1 || $item.type_id == 4 || $item.type_id == 30 || $item.type_id == 31 || $item.type_id == 32 || $item.type_id == 50 || $item.type_id == 60 || $item.type_id == 7}>
|
|
<td><{$item.nums}></td>
|
|
<!-- 出库 -->
|
|
<{else}>
|
|
<td>-<{$item.nums}></td>
|
|
<{/if}>
|
|
<!-- <td><{$item.branch_name}></td> -->
|
|
<td><{$item.iostock_price|cur}></td>
|
|
<td><{$item.create_time}></td>
|
|
</tr>
|
|
<{/foreach}>
|
|
</tbody>
|
|
</table>
|
|
</div> |