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
2392d291
Commit
2392d291
authored
Dec 15, 2021
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
9e085edc
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
83 additions
and
82 deletions
+83
-82
OrderModule.cs
Edu.Module.Course/OrderModule.cs
+2
-1
CustomerStudentModule.cs
Edu.Module.Customer/CustomerStudentModule.cs
+54
-54
VisitorReserveModule.cs
Edu.Module.Duty/VisitorReserveModule.cs
+27
-27
No files found.
Edu.Module.Course/OrderModule.cs
View file @
2392d291
...
...
@@ -2449,7 +2449,8 @@ namespace Edu.Module.Course
UpdateBy
=
dmodel
.
CreateBy
,
UpdateTime
=
DateTime
.
Now
,
CustomerId
=
ordermodel
.
CustomerId
,
StuStage
=
Common
.
Enum
.
User
.
StuStageEnum
.
Clinch
StuStage
=
Common
.
Enum
.
User
.
StuStageEnum
.
NewStu
,
CreateType
=
Common
.
Enum
.
User
.
StuCreateTypeEnum
.
EmployeeInput
};
studentRepository
.
SetStudentRepository
(
stuModel
);
...
...
Edu.Module.Customer/CustomerStudentModule.cs
View file @
2392d291
...
...
@@ -232,33 +232,33 @@ namespace Edu.Module.Customer
logContent
=
model
.
Remark
;
if
(
flag
)
{
//获取学生信息
var
smodel
=
studentRepository
.
GetEntity
(
model
.
StuId
);
if
(
smodel
!=
null
&&
smodel
.
StuStage
==
Common
.
Enum
.
User
.
StuStageEnum
.
NewStu
)
{
Dictionary
<
string
,
object
>
keyValues
=
new
Dictionary
<
string
,
object
>()
{
{
nameof
(
RB_Student_ViewModel
.
StuStage
),
Common
.
Enum
.
User
.
StuStageEnum
.
PreliminaryCommunication
}
};
List
<
WhereHelper
>
wheres
=
new
List
<
WhereHelper
>()
{
new
WhereHelper
(){
FiledName
=
nameof
(
RB_Student_ViewModel
.
StuId
),
FiledValue
=
model
.
StuId
,
OperatorEnum
=
OperatorEnum
.
Equal
}
};
studentRepository
.
Update
(
keyValues
,
wheres
);
student_LogRepository
.
Insert
(
new
Model
.
Entity
.
Customer
.
RB_Student_Log
()
{
LogId
=
0
,
CreateBy
=
model
.
CreateBy
,
CreateTime
=
DateTime
.
Now
,
CreateType
=
1
,
Group_Id
=
model
.
Group_Id
,
LogContent
=
"首次跟进,客户阶段由'"
+
(
Common
.
Enum
.
User
.
StuStageEnum
.
NewStu
.
ToName
())
+
"'自动转换为'"
+
(
Common
.
Enum
.
User
.
StuStageEnum
.
PreliminaryCommunication
.
ToName
())
+
"'"
,
LogTitle
=
"客户阶段变更"
,
LogType
=
Common
.
Enum
.
Log
.
StudentLogTypeEnum
.
BasicInfo
,
StuId
=
model
.
StuId
});
}
//
var smodel = studentRepository.GetEntity(model.StuId);
//
if (smodel != null && smodel.StuStage == Common.Enum.User.StuStageEnum.NewStu)
//
{
//
Dictionary<string, object> keyValues = new Dictionary<string, object>() {
//
{ nameof(RB_Student_ViewModel.StuStage), Common.Enum.User.StuStageEnum.PreliminaryCommunication}
//
};
//
List<WhereHelper> wheres = new List<WhereHelper>() {
//
new WhereHelper(){
//
FiledName = nameof (RB_Student_ViewModel.StuId),
//
FiledValue = model.StuId,
//
OperatorEnum =OperatorEnum.Equal
//
}
//
};
//
studentRepository.Update(keyValues, wheres);
//
student_LogRepository.Insert(new Model.Entity.Customer.RB_Student_Log()
//
{
//
LogId = 0,
//
CreateBy = model.CreateBy,
//
CreateTime = DateTime.Now,
//
CreateType = 1,
//
Group_Id = model.Group_Id,
//
LogContent = "首次跟进,客户阶段由'" + (Common.Enum.User.StuStageEnum.NewStu.ToName()) + "'自动转换为'" + (Common.Enum.User.StuStageEnum.PreliminaryCommunication.ToName()) + "'",
//
LogTitle = "客户阶段变更",
//
LogType = Common.Enum.Log.StudentLogTypeEnum.BasicInfo,
//
StuId = model.StuId
//
});
//
}
}
}
student_LogRepository
.
AddStuLogRepository
(
model
.
StuId
,
Common
.
Enum
.
Log
.
StudentLogTypeEnum
.
Follow
,
logTitle
,
logContent
,
model
.
CreateBy
);
...
...
@@ -424,33 +424,33 @@ namespace Edu.Module.Customer
logContent
=
model
.
Remark
;
if
(
flag
)
{
//获取学生信息
var
smodel
=
studentRepository
.
GetEntity
(
model
.
StuId
);
if
(
smodel
!=
null
&&
smodel
.
StuStage
==
Common
.
Enum
.
User
.
StuStageEnum
.
NewStu
)
{
Dictionary
<
string
,
object
>
keyValues
=
new
Dictionary
<
string
,
object
>()
{
{
nameof
(
RB_Student_ViewModel
.
StuStage
),
Common
.
Enum
.
User
.
StuStageEnum
.
PreliminaryCommunication
}
};
List
<
WhereHelper
>
wheres
=
new
List
<
WhereHelper
>()
{
new
WhereHelper
(){
FiledName
=
nameof
(
RB_Student_ViewModel
.
StuId
),
FiledValue
=
model
.
StuId
,
OperatorEnum
=
OperatorEnum
.
Equal
}
};
studentRepository
.
Update
(
keyValues
,
wheres
);
student_LogRepository
.
Insert
(
new
Model
.
Entity
.
Customer
.
RB_Student_Log
()
{
LogId
=
0
,
CreateBy
=
model
.
CreateBy
,
CreateTime
=
DateTime
.
Now
,
CreateType
=
1
,
Group_Id
=
model
.
Group_Id
,
LogContent
=
"首次拜访,客户阶段由'"
+
(
Common
.
Enum
.
User
.
StuStageEnum
.
NewStu
.
ToName
())
+
"'自动转换为'"
+
(
Common
.
Enum
.
User
.
StuStageEnum
.
PreliminaryCommunication
.
ToName
())
+
"'"
,
LogTitle
=
"客户阶段变更"
,
LogType
=
Common
.
Enum
.
Log
.
StudentLogTypeEnum
.
BasicInfo
,
StuId
=
model
.
StuId
});
}
//
var smodel = studentRepository.GetEntity(model.StuId);
//
if (smodel != null && smodel.StuStage == Common.Enum.User.StuStageEnum.NewStu)
//
{
//
Dictionary<string, object> keyValues = new Dictionary<string, object>() {
//
{ nameof(RB_Student_ViewModel.StuStage), Common.Enum.User.StuStageEnum.PreliminaryCommunication}
//
};
//
List<WhereHelper> wheres = new List<WhereHelper>() {
//
new WhereHelper(){
//
FiledName = nameof (RB_Student_ViewModel.StuId),
//
FiledValue = model.StuId,
//
OperatorEnum =OperatorEnum.Equal
//
}
//
};
//
studentRepository.Update(keyValues, wheres);
//
student_LogRepository.Insert(new Model.Entity.Customer.RB_Student_Log()
//
{
//
LogId = 0,
//
CreateBy = model.CreateBy,
//
CreateTime = DateTime.Now,
//
CreateType = 1,
//
Group_Id = model.Group_Id,
//
LogContent = "首次拜访,客户阶段由'" + (Common.Enum.User.StuStageEnum.NewStu.ToName()) + "'自动转换为'" + (Common.Enum.User.StuStageEnum.PreliminaryCommunication.ToName()) + "'",
//
LogTitle = "客户阶段变更",
//
LogType = Common.Enum.Log.StudentLogTypeEnum.BasicInfo,
//
StuId = model.StuId
//
});
//
}
}
}
student_LogRepository
.
AddStuLogRepository
(
model
.
StuId
,
Common
.
Enum
.
Log
.
StudentLogTypeEnum
.
Visit
,
logTitle
,
logContent
,
model
.
CreateBy
);
...
...
Edu.Module.Duty/VisitorReserveModule.cs
View file @
2392d291
...
...
@@ -141,33 +141,33 @@ namespace Edu.Module.Duty
flag
=
newId
>
0
;
if
(
flag
)
{
//获取学生信息
var
smodel
=
studentRepository
.
GetEntity
(
model
.
Visitor_Id
);
if
(
smodel
!=
null
&&
smodel
.
StuStage
<=
Common
.
Enum
.
User
.
StuStageEnum
.
PreliminaryCommunication
)
{
Dictionary
<
string
,
object
>
keyValues
=
new
Dictionary
<
string
,
object
>()
{
{
nameof
(
RB_Student_ViewModel
.
StuStage
),
Common
.
Enum
.
User
.
StuStageEnum
.
Audition
}
};
List
<
WhereHelper
>
wheres
=
new
List
<
WhereHelper
>()
{
new
WhereHelper
(){
FiledName
=
nameof
(
RB_Student_ViewModel
.
StuId
),
FiledValue
=
model
.
Visitor_Id
,
OperatorEnum
=
OperatorEnum
.
Equal
}
};
studentRepository
.
Update
(
keyValues
,
wheres
);
student_LogRepository
.
Insert
(
new
Model
.
Entity
.
Customer
.
RB_Student_Log
()
{
LogId
=
0
,
CreateBy
=
model
.
CreateBy
,
CreateTime
=
DateTime
.
Now
,
CreateType
=
1
,
Group_Id
=
model
.
Group_Id
,
LogContent
=
"首次试听,客户阶段由'"
+
(
smodel
.
StuStage
.
ToName
())
+
"'自动转换为'"
+
(
Common
.
Enum
.
User
.
StuStageEnum
.
Audition
.
ToName
())
+
"'"
,
LogTitle
=
"客户阶段变更"
,
LogType
=
Common
.
Enum
.
Log
.
StudentLogTypeEnum
.
BasicInfo
,
StuId
=
model
.
Visitor_Id
});
}
//
var smodel = studentRepository.GetEntity(model.Visitor_Id);
//
if (smodel != null && smodel.StuStage <= Common.Enum.User.StuStageEnum.PreliminaryCommunication)
//
{
//
Dictionary<string, object> keyValues = new Dictionary<string, object>() {
//
{ nameof(RB_Student_ViewModel.StuStage), Common.Enum.User.StuStageEnum.Audition}
//
};
//
List<WhereHelper> wheres = new List<WhereHelper>() {
//
new WhereHelper(){
//
FiledName = nameof (RB_Student_ViewModel.StuId),
//
FiledValue = model.Visitor_Id,
//
OperatorEnum =OperatorEnum.Equal
//
}
//
};
//
studentRepository.Update(keyValues, wheres);
//
student_LogRepository.Insert(new Model.Entity.Customer.RB_Student_Log()
//
{
//
LogId = 0,
//
CreateBy = model.CreateBy,
//
CreateTime = DateTime.Now,
//
CreateType = 1,
//
Group_Id = model.Group_Id,
//
LogContent = "首次试听,客户阶段由'" + (smodel.StuStage.ToName()) + "'自动转换为'" + (Common.Enum.User.StuStageEnum.Audition.ToName()) + "'",
//
LogTitle = "客户阶段变更",
//
LogType = Common.Enum.Log.StudentLogTypeEnum.BasicInfo,
//
StuId = model.Visitor_Id
//
});
//
}
}
}
return
flag
;
...
...
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