public int ActualizarContratoCompra(RegistrarActualizarContratoCompraRequestDTO request, IFormFile file) { ContratoCompra ContratoCompra = _Mapper.Map <ContratoCompra>(request); var AdjuntoBl = new AdjuntarArchivosBL(_fileServerSettings); byte[] fileBytes = null; if (file != null) { if (file.Length > 0) { using (var ms = new MemoryStream()) { file.CopyTo(ms); fileBytes = ms.ToArray(); string s = Convert.ToBase64String(fileBytes); // act on the Base64 data } ContratoCompra.NombreArchivo = file.FileName; ResponseAdjuntarArchivoDTO response = AdjuntoBl.AgregarArchivo(new RequestAdjuntarArchivosDTO() { filtros = new AdjuntarArchivosDTO() { archivoStream = fileBytes, filename = file.FileName, }, pathFile = _fileServerSettings.Value.ContratoCompra }); ContratoCompra.PathArchivo = _fileServerSettings.Value.ContratoCompra + "\\" + response.ficheroReal; } } ContratoCompra.FechaUltimaActualizacion = DateTime.Now; ContratoCompra.UsuarioUltimaActualizacion = request.Usuario; ////Adjuntos //if (file != null) //{ // if (file.Length > 0) // { // ContratoCompra.NombreArchivo = file.FileName; // ResponseAdjuntarArchivoDTO response = AdjuntoBl.AgregarArchivo(new RequestAdjuntarArchivosDTO() // { // filtros = new AdjuntarArchivosDTO() // { // archivoStream = fileBytes, // filename = file.FileName, // }, // pathFile = _fileServerSettings.Value.FincasCertificacion // }); // ContratoCompra.PathArchivo = _fileServerSettings.Value.FincasCertificacion + "\\" + response.ficheroReal; // } //} int affected = _IContratoCompraRepository.Actualizar(ContratoCompra); return(affected); }
public int RegistrarContratoCompra(RegistrarActualizarContratoCompraRequestDTO request, IFormFile file) { ContratoCompra ContratoCompra = _Mapper.Map <ContratoCompra>(request); ContratoCompra.FechaRegistro = DateTime.Now; //ContratoCompra.NombreArchivo = file.FileName; ContratoCompra.UsuarioRegistro = request.Usuario; //ContratoCompra.Numero = _ICorrelativoRepository.Obtener(null, Documentos.ContratoCompra); var AdjuntoBl = new AdjuntarArchivosBL(_fileServerSettings); byte[] fileBytes = null; if (file != null) { if (file.Length > 0) { using (var ms = new MemoryStream()) { file.CopyTo(ms); fileBytes = ms.ToArray(); string s = Convert.ToBase64String(fileBytes); // act on the Base64 data } ContratoCompra.NombreArchivo = file.FileName; //Adjuntos ResponseAdjuntarArchivoDTO response = AdjuntoBl.AgregarArchivo(new RequestAdjuntarArchivosDTO() { filtros = new AdjuntarArchivosDTO() { archivoStream = fileBytes, filename = file.FileName, }, pathFile = _fileServerSettings.Value.ContratoCompra }); ContratoCompra.PathArchivo = _fileServerSettings.Value.ContratoCompra + "\\" + response.ficheroReal; } } //if (file != null) //{ // if (file.Length > 0) // { // //Adjuntos // ResponseAdjuntarArchivoDTO response = AdjuntoBl.AgregarArchivo(new RequestAdjuntarArchivosDTO() // { // filtros = new AdjuntarArchivosDTO() // { // archivoStream = fileBytes, // filename = file.FileName, // }, // pathFile = _fileServerSettings.Value.FincasCertificacion // }); // ContratoCompra.PathArchivo = _fileServerSettings.Value.FincasCertificacion + "\\" + response.ficheroReal; // } //} Empresa empresa = _IEmpresaRepository.ObtenerEmpresaPorId(request.EmpresaId); //if(empresa.TipoEmpresaid != "01") //{ // ContratoCompra.EstadoId = ContratoEstados.Completado; //} int cantidadContratoComprasExistentes = _IContratoCompraRepository.ValidadContratoCompraExistente(request.EmpresaId, request.Numero); if (cantidadContratoComprasExistentes > 0) { throw new ResultException(new Result { ErrCode = "02", Message = "Comercial.ContratoCompra.ValidacionContratoCompraExistente.Label" }); } int affected = _IContratoCompraRepository.Insertar(ContratoCompra); return(affected); }