|
@ -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; |
|
|