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
8507948b
Commit
8507948b
authored
Sep 04, 2025
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
d70cd14b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
CustomerOrderModule.cs
REBORN.Module.SellModule/CustomerOrderModule.cs
+3
-2
No files found.
REBORN.Module.SellModule/CustomerOrderModule.cs
View file @
8507948b
...
...
@@ -5090,7 +5090,7 @@ namespace REBORN.Module.SellModule
var
invoiceApplyList
=
invoiceApplyRepository
.
GetList
(
new
RB_Travel_InvoiceApply_Extend
{
QOrderIds
=
orderIds
,
InvoiceApplyType
=
Common
.
Enum
.
Dmc
.
InvoiceApplyTypeEnum
.
SingleTicket
});
//出境合同
var
contractList
=
contractRepository
.
GetContractListRepository
(
""
,
orderIds
);
//
var contractList = contractRepository.GetContractListRepository("", orderIds);
List
<
RB_Travel_Guest_Extend
>
guestlist
=
new
List
<
RB_Travel_Guest_Extend
>();
RB_Travel_Guest_Extend
guestmodel
=
new
RB_Travel_Guest_Extend
()
{
...
...
@@ -5142,7 +5142,8 @@ namespace REBORN.Module.SellModule
}
item
.
InvoiceApplyList
=
invoiceApplyList
?.
Where
(
x
=>
x
.
OrderId
==
item
.
OrderId
).
ToList
()
??
new
List
<
RB_Travel_InvoiceApply_Extend
>();
item
.
LossList
=
lossList
.
Where
(
x
=>
x
.
OrderId
==
item
.
OrderId
).
ToList
();
item
.
ContractNum
=
contractList
?.
Where
(
qitem
=>
qitem
.
OrderId
==
item
.
OrderId
)?.
ToList
()
??
new
List
<
RB_Contract_Extend
>();
//item.ContractNum = contractList?.Where(qitem => qitem.OrderId == item.OrderId)?.ToList() ?? new List<RB_Contract_Extend>();
item
.
ContractNum
=
new
List
<
RB_Contract_Extend
>();
item
.
SupplierModel
=
item
.
SupplierId
>
0
?
(
supplierList
?.
FirstOrDefault
(
x
=>
x
.
ID
==
item
.
SupplierId
)
??
new
RB_Supplier_Extend
())
:
new
RB_Supplier_Extend
();
item
.
AppointOPList
=
appointOPList
.
Where
(
x
=>
x
.
OrderId
==
item
.
OrderId
)?.
ToList
()
??
new
List
<
RB_Appoint_OP_Extend
>();
...
...
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