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
7cd76d0f
Commit
7cd76d0f
authored
Aug 28, 2025
by
吴春
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
a7faca18
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
3 deletions
+10
-3
VisaModule.cs
REBORN.Module.DMCModule/VisaModule.cs
+4
-1
EmployeeModule.cs
REBORN.Module.UserModule/EmployeeModule.cs
+5
-1
SellOrderService.cs
REBORN.Services.SellService/SellOrderService.cs
+1
-1
No files found.
REBORN.Module.DMCModule/VisaModule.cs
View file @
7cd76d0f
...
...
@@ -2961,7 +2961,10 @@ TEL:03-3779-9111";
{
dmodel
.
BankId
=
-
1
;
dmodel
.
OpenBankName
=
dmodel
.
AccountAlias
;
//复制为同一个
dmodel
.
AccountHolder
=
dmodel
.
AccountAlias
;
//复制为同一个
if
(
string
.
IsNullOrWhiteSpace
(
dmodel
.
AccountHolder
))
{
dmodel
.
AccountHolder
=
dmodel
.
AccountAlias
;
//复制为同一个
}
}
#
region
检查是否包含日语
if
(
dmodel
.
ClientAccountType
==
0
&&
!
string
.
IsNullOrEmpty
(
dmodel
.
BankName
)
&&
StringHelper
.
IsIncludeJapan
(
dmodel
.
BankName
))
...
...
REBORN.Module.UserModule/EmployeeModule.cs
View file @
7cd76d0f
...
...
@@ -1202,7 +1202,11 @@ namespace REBORN.Module.UserModule
{
dmodel
.
BankId
=
-
1
;
dmodel
.
OpenBankName
=
dmodel
.
AccountAlias
;
//复制为同一个
dmodel
.
AccountHolder
=
dmodel
.
AccountAlias
;
//复制为同一个
if
(
string
.
IsNullOrWhiteSpace
(
dmodel
.
AccountHolder
))
{
dmodel
.
AccountHolder
=
dmodel
.
AccountAlias
;
//复制为同一个
}
//dmodel.AccountHolder = dmodel.AccountAlias;//复制为同一个
}
#
region
检查是否包含日语
//if (dmodel.ClientAccountType == 0 && !string.IsNullOrEmpty(dmodel.BankName) && StringHelper.IsIncludeJapan(dmodel.BankName))
...
...
REBORN.Services.SellService/SellOrderService.cs
View file @
7cd76d0f
...
...
@@ -6817,7 +6817,7 @@ namespace REBORN.Services.SellService
isAdd
=
true
;
}
}
else
if
(!
string
.
IsNullOrEmpty
(
cardNum
)
&&
!
string
.
IsNullOrEmpty
(
openBankName
)
&&
!
string
.
IsNullOrEmpty
(
accountHolder
))
{
isAdd
=
true
;
}
else
if
(!
string
.
IsNullOrEmpty
(
cardNum
)
&&
!
string
.
IsNullOrEmpty
(
accountHolder
))
{
isAdd
=
true
;
}
if
(
isAdd
)
{
clientBankAccountList
.
Add
(
new
RB_ClientBankAccount_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