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
17021315
Commit
17021315
authored
Mar 19, 2026
by
吴春
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
11
parent
10b9b024
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
152 deletions
+31
-152
TravelServiceReport.cs
REBORN.Services.DMCService/TravelServiceReport.cs
+6
-1
TravelServiceReportExport.cs
REBORN.Services.DMCService/TravelServiceReportExport.cs
+20
-150
SellOrderService.cs
REBORN.Services.SellService/SellOrderService.cs
+5
-1
No files found.
REBORN.Services.DMCService/TravelServiceReport.cs
View file @
17021315
...
...
@@ -1410,7 +1410,12 @@ namespace REBORN.Services.DMCService
//获取房间信息
var
houseList
=
module
.
GetOrderHouseList
(
new
RB_Travel_OrderHouse_Extend
{
TCID
=
ID
});
List
<
object
>
result
=
new
List
<
object
>();
foreach
(
var
subItem
in
data
.
Where
(
qitem
=>
qitem
.
GroupType
!=
OrderJoinType
.
SingleAirTicket
))
var
tempList
=
data
.
Where
(
qitem
=>
qitem
.
GroupType
!=
OrderJoinType
.
SingleAirTicket
)?.
OrderBy
(
qitem
=>
{
Int32
.
TryParse
(
qitem
.
HouseNo
,
out
int
HouseNo
);
return
HouseNo
;
})?.
ToList
();
foreach
(
var
subItem
in
tempList
)
{
string
CreateByStr
=
""
;
if
((
subItem
?.
EnterID
??
0
)
>
0
)
...
...
REBORN.Services.DMCService/TravelServiceReportExport.cs
View file @
17021315
This diff is collapsed.
Click to expand it.
REBORN.Services.SellService/SellOrderService.cs
View file @
17021315
...
...
@@ -9829,7 +9829,11 @@ namespace REBORN.Services.SellService
price
.
TCID
,
CoverImg
,
OrderBackScenicList
=
orderBackScenicList
?.
Select
(
x
=>
new
{
x
.
Id
,
x
.
Number
,
x
.
BackMoney
,
x
.
CouponsName
,
x
.
CouponsId
,
GuestBackScenicName
=
(
x
.
GuestBlackList
!=
null
&&
x
.
GuestBlackList
.
Any
())
?
string
.
Join
(
"、"
,
x
.
GuestBlackList
.
Select
(
z
=>
z
.
GuestName
))
:
""
}),
list
=
list
.
Select
(
x
=>
new
list
=
list
?.
OrderBy
(
qitem
=>
{
Int32
.
TryParse
(
qitem
.
HouseNo
,
out
int
HouseNo
);
return
HouseNo
;
})?.
Select
(
x
=>
new
{
x
.
GuestSurveyID
,
ScoreNum
=
x
.
ScoreNum
.
ToString
(
"#0.00"
),
...
...
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