diff --git a/Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/StuFreshPayFeeApi.cs b/Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/StuFreshPayFeeApi.cs
index 4610f9a20..961802cc4 100644
--- a/Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/StuFreshPayFeeApi.cs
+++ b/Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/StuFreshPayFeeApi.cs
@@ -34,17 +34,20 @@ namespace Learun.Application.WebApi.Modules
{
Get["/getpayfeelist"] = GetPayfeeList;// 获取缴费列表
Get["/getpayfeeinfo"] = GetPayfeeInfo;//获取缴费明细
- Post["/generateqrcode"] = PayFeeQRCode;
+ Post["/generateqrcode"] = PayFeeQRCode;//生成缴费二维码
+ Get["/getinvoice"] = GetInvoice;//获取发票
}
private StuInfoFreshIBLL stuInfoFreshIBLL = new StuInfoFreshBLL();
private FinaChargesStandardIBLL finaChargesStandardIBLL = new FinaChargesStandardBLL();
- ///
- /// 获取问卷
- ///
- ///
- ///
+ public Response GetInvoice(dynamic _)
+ {
+ string keyValue = Request.Query["keyValue"];
+ var list = stuInfoFreshIBLL.GetStuEnrollFeeOrder(keyValue, true);
+ return Success(list);
+ }
+
public Response GetPayfeeList(dynamic _)
{
ReqPageParam parameter = this.GetReqData();
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/StuPayFeeApi.cs b/Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/StuPayFeeApi.cs
index 76afef7bb..52cc62442 100644
--- a/Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/StuPayFeeApi.cs
+++ b/Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/StuPayFeeApi.cs
@@ -34,19 +34,22 @@ namespace Learun.Application.WebApi.Modules
{
Get["/getpayfeelist"] = GetPayfeeList;// 获取缴费列表
Get["/getpayfeeinfo"] = GetPayfeeInfo;//获取缴费明细
- Post["/generateqrcode"] = PayFeeQRCode;
+ Post["/generateqrcode"] = PayFeeQRCode;//生成缴费二维码
+ Get["/getinvoice"] = GetInvoice;//获取发票
}
private StuInfoBasic_PayFeeIBLL stuInfoBasic_PayFeeIBLL = new StuInfoBasic_PayFeeBLL();
private StuInfoBasicIBLL stuInfoBasicIbll = new StuInfoBasicBLL();
private StuInfoFreshIBLL stuInfoFreshIBLL = new StuInfoFreshBLL();
private FinaChargesStandardIBLL finaChargesStandardIBLL = new FinaChargesStandardBLL();
+
+ public Response GetInvoice(dynamic _)
+ {
+ string keyValue = Request.Query["keyValue"];
+ var list = stuInfoFreshIBLL.GetStuEnrollFeeOrder(keyValue, false);
+ return Success(list);
+ }
- ///
- /// 获取问卷
- ///
- ///
- ///
public Response GetPayfeeList(dynamic _)
{
ReqPageParam parameter = this.GetReqData();