Browse Source

加括号

master
wugang 7 years ago
parent
commit
9aa073b686
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      BWP.B3_YunKen/BLActions/CusrAcceptDoCheckSendWeixinMessage.cs

+ 1
- 2
BWP.B3_YunKen/BLActions/CusrAcceptDoCheckSendWeixinMessage.cs View File

@ -12,7 +12,6 @@ using Forks.EnterpriseServices.DomainObjects2;
using Forks.EnterpriseServices.DomainObjects2.DQuery;
using Forks.EnterpriseServices.SqlDoms;
using TSingSoft.WebPluginFramework.BIPlugins.BLEvents;
using Forks.EnterpriseServices.BusinessInterfaces;
using BWP.B3Frameworks.BL;
namespace BWP.B3_YunKen.BLActions
@ -79,7 +78,7 @@ namespace BWP.B3_YunKen.BLActions
// customerDealer_Name = accept.CustomerDealer_Name;
// }
//}
var str = "发货工厂:" + accept.AccountingUnit_Name + " 发货时间:" + accept.CheckTime != null ? accept.CheckTime.Value.ToString() : string.Empty + " 客户名称:"+accept.CustomerDealer_Name+" 分销商:"+accept.Customer_Name+" 客户验收单号:"+accept.Code;
var str = "发货工厂:" + accept.AccountingUnit_Name + " 发货时间:" + (accept.CheckTime != null ? accept.CheckTime.Value.ToString() : string.Empty) + " 客户名称:"+accept.CustomerDealer_Name+" 分销商:"+accept.Customer_Name+" 客户验收单号:"+accept.Code;
externalMessage.Content = str;
externalMessageBL.Insert(externalMessage);
}


Loading…
Cancel
Save