@@ -312,6 +312,12 @@ var bootstrap = function ($, learun) { | |||||
}); | }); | ||||
} | } | ||||
}, | }, | ||||
{ | |||||
label: "开票状态", name: "IsInvoice", width: 80, align: "center", | |||||
formatter: function (cellvalue) { | |||||
return cellvalue === true ? "<span class=\"label label-success\">已开票</span>" : "<span class=\"label label-danger\">未开票</span>"; | |||||
} | |||||
}, | |||||
{ label: '线上缴费时间', name: 'PayFeeDate', width: 130, align: "left" }, | { label: '线上缴费时间', name: 'PayFeeDate', width: 130, align: "left" }, | ||||
{ | { | ||||
label: '办理贷款状态', name: 'StudentLoanBLStatus', width: 100, align: "left", formatterAsync: function (callback, value, row, op, $cell) { | label: '办理贷款状态', name: 'StudentLoanBLStatus', width: 100, align: "left", formatterAsync: function (callback, value, row, op, $cell) { | ||||
@@ -725,7 +725,7 @@ | |||||
{ | { | ||||
<div class="lr-layout-tool-right"> | <div class="lr-layout-tool-right"> | ||||
<div class="btn-group btn-group-sm"> | <div class="btn-group btn-group-sm"> | ||||
<a id="lr_edit" class="btn btn-default"><i class="fa fa-pencil-square-o"></i> 编辑</a> | |||||
@*<a id="lr_edit" class="btn btn-default"><i class="fa fa-pencil-square-o"></i> 编辑</a>*@ | |||||
</div> | </div> | ||||
</div> | </div> | ||||
@@ -28,4 +28,5 @@ | |||||
<add name="BaseDb" connectionString="Server=123.57.209.16;Initial Catalog=adms7ultimate2_西昌;User ID=sa;Password=bjqjkj@2014~2015!" providerName="System.Data.SqlClient" /> | <add name="BaseDb" connectionString="Server=123.57.209.16;Initial Catalog=adms7ultimate2_西昌;User ID=sa;Password=bjqjkj@2014~2015!" providerName="System.Data.SqlClient" /> | ||||
<add name="CollegeMIS" connectionString="Server=123.57.209.16;Initial Catalog=CollegeMIS_西昌;User ID=sa;Password=bjqjkj@2014~2015!" providerName="System.Data.SqlClient" /> | <add name="CollegeMIS" connectionString="Server=123.57.209.16;Initial Catalog=CollegeMIS_西昌;User ID=sa;Password=bjqjkj@2014~2015!" providerName="System.Data.SqlClient" /> | ||||
<add name="hangfireString" connectionString="Server=123.57.209.16;Initial Catalog=Hangfire;User ID=sa;Password=bjqjkj@2014~2015!" providerName="System.Data.SqlClient" /> | <add name="hangfireString" connectionString="Server=123.57.209.16;Initial Catalog=Hangfire;User ID=sa;Password=bjqjkj@2014~2015!" providerName="System.Data.SqlClient" /> | ||||
<add name="YongyouDb" connectionString="Server=.;Password=1;User ID=sa; Initial Catalog=u8gx" providerName="System.Data.SqlClient" /> | |||||
</connectionStrings> | </connectionStrings> |
@@ -627,7 +627,7 @@ namespace Learun.Application.TwoDevelopment.EducationalAdministration | |||||
/// 是否开票 | /// 是否开票 | ||||
/// </summary> | /// </summary> | ||||
[Column("ISINVOICE")] | [Column("ISINVOICE")] | ||||
public int? IsInvoice { get; set; } | |||||
public bool? IsInvoice { get; set; } | |||||
/// <summary> | /// <summary> | ||||
/// 人脸核验结果 | /// 人脸核验结果 | ||||
/// </summary> | /// </summary> | ||||