Files
OMS/app/console/view/admin/iostock/stock_check.html
2026-01-04 19:08:31 +08:00

209 lines
5.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 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.
-->
<{capture name="header"}>
<{css app="ome" src="ome.css"}>
<{css app="ome" src="style.css"}>
<{script src="coms/autocompleter.js" app="desktop"}>
<{script src="coms/pager.js" app="desktop"}>
<{/capture}>
<form name="form1" action="index.php?app=console&ctl=admin_iostockorder&act=doCheck" method="post">
<div class="tableform">
<input type="hidden" name="io" value="<{$io}>">
<input type="hidden" name="iso_id" value="<{$iso.iso_id}>">
<input type="hidden" name="io_act" value="<{$act}>">
<input type="hidden" name="type_id" value="<{$iso.type_id}>">
<h4><{if $io=='1'}>入库<{else}>出库<{/if}>单审核</h4>
<div class="division">
<table border="0" cellspacing="0" cellpadding="0" class="gridlist">
<tbody>
<tr>
<th><{if $io=='1'}>入库<{else}>出库<{/if}>单编号:</th>
<td ><{$iso.iso_bn}></td>
<th><{if $act != 'allocate_iostock'}>供应商:<{/if}></th>
<td ><{if $act != 'allocate_iostock'}><{$iso.supplier_name}><{/if}></td>
<th >经办人:</th>
<td ><{$iso.operator}></td>
<th >仓库:</th>
<td ><{$iso.branch_name}></td>
</tr>
</tbody>
<tbody>
<tr>
<th >金额总计:
</th>
<td ><font color="orange"><b><{$amount|cur}></b></font></td>
<th>物料总额:</th>
<td><font color="orange"><b><{$iso.product_cost|cur}></b></font></td>
<th >
物流费用:
</th>
<td>
<{$iso.iso_price}>&nbsp;
</td>
<{if $act!='allocate_iostock'}>
<th ><{if $io=='1'}>来源地:<{else}>目的地:<{/if}></th>
<td ><{$iso.extrabranch_name}></td>
<{/if}>
</tr>
</tbody>
<tbody>
<tr>
<th ><{if $io=='1'}>入库<{else}>出库<{/if}>日期:</th>
<td ><{$iso.create_time}></td>
<th>领用部门:</th>
<td><{$iso.cost_department}></td>
<th >业务类型:</th>
<td ><{$iso.bill_type_name}></td>
<th >业务单号:</th>
<td ><{$iso.business_bn}></td>
</tr>
</tbody>
<tbody>
<tr>
<th ><{if $io=='1'}>入库<{else}>出库<{/if}>单数</th>
<td ><{$iso.total_num}></td>
<th ></th>
<td ></td>
<th >&nbsp;</th>
<td >&nbsp;</td>
<th >&nbsp;</th>
<td >&nbsp;</td>
</tr>
<{if $iso.memo}>
<tr>
<th >备 注</th>
<td colspan=20 style="text-align:left">
<{$iso.memo}>
</td>
</tr>
<{/if}>
</tbody>
</table>
</div>
<h4><{if $io=='1'}>发货人信息<{else}>收货人信息<{/if}></h4>
<div class="division">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<th>联系地区:</th>
<td colspan="3"><{$iso.extra_ship_area}></td>
</tr>
<tr>
<th>联系姓名:</th>
<td><{$iso.extra_ship_name}></td>
<th>联系邮编:</th>
<td><{$iso.extra_ship_zip}></td>
</tr>
<tr>
<th>联系手机:</th>
<td><{$iso.extra_ship_mobile}></td>
<th>联系Email</th>
<td><{$iso.extra_ship_email}></td>
</tr>
<tr>
<th>联系详细地址:</th>
<td colspan="3"><{$iso.extra_ship_addr}></td>
</tr>
</table>
</div>
<h4><{if $io=='1'}>入库<{else}>出库<{/if}>单明细</h4>
<div class="division">
<table border="0" cellspacing="0" cellpadding="0" class="gridlist">
<col style="width:10%;"></col>
<col style="width:30%;"></col>
<col style="width:10%;"></col>
<col style="width:10%;"></col>
<col style="width:6%;"></col>
<thead>
<tr>
<th>基础物料编码</th>
<th>基础物料名称</th>
<th>规格</th>
<th>条码</th>
<th><{if $io=='1'}>入<{else}>出<{/if}>库数量</th>
</tr>
</thead>
<{foreach from=$iso.iso_items item=item}>
<tbody>
<tr>
<td><{$item.bn}></td>
<td><{$item.product_name}></td>
<td><{$item.spec_info}></td>
<td><{$item.barcode}></td>
<td><{$item.nums}></td>
</tr>
</tbody>
<{/foreach}>
</table>
</div>
<div class="division">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin-top:10px;">
<tr>
<th>经办人:</th>
<td align="left"><{$iso.oper}></td>
<th>备注:</th>
<td align="left"><{$iso.memo}></td>
</tr>
</table>
</div>
<div id="cc" class="noprint table-action"><{button type="button" id="stock-save-btn" label="确认"}> &nbsp;
<{button type="button" class="btn-secondary" id="return-btn" label="关闭" onclick="javascript:void(window.close());"}></div>
</div>
</div>
</form>
<script>
$('stock-save-btn').addEvent('click',function(e){
var _this=this;
var form=this.getParent('form');
form.store('target',{
onRequest:function(){
_this.disabled=true;
},
onComplete:function(jsontext){
try{
var json = JSON.decode(jsontext);
if (typeof(json.error)!='undefined'){
_this.disabled=false;
}else{
_this.disabled=true;
opener.finderGroup['<{$env.get.finder_id}>'].refresh.delay(100,opener.finderGroup['<{$env.get.finder_id}>']);
setTimeout('window.close()',200);
}
}catch(e){}
}
});
form.fireEvent('submit',e);
});
</script>