Files
OMS/app/tgstockcost/view/admin/costdetail.html
2025-12-28 23:13:25 +08:00

54 lines
1.4 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">
<div class="division" style="overflow:scroll">
<table id="aa" border="0" cellspacing="0" class="gridlist" cellpadding="0">
<thead>
<tr>
<th>基础物料编码</th>
<th>基础物料名称</th>
<th>商品类型</th>
<th>品牌</th>
<th>规格</th>
<th>单位</th>
<th>日期</th>
<th>原始单据号</th>
<th>单据类型</th>
<th>入库数量</th>
<th>入库单位成本</th>
<th>入库库存成本</th>
<th>出库数量</th>
<th>出库单位成本</th>
<th>出库库存成本</th>
<th>结存数量</th>
<th>结存单位成本</th>
<th>结存库存成本</th>
</tr></thead>
</table>
</div>
</div>
<script>
function ajax_load_data(page){
var bn= '<{$get_params.bn}>';
new Request({
url:'index.php?app=tgstockcost&ctl=costdetail&act=view_detail_ajax',
//update:$("aa"),
method:'post',
data:'branch_id='+'<{$get_params.branch_id}>'+'&start_time='+'<{$get_params.start_time}>'+'&end_time='+'<{$get_params.end_time}>'+'&bn='+'<{$get_params.bn}>'+'&page='+page,
onSuccess:function(response){
var res_data = JSON.decode(response);
new Element('tbody',{
html:res_data.costdetail_data
}).inject($('aa'));
page = page+1;
if(res_data.end!='true' && !bn) ajax_load_data(page);
},
}).send();
}
ajax_load_data(1);
</script>