郑勃旭 2 years ago
parent
commit
eafc7fb974
  1. 1
      be/Modules/Label/src/Win_in.Sfs.Label.Application/InventoryLabels/InventoryLabelAppService.cs

1
be/Modules/Label/src/Win_in.Sfs.Label.Application/InventoryLabels/InventoryLabelAppService.cs

@ -112,6 +112,7 @@ public class InventoryLabelAppService
var createInput = ObjectMapper.Map<InventoryLabelWithoutCodeCreateInput, InventoryLabelEditInput>(input); var createInput = ObjectMapper.Map<InventoryLabelWithoutCodeCreateInput, InventoryLabelEditInput>(input);
createInput.Code = numbers[i]; createInput.Code = numbers[i];
var dto = await base.CreateAsync(createInput).ConfigureAwait(false); var dto = await base.CreateAsync(createInput).ConfigureAwait(false);
dto.FullBarcodeString = dto.Code;
dtos.Add(dto); dtos.Add(dto);
} }
return dtos; return dtos;

Loading…
Cancel
Save