From 22b5b5ba7e172a94d65df4c8eb754239771d5efb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=A6=20=E8=B5=B5?= <89237069@qq.com> Date: Wed, 6 Nov 2024 11:31:20 +0800 Subject: [PATCH] UPDATE --- .../CustomerProductionReturnNoteAppService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application/Notes/CustomerProductionReturnNotes/CustomerProductionReturnNoteAppService.cs b/be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application/Notes/CustomerProductionReturnNotes/CustomerProductionReturnNoteAppService.cs index b4770122e..f652332a0 100644 --- a/be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application/Notes/CustomerProductionReturnNotes/CustomerProductionReturnNoteAppService.cs +++ b/be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application/Notes/CustomerProductionReturnNotes/CustomerProductionReturnNoteAppService.cs @@ -64,14 +64,14 @@ public class CustomerProductionReturnNoteAppService : if (ls.Count > 0) { - throw new UserFriendlyException($"销售价格表中没有查到客户为{input.CustomerCode}零件号为{string.Join(",", ls.ToArray())}的零件关系和价格"); + throw new UserFriendlyException($"销售价格表中没有查到客户为{input.CustomerCode},零件号为{string.Join(",", ls.ToArray())}的零件关系和价格"); } var errlist= await CheckCustomerItem(parts.ToList(), input.CustomerCode).ConfigureAwait(false); if (errlist.Count > 0) { - throw new UserFriendlyException($"客户零件关系表中没有查到客户为{input.CustomerCode}零件号为{string.Join(",", ls.ToArray())}的零件关系"); + throw new UserFriendlyException($"客户零件关系表中没有查到客户为{input.CustomerCode},零件号为{string.Join(",", ls.ToArray())}的零件关系"); } var custitmDetail = await _customerItemAppService.GetListByPartsAsync(parts.ToList()).ConfigureAwait(false);