65 lines
1.8 KiB
HTML
65 lines
1.8 KiB
HTML
|
<html login="false" auth="false">
|
||
|
<head>
|
||
|
<title>催缴次数明细</title>
|
||
|
<style>
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div widget="toolbar" style="padding:4px;border:0;">
|
||
|
<!-- style="width:300px;" -->
|
||
|
<input name="rushtime" widget=datechooser allowinput="f" label="催缴日期">
|
||
|
|
||
|
|
||
|
<input name="jftime" widget=datechooser allowinput="f" label=">=缴费日期">
|
||
|
|
||
|
|
||
|
<a widget="button" iconCls="icon-search" onclick="search()">查询</a>
|
||
|
</div>
|
||
|
<div widget="autosize">
|
||
|
<div widget="datagrid" name="grid" style="width: 100%; height: 100%;" url="rush/companykaohe/hfcountmx">
|
||
|
<div field="cust_name" width="60" align="center" header="客户名称" ></div>
|
||
|
<div field="addtime" width="60" align="center" header="缴费时间"></div>
|
||
|
<div field="kpxm" width="60" align="center" header="开票名称"></div>
|
||
|
<div field="kphjje" width="60" align="center" header="开票金额"></div>
|
||
|
<div field="hfnum" width="60" align="center" header="回访次数"></div>
|
||
|
<div field="custtype" width="60" align="center" header="客户类型"></div>
|
||
|
<div field="ifmz" width="60" align="center" header="是否免征"></div>
|
||
|
<div field="injg" width="60" align="center" header="是否在机柜"></div>
|
||
|
|
||
|
<div field="ifjy" width="60" align="center" header="是否积压"></div>
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
</body>
|
||
|
<script type="text/javascript">
|
||
|
var grid = aos.get('grid');
|
||
|
|
||
|
var begintime =aos.formatDate(new Date(),"yyyy-MM-dd");
|
||
|
aos.get('rushtime').setValue(begintime);
|
||
|
function search(){
|
||
|
var rushtime=aos.get('rushtime').getValue();
|
||
|
|
||
|
var jftime=aos.get('jftime').getValue();
|
||
|
|
||
|
if (rushtime!=""&&jftime!="")
|
||
|
{
|
||
|
var params={
|
||
|
rushtime:rushtime,
|
||
|
jftime:jftime
|
||
|
}
|
||
|
grid.load(params);
|
||
|
}
|
||
|
|
||
|
else {
|
||
|
aos.alert('请选择缴费日期和催缴日期!');
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
</script>
|
||
|
</html>
|