public async Task <VendaDTOUpdateReturn> Put(VendaDTOUpdate venda) { try { var model = _mapper.Map <VendaModel>(venda); var entity = _mapper.Map <Venda>(model); entity.Controles.ToList().ForEach(x => x.Venda = entity); entity.Controles.ToList().ForEach(x => x.Ativo = 'A'); entity.Controles.ToList().ForEach(x => x.Datadeinclusao = DateTime.UtcNow); entity.Controles.ToList().ForEach(x => x.Usuariodeinclusao = _currentUserAccessor.GetCurrentUser().Idusuario); entity.Controles.ToList().ForEach(x => x.Fkparceiro = _currentUserAccessor.GetCurrentUser().Idparceiro); var _itemCadastrado = await _repository.SelectAsync(entity.Idvenda); foreach (Controle controle in _itemCadastrado.Controles) { if (entity.Controles.FirstOrDefault(x => x.Idcontrole == controle.Idcontrole) == null) { controle.Ativo = 'I'; controle.Datadeinativacao = DateTime.UtcNow; controle.Usuariodeinativacao = _currentUserAccessor.GetCurrentUser().Idusuario; entity.Controles.Add(controle); } } foreach (Controle controle in entity.Controles) { var _itemFilhoCadastrado = _itemCadastrado.Controles.FirstOrDefault(x => x.Idcontrole == controle.Idcontrole); if (_itemFilhoCadastrado != null) { controle.Usuariodeinclusao = _itemFilhoCadastrado.Usuariodeinclusao; controle.Datadeinclusao = _itemFilhoCadastrado.Datadeinclusao; } } var result = await _repository.UpdateAsync(entity, entity.Idvenda); var retornodeAlteracao = await _repository.SelectAsync(entity.Idvenda); return(_mapper.Map <VendaDTOUpdateReturn>(retornodeAlteracao)); } catch (Exception ex) { throw ex; } }
public async Task <ActionResult> Put([FromBody] VendaDTOUpdate venda) { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } try { var result = await _service.Put(venda); if (result != null) { return(Ok(await _service.Get(result.Idvenda))); } else { return(BadRequest()); } } catch (ArgumentException ex) { return(StatusCode((int)HttpStatusCode.InternalServerError, ex.Message)); } }