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
07c5f6ad
Commit
07c5f6ad
authored
Feb 11, 2026
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
dc9f1c24
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
1 deletion
+10
-1
RB_Contract_Extend.cs
REBORN.Model/Extend/Dmc/RB_Contract_Extend.cs
+5
-0
RB_ContractRepository.cs
REBORN.Repository/Dmc/RB_ContractRepository.cs
+4
-0
TravelContractService.cs
REBORN.Services.DMCService/TravelContractService.cs
+1
-1
No files found.
REBORN.Model/Extend/Dmc/RB_Contract_Extend.cs
View file @
07c5f6ad
...
@@ -34,6 +34,11 @@ namespace REBORN.Model.Extend.Dmc
...
@@ -34,6 +34,11 @@ namespace REBORN.Model.Extend.Dmc
/// </summary>
/// </summary>
public
int
IsApplyContract
{
get
;
set
;
}
public
int
IsApplyContract
{
get
;
set
;
}
/// <summary>
/// =1是 正常合同
/// </summary>
public
int
IsNormalThirdContract
{
get
;
set
;
}
/// <summary>
/// <summary>
/// 合团附件
/// 合团附件
/// </summary>
/// </summary>
...
...
REBORN.Repository/Dmc/RB_ContractRepository.cs
View file @
07c5f6ad
...
@@ -48,6 +48,10 @@ SELECT * FROM RB_Contract WHERE 1=1 AND Status=1
...
@@ -48,6 +48,10 @@ SELECT * FROM RB_Contract WHERE 1=1 AND Status=1
{
{
builder
.
AppendFormat
(
" AND {0}='{1}' "
,
nameof
(
RB_Contract_Extend
.
ThirdContractID
),
where
.
ThirdContractID
);
builder
.
AppendFormat
(
" AND {0}='{1}' "
,
nameof
(
RB_Contract_Extend
.
ThirdContractID
),
where
.
ThirdContractID
);
}
}
if
(
where
.
IsNormalThirdContract
==
1
)
{
builder
.
AppendFormat
(
" AND {0} in({1}) "
,
nameof
(
RB_Contract_Extend
.
ThirdContractState
),
"0,1,2,4"
);
}
}
}
return
Get
<
RB_Contract_Extend
>(
builder
.
ToString
()).
ToList
();
return
Get
<
RB_Contract_Extend
>(
builder
.
ToString
()).
ToList
();
}
}
...
...
REBORN.Services.DMCService/TravelContractService.cs
View file @
07c5f6ad
...
@@ -653,7 +653,7 @@ namespace REBORN.Services.DMCService
...
@@ -653,7 +653,7 @@ namespace REBORN.Services.DMCService
}
}
else
else
{
{
model
=
travelContractModule
.
GetContractModule
(
new
RB_Contract_Extend
{
TCID
=
TCID
,
OrderId
=
orderID
,
GuestId
=
guestId
,
OrderType
=
OrderType
});
model
=
travelContractModule
.
GetContractModule
(
new
RB_Contract_Extend
{
TCID
=
TCID
,
OrderId
=
orderID
,
GuestId
=
guestId
,
OrderType
=
OrderType
,
IsNormalThirdContract
=
1
});
UserInfo
userInfo
=
CacheManager
.
User
.
RbUserCache
.
GetUserLoginInfo
(
request
.
uid
);
UserInfo
userInfo
=
CacheManager
.
User
.
RbUserCache
.
GetUserLoginInfo
(
request
.
uid
);
if
(
userInfo
!=
null
)
if
(
userInfo
!=
null
)
{
{
...
...
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