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
bca42010
Commit
bca42010
authored
Aug 04, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
7db7d1a6
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
37 additions
and
16 deletions
+37
-16
RB_BackClass_Protocol.cs
Edu.Model/Entity/Contract/RB_BackClass_Protocol.cs
+3
-3
RB_Education_Contract.cs
Edu.Model/Entity/Contract/RB_Education_Contract.cs
+3
-3
RB_Order_Guest.cs
Edu.Model/Entity/Sell/RB_Order_Guest.cs
+3
-3
ClassModule.cs
Edu.Module.Course/ClassModule.cs
+1
-0
EducationContractModule.cs
Edu.Module.Course/EducationContractModule.cs
+23
-3
EducationContractController.cs
Edu.WebApi/Controllers/Course/EducationContractController.cs
+3
-3
OrderController.cs
Edu.WebApi/Controllers/Course/OrderController.cs
+1
-1
No files found.
Edu.Model/Entity/Contract/RB_BackClass_Protocol.cs
View file @
bca42010
...
...
@@ -88,17 +88,17 @@ namespace Edu.Model.Entity.Contract
/// <summary>
/// 总课时
/// </summary>
public
int
?
TotalClassHours
{
get
;
set
;
}
public
decimal
?
TotalClassHours
{
get
;
set
;
}
/// <summary>
/// 完成课时
/// </summary>
public
int
?
CompleteHours
{
get
;
set
;
}
public
decimal
?
CompleteHours
{
get
;
set
;
}
/// <summary>
/// 剩余课时
/// </summary>
public
int
?
SurplusHours
{
get
;
set
;
}
public
decimal
?
SurplusHours
{
get
;
set
;
}
/// <summary>
/// 退款金额
...
...
Edu.Model/Entity/Contract/RB_Education_Contract.cs
View file @
bca42010
...
...
@@ -144,7 +144,7 @@ namespace Edu.Model.Entity.Contract
/// <summary>
/// 第一期-培训课时数
/// </summary>
public
int
FirstClassHours
{
get
;
set
;
}
public
decimal
FirstClassHours
{
get
;
set
;
}
/// <summary>
/// 第一期-培训课程费
...
...
@@ -179,7 +179,7 @@ namespace Edu.Model.Entity.Contract
/// <summary>
/// 第二期-培训课时数
/// </summary>
public
int
SecondClassHours
{
get
;
set
;
}
public
decimal
SecondClassHours
{
get
;
set
;
}
/// <summary>
/// 第二期-培训课程费
...
...
@@ -214,7 +214,7 @@ namespace Edu.Model.Entity.Contract
/// <summary>
/// 第三期-培训课时数
/// </summary>
public
int
ThirdClassHours
{
get
;
set
;
}
public
decimal
ThirdClassHours
{
get
;
set
;
}
/// <summary>
/// 第三期-培训课程费
...
...
Edu.Model/Entity/Sell/RB_Order_Guest.cs
View file @
bca42010
...
...
@@ -179,17 +179,17 @@ namespace Edu.Model.Entity.Sell
/// <summary>
/// 总课时
/// </summary>
public
int
TotalHours
{
get
;
set
;
}
public
decimal
TotalHours
{
get
;
set
;
}
/// <summary>
/// 完成课时
/// </summary>
public
int
CompleteHours
{
get
;
set
;
}
public
decimal
CompleteHours
{
get
;
set
;
}
/// <summary>
/// 补课课时
/// </summary>
public
int
MakeUpHours
{
get
;
set
;
}
public
decimal
MakeUpHours
{
get
;
set
;
}
/// <summary>
/// 学生有效课时(根据实收 与 合同单课时价计算)
...
...
Edu.Module.Course/ClassModule.cs
View file @
bca42010
...
...
@@ -1872,6 +1872,7 @@ namespace Edu.Module.Course
}
else
{
item
.
CurrentDeductionHours
=
currentDeductionHours
;
item
.
MakeUpStatus
=
1
;
var
newId
=
classCheckRepository
.
Insert
(
item
);
item
.
ClassCheckId
=
newId
;
...
...
Edu.Module.Course/EducationContractModule.cs
View file @
bca42010
...
...
@@ -510,7 +510,7 @@ namespace Edu.Module.Course
/// <summary>
///
同和
审核
///
合同
审核
/// </summary>
/// <param name="contractId"></param>
/// <param name="state"></param>
...
...
@@ -542,9 +542,8 @@ namespace Edu.Module.Course
}
/// <summary>
///
同和
审核
///
合同
审核
/// </summary>
/// <param name="contractId"></param>
/// <param name="state"></param>
...
...
@@ -679,5 +678,26 @@ namespace Edu.Module.Course
}
return
extModel
;
}
/// <summary>
/// 退课协议,学员签字
/// </summary>
/// <param name="contractId"></param>
/// <param name="sign"></param>
/// <param name="userInfo"></param>
/// <returns></returns>
public
bool
SetBackClassProtocolSignModule
(
int
Id
,
string
sign
)
{
Dictionary
<
string
,
object
>
keyValues
=
new
Dictionary
<
string
,
object
>()
{
{
nameof
(
RB_BackClass_Protocol_ViewModel
.
PartyASign
),
sign
},
{
nameof
(
RB_BackClass_Protocol_ViewModel
.
PartyASign
),
DateTime
.
Now
},
{
nameof
(
RB_BackClass_Protocol_ViewModel
.
SignDate
),
DateTime
.
Now
},
};
return
backClass_ProtocolRepository
.
Update
(
keyValues
,
new
WhereHelper
(
nameof
(
RB_BackClass_Protocol_ViewModel
.
Id
),
Id
));
}
}
}
\ No newline at end of file
Edu.WebApi/Controllers/Course/EducationContractController.cs
View file @
bca42010
...
...
@@ -270,21 +270,21 @@ namespace Edu.WebApi.Controllers.Course
StartLevel
=
base
.
ParmJObj
.
GetStringValue
(
"StartLevel"
),
CourseConsultant
=
base
.
ParmJObj
.
GetStringValue
(
"CourseConsultant"
),
Payee
=
base
.
ParmJObj
.
GetStringValue
(
"Payee"
),
FirstClassHours
=
base
.
ParmJObj
.
Get
Int
(
"FirstClassHours"
),
FirstClassHours
=
base
.
ParmJObj
.
Get
Decimal
(
"FirstClassHours"
),
FirstCourseFee
=
base
.
ParmJObj
.
GetDecimal
(
"FirstCourseFee"
),
FirstBookFee
=
base
.
ParmJObj
.
GetDecimal
(
"FirstBookFee"
),
FirstClassFee
=
base
.
ParmJObj
.
GetDecimal
(
"FirstClassFee"
),
FirstDiscountMoney
=
base
.
ParmJObj
.
GetDecimal
(
"FirstDiscountMoney"
),
FirstMoney
=
base
.
ParmJObj
.
GetDecimal
(
"FirstMoney"
),
FirstPayDate
=
base
.
ParmJObj
.
GetDateTime
(
"FirstPayDate"
),
SecondClassHours
=
base
.
ParmJObj
.
Get
Int
(
"SecondClassHours"
),
SecondClassHours
=
base
.
ParmJObj
.
Get
Decimal
(
"SecondClassHours"
),
SecondCourseFee
=
base
.
ParmJObj
.
GetDecimal
(
"SecondCourseFee"
),
SecondBookFee
=
base
.
ParmJObj
.
GetDecimal
(
"SecondBookFee"
),
SecondClassFee
=
base
.
ParmJObj
.
GetDecimal
(
"SecondClassFee"
),
SecondDiscountMoney
=
base
.
ParmJObj
.
GetDecimal
(
"SecondDiscountMoney"
),
SecondMoney
=
base
.
ParmJObj
.
GetDecimal
(
"SecondMoney"
),
SecondPayDate
=
base
.
ParmJObj
.
GetDateTime
(
"SecondPayDate"
),
ThirdClassHours
=
base
.
ParmJObj
.
Get
Int
(
"ThirdClassHours"
),
ThirdClassHours
=
base
.
ParmJObj
.
Get
Decimal
(
"ThirdClassHours"
),
ThirdCourseFee
=
base
.
ParmJObj
.
GetDecimal
(
"ThirdCourseFee"
),
ThirdBookFee
=
base
.
ParmJObj
.
GetDecimal
(
"ThirdBookFee"
),
ThirdClassFee
=
base
.
ParmJObj
.
GetDecimal
(
"ThirdClassFee"
),
...
...
Edu.WebApi/Controllers/Course/OrderController.cs
View file @
bca42010
...
...
@@ -1128,7 +1128,7 @@ namespace Edu.WebApi.Controllers.Course
Price
=
base
.
ParmJObj
.
GetDecimal
(
"Price"
),
StudyRemark
=
base
.
ParmJObj
.
GetStringValue
(
"StudyRemark"
),
BirthDate
=
base
.
ParmJObj
.
GetDateTime
(
"BirthDate"
),
TotalHours
=
base
.
ParmJObj
.
Get
Int
(
"TotalHours"
),
TotalHours
=
base
.
ParmJObj
.
Get
Decimal
(
"TotalHours"
),
StuIcon
=
base
.
ParmJObj
.
GetStringValue
(
"StuIcon"
),
GuestContractNo
=
base
.
ParmJObj
.
GetStringValue
(
"GuestContractNo"
),
ContractType
=
base
.
ParmJObj
.
GetInt
(
"ContractType"
),
...
...
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