@{
ViewBag.Title = "变更记录";
ViewBag.Menu = "数据管理-变更记录";
Layout = "~/Views/Shared/_MainLayout.cshtml";
var pageObj = new
{
ValueDate = valuedateBLL.ValueDate.ToString("yyyy-MM-dd"),
OptTypes = new[] { "修改交易", "删除交易" }
};
}
@section JS
{
}
@Html.SearchDateRange("OptDate", "变更日期")
@Html.MyAceDropdownInput("ClientId", "客户名称", ClientDataModel.GetAllClient())
@Html.ShortInput("ClientNumber", "客户编号")
@Html.MyAceDropdownInput("AssetId", "簿记账户", AssetunitController.GetClientassetunit())
@Html.MyAceDropdownInput("OptNames", "操作人", GlobalData.GetAllUserName())
@Html.SearchDateRange("HappenDate", "发生时间")
@Html.ShortInput("Number", "资金编号")
@Html.ShortInput("TradeNumber", "交易编号")
@Html.MyAceDropdownInput("DirectionType", "方向类型", GlobalData.GetSelectItems(EntryExitBLL.DirectionType))
@MyControls.SearchBtn()
@MyControls.Btn("导出", "exportClientInfoChange()")
@Html.Raw(JqGridSimple.OutTable())