Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
Education
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
黄奎
Education
Commits
8a40daec
Commit
8a40daec
authored
Aug 31, 2023
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1 甲鹤简易报表调整
parent
c0bc9587
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
71 additions
and
4 deletions
+71
-4
FinanceModule.cs
Edu.Module.Finance/FinanceModule.cs
+26
-2
RB_Class_CheckRepository.cs
Edu.Repository/Grade/RB_Class_CheckRepository.cs
+5
-1
FinanceController.cs
Edu.WebApi/Controllers/Finance/FinanceController.cs
+40
-1
No files found.
Edu.Module.Finance/FinanceModule.cs
View file @
8a40daec
...
@@ -3978,11 +3978,35 @@ namespace Edu.Module.Finance
...
@@ -3978,11 +3978,35 @@ namespace Edu.Module.Finance
/// <param name="contractNo"></param>
/// <param name="contractNo"></param>
/// <param name="groupId"></param>
/// <param name="groupId"></param>
/// <returns></returns>
/// <returns></returns>
public
List
<
ExcelDataSource
>
GetStudentConsumptionHoursDetialPageListToExcel
(
int
teacherId
,
int
schoolId
,
int
classId
,
string
startMonth
,
string
endMonth
,
string
studentName
,
int
orderId
,
string
contractNo
,
int
groupId
)
public
object
GetStudentConsumptionHoursDetialStat
(
int
teacherId
,
int
schoolId
,
int
classId
,
string
startMonth
,
string
endMonth
,
string
studentName
,
int
orderId
,
string
contractNo
,
int
groupId
,
int
studentId
)
{
//根据学生签到表 查询
var
list
=
class_CheckRepository
.
GetStudentConsumptionHoursDetialList
(
teacherId
,
schoolId
,
classId
,
startMonth
,
endMonth
,
studentName
,
orderId
,
contractNo
,
groupId
,
""
,
studentId
);
return
new
{
TClassHours
=
list
?.
Sum
(
x
=>
x
.
CurrentDeductionHours
)
??
0
,
TXHMoney
=
list
?.
Sum
(
x
=>
Math
.
Round
(
x
.
UnitPrice
*
x
.
CurrentDeductionHours
,
6
,
MidpointRounding
.
AwayFromZero
))
??
0
};
}
/// <summary>
/// 导出Excel
/// </summary>
/// <param name="teacherId"></param>
/// <param name="schoolId"></param>
/// <param name="classId"></param>
/// <param name="startMonth"></param>
/// <param name="endMonth"></param>
/// <param name="studentName"></param>
/// <param name="orderId"></param>
/// <param name="contractNo"></param>
/// <param name="groupId"></param>
/// <returns></returns>
public
List
<
ExcelDataSource
>
GetStudentConsumptionHoursDetialPageListToExcel
(
int
teacherId
,
int
schoolId
,
int
classId
,
string
startMonth
,
string
endMonth
,
string
studentName
,
int
orderId
,
string
contractNo
,
int
groupId
,
int
studentId
)
{
{
List
<
ExcelDataSource
>
RList
=
new
List
<
ExcelDataSource
>();
List
<
ExcelDataSource
>
RList
=
new
List
<
ExcelDataSource
>();
//根据学生签到表 查询
//根据学生签到表 查询
var
list
=
class_CheckRepository
.
GetStudentConsumptionHoursDetialList
(
teacherId
,
schoolId
,
classId
,
startMonth
,
endMonth
,
studentName
,
orderId
,
contractNo
,
groupId
);
var
list
=
class_CheckRepository
.
GetStudentConsumptionHoursDetialList
(
teacherId
,
schoolId
,
classId
,
startMonth
,
endMonth
,
studentName
,
orderId
,
contractNo
,
groupId
,
""
,
studentId
);
if
(
list
.
Any
())
if
(
list
.
Any
())
{
{
//查询关联销售
//查询关联销售
...
...
Edu.Repository/Grade/RB_Class_CheckRepository.cs
View file @
8a40daec
...
@@ -717,7 +717,7 @@ ORDER BY tt.ClassDate ASC
...
@@ -717,7 +717,7 @@ ORDER BY tt.ClassDate ASC
/// <param name="contractNo"></param>
/// <param name="contractNo"></param>
/// <param name="groupId"></param>
/// <param name="groupId"></param>
/// <returns></returns>
/// <returns></returns>
public
List
<
RB_Class_Check_ViewModel
>
GetStudentConsumptionHoursDetialList
(
int
teacherId
,
int
schoolId
,
int
classId
,
string
startMonth
,
string
endMonth
,
string
studentName
,
int
orderId
,
string
contractNo
,
int
groupId
,
string
classIds
=
""
)
public
List
<
RB_Class_Check_ViewModel
>
GetStudentConsumptionHoursDetialList
(
int
teacherId
,
int
schoolId
,
int
classId
,
string
startMonth
,
string
endMonth
,
string
studentName
,
int
orderId
,
string
contractNo
,
int
groupId
,
string
classIds
=
""
,
int
StudentId
=
0
)
{
{
string
where
=
$@" "
;
string
where
=
$@" "
;
if
(
teacherId
>
0
)
if
(
teacherId
>
0
)
...
@@ -744,6 +744,10 @@ ORDER BY tt.ClassDate ASC
...
@@ -744,6 +744,10 @@ ORDER BY tt.ClassDate ASC
{
{
where
+=
$@" and t2.OrderId =
{
orderId
}
"
;
where
+=
$@" and t2.OrderId =
{
orderId
}
"
;
}
}
if
(
StudentId
>
0
)
{
where
+=
$@" and t2.Id =
{
StudentId
}
"
;
}
if
(!
string
.
IsNullOrEmpty
(
contractNo
))
if
(!
string
.
IsNullOrEmpty
(
contractNo
))
{
{
where
+=
$@" and ec.ContractNo ='
{
contractNo
}
'"
;
where
+=
$@" and ec.ContractNo ='
{
contractNo
}
'"
;
...
...
Edu.WebApi/Controllers/Finance/FinanceController.cs
View file @
8a40daec
...
@@ -2134,6 +2134,44 @@ namespace Edu.WebApi.Controllers.Finance
...
@@ -2134,6 +2134,44 @@ namespace Edu.WebApi.Controllers.Finance
return
ApiResult
.
Success
(
""
,
pageModel
);
return
ApiResult
.
Success
(
""
,
pageModel
);
}
}
/// <summary>
/// 获取学生课耗统计
/// </summary>
/// <returns></returns>
public
ApiResult
GetStudentConsumptionHoursDetialStat
()
{
var
userInfo
=
base
.
UserInfo
;
var
pageModel
=
JsonHelper
.
DeserializeObject
<
ResultPageModel
>(
RequestParm
.
Msg
.
ToString
());
int
TeacherId
=
base
.
ParmJObj
.
GetInt
(
"TeacherId"
,
0
);
int
SchoolId
=
base
.
ParmJObj
.
GetInt
(
"SchoolId"
,
0
);
int
ClassId
=
base
.
ParmJObj
.
GetInt
(
"ClassId"
,
0
);
string
StartMonth
=
base
.
ParmJObj
.
GetStringValue
(
"StartMonth"
);
string
EndMonth
=
base
.
ParmJObj
.
GetStringValue
(
"EndMonth"
);
string
StudentName
=
base
.
ParmJObj
.
GetStringValue
(
"StudentName"
);
//学生名称
int
StudentId
=
base
.
ParmJObj
.
GetInt
(
"StudentId"
,
0
);
//学员id
int
OrderId
=
base
.
ParmJObj
.
GetInt
(
"OrderId"
,
0
);
//订单
string
ContractNo
=
base
.
ParmJObj
.
GetStringValue
(
"ContractNo"
);
//合同编号
if
(
string
.
IsNullOrEmpty
(
StartMonth
))
{
return
ApiResult
.
ParamIsNull
(
"请选择开始月份"
);
}
if
(
string
.
IsNullOrEmpty
(
EndMonth
))
{
return
ApiResult
.
ParamIsNull
(
"请选择结束月份"
);
}
try
{
StartMonth
=
Convert
.
ToDateTime
(
StartMonth
+
"-01"
).
ToString
(
"yyyy-MM-dd"
);
EndMonth
=
Convert
.
ToDateTime
(
EndMonth
+
"-01"
).
AddMonths
(
1
).
AddDays
(-
1
).
ToString
(
"yyyy-MM-dd"
);
}
catch
(
Exception
)
{
return
ApiResult
.
Failed
(
"日期格式有误"
);
}
var
list
=
financeModule
.
GetStudentConsumptionHoursDetialStat
(
TeacherId
,
SchoolId
,
ClassId
,
StartMonth
,
EndMonth
,
StudentName
,
OrderId
,
ContractNo
,
userInfo
.
Group_Id
,
StudentId
);
return
ApiResult
.
Success
(
""
,
list
);
}
/// <summary>
/// <summary>
/// 获取学生课时统计明细列表 Excel导出
/// 获取学生课时统计明细列表 Excel导出
/// </summary>
/// </summary>
...
@@ -2174,6 +2212,7 @@ namespace Edu.WebApi.Controllers.Finance
...
@@ -2174,6 +2212,7 @@ namespace Edu.WebApi.Controllers.Finance
string
EndMonth
=
base
.
ParmJObj
.
GetStringValue
(
"EndMonth"
);
string
EndMonth
=
base
.
ParmJObj
.
GetStringValue
(
"EndMonth"
);
string
StudentName
=
base
.
ParmJObj
.
GetStringValue
(
"StudentName"
);
//学生名称
string
StudentName
=
base
.
ParmJObj
.
GetStringValue
(
"StudentName"
);
//学生名称
int
OrderId
=
base
.
ParmJObj
.
GetInt
(
"OrderId"
,
0
);
//订单
int
OrderId
=
base
.
ParmJObj
.
GetInt
(
"OrderId"
,
0
);
//订单
int
StudentId
=
base
.
ParmJObj
.
GetInt
(
"StudentId"
,
0
);
//学员id
string
ContractNo
=
base
.
ParmJObj
.
GetStringValue
(
"ContractNo"
);
//合同编号
string
ContractNo
=
base
.
ParmJObj
.
GetStringValue
(
"ContractNo"
);
//合同编号
if
(
string
.
IsNullOrEmpty
(
StartMonth
))
if
(
string
.
IsNullOrEmpty
(
StartMonth
))
{
{
...
@@ -2196,7 +2235,7 @@ namespace Edu.WebApi.Controllers.Finance
...
@@ -2196,7 +2235,7 @@ namespace Edu.WebApi.Controllers.Finance
return
File
(
byteData1
,
"application/octet-stream"
,
ExcelName
);
return
File
(
byteData1
,
"application/octet-stream"
,
ExcelName
);
}
}
var
list
=
financeModule
.
GetStudentConsumptionHoursDetialPageListToExcel
(
TeacherId
,
SchoolId
,
ClassId
,
StartMonth
,
EndMonth
,
StudentName
,
OrderId
,
ContractNo
,
userInfo
.
Group_Id
);
var
list
=
financeModule
.
GetStudentConsumptionHoursDetialPageListToExcel
(
TeacherId
,
SchoolId
,
ClassId
,
StartMonth
,
EndMonth
,
StudentName
,
OrderId
,
ContractNo
,
userInfo
.
Group_Id
,
StudentId
);
try
try
{
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment