88 lines
2.8 KiB
Plaintext
88 lines
2.8 KiB
Plaintext
@{
|
|
ViewBag.Title = "与衡泰对账";
|
|
ViewBag.Menu = "结算财务-与衡泰对账";
|
|
Layout = "~/Views/Shared/_MainLayout.cshtml";
|
|
}
|
|
@section CSS{
|
|
<style>
|
|
textarea {
|
|
width: 98%;
|
|
height:200px;
|
|
}
|
|
|
|
.wentiEdit{
|
|
cursor:pointer;
|
|
}
|
|
|
|
.searchdiv .search-group {
|
|
width:282px;
|
|
}
|
|
.searchdiv .search-label{
|
|
width:120px;
|
|
}
|
|
|
|
.searchdiv .datepicker {
|
|
width: 152px !important;
|
|
font-size: .75rem;
|
|
}
|
|
</style>
|
|
}
|
|
@section JS{
|
|
<script>
|
|
var page = {
|
|
configcolumn_data_comparehetai : "@configcolumn_data.衡泰对账"
|
|
};
|
|
</script>
|
|
<script src="~/Scripts/app/datacompare/list.js?v=@HtmlUtil.JsVersion"></script>
|
|
}
|
|
<div id="rateVue">
|
|
<div class="searchdiv">
|
|
<div class="search-group">
|
|
<span class="search-label" for="DateValueDate">对账日期</span>
|
|
<input class="search-input datepicker" id="ValueDate" name="ValueDate" value="@ViewBag.ValueDate" type="text" autocomplete="off">
|
|
</div>
|
|
@Html.MyAceDropdownInput("AssetId", "簿记账户", AssetunitController.GetClientassetunit())
|
|
@Html.ShortInput("TradeNumber", "交易编号")
|
|
<div class="search-group">
|
|
<span class="search-label" for="ShowException">仅看异常</span>
|
|
<input type="checkbox" id="ShowException" name="ShowException" />
|
|
</div>
|
|
<button class="btn btn-primary" onclick="SearchClick()"><span class="glyphicon glyphicon-search"></span>查询</button>
|
|
<button class="btn btn-primary" onclick="ExportClick()"><span class="glyphicon"></span>导出</button>
|
|
<div style="width: 30px; display: inline;" onclick="showcolumnChooser();return false;">
|
|
<img src="~/Images/configure.png" />
|
|
</div>
|
|
|
|
<br/>
|
|
|
|
<div class="search-group">
|
|
<span class="search-label">系统清算时间</span>
|
|
<span id="sysTime"></span>
|
|
</div>
|
|
<div class="search-group">
|
|
<span class="search-label">衡泰清算时间</span>
|
|
<span id="hengTaiTime"></span>
|
|
</div>
|
|
|
|
</div>
|
|
<ul id="myTab" class="nav nav-tabs nav-main">
|
|
<li class="nav-item">
|
|
<a class="nav-link active" href="#">本系统中的合约</a>
|
|
</li>
|
|
</ul>
|
|
<div style="width:98%">
|
|
@Html.Raw(JqGridSimple.OutTable())
|
|
</div>
|
|
<ul id="myTab" class="nav nav-tabs nav-main">
|
|
<li class="nav-item">
|
|
<a class="nav-link active" href="#">仅衡泰中有的合约</a>
|
|
</li>
|
|
</ul>
|
|
<div style="width:98%">
|
|
@Html.Raw(JqGridSimple.OutTable(1))
|
|
</div>
|
|
</div>
|
|
|
|
<form target="_blank" method="post" id="exportForm" action="">
|
|
<input type="hidden" name="" value="" />
|
|
</form> |