Commit 4626d8b8 authored by liudong1993's avatar liudong1993

1

parent 4ad6c392
......@@ -10,6 +10,7 @@ using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices.ComTypes;
using System.Text.RegularExpressions;
namespace REBORN.Services.DMCService
{
......@@ -311,6 +312,15 @@ namespace REBORN.Services.DMCService
IsApplyContract = parm.GetInt("isApplyContract"),//是否上传合同
};
#region 去除Html标签
if (!string.IsNullOrEmpty(model.Other_Matter))
{
model.Other_Matter = model.Other_Matter.Replace(" ", " ");
// 2. 替换 <br>, <br/>, <br /> 为换行符
model.Other_Matter = Regex.Replace(model.Other_Matter, @"<br\s*/?>", Environment.NewLine, RegexOptions.IgnoreCase);
}
#endregion
#region 外派订单旅客信息 2024-07-03 add by:W
var guestInfoListStr = parm.GetStringValue("guestInfo");
List<WaiPaiGuest> waiPaiGuestList = new List<WaiPaiGuest>();
......
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