You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
97 lines
4.5 KiB
Plaintext
97 lines
4.5 KiB
Plaintext
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="FeeHistory.aspx.cs" Inherits="DSWeb.Shipping.FeeHistory" %>
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" >
|
|
<head runat="server">
|
|
<title>历史信息查询</title>
|
|
<style type="text/css">
|
|
.txtTab{border:1px solid #A0A0A4; border-color:#6699CC;}
|
|
.ck{border:1px solid #A0A0A4; border-color:#6699CC;}
|
|
.btn
|
|
{
|
|
width:100px;
|
|
BORDER-RIGHT: #2C59AA 1px solid;
|
|
PADDING-RIGHT: 2px; BORDER-TOP: #2C59AA 1px solid;
|
|
PADDING-LEFT: 2px; FONT-SIZE: 12px; FILTER: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr=#ffffff, EndColorStr=#C3DAF5);
|
|
BORDER-LEFT: #2C59AA 1px solid; CURSOR: hand; COLOR: black; PADDING-TOP: 2px;
|
|
BORDER-BOTTOM: #2C59AA 1px solid
|
|
}
|
|
|
|
</style>
|
|
<link rel="STYLESHEET" type="text/css" href="../theme/dhtmlxgrid.css"/>
|
|
<link rel="STYLESHEET" type="text/css" href="../theme/page.css"/>
|
|
<link rel="STYLESHEET" type="text/css" href="../theme/button/default/Fee.css"/>
|
|
<script src="../js/dhtmlxcommon.js" type="text/javascript"></script>
|
|
<script src="../js/dhtmlxgrid.js" type="text/javascript"></script>
|
|
<script src="../js/dhtmlxgridcell.js" type="text/javascript"></script>
|
|
<script src="../js/dhtmlxcombo.js" type="text/javascript"></script>
|
|
<script src="../js/dhtmlxgrid_keymap_excel.js" type="text/javascript"></script>
|
|
<script src="../js/dhtmlxgrid_drag.js" type="text/javascript"></script>
|
|
<script src="../js/dhtmlxgrid_group.js" type="text/javascript"></script>
|
|
<script src="../js/dhtmlxgrid_mcol.js" type="text/javascript"></script>
|
|
<script src="../js/TGridCommon.js" type="text/javascript"></script>
|
|
<script src="../js/json2.js" type="text/javascript"></script>
|
|
<script type="text/javascript" src="../js/dhtmlxcombo.js"></script>
|
|
<script type="text/javascript" src="../js/dhtmlxcombo_whp.js"></script>
|
|
<script language="javascript" type="text/javascript" src="../js/date/calendar.js"></script>
|
|
<script type="text/javascript">
|
|
window.dhx_globalImgPath="../images/";
|
|
|
|
function document.onkeydown(){
|
|
if(event.keyCode==116){
|
|
event.keyCode = 0;
|
|
event.cancelBubble = true;
|
|
return false;
|
|
}
|
|
}
|
|
</script>
|
|
<script src="../js/feehistory.js" type="text/javascript"></script>
|
|
</head>
|
|
<body onload="createFee()" style="background-color:#ecf2ff;">
|
|
<table style="width:900px">
|
|
<tr>
|
|
<td style="width:100px; height:30px;"><div style="font-size:12px; text-align:right;">查看类型:</div></td>
|
|
<td style="width:140px;"><select id="showtype" class="txtTab" style="width:140px;" onchange=checkBtnClick(this.options[this.options.selectedIndex].value)><option value="1">查看费用结算信息</option><option value="2">查看费用发票信息</option><option value="3">查看费用修改过程</option></select></td>
|
|
<td style="width:120px;" align="center"></td>
|
|
<td style="width:540px;"></td>
|
|
</tr>
|
|
</table>
|
|
<div id="mygrid_container_fee" style="width:880px; height:180px;" runat="server"></div>
|
|
<div id="dvSettlement"><div id="mygrid_container_settlement" style="width:880px; height:100px;" runat="server"></div></div>
|
|
|
|
<div id="dvInvoice" style="display:none;">
|
|
<table>
|
|
<tr>
|
|
<td><div style="font-size:12px;">已开发票信息</div></td>
|
|
</tr>
|
|
<tr>
|
|
<td><div id="mygrid_container_invoicemake" style="width:880px; height:80px;" runat="server"></div></td>
|
|
</tr>
|
|
<tr>
|
|
<td><div style="font-size:12px;">已申请发票信息</div></td>
|
|
</tr>
|
|
<tr>
|
|
<td><div id="mygrid_container_invoiceapp" style="width:880px; height:80px;" runat="server"></div></td>
|
|
</tr>
|
|
<tr>
|
|
<td><div style="font-size:12px;">已核销发票信息</div></td>
|
|
</tr>
|
|
<tr>
|
|
<td><div id="mygrid_container_invoiceverify" style="width:880px; height:80px;" runat="server"></div></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
|
|
<div id="dvFeeModify" style="display:none"><div id="mygrid_container_feemodify" style="width:880px; height:180px;" runat="server"></div></div>
|
|
|
|
<form id="form1" runat="server">
|
|
<div>
|
|
<input type="hidden" id="h_bsno" runat="server" />
|
|
<input type="hidden" id="h_feetype" runat="server" />
|
|
<input type="hidden" id="h_oplb" runat="server" />
|
|
</div>
|
|
</form>
|
|
</body>
|
|
</html>
|