Browse Source

更新版本

Agv分支2024-11-19
赵新宇 6 months ago
parent
commit
ca0d4e1090
  1. 7
      be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application/Notes/CustomerProductionReturnNotes/CustomerProductionReturnNoteAppService.cs

7
be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application/Notes/CustomerProductionReturnNotes/CustomerProductionReturnNoteAppService.cs

@ -59,19 +59,12 @@ public class CustomerProductionReturnNoteAppService :
[HttpGet("{id}")] [HttpGet("{id}")]
public override async Task<CustomerProductionReturnNoteDTO> GetAsync(Guid id) public override async Task<CustomerProductionReturnNoteDTO> GetAsync(Guid id)
{ {
var entity=await base.GetAsync(id).ConfigureAwait(false); var entity=await base.GetAsync(id).ConfigureAwait(false);
foreach (var itm in entity.Details) foreach (var itm in entity.Details)
{ {
itm.CustomerCode=entity.CustomerCode; itm.CustomerCode=entity.CustomerCode;
itm.CustomerName=entity.CustomerName; itm.CustomerName=entity.CustomerName;
} }
return entity; return entity;
} }

Loading…
Cancel
Save