mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
122 lines
5.4 KiB
HTML
122 lines
5.4 KiB
HTML
<!--
|
||
Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
See LICENSE file for license details.
|
||
-->
|
||
|
||
<script>
|
||
<{if $data.count}>
|
||
var item_i = <{$data.count}>;
|
||
<{else}>
|
||
var item_i = 0;
|
||
<{/if}>
|
||
</script>
|
||
<div class="tableform">
|
||
<h3>调拨单状态回传</h3>
|
||
<div class="division">
|
||
<form action="index.php?app=omevirtualwms&ctl=admin_wms&act=doSubmit" method="post" id="form-stockin">
|
||
<input type="hidden" name='flag' value='<{$type}>' />
|
||
<input type="hidden" name='finder' value='allocate' />
|
||
<table width="100%" cellspacing="0" cellpadding="0" border="0" >
|
||
<tbody>
|
||
<tr>
|
||
<th>调拨单编号</th>
|
||
<td><input type="text" name="<{$type}>_bn" value='<{$data.iso_bn}>' ></td>
|
||
</tr>
|
||
<tr>
|
||
<th>第三方仓储</th>
|
||
<td>
|
||
<input type="hidden" name="node_id" value='<{$data.node_id}>' />
|
||
<{$data.wms_name}>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th>入库仓库</th>
|
||
<td><input type="hidden" name="warehouse" value='<{$data.branch_bn}>'><{$data.name}></td>
|
||
</tr>
|
||
<tr>
|
||
<th>状态</th>
|
||
<td>
|
||
<select name="status">
|
||
<option value="FAILED">接单失败</option>
|
||
<option value="ACCEPT">已接单</option>
|
||
<option value="PARTIN">部分<{if $type=='stockin'}>入库<{else}>出库<{/if}></option>
|
||
<option value="FINISH" selected >全部<{if $type=='stockin'}>入库<{else}>出库<{/if}></option>
|
||
<option value="CANCEL">取消</option>
|
||
<option value="CLOSE">关闭</option>
|
||
</select>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th>备注</th>
|
||
<td><input type="text" name="remark" value="<{$data.demo}>"></td>
|
||
</tr>
|
||
<tr>
|
||
<th>操作时间</th>
|
||
<td><input type="text" name="operate_time" value="<{$data.time}>" ></td>
|
||
</tr>
|
||
<tr>
|
||
<th>task</th>
|
||
<td><input type="text" name="task" value="<{$data.task}>"></td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
<div class="tableform">
|
||
<div><span style="font-weight:bold;">入库商品明细:</span></div>
|
||
|
||
<div id="listArea" class="division">
|
||
<{if $data.items_count >= 3000}>
|
||
<font style="color:red">*由于数据量过大,列表暂不展示,如要执行大数据量回传操作,请使用导入功能!</font>
|
||
<{else}>
|
||
<{foreach from=$data.product item=data name=product}>
|
||
<div id="stockin_<{$smarty.foreach.product.iteration}>" style="margin-bottom:3px;border:1px solid #ccc;">
|
||
<table width="100%" cellspacing="0" cellpadding="0" border="0">
|
||
<tr>
|
||
<th>基础物料名称</th>
|
||
<td><{$data.name}></td>
|
||
<th>基础物料编码</th>
|
||
<td><{$data.bn}><input type="hidden" name="product[<{$smarty.foreach.product.iteration}>][]" value="<{$data.bn}>"></td>
|
||
</tr>
|
||
<tr>
|
||
<th style="width:70px;">良品入库数量</th>
|
||
<td><input type="text" name="product[<{$smarty.foreach.product.iteration}>][]" value="<{math equation="x - y - z" x=$data.num y=$data.in_nums z=$data.defective_num}>" ></td>
|
||
<th style="width:70px;">不良品入库数量</th>
|
||
<td><input type="text" name="product[<{$smarty.foreach.product.iteration}>][]" value="0"> <span onclick="delStockin('stockin_<{$smarty.foreach.product.iteration}>');" style="cursor:pointer;color:red;">X</span></td>
|
||
</tr>
|
||
</table>
|
||
</div>
|
||
<{/foreach}>
|
||
<{/if}>
|
||
</div>
|
||
</div>
|
||
<div class="table-action">
|
||
<{if $data.items_count < 3000}>
|
||
<{button label="提交" type="submit" name="submit" id="btn-stockin"}>
|
||
<{/if}>
|
||
</div>
|
||
</form>
|
||
</div>
|
||
</div>
|
||
<script>
|
||
function addStockin(){
|
||
var i = ++item_i;
|
||
var content='\
|
||
<div id="stockin_'+i+'" style="margin-bottom:3px;border:1px solid #ccc;">\
|
||
<table width="100%" cellspacing="0" cellpadding="0" border="0">\
|
||
<tr><th>货品编号'+i+'</th>\
|
||
<td><input type="text" name="product['+i+'][]"></td>\
|
||
<th style="width:70px;">良品入库数量'+i+'</th>\
|
||
<td><input type="text" name="product['+i+'][]"></td>\
|
||
<th style="width:70px;">不良品入库数量'+i+'</th> \
|
||
<td><input type="text" name="product['+i+'][]"> <span onclick="delStockin(\'stockin_'+i+'\');" style="cursor:pointer;color:red;">X</span></td> \
|
||
</tr>\
|
||
<table>\
|
||
</div>\
|
||
';
|
||
$E('#listArea').adopt(new Element('div').set('html',content).getFirst());
|
||
|
||
}
|
||
delStockin=function(o){
|
||
$(o).remove();
|
||
}
|
||
</script>
|
||
|