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
b68111be
Commit
b68111be
authored
Dec 15, 2021
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
28cb431b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
OrderModule.cs
Edu.Module.Course/OrderModule.cs
+0
-1
OrderController.cs
Edu.WebApi/Controllers/Course/OrderController.cs
+4
-0
No files found.
Edu.Module.Course/OrderModule.cs
View file @
b68111be
...
...
@@ -399,7 +399,6 @@ namespace Edu.Module.Course
if
(
demodel
.
OrderId
>
0
)
{
orderModel
=
orderRepository
.
GetEntity
(
demodel
.
OrderId
);
demodel
.
OrderIdentify
=
orderModel
.
OrderIdentify
;
}
//查询班级信息
var
classModel
=
classRepository
.
GetEntity
(
demodel
.
ClassId
);
...
...
Edu.WebApi/Controllers/Course/OrderController.cs
View file @
b68111be
...
...
@@ -559,6 +559,10 @@ namespace Edu.WebApi.Controllers.Course
{
return
ApiResult
.
ParamIsNull
(
"请选择客人来源"
);
}
if
(
demodel
.
OrderId
>
0
)
{
demodel
.
OrderIdentify
=
0
;
}
if
(
demodel
.
OrderIdentify
==
2
&&
string
.
IsNullOrEmpty
(
demodel
.
StuIds
))
{
return
ApiResult
.
ParamIsNull
(
"请传递选择客户"
);
...
...
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