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