-
Notifications
You must be signed in to change notification settings - Fork 0
/
credithistory.php
77 lines (65 loc) · 2.54 KB
/
credithistory.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?php
/*******************************************************************************
* credithistory.php
* credithistory查询界面文件
* credithistory interface
* 功能描述
提供credithistory查询界面
* Page elements
* div:
divNav show management function list
grid show credithistory grid
msgZone show action result
divCopyright show copyright
* javascript function:
init page onload function
********************************************************************************/
require_once('credithistory.common.php');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<?php $xajax->printJavascript('include/'); ?>
<meta http-equiv="Content-Language" content="utf-8" />
<SCRIPT LANGUAGE="JavaScript">
<!--
function init(){
xajax_init();
dragresize.apply(document);
}
function searchFormSubmit(numRows,limit,id,type){
//alert(xajax.getFormValues("searchForm"));
xajax_searchFormSubmit(xajax.getFormValues("searchForm"),numRows,limit,id,type);
return false;
}
//-->
</SCRIPT>
<script type="text/javascript" src="js/dragresize.js"></script>
<script type="text/javascript" src="js/dragresizeInit.js"></script>
<script type="text/javascript" src="js/astercrm.js"></script>
<LINK href="skin/default/css/style.css" type=text/css rel=stylesheet>
<LINK href="skin/default/css/dragresize.css" type=text/css rel=stylesheet>
</head>
<body onload="init();" id="credithistory">
<div id="divNav"></div><br>
<div name="divClid" id="divClid" style="visibility:hidden">
<?php echo $locate->Translate("Total Cost")?>: <span id="spanCost" name="spanCost"></span> <?php echo $locate->Translate("Limit")?>: <span id="spanLimit" name="spanLimit"></span> <?php echo $locate->Translate("Current cost")?>: <span id="spancurcredit" name="spancurcredit"></span><br>
</div>
<table width="100%" border="0" style="background: #F9F9F9; padding: 0px;">
<tr>
<td style="padding: 0px;">
<fieldset>
<div id="formDiv" class="formDiv drsElement"
style="left: 450px; top: 50px;width:500px;"></div>
<div id="grid" name="grid" align="center"> </div>
<div id="msgZone" name="msgZone" align="left"> </div>
</fieldset>
</td>
</tr>
</table>
<form name="exportForm" id="exportForm" action="dataexport.php" >
<input type="hidden" value="" id="hidSql" name="hidSql" />
</form>
<div id="divCopyright"></div>
</body>
</html>