diff --git a/be/Hosts/WmsPda.Host/Win_in.Sfs.Wms.Pda.Host/Controllers/Stores/OperationPacking/ContainerRequestController.cs b/be/Hosts/WmsPda.Host/Win_in.Sfs.Wms.Pda.Host/Controllers/Stores/OperationPacking/ContainerRequestController.cs index 4f6c78d48..463c47879 100644 --- a/be/Hosts/WmsPda.Host/Win_in.Sfs.Wms.Pda.Host/Controllers/Stores/OperationPacking/ContainerRequestController.cs +++ b/be/Hosts/WmsPda.Host/Win_in.Sfs.Wms.Pda.Host/Controllers/Stores/OperationPacking/ContainerRequestController.cs @@ -29,8 +29,8 @@ public class IntegrationPackingNoteController : AbpController /// /// [HttpPost("")] - public virtual async Task CreateAsync(IntegrationPackingNoteEditInput input) + public virtual async Task CreateAsync(IntegrationPackingNoteEditInput input) { - await _integrationPackingNoteAppService.CreateAsync(input).ConfigureAwait(false); + return await _integrationPackingNoteAppService.CreateAsync(input).ConfigureAwait(false); } } diff --git a/be/Hosts/WmsPda.Host/Win_in.Sfs.Wms.Pda.Host/Controllers/Stores/OperationPacking/SeparationPackingNoteController.cs b/be/Hosts/WmsPda.Host/Win_in.Sfs.Wms.Pda.Host/Controllers/Stores/OperationPacking/SeparationPackingNoteController.cs index 491ed304d..ffff90ece 100644 --- a/be/Hosts/WmsPda.Host/Win_in.Sfs.Wms.Pda.Host/Controllers/Stores/OperationPacking/SeparationPackingNoteController.cs +++ b/be/Hosts/WmsPda.Host/Win_in.Sfs.Wms.Pda.Host/Controllers/Stores/OperationPacking/SeparationPackingNoteController.cs @@ -29,9 +29,9 @@ public class SeparationPackingNoteController : AbpController /// /// [HttpPost("")] - public virtual async Task CreateAsync(SeparationPackingNoteEditInput input) + public virtual async Task CreateAsync(SeparationPackingNoteEditInput input) { - await _separationPackingNoteAppService.CreateAsync(input).ConfigureAwait(false); + return await _separationPackingNoteAppService.CreateAsync(input).ConfigureAwait(false); } }