|
@@ -25,6 +25,13 @@
|
|
<div style="margin: 3px 2px;padding:5px;border: 1px solid #95B8E7;">
|
|
<div style="margin: 3px 2px;padding:5px;border: 1px solid #95B8E7;">
|
|
开始 <input type="text" id="server_start_time" />
|
|
开始 <input type="text" id="server_start_time" />
|
|
结束 <input type="text" id="server_end_time" />
|
|
结束 <input type="text" id="server_end_time" />
|
|
|
|
+ <div class="tb_line">
|
|
|
|
+ <span class="tb_label">类型: </span>
|
|
|
|
+ <input id="filter_type" />
|
|
|
|
+ <!-- <div class="left">-->
|
|
|
|
+ <!-- 查询:<input id="ss" />-->
|
|
|
|
+ <!-- </div>-->
|
|
|
|
+ </div>
|
|
<a href="#" class='easyui-linkbutton' iconCls="icon-add" plain="true" onclick="export_order();return false;">导出提货记录 </a>
|
|
<a href="#" class='easyui-linkbutton' iconCls="icon-add" plain="true" onclick="export_order();return false;">导出提货记录 </a>
|
|
|
|
|
|
</div>
|
|
</div>
|
|
@@ -301,6 +308,7 @@
|
|
var jq_dg_content = $('#dg_content');
|
|
var jq_dg_content = $('#dg_content');
|
|
var jq_content_form = $('#content_form');
|
|
var jq_content_form = $('#content_form');
|
|
var jq_filter_status = $('#filter_status');
|
|
var jq_filter_status = $('#filter_status');
|
|
|
|
+ var jq_filter_type = $('#filter_type');
|
|
var module_router = site_root + '/index.php?r=JRecord';
|
|
var module_router = site_root + '/index.php?r=JRecord';
|
|
var jq_setStatus = $('#setStatus');
|
|
var jq_setStatus = $('#setStatus');
|
|
var jq_setStatus_add = $('#setStatus_add');
|
|
var jq_setStatus_add = $('#setStatus_add');
|
|
@@ -310,6 +318,7 @@
|
|
var jq_add_dialog = $('#add_dialog');
|
|
var jq_add_dialog = $('#add_dialog');
|
|
var jq_add_form = $('#add_form');
|
|
var jq_add_form = $('#add_form');
|
|
var status_data = <?php echo json_encode($status); ?>;
|
|
var status_data = <?php echo json_encode($status); ?>;
|
|
|
|
+ var type_data = <?php echo json_encode($type); ?>;
|
|
var jq_set_precedence = $('#set_precedence');
|
|
var jq_set_precedence = $('#set_precedence');
|
|
var jq_action_info = $('#action_info');
|
|
var jq_action_info = $('#action_info');
|
|
var jq_acc = $('#acc_container');
|
|
var jq_acc = $('#acc_container');
|
|
@@ -371,6 +380,11 @@
|
|
search_content();
|
|
search_content();
|
|
}
|
|
}
|
|
});
|
|
});
|
|
|
|
+ jq_filter_type.combobox({
|
|
|
|
+ width: 100,
|
|
|
|
+ data: status_data,
|
|
|
|
+ editable: false
|
|
|
|
+ });
|
|
|
|
|
|
|
|
|
|
var p_width = parseInt(w_width / 2);
|
|
var p_width = parseInt(w_width / 2);
|
|
@@ -657,9 +671,11 @@
|
|
if (!start_time && !end_time) {
|
|
if (!start_time && !end_time) {
|
|
alert('请选择时间');
|
|
alert('请选择时间');
|
|
} else {
|
|
} else {
|
|
- window.location.href = module_router+'/OutputExcel&start_time='+start_time+'&end_time='+end_time;
|
|
|
|
|
|
+ const type = jq_filter_type.combobox('getValue');
|
|
|
|
+ window.location.href = module_router+'/OutputExcel&start_time='+start_time+'&end_time='+end_time + '&type=' + type;
|
|
$('#server_start_time').datebox('setValue','');
|
|
$('#server_start_time').datebox('setValue','');
|
|
$('#server_end_time').datebox('setValue','');
|
|
$('#server_end_time').datebox('setValue','');
|
|
|
|
+ jq_filter_type.combobox('setValue',100);
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|