Browse Source

UPDATE

dev_DY_CC
赵新宇 6 months ago
parent
commit
22b5b5ba7e
  1. 4
      be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application/Notes/CustomerProductionReturnNotes/CustomerProductionReturnNoteAppService.cs

4
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);

Loading…
Cancel
Save