Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mall.oytour.com
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
黄奎
mall.oytour.com
Commits
e7e46d37
Commit
e7e46d37
authored
Sep 16, 2020
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
商品配置评论反积分
parent
370e8ab1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
3 deletions
+13
-3
GuideCarModule.cs
Mall.Module.Product/GuideCarModule.cs
+2
-1
ProductModule.cs
Mall.Module.Product/ProductModule.cs
+2
-1
GuideCarController.cs
Mall.WebApi/Controllers/Product/GuideCarController.cs
+5
-1
ProductController.cs
Mall.WebApi/Controllers/Product/ProductController.cs
+4
-0
No files found.
Mall.Module.Product/GuideCarModule.cs
View file @
e7e46d37
...
...
@@ -813,7 +813,8 @@ namespace Mall.Module.Product
{
nameof
(
RB_Goods
.
RideNum
),
demodel
.
RideNum
},
{
nameof
(
RB_Goods
.
AdvanceDay
),
demodel
.
AdvanceDay
},
{
nameof
(
RB_Goods
.
VideoType
),
demodel
.
VideoType
},
{
nameof
(
RB_Goods
.
IntegralComment
),
demodel
.
IntegralComment
},
{
nameof
(
RB_Goods
.
IntegralCommentType
),
demodel
.
IntegralCommentType
},
};
List
<
WhereHelper
>
wheres
=
new
List
<
WhereHelper
>()
{
new
WhereHelper
(){
...
...
Mall.Module.Product/ProductModule.cs
View file @
e7e46d37
...
...
@@ -4531,7 +4531,8 @@ namespace Mall.Module.Product
{
nameof
(
RB_Goods
.
DownDate
),
demodel
.
DownDate
},
{
nameof
(
RB_Goods
.
SendArea
),
demodel
.
SendArea
},
{
nameof
(
RB_Goods
.
VideoType
),
demodel
.
VideoType
},
{
nameof
(
RB_Goods
.
IntegralComment
),
demodel
.
IntegralComment
},
{
nameof
(
RB_Goods
.
IntegralCommentType
),
demodel
.
IntegralCommentType
},
};
if
(
goodsModel
.
IsProcurement
==
1
)
{
...
...
Mall.WebApi/Controllers/Product/GuideCarController.cs
View file @
e7e46d37
...
...
@@ -375,7 +375,9 @@ namespace Mall.WebApi.Controllers.MallBase
model
?.
IsSpell
,
model
?.
RideNum
,
model
?.
AdvanceDay
,
model
?.
TargetDateList
model
?.
TargetDateList
,
model
?.
IntegralComment
,
model
?.
IntegralCommentType
,
});
}
...
...
@@ -811,6 +813,8 @@ namespace Mall.WebApi.Controllers.MallBase
demodel
.
IsLiveGoods
??=
2
;
//是否直播商品 1是 2否
demodel
.
SendArea
??=
""
;
//发货地
demodel
.
GoodsClassify
=
1
;
demodel
.
IntegralComment
??=
0
;
//评论反积分
demodel
.
IntegralCommentType
??=
1
;
bool
flag
=
guideCarModule
.
SetProductGoodsInfo
(
demodel
);
if
(
flag
)
...
...
Mall.WebApi/Controllers/Product/ProductController.cs
View file @
e7e46d37
...
...
@@ -1599,6 +1599,8 @@ namespace Mall.WebApi.Controllers.MallBase
model
?.
ShelvesDate
,
model
?.
DownDate
,
model
?.
VideoType
,
model
?.
IntegralComment
,
model
?.
IntegralCommentType
,
};
}
return
ApiResult
.
Success
(
""
,
obj
);
...
...
@@ -2068,6 +2070,8 @@ namespace Mall.WebApi.Controllers.MallBase
demodel
.
IsLiveGoods
??=
2
;
//是否直播商品 1是 2否
demodel
.
SendArea
??=
""
;
//发货地
demodel
.
GoodsClassify
=
0
;
demodel
.
IntegralComment
??=
0
;
//评论反积分
demodel
.
IntegralCommentType
??=
1
;
if
(
demodel
.
IsProxy
==
1
&&
demodel
.
CostPrice
>
0
)
{
decimal
ProxyMoney
=
0
;
...
...
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