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
3cc99909
Commit
3cc99909
authored
Jan 30, 2024
by
吴春
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提交订单下单以及详情返回自定义表单
parent
abeabceb
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
RB_Goods_Order_Extend.cs
Mall.Model/Extend/Product/RB_Goods_Order_Extend.cs
+1
-1
OrderModule.cs
Mall.Module.Product/OrderModule.cs
+1
-1
AppletOrderController.cs
Mall.WebApi/Controllers/Product/AppletOrderController.cs
+1
-1
No files found.
Mall.Model/Extend/Product/RB_Goods_Order_Extend.cs
View file @
3cc99909
...
...
@@ -333,7 +333,7 @@ namespace Mall.Model.Extend.Product
/// <summary>
/// 客户自定义表单填写内容 2024-01-30 add by:W
/// </summary>
public
string
CustomFormInfo
{
get
;
set
;
}
public
List
<
TradePavilion
.
FormDataItem
>
CustomFormInfo
{
get
;
set
;
}
}
/// <summary>
...
...
Mall.Module.Product/OrderModule.cs
View file @
3cc99909
...
...
@@ -8082,7 +8082,7 @@ namespace Mall.Module.Product
int
detailId
=
goods_OrderDetailRepository
.
Insert
(
new
RB_Goods_OrderDetail
()
{
Id
=
0
,
CustomFormInfo
=
demodel
.
CustomFormInfo
,
CustomFormInfo
=
(
demodel
.
CustomFormInfo
!=
null
&&
demodel
.
CustomFormInfo
.
Any
())
?
JsonConvert
.
SerializeObject
(
demodel
.
CustomFormInfo
)
:
""
,
CostMoney
=
item
.
CostMoney
,
CoverImage
=
item
.
CoverImage
,
CreateDate
=
DateTime
.
Now
,
...
...
Mall.WebApi/Controllers/Product/AppletOrderController.cs
View file @
3cc99909
...
...
@@ -522,7 +522,7 @@ namespace Mall.WebApi.Controllers.MallBase
}
if
(
userInfo
.
TenantId
==
29
)
{
if
(
string
.
IsNullOrWhiteSpace
(
demodel
.
CustomFormInfo
)
)
if
(
demodel
?.
CustomFormInfo
?.
Count
==
0
)
{
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