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
e04482ef
Commit
e04482ef
authored
Aug 21, 2025
by
吴春
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
跟团游和签证旅客加guestid
parent
3f3b7e79
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
1770 additions
and
1652 deletions
+1770
-1652
MergeCommissionModule.cs
REBORN.Module.CommissionModule/MergeCommissionModule.cs
+1654
-1416
VisaModule.cs
REBORN.Module.DMCModule/VisaModule.cs
+55
-131
SellOrderModule.cs
REBORN.Module.SellModule/SellOrderModule.cs
+57
-102
VisaService.cs
REBORN.Services.DMCService/VisaService.cs
+3
-2
SellOrderService.cs
REBORN.Services.SellService/SellOrderService.cs
+1
-1
No files found.
REBORN.Module.CommissionModule/MergeCommissionModule.cs
View file @
e04482ef
This source diff could not be displayed because it is too large. You can
view the blob
instead.
REBORN.Module.DMCModule/VisaModule.cs
View file @
e04482ef
This diff is collapsed.
Click to expand it.
REBORN.Module.SellModule/SellOrderModule.cs
View file @
e04482ef
This diff is collapsed.
Click to expand it.
REBORN.Services.DMCService/VisaService.cs
View file @
e04482ef
...
@@ -5024,7 +5024,7 @@ namespace REBORN.Services.DMCService
...
@@ -5024,7 +5024,7 @@ namespace REBORN.Services.DMCService
};
};
//出行人员名单(姓名、电话、出生年月日是必须的、护照号、身份证号、护照有效期非必填)
//出行人员名单(姓名、电话、出生年月日是必须的、护照号、身份证号、护照有效期非必填)
string
guestInfoStr
=
parm
.
GetStringValue
(
"GuestList"
);
string
guestInfoStr
=
parm
.
GetStringValue
(
"GuestList"
);
List
<
OrderGuestList
>
orderGuestList
=
new
List
<
OrderGuestList
>();
List
<
RB_Travel_Guest_Extend
>
orderGuestList
=
new
List
<
RB_Travel_Guest_Extend
>();
if
(!
string
.
IsNullOrWhiteSpace
(
guestInfoStr
))
if
(!
string
.
IsNullOrWhiteSpace
(
guestInfoStr
))
{
{
try
try
...
@@ -5035,8 +5035,9 @@ namespace REBORN.Services.DMCService
...
@@ -5035,8 +5035,9 @@ namespace REBORN.Services.DMCService
foreach
(
var
jItem
in
guestInfoListArray
)
foreach
(
var
jItem
in
guestInfoListArray
)
{
{
JObject
jobj
=
JObject
.
Parse
(
JsonHelper
.
Serialize
(
jItem
));
JObject
jobj
=
JObject
.
Parse
(
JsonHelper
.
Serialize
(
jItem
));
orderGuestList
.
Add
(
new
OrderGuestList
orderGuestList
.
Add
(
new
RB_Travel_Guest_Extend
{
{
Id
=
jobj
.
GetInt
(
"GuestId"
),
Birthday
=
jobj
.
GetDateTime
(
"Birthday"
),
Birthday
=
jobj
.
GetDateTime
(
"Birthday"
),
Name
=
jobj
.
GetStringValue
(
"Name"
),
Name
=
jobj
.
GetStringValue
(
"Name"
),
IdCard
=
jobj
.
GetStringValue
(
"IdCard"
),
IdCard
=
jobj
.
GetStringValue
(
"IdCard"
),
...
...
REBORN.Services.SellService/SellOrderService.cs
View file @
e04482ef
...
@@ -6839,9 +6839,9 @@ namespace REBORN.Services.SellService
...
@@ -6839,9 +6839,9 @@ namespace REBORN.Services.SellService
JObject
jobj
=
JObject
.
Parse
(
JsonHelper
.
Serialize
(
jItem
));
JObject
jobj
=
JObject
.
Parse
(
JsonHelper
.
Serialize
(
jItem
));
string
name
=
jobj
.
GetStringValue
(
"Name"
);
string
name
=
jobj
.
GetStringValue
(
"Name"
);
string
idCard
=
jobj
.
GetStringValue
(
"IdCard"
);
string
idCard
=
jobj
.
GetStringValue
(
"IdCard"
);
orderGuestList
.
Add
(
new
RB_Travel_Guest_Extend
orderGuestList
.
Add
(
new
RB_Travel_Guest_Extend
{
{
Id
=
jobj
.
GetInt
(
"GuestId"
),
Birthday
=
jobj
.
GetDateTime
(
"Birthday"
),
Birthday
=
jobj
.
GetDateTime
(
"Birthday"
),
Name
=
jobj
.
GetStringValue
(
"Name"
),
Name
=
jobj
.
GetStringValue
(
"Name"
),
IdCard
=
jobj
.
GetStringValue
(
"IdCard"
),
IdCard
=
jobj
.
GetStringValue
(
"IdCard"
),
...
...
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