Browse Source

修改 PDA返回值

Agv分支2024-11-19
郑勃旭 4 months ago
parent
commit
c3ec1e13b5
  1. 4
      be/Hosts/WmsPda.Host/Win_in.Sfs.Wms.Pda.Host/Controllers/Stores/OperationPacking/ContainerRequestController.cs
  2. 4
      be/Hosts/WmsPda.Host/Win_in.Sfs.Wms.Pda.Host/Controllers/Stores/OperationPacking/SeparationPackingNoteController.cs

4
be/Hosts/WmsPda.Host/Win_in.Sfs.Wms.Pda.Host/Controllers/Stores/OperationPacking/ContainerRequestController.cs

@ -29,8 +29,8 @@ public class IntegrationPackingNoteController : AbpController
/// </summary>
/// <param name="input"></param>
[HttpPost("")]
public virtual async Task CreateAsync(IntegrationPackingNoteEditInput input)
public virtual async Task<IntegrationPackingNoteDTO> CreateAsync(IntegrationPackingNoteEditInput input)
{
await _integrationPackingNoteAppService.CreateAsync(input).ConfigureAwait(false);
return await _integrationPackingNoteAppService.CreateAsync(input).ConfigureAwait(false);
}
}

4
be/Hosts/WmsPda.Host/Win_in.Sfs.Wms.Pda.Host/Controllers/Stores/OperationPacking/SeparationPackingNoteController.cs

@ -29,9 +29,9 @@ public class SeparationPackingNoteController : AbpController
/// </summary>
/// <param name="input"></param>
[HttpPost("")]
public virtual async Task CreateAsync(SeparationPackingNoteEditInput input)
public virtual async Task<SeparationPackingNoteDTO> CreateAsync(SeparationPackingNoteEditInput input)
{
await _separationPackingNoteAppService.CreateAsync(input).ConfigureAwait(false);
return await _separationPackingNoteAppService.CreateAsync(input).ConfigureAwait(false);
}
}

Loading…
Cancel
Save