From c3ec1e13b513abf9fc12925d3b2553b66dae21be Mon Sep 17 00:00:00 2001 From: "boxu.zheng" Date: Fri, 3 Jan 2025 14:29:38 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=20PDA=E8=BF=94=E5=9B=9E?= =?UTF-8?q?=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Stores/OperationPacking/ContainerRequestController.cs | 4 ++-- .../OperationPacking/SeparationPackingNoteController.cs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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); } }