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
571bfaf1
Commit
571bfaf1
authored
Dec 16, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
edc67701
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
26 additions
and
6 deletions
+26
-6
RB_Student_ViewModel.cs
Edu.Model/ViewModel/User/RB_Student_ViewModel.cs
+5
-0
StudentModule.cs
Edu.Module.User/StudentModule.cs
+10
-4
B2BCustomerController.cs
Edu.WebApi/Controllers/Customer/B2BCustomerController.cs
+3
-1
UserController.cs
Edu.WebApi/Controllers/User/UserController.cs
+8
-1
No files found.
Edu.Model/ViewModel/User/RB_Student_ViewModel.cs
View file @
571bfaf1
...
@@ -225,6 +225,11 @@ namespace Edu.Model.ViewModel.User
...
@@ -225,6 +225,11 @@ namespace Edu.Model.ViewModel.User
/// </summary>
/// </summary>
public
string
StuStageName
{
get
;
set
;
}
public
string
StuStageName
{
get
;
set
;
}
/// <summary>
/// 客户类型名称
/// </summary>
public
string
StuTypeName
{
get
;
set
;
}
/// <summary>
/// <summary>
/// 归属类型(1-全部,2-我负责的,3-我协同的)
/// 归属类型(1-全部,2-我负责的,3-我协同的)
/// </summary>
/// </summary>
...
...
Edu.Module.User/StudentModule.cs
View file @
571bfaf1
...
@@ -80,6 +80,11 @@ namespace Edu.Module.User
...
@@ -80,6 +80,11 @@ namespace Edu.Module.User
/// </summary>
/// </summary>
private
readonly
RB_StageRepository
stageRepository
=
new
RB_StageRepository
();
private
readonly
RB_StageRepository
stageRepository
=
new
RB_StageRepository
();
/// <summary>
/// 学员类型仓储层对象
/// </summary>
private
readonly
RB_Student_TypeRepository
student_TypeRepository
=
new
RB_Student_TypeRepository
();
/// <summary>
/// <summary>
/// 获取学生列表
/// 获取学生列表
/// </summary>
/// </summary>
...
@@ -100,7 +105,6 @@ namespace Edu.Module.User
...
@@ -100,7 +105,6 @@ namespace Edu.Module.User
/// <returns></returns>
/// <returns></returns>
public
List
<
RB_Student_ViewModel
>
GetStudentPageListModule
(
int
pageIndex
,
int
pageSize
,
out
long
rowsCount
,
RB_Student_ViewModel
query
)
public
List
<
RB_Student_ViewModel
>
GetStudentPageListModule
(
int
pageIndex
,
int
pageSize
,
out
long
rowsCount
,
RB_Student_ViewModel
query
)
{
{
var
list
=
studentRepository
.
GetStudentPageListRepository
(
pageIndex
,
pageSize
,
out
rowsCount
,
query
);
var
list
=
studentRepository
.
GetStudentPageListRepository
(
pageIndex
,
pageSize
,
out
rowsCount
,
query
);
if
(
list
!=
null
&&
list
.
Count
>
0
)
if
(
list
!=
null
&&
list
.
Count
>
0
)
{
{
...
@@ -109,9 +113,11 @@ namespace Edu.Module.User
...
@@ -109,9 +113,11 @@ namespace Edu.Module.User
{
{
Group_Id
=
list
[
0
].
Group_Id
Group_Id
=
list
[
0
].
Group_Id
});
});
//学员类型列表
var
stuTypeList
=
student_TypeRepository
.
GetStudentTypeListRepository
(
new
RB_Student_Type_Extend
());
string
stuIds
=
string
.
Join
(
","
,
list
.
Select
(
qitem
=>
qitem
.
StuId
));
string
stuIds
=
string
.
Join
(
","
,
list
.
Select
(
qitem
=>
qitem
.
StuId
));
//学员跟进
//学员跟进
var
followList
=
followRepository
.
GetStudentFollowListRepository
(
new
Model
.
ViewModel
.
Customer
.
RB_Student_Follow_Extend
()
var
followList
=
followRepository
.
GetStudentFollowListRepository
(
new
RB_Student_Follow_Extend
()
{
{
QStuIds
=
stuIds
QStuIds
=
stuIds
});
});
...
@@ -189,8 +195,6 @@ namespace Edu.Module.User
...
@@ -189,8 +195,6 @@ namespace Edu.Module.User
CustomerIds
=
string
.
Join
(
","
,
transIdList
)
CustomerIds
=
string
.
Join
(
","
,
transIdList
)
});
});
}
}
foreach
(
var
item
in
list
)
foreach
(
var
item
in
list
)
{
{
...
@@ -224,6 +228,7 @@ namespace Edu.Module.User
...
@@ -224,6 +228,7 @@ namespace Edu.Module.User
}
}
item
.
StuStageName
=
stageList
?.
FirstOrDefault
(
qitem
=>
qitem
.
Id
==
item
.
StuStage
)?.
StageName
??
""
;
item
.
StuStageName
=
stageList
?.
FirstOrDefault
(
qitem
=>
qitem
.
Id
==
item
.
StuStage
)?.
StageName
??
""
;
item
.
StuTypeName
=
stuTypeList
?.
FirstOrDefault
(
qitem
=>
qitem
.
Id
==
item
.
StuType
)?.
Name
??
""
;
}
}
}
}
return
list
;
return
list
;
...
@@ -348,6 +353,7 @@ namespace Edu.Module.User
...
@@ -348,6 +353,7 @@ namespace Edu.Module.User
});
});
extModel
.
AssistList
=
assistList
;
extModel
.
AssistList
=
assistList
;
extModel
.
StuStageName
=
stageRepository
.
GetEntity
(
extModel
.
StuStage
)?.
StageName
??
""
;
extModel
.
StuStageName
=
stageRepository
.
GetEntity
(
extModel
.
StuStage
)?.
StageName
??
""
;
extModel
.
StuTypeName
=
student_TypeRepository
.
GetEntity
(
extModel
.
StuType
)?.
Name
??
""
;
}
}
return
extModel
;
return
extModel
;
}
}
...
...
Edu.WebApi/Controllers/Customer/B2BCustomerController.cs
View file @
571bfaf1
...
@@ -112,7 +112,9 @@ namespace Edu.WebApi.Controllers.Customer
...
@@ -112,7 +112,9 @@ namespace Edu.WebApi.Controllers.Customer
model
.
UpdateTime
=
DateTime
.
Now
;
model
.
UpdateTime
=
DateTime
.
Now
;
model
.
Group_Id
=
base
.
UserInfo
.
Group_Id
;
model
.
Group_Id
=
base
.
UserInfo
.
Group_Id
;
model
.
School_Id
=
base
.
UserInfo
.
School_Id
;
model
.
School_Id
=
base
.
UserInfo
.
School_Id
;
model
.
ApproveState
=
1
;
model
.
ApproveId
=
base
.
UserInfo
.
Id
;
model
.
ApproveTime
=
DateTime
.
Now
;
var
flag
=
customerModule
.
SetCustomerModule
(
model
);
var
flag
=
customerModule
.
SetCustomerModule
(
model
);
return
flag
?
ApiResult
.
Success
()
:
ApiResult
.
Failed
();
return
flag
?
ApiResult
.
Success
()
:
ApiResult
.
Failed
();
}
}
...
...
Edu.WebApi/Controllers/User/UserController.cs
View file @
571bfaf1
...
@@ -737,6 +737,10 @@ namespace Edu.WebApi.Controllers.User
...
@@ -737,6 +737,10 @@ namespace Edu.WebApi.Controllers.User
item
.
TrialLessonCount
,
item
.
TrialLessonCount
,
item
.
StuSourceId
,
item
.
StuSourceId
,
item
.
StuSourceIdName
,
item
.
StuSourceIdName
,
item
.
QQ
,
item
.
WeChatNo
,
item
.
StuType
,
item
.
StuTypeName
,
});
});
}
}
pageModel
.
Count
=
rowsCount
;
pageModel
.
Count
=
rowsCount
;
...
@@ -847,7 +851,6 @@ namespace Edu.WebApi.Controllers.User
...
@@ -847,7 +851,6 @@ namespace Edu.WebApi.Controllers.User
QQ
=
base
.
ParmJObj
.
GetStringValue
(
"QQ"
),
QQ
=
base
.
ParmJObj
.
GetStringValue
(
"QQ"
),
WeChatNo
=
base
.
ParmJObj
.
GetStringValue
(
"WeChatNo"
)
WeChatNo
=
base
.
ParmJObj
.
GetStringValue
(
"WeChatNo"
)
};
};
string
message
=
""
;
string
message
=
""
;
var
customer
=
base
.
AppletCustomerInfo
;
var
customer
=
base
.
AppletCustomerInfo
;
//是否是同行注册
//是否是同行注册
...
@@ -1160,6 +1163,10 @@ namespace Edu.WebApi.Controllers.User
...
@@ -1160,6 +1163,10 @@ namespace Edu.WebApi.Controllers.User
extModel
.
PlatformName
,
extModel
.
PlatformName
,
AssistList
=
extModel
?.
AssistList
??
new
List
<
RB_Student_Assist_Extend
>(),
AssistList
=
extModel
?.
AssistList
??
new
List
<
RB_Student_Assist_Extend
>(),
extModel
.
StuSourceId
,
extModel
.
StuSourceId
,
extModel
.
QQ
,
extModel
.
WeChatNo
,
extModel
.
StuType
,
extModel
.
StuTypeName
,
};
};
return
ApiResult
.
Success
(
data
:
obj
);
return
ApiResult
.
Success
(
data
:
obj
);
}
}
...
...
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