From 8b72465d6e5cc5113f6f0c3106620305900c7efc Mon Sep 17 00:00:00 2001 From: mahao Date: Sat, 15 Apr 2023 10:10:41 +0800 Subject: [PATCH] =?UTF-8?q?generate-and-create/many/{count}=20=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3=20fullBarcodeString=20=E8=BF=99=E4=B8=AA=E5=AD=97?= =?UTF-8?q?=E6=AE=B5=E8=B5=8B=E5=80=BC=E4=B8=BA=20code?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../InventoryLabels/InventoryLabelAppService.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/be/Modules/Label/src/Win_in.Sfs.Label.Application/InventoryLabels/InventoryLabelAppService.cs b/be/Modules/Label/src/Win_in.Sfs.Label.Application/InventoryLabels/InventoryLabelAppService.cs index 76770e7eb..e4b830cf7 100644 --- a/be/Modules/Label/src/Win_in.Sfs.Label.Application/InventoryLabels/InventoryLabelAppService.cs +++ b/be/Modules/Label/src/Win_in.Sfs.Label.Application/InventoryLabels/InventoryLabelAppService.cs @@ -112,6 +112,7 @@ public class InventoryLabelAppService var createInput = ObjectMapper.Map(input); createInput.Code = numbers[i]; var dto = await base.CreateAsync(createInput).ConfigureAwait(false); + dto.FullBarcodeString = dto.Code; dtos.Add(dto); } return dtos;