mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-24 03:15:32 +08:00
78 lines
4.1 KiB
HTML
78 lines
4.1 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="filter-list" style="float:left;">
|
|
<div style="float:left;border: 1px solid #EBEFF4;margin:2px 16px 2px 0;padding: 4px;height:26px;">
|
|
<label>账单日期: </label>
|
|
<{input type="date" vtype="date" name="time_from" id="time_from" style="width:66px; font-family:arial;" value=$env.post.time_from}> 至
|
|
<{input type="date" vtype="date" name="time_to" id="time_to" style="width:66px; font-family:arial;" value=$env.post.time_to}>
|
|
</div>
|
|
<div style="float:left;border: 1px solid #EBEFF4;margin:2px 16px 2px 0;padding: 4px;height:26px;">
|
|
<label>拆分日期: </label>
|
|
<{input type="date" vtype="date" name="split_time_from" style="width:66px; font-family:arial;" value=$env.post.split_time_from}> 至
|
|
<{input type="date" vtype="date" name="split_time_to" style="width:66px; font-family:arial;" value=$env.post.split_time_to}>
|
|
</div>
|
|
<div style="float:left;border: 1px solid #EBEFF4;margin:2px 16px 2px 0;padding: 4px;height:26px;">
|
|
<label>选择店铺:</label>
|
|
<select name="shop_id" id="shop_id">
|
|
<option value="">全部</option>
|
|
<{foreach from=$shopdata item=val}>
|
|
<option value="<{$val.shop_id}>" <{if $env.post.shop_id == $val.shop_id}>selected="selected"<{/if}> ><{$val.name}></option>
|
|
<{/foreach}>
|
|
</select>
|
|
</div>
|
|
<div style="float:left;border: 1px solid #EBEFF4;margin:2px 16px 2px 0;padding: 4px;height:26px;">
|
|
<label>具体类别:</label>
|
|
<select name="bill_category" id="bill_category">
|
|
<option value="">全部</option>
|
|
<{foreach from=$billCategory item=val}>
|
|
<option value="<{$val.bill_category}>" <{if $env.post.bill_category == $val.bill_category}>selected="selected"<{/if}>><{$val.bill_category}></option>
|
|
<{/foreach}>
|
|
</select>
|
|
</div>
|
|
<div style="float:left;border: 1px solid #EBEFF4;margin:2px 16px 2px 0;padding: 4px;height:26px;">
|
|
<label>业务流水号: </label>
|
|
<{input type="text" name="trade_no" style="width:66px; font-family:arial;" value=$env.post.trade_no}>
|
|
</div>
|
|
<{if $env.get.view == 0}>
|
|
<div style="float:left;border: 1px solid #EBEFF4;margin:2px 16px 2px 0;padding: 4px;height:26px;">
|
|
<label>商品编码: </label>
|
|
<{input type="text" name="material_bn" style="width:66px; font-family:arial;" value=$env.post.material_bn}>
|
|
</div>
|
|
<div style="float:left;border: 1px solid #EBEFF4;margin:2px 16px 2px 0;padding: 4px;height:26px;">
|
|
<label>拆分状态: </label>
|
|
<{input type="select" name="split_status" options=array("0"=>"拆分项","1"=>"调整项","2"=>"红冲项") value=$env.post.split_status}>
|
|
</div>
|
|
<{/if}>
|
|
<{if $env.get.view == 2}>
|
|
<div style="float:left;border: 1px solid #EBEFF4;margin:2px 16px 2px 0;padding: 4px;height:26px;">
|
|
<label>失败原因: </label>
|
|
<{input type="text" name="split_fail_msg" style="width:120px; font-family:arial;" value=$env.post.split_fail_msg}>
|
|
</div>
|
|
<{/if}>
|
|
</div>
|
|
<div style="float:left;margin:5px 16px 2px 0;padding: 4px;height:26px;padding:0;">
|
|
<{button class="btn-primary" id="search_btn" label=$___desktop="立即筛选"|t:'desktop'}>
|
|
</div>
|
|
<script type="text/javascript">
|
|
(function () {
|
|
$('search_btn').addEvent('click', function(){
|
|
var finderId = $E('input[name="_finder[finder_id]"]').value;
|
|
var finder = finderGroup[finderId];
|
|
finder.refresh();
|
|
});
|
|
})();
|
|
</script> |