Files
OMS/app/purchase/view/admin/inventory/confirm.html
2025-12-28 23:13:25 +08:00

150 lines
4.8 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!--
Copyright © ShopeX http://www.shopex.cn. All rights reserved.
See LICENSE file for license details.
-->
<div class="tableform">
<form id="confirmform" action="index.php?app=purchase&ctl=admin_inventory&act=doconfirm" method="post">
<div class="division" >
<h3><{if !$view}>损益确认<{else}>盘点表明细<{/if}></h3>
<table width='100%' cellspacing="0" cellpadding="0" >
<tr>
<td>盘点名称:<{$detail.inventory_name}></td>
<td></td>
</tr>
<tr>
<td>盘点单编号:<{$detail.inventory_bn}></td>
<td>盘点日期:<{$detail.inventory_date|date_format:"%Y-%m-%d"}></td>
</tr>
<tr>
<td>盘点仓库:<{$detail.branch_name}></td>
<td>盘点类别:<{if $detail.inventory_type=='1'}>自定义<{else}>全盘<{/if}></td>
</tr>
<tr>
<td>差异金额:<{$detail.difference|cur}></td>
<td>盘点人:<{$detail.inventory_checker}></td>
</tr>
</table>
<table width='100%' cellspacing="0" cellpadding="0" class="gridlist">
<thead>
<tr>
<th>基础物料名称</th>
<th>基础物料编码</th>
<th>规格</th>
<th>单位</th>
<th>货位</th>
<th>帐面数量</th>
<th>实际数量</th>
<th>盈(+)亏(-)记录</th>
<th>单价</th>
<th>品质情况</th>
<th>错误日志</th>
</tr>
</thead>
<{foreach from=$items item=items key=keys}>
<tbody>
<tr class="toggler atStart" >
<td><{$items.name}></td>
<td><{$items.bn}></td>
<td><{$items.spec_info}></td>
<td><{$items.unit}></td>
<td><{$items.pos_name}></td>
<td><{$items.accounts_num}></td>
<td><{$items.actual_num}></td>
<td><{$items.shortage_over}></td>
<td><{$items.price|cur}></td>
<td><{$items.memo}></td>
<td><{$items.error_log|default:'-'}></td>
</tr>
</tbody>
<{/foreach}>
<tbody style="display:none;">
<tr >
<td><b>小计:</b></td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td><{$subtotal.accounts_num}></td>
<td><{$subtotal.actual_num}></td>
<td><{$subtotal.shortage_over}></td>
<td>-</td>
<td>-</td>
</tr>
</tbody>
<tbody style="display:;">
<tr >
<td><b>总计:</b></td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td><{$total.accounts_num}></td>
<td><{$total.actual_num}></td>
<td><{$total.shortage_over}></td>
<td>-</td>
<td>-</td>
</tr>
</tbody>
</table>
<table width='100%' cellspacing="0" cellpadding="0" >
<tr><td colspan="4" align="center"><b></b></td></tr>
<tr>
<td>复核人:<{$detail.second_checker}></td>
<td>财务负责人:<{$detail.finance_dept}></td>
<td>仓库负责人:<{$detail.warehousing_dept}></td>
</tr>
</table>
</div>
<div class="gridlist-footer">
<{$pager}>&nbsp;&nbsp;<{$count}>条,每页显示<{$pagelimit}>条
</div>
<div class="table-action">
<input type="hidden" name="doSubmit" value="true" />
<input type="hidden" name="inventory_id" value="<{$inventory_id}>" />
<{if $detail.import_status=='0'}>
盘点正在导入队列,请稍候...
<{button type="button" class="btn btn-primary" onclick="javascript:history.go(-1);" label="返回" }>
<{else}>
<{if !$view}>
<{button type="submit" id="confirm_btn" class="btn btn-primary" label="确认" }>
<{button type="button" class="btn btn-primary" onclick="javascript:history.go(-1);" label="取消" }>
<{else}>
<{button type="button" class="btn btn-primary" onclick="javascript:history.go(-1);" label="返回" }>
<{/if}>
<{/if}>
</div>
</form>
</div>
<script>
$('confirmform').store('target',{
onRequest:function(){
$('confirm_btn').set('disabled', 'true');
$('confirm_btn').getElements('span')[1].set('text','确认中');
},
onComplete:function(jsontext){
var json = Json.evaluate(jsontext);
if (typeof(json.error) != 'undefined'){
$('confirm_btn').set('disabled', '');
$('confirm_btn').getElements('span')[1].set('text','确认');
}else{
$('confirm_btn').set('disabled', 'true');
$('confirm_btn').getElements('span')[1].set('text','确认中');
}
}
});
</script>