雅达-添加日志记录和更新扫描成功信息
在 `U9C_MES.cs` 文件中,`Tiger.Business.MES` 命名空间下添加了一行日志记录代码,用于记录获取的客户条码信息。
在 `PrintSemiProdLabel.cs` 文件中,`Tiger.Business.WMS.Transaction` 命名空间下更新了 `action.LocaleMsg` 的内容,使其包含 `input.SN` 参数,以便在扫描成功时提供更详细的信息。
| | |
| | | List<MES_CUST_SN> items = new(); |
| | | if (list != null && list.Count > 0) |
| | | { |
| | | Logger.Scheduler.Info($"获取客户条码信息:[{list.ToJson()}]"); |
| | | foreach (var item in list) |
| | | { |
| | | var d = item as System.Dynamic.ExpandoObject; |
| | |
| | | } |
| | | |
| | | action.Data.Data = temps; |
| | | action.LocaleMsg = Biz.L("WMS.PrintSemiProdLabel.Scan.ScanSuccessed"); |
| | | action.LocaleMsg = Biz.L("WMS.PrintSemiProdLabel.Scan.ScanSuccessed", input.SN); |
| | | } |
| | | catch (Exception ex) |
| | | { |