Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
H
huatu_API
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
liudong1993
huatu_API
Commits
4626d8b8
Commit
4626d8b8
authored
Jan 04, 2026
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
4ad6c392
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
TravelContractService.cs
REBORN.Services.DMCService/TravelContractService.cs
+10
-0
No files found.
REBORN.Services.DMCService/TravelContractService.cs
View file @
4626d8b8
...
...
@@ -10,6 +10,7 @@ using System;
using
System.Collections.Generic
;
using
System.Linq
;
using
System.Runtime.InteropServices.ComTypes
;
using
System.Text.RegularExpressions
;
namespace
REBORN.Services.DMCService
{
...
...
@@ -311,6 +312,15 @@ namespace REBORN.Services.DMCService
IsApplyContract
=
parm
.
GetInt
(
"isApplyContract"
),
//是否上传合同
};
#
region
去除
Html
标签
if
(!
string
.
IsNullOrEmpty
(
model
.
Other_Matter
))
{
model
.
Other_Matter
=
model
.
Other_Matter
.
Replace
(
" "
,
" "
);
// 2. 替换 <br>, <br/>, <br /> 为换行符
model
.
Other_Matter
=
Regex
.
Replace
(
model
.
Other_Matter
,
@"<br\s*/?>"
,
Environment
.
NewLine
,
RegexOptions
.
IgnoreCase
);
}
#
endregion
#
region
外派订单旅客信息
2024
-
07
-
03
add
by
:
W
var
guestInfoListStr
=
parm
.
GetStringValue
(
"guestInfo"
);
List
<
WaiPaiGuest
>
waiPaiGuestList
=
new
List
<
WaiPaiGuest
>();
...
...
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