|
|
@ -216,19 +216,19 @@ public class MaterialRequestAppService : SfsStoreRequestAppServiceBase<MaterialR |
|
|
|
detailInput.ItemDesc1 = itemBasicDto.Desc1; |
|
|
|
if(detailInput.PositionCode.Contains('W')) |
|
|
|
{ |
|
|
|
detailInput.RecommendType = "W"; |
|
|
|
detailInput.RecommendType = EnumRecommendType.W; |
|
|
|
} |
|
|
|
else if(detailInput.PositionCode.Contains('Q')) |
|
|
|
{ |
|
|
|
detailInput.RecommendType = "Q"; |
|
|
|
detailInput.RecommendType = EnumRecommendType.Q; |
|
|
|
} |
|
|
|
else if(detailInput.PositionCode.Contains('K')) |
|
|
|
{ |
|
|
|
detailInput.RecommendType = "K"; |
|
|
|
detailInput.RecommendType = EnumRecommendType.K; |
|
|
|
} |
|
|
|
else |
|
|
|
{ |
|
|
|
detailInput.RecommendType = "None"; |
|
|
|
detailInput.RecommendType = EnumRecommendType.None; |
|
|
|
} |
|
|
|
|
|
|
|
var productionLineDto = await _productionLineAppService.GetByLocationGroupCodeAsync(toLocationDto.LocationGroupCode).ConfigureAwait(false); |
|
|
|