Commit 5f29247b authored by 吴春's avatar 吴春

1

parent f097178c
...@@ -2856,7 +2856,7 @@ TEL:03-3779-9111"; ...@@ -2856,7 +2856,7 @@ TEL:03-3779-9111";
foreach (var item in clientBankAccountList) foreach (var item in clientBankAccountList)
{ {
item.ObjID = supplierId; item.ObjID = supplierId;
item.AccountAlias = item.AccountHolder + item.BankName; item.AccountAlias = supplierModel.Name; //item.AccountHolder + item.BankName;
bool flagB = SetEmpBankAccount(item, 1, out int ClientId, out string msg); bool flagB = SetEmpBankAccount(item, 1, out int ClientId, out string msg);
if (!flagB) if (!flagB)
{ {
......
...@@ -1319,7 +1319,7 @@ namespace REBORN.Module.SellModule ...@@ -1319,7 +1319,7 @@ namespace REBORN.Module.SellModule
foreach (var item in clientBankAccountList) foreach (var item in clientBankAccountList)
{ {
item.ObjID = supplierId; item.ObjID = supplierId;
item.AccountAlias = item.AccountHolder + item.BankName; item.AccountAlias = supplierModel.Name; //item.AccountHolder + item.BankName;
bool flagB = employeemodule.SetEmpBankAccount(item, 1, out int ClientId, out string msg); bool flagB = employeemodule.SetEmpBankAccount(item, 1, out int ClientId, out string msg);
if (!flagB) if (!flagB)
{ {
...@@ -5432,7 +5432,7 @@ namespace REBORN.Module.SellModule ...@@ -5432,7 +5432,7 @@ namespace REBORN.Module.SellModule
} }
} }
return orderid > 0 ? "" : "出错了,请联系管理员"; flag= orderid > 0 ;
} }
if (flag) if (flag)
{ {
......
...@@ -6859,7 +6859,7 @@ namespace REBORN.Services.SellService ...@@ -6859,7 +6859,7 @@ namespace REBORN.Services.SellService
foreach (var item in clientBankAccountList) foreach (var item in clientBankAccountList)
{ {
item.ObjID = supplierId; item.ObjID = supplierId;
item.AccountAlias = item.AccountHolder + item.BankName; item.AccountAlias = supplierModel.Name; //item.AccountHolder + item.BankName;
bool flag = employeemodule.SetEmpBankAccount(item, 1, out int ClientId, out string msg); bool flag = employeemodule.SetEmpBankAccount(item, 1, out int ClientId, out string msg);
if (!flag) if (!flag)
{ {
......
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