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
1f1aa9fb
Commit
1f1aa9fb
authored
Jan 25, 2022
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
043e0a73
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
65 additions
and
2 deletions
+65
-2
MarketConsultantModule.cs
Edu.Module.Customer/MarketConsultantModule.cs
+60
-1
GroupModule.cs
Edu.Module.User/GroupModule.cs
+4
-0
UserCenterController.cs
Edu.WebApi/Controllers/User/UserCenterController.cs
+1
-1
No files found.
Edu.Module.Customer/MarketConsultantModule.cs
View file @
1f1aa9fb
...
@@ -1133,12 +1133,71 @@ namespace Edu.Module.Customer
...
@@ -1133,12 +1133,71 @@ namespace Edu.Module.Customer
/// <returns></returns>
/// <returns></returns>
public
object
MarketChannelStaticModule
(
string
StartTime
,
string
EndTime
)
public
object
MarketChannelStaticModule
(
string
StartTime
,
string
EndTime
)
{
{
List
<
object
>
list
=
new
List
<
object
>();
var
channelList
=
channelRepository
.
GetChannelListRepository
(
new
RB_Channel_Extend
()
{
});
var
dataList
=
studentRepository
.
GetStudentChannelStaticRepository
(
new
RB_Student_ViewModel
()
var
dataList
=
studentRepository
.
GetStudentChannelStaticRepository
(
new
RB_Student_ViewModel
()
{
{
StartTime
=
StartTime
,
StartTime
=
StartTime
,
EndTime
=
EndTime
EndTime
=
EndTime
});
});
return
null
;
if
(
channelList
!=
null
&&
channelList
.
Count
>
0
)
{
foreach
(
var
item
in
channelList
)
{
var
channelTempList
=
dataList
?.
Where
(
qitem
=>
qitem
.
CreateType
==
StuCreateTypeEnum
.
EmployeeInput
&&
qitem
.
StuChannel
==
item
.
Id
)?.
ToList
();
list
.
Add
(
new
{
ChannelName
=
item
.
Name
,
ChannelId
=
item
.
Id
,
ClueCount
=
channelTempList
?.
Count
(),
VisitCount
=
channelTempList
?.
Sum
(
qitem
=>
qitem
.
VisitCount
),
OrderCount
=
channelTempList
?.
Sum
(
qitem
=>
qitem
.
OrderCount
),
OrderIncome
=
channelTempList
?.
Sum
(
qitem
=>
qitem
.
OrderIncome
)
});
}
}
var
customerList
=
dataList
?.
Where
(
qitem
=>
qitem
.
CreateType
==
StuCreateTypeEnum
.
CustomerInput
)?.
ToList
();
list
.
Add
(
new
{
ChannelName
=
"同行介绍"
,
ChannelId
=
10001
,
ClueCount
=
customerList
?.
Count
(),
VisitCount
=
customerList
?.
Sum
(
qitem
=>
qitem
.
VisitCount
),
OrderCount
=
customerList
?.
Sum
(
qitem
=>
qitem
.
OrderCount
),
OrderIncome
=
customerList
?.
Sum
(
qitem
=>
qitem
.
OrderIncome
)
});
var
innerList
=
dataList
?.
Where
(
qitem
=>
qitem
.
CreateType
==
StuCreateTypeEnum
.
InternalIntroduction
)?.
ToList
();
list
.
Add
(
new
{
ChannelName
=
"内部介绍"
,
ChannelId
=
10002
,
ClueCount
=
innerList
?.
Count
(),
VisitCount
=
innerList
?.
Sum
(
qitem
=>
qitem
.
VisitCount
),
OrderCount
=
innerList
?.
Sum
(
qitem
=>
qitem
.
OrderCount
),
OrderIncome
=
innerList
?.
Sum
(
qitem
=>
qitem
.
OrderIncome
)
});
var
transList
=
dataList
?.
Where
(
qitem
=>
qitem
.
CreateType
==
StuCreateTypeEnum
.
TransIntroduction
)?.
ToList
();
list
.
Add
(
new
{
ChannelName
=
"学员转介绍"
,
ChannelId
=
10003
,
ClueCount
=
transList
?.
Count
(),
VisitCount
=
transList
?.
Sum
(
qitem
=>
qitem
.
VisitCount
),
OrderCount
=
transList
?.
Sum
(
qitem
=>
qitem
.
OrderCount
),
OrderIncome
=
transList
?.
Sum
(
qitem
=>
qitem
.
OrderIncome
)
});
list
.
Add
(
new
{
ChannelName
=
"合计"
,
ChannelId
=
10005
,
ClueCount
=
dataList
?.
Count
(),
VisitCount
=
dataList
?.
Sum
(
qitem
=>
qitem
.
VisitCount
),
OrderCount
=
dataList
?.
Sum
(
qitem
=>
qitem
.
OrderCount
),
OrderIncome
=
dataList
?.
Sum
(
qitem
=>
qitem
.
OrderIncome
)
});
return
list
;
}
}
#
endregion
#
endregion
...
...
Edu.Module.User/GroupModule.cs
View file @
1f1aa9fb
...
@@ -73,6 +73,10 @@ namespace Edu.Module.User
...
@@ -73,6 +73,10 @@ namespace Edu.Module.User
/// <returns></returns>
/// <returns></returns>
public
RB_Group_ViewModel
GetGroupEntityModule
(
string
workDomainUrl
)
public
RB_Group_ViewModel
GetGroupEntityModule
(
string
workDomainUrl
)
{
{
if
(
workDomainUrl
.
ToLower
()
==
"edu.oytour.com"
)
{
workDomainUrl
=
"m.kookaku.com"
;
}
return
GetGroupListModule
(
new
RB_Group_ViewModel
()
{
WorkAppDomain
=
workDomainUrl
})?.
FirstOrDefault
()
??
new
RB_Group_ViewModel
();
return
GetGroupListModule
(
new
RB_Group_ViewModel
()
{
WorkAppDomain
=
workDomainUrl
})?.
FirstOrDefault
()
??
new
RB_Group_ViewModel
();
}
}
...
...
Edu.WebApi/Controllers/User/UserCenterController.cs
View file @
1f1aa9fb
...
@@ -2833,7 +2833,7 @@ namespace Edu.WebApi.Controllers.User
...
@@ -2833,7 +2833,7 @@ namespace Edu.WebApi.Controllers.User
/// <returns></returns>
/// <returns></returns>
[
HttpPost
]
[
HttpPost
]
[
AllowRepeatAttribute
]
[
AllowRepeatAttribute
]
public
ApiResult
MarketChannelStatic
1
()
public
ApiResult
MarketChannelStatic
()
{
{
string
startTime
=
base
.
ParmJObj
.
GetStringValue
(
"startTime"
);
string
startTime
=
base
.
ParmJObj
.
GetStringValue
(
"startTime"
);
if
(
string
.
IsNullOrEmpty
(
startTime
))
if
(
string
.
IsNullOrEmpty
(
startTime
))
...
...
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