Commit 7cd76d0f authored by 吴春's avatar 吴春

1

parent a7faca18
...@@ -2961,7 +2961,10 @@ TEL:03-3779-9111"; ...@@ -2961,7 +2961,10 @@ TEL:03-3779-9111";
{ {
dmodel.BankId = -1; dmodel.BankId = -1;
dmodel.OpenBankName = dmodel.AccountAlias;//复制为同一个 dmodel.OpenBankName = dmodel.AccountAlias;//复制为同一个
dmodel.AccountHolder = dmodel.AccountAlias;//复制为同一个 if (string.IsNullOrWhiteSpace(dmodel.AccountHolder))
{
dmodel.AccountHolder = dmodel.AccountAlias;//复制为同一个
}
} }
#region 检查是否包含日语 #region 检查是否包含日语
if (dmodel.ClientAccountType == 0 && !string.IsNullOrEmpty(dmodel.BankName) && StringHelper.IsIncludeJapan(dmodel.BankName)) if (dmodel.ClientAccountType == 0 && !string.IsNullOrEmpty(dmodel.BankName) && StringHelper.IsIncludeJapan(dmodel.BankName))
......
...@@ -1202,7 +1202,11 @@ namespace REBORN.Module.UserModule ...@@ -1202,7 +1202,11 @@ namespace REBORN.Module.UserModule
{ {
dmodel.BankId = -1; dmodel.BankId = -1;
dmodel.OpenBankName = dmodel.AccountAlias;//复制为同一个 dmodel.OpenBankName = dmodel.AccountAlias;//复制为同一个
dmodel.AccountHolder = dmodel.AccountAlias;//复制为同一个 if (string.IsNullOrWhiteSpace(dmodel.AccountHolder))
{
dmodel.AccountHolder = dmodel.AccountAlias;//复制为同一个
}
//dmodel.AccountHolder = dmodel.AccountAlias;//复制为同一个
} }
#region 检查是否包含日语 #region 检查是否包含日语
//if (dmodel.ClientAccountType == 0 && !string.IsNullOrEmpty(dmodel.BankName) && StringHelper.IsIncludeJapan(dmodel.BankName)) //if (dmodel.ClientAccountType == 0 && !string.IsNullOrEmpty(dmodel.BankName) && StringHelper.IsIncludeJapan(dmodel.BankName))
......
...@@ -6817,7 +6817,7 @@ namespace REBORN.Services.SellService ...@@ -6817,7 +6817,7 @@ namespace REBORN.Services.SellService
isAdd = true; 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) if (isAdd)
{ {
clientBankAccountList.Add(new RB_ClientBankAccount_Extend clientBankAccountList.Add(new RB_ClientBankAccount_Extend
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment