yibo 7 years ago
parent
commit
f931ff0be8
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      B3ClientService/Rpcs/SelfHelpRpc.cs

+ 3
- 1
B3ClientService/Rpcs/SelfHelpRpc.cs View File

@ -112,7 +112,9 @@ namespace BWP.B3ClientService.Rpcs
weight.WeighTime = DateTime.Now;
weight.Supplier_ID = entity.supplierID;
weight.Supplier_Name = entity.supplier;
weight.BankAccount = entity.supplierIDCard;
weight.BankAccount = entity.bankNum;
if (string.IsNullOrEmpty(weight.BankAccount))
DmoUtil.RefreshDependency(weight, "Supplier_ID");
weight.PurchaseType_ID = entity.bType + 1;
weight.PurchaseType_Name = entity.bType == 0 ? "社会" : "业务";
if (weight.Employee_ID == null && weight.PurchaseType_Name == "社会")


Loading…
Cancel
Save