Browse Source

银行发过来的设备号有空格

master
luanhui 7 years ago
parent
commit
a8517b138f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      B3WanFuSaleWebService/RpcHelper/RpcHelperUtil.cs

+ 1
- 1
B3WanFuSaleWebService/RpcHelper/RpcHelperUtil.cs View File

@ -60,7 +60,7 @@ namespace RpcHelper {
results.SendResult.Add(r); results.SendResult.Add(r);
var gathering = new RpcObject("/MainSystem/B3Sale/BO/Gathering"); var gathering = new RpcObject("/MainSystem/B3Sale/BO/Gathering");
SetString(gathering, "AccountCustomer_OuterCode", bill.Head.CustomerCode);// 客户的外部编码
SetString(gathering, "AccountCustomer_OuterCode", bill.Head.CustomerCode.Trim());// 客户的外部编码
SetDateTime(gathering, "GatheringTime", bill.Head.Time); SetDateTime(gathering, "GatheringTime", bill.Head.Time);
SetDecimal(gathering, "GatheringMoney", bill.Head.Money); SetDecimal(gathering, "GatheringMoney", bill.Head.Money);


Loading…
Cancel
Save