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
cd7e9fde
Commit
cd7e9fde
authored
Dec 13, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
05fbaa5a
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
CustomerTaskModule.cs
Edu.Module.Customer/CustomerTaskModule.cs
+2
-3
RB_StudentRepository.cs
Edu.Repository/User/RB_StudentRepository.cs
+1
-1
B2BCustomerController.cs
Edu.WebApi/Controllers/Customer/B2BCustomerController.cs
+2
-1
No files found.
Edu.Module.Customer/CustomerTaskModule.cs
View file @
cd7e9fde
...
...
@@ -332,7 +332,7 @@ namespace Edu.Module.Customer
/// 客户兑换奖品
/// </summary>
/// <returns></returns>
public
virtual
bool
ExchangeKudoModule
(
int
customerId
,
string
exchangeCode
,
out
string
message
)
public
virtual
bool
ExchangeKudoModule
(
int
Id
,
out
string
message
)
{
message
=
""
;
bool
flag
=
false
;
...
...
@@ -343,8 +343,7 @@ namespace Edu.Module.Customer
};
List
<
WhereHelper
>
where
=
new
List
<
WhereHelper
>()
{
new
WhereHelper
(
nameof
(
RB_Customer_Finishtask_Extend
.
ExchangeCode
),
exchangeCode
),
new
WhereHelper
(
nameof
(
RB_Customer_Finishtask_Extend
.
CustomerId
),
customerId
),
new
WhereHelper
(
nameof
(
RB_Customer_Finishtask_Extend
.
Id
),
Id
),
};
flag
=
customer_FinishtaskRepository
.
Update
(
fileds
,
where
);
return
flag
;
...
...
Edu.Repository/User/RB_StudentRepository.cs
View file @
cd7e9fde
...
...
@@ -368,7 +368,7 @@ WHERE o.OrderState=1 and og.`Status`=0 and sog.`Status`=0 and og.GuestState=1 an
{
QIds
=
oldModel
.
CreateBy
+
","
+
CreateBy
});
logContent
=
string
.
Format
(
"
复制
人:由【{0}】=>【{1}】"
,
logContent
=
string
.
Format
(
"
负责
人:由【{0}】=>【{1}】"
,
empList
?.
FirstOrDefault
(
qitem
=>
qitem
.
CreateBy
==
oldModel
.
CreateBy
)?.
EmployeeName
,
empList
?.
FirstOrDefault
(
qitem
=>
qitem
.
CreateBy
==
CreateBy
)?.
EmployeeName
);
...
...
Edu.WebApi/Controllers/Customer/B2BCustomerController.cs
View file @
cd7e9fde
...
...
@@ -428,9 +428,10 @@ namespace Edu.WebApi.Controllers.Customer
[
HttpPost
]
public
ApiResult
ExchangeKudo
()
{
var
Id
=
base
.
ParmJObj
.
GetInt
(
"Id"
);
string
exchangeCode
=
base
.
ParmJObj
.
GetStringValue
(
"ExchangeCode"
);
var
CustomerId
=
base
.
ParmJObj
.
GetInt
(
"CustomerId"
);
bool
flag
=
taskModule
.
ExchangeKudoModule
(
CustomerId
,
exchangeCode
,
out
string
message
);
bool
flag
=
taskModule
.
ExchangeKudoModule
(
Id
,
out
string
message
);
return
flag
?
ApiResult
.
Success
()
:
ApiResult
.
Failed
(
message
:
message
);
}
...
...
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