public IHttpActionResult GetProductoForDetalleByCodigo([FromBody] LoginViewModel vm) { if (vm.Nombre.Length > 0) { bool userLogued = (!String.IsNullOrEmpty(vm.Email)) ? true : false; string codLista = string.Empty; if (userLogued) { MaestroClientes mc = new MaestroClientes(); ClienteDTO cl = mc.GetCliente(vm.Email); codLista = cl.CodLista; } else { MaestroParametros mp = new MaestroParametros(); ParametrosDTO param = mp.GetParametro("ListaPreciosDefecto"); codLista = param.Valor; } MaestroProductos m = new MaestroProductos(); ProductoDetalleDTO coll = m.GetProductoForDetalleByCodigo(vm.Nombre, codLista); return(Ok(coll)); } return(BadRequest("Entrada Invalida")); }
public IHttpActionResult GetClientFromSoftland([FromBody] LoginViewModel model) { MaestroClientes m = new MaestroClientes(); List <ClienteSoftlandDTO> clients = m.GetClientFromSoftland(model.Nombre); return(Ok(clients)); }
public IHttpActionResult GetClientByEmail([FromBody] LoginViewModel model) { MaestroClientes m = new MaestroClientes(); ClienteDTO client = m.GetCliente(model.Email); return(Ok(client)); }
public IHttpActionResult GetClientByRut([FromBody] LoginViewModel model) { MaestroClientes m = new MaestroClientes(); ClienteDTO client = m.GetClienteByRut(model.Nombre); return(Ok(client)); }
public IHttpActionResult GetProducto([FromBody] LoginViewModel model) { LoginViewModel aux = new LoginViewModel(); MaestroClientes m = new MaestroClientes(); ClienteDTO client = m.GetCliente(model.Email); aux.Email = model.Email; aux.Clave = model.Clave; aux.Nombre = string.Empty; if (client != null && client.Email != null) { aux.Nombre = client.NomAux; if (client.Clave == HashCode(model.Clave)) { aux.Msg = "OK"; } else { aux.Msg = "Contraseña no coincide"; } } else { aux.Msg = "Email no se encuentra registado"; } return(Ok(aux)); }
public IHttpActionResult Get(string email) { MaestroClientes m = new MaestroClientes(); ClienteDTO categorias = m.GetCliente(email); return(Ok(categorias)); }
public IHttpActionResult GetProductsFromSearchWithFilter([FromBody] FIlterViewModel model) { if (model.filterValue.Length > 0) { bool userLogued = (!String.IsNullOrEmpty(model.Email)) ? true : false; string codLista = string.Empty; if (userLogued) { MaestroClientes mc = new MaestroClientes(); ClienteDTO cl = mc.GetCliente(model.Email); codLista = cl.CodLista; } else { MaestroParametros mp = new MaestroParametros(); ParametrosDTO param = mp.GetParametro("ListaPreciosDefecto"); codLista = param.Valor; } MaestroProductos m = new MaestroProductos(); if (model.filterValue == "categoriasAllSearch") { model.filterValue = string.Empty; } string filters = string.Empty; foreach (CategoriasDTO row in model.Categorias) { if (String.IsNullOrEmpty(filters)) { filters = "'" + row.CodGrupo + "'"; } else { filters = filters + ", " + "'" + row.CodGrupo + "'"; } } List <ProductosDTO> aux = m.GetAllOneImageSearchWithFilter(model.filterValue, filters, codLista); if (model.OrderBy == 2) { aux = aux.OrderBy(pet => pet.PrecioVta).ToList(); } else if (model.OrderBy == 3) { aux = aux.OrderByDescending(x => x.PrecioVta).ToList(); } return(Ok(aux)); } return(BadRequest("Entrada Invalida")); }
public IHttpActionResult Post([FromBody] ClienteDTO value) { if (ModelState.IsValid) { value.Clave = HashCode(value.Clave); MaestroClientes mv = new MaestroClientes(); ResponseInfo response = mv.Save(value); if (response.Success) { return(Ok(value)); } return(BadRequest(response.Message)); } return(BadRequest("Entrada Invalida")); }
public IHttpActionResult UpdatePassword([FromBody] LoginViewModel model) { MaestroClientes m = new MaestroClientes(); ResponseInfo response = m.UpdatePassword(HashCode(model.Clave), model.Email); if (response.Success) { return(Ok(model)); } else { BadRequest(); } return(Ok(model)); }
public IHttpActionResult GetTemporalPasswordToUpdate([FromBody] LoginViewModel model) { if (model.Email != null && model.Email != "") { MaestroClientes m = new MaestroClientes(); ClienteDTO cliente = m.GetClienteByRut(model.Msg); DateTime dt = DateTime.Now; string newPass = cliente.CodAux.ToString() + dt.Year.ToString() + dt.Month.ToString() + dt.Day.ToString() + dt.Minute.ToString(); cliente.Clave = HashCode(newPass); m.UpdatePassword(cliente.Clave, model.Email); model.Clave = newPass; } return(Ok(model)); }
public IHttpActionResult GetAllOneImage([FromBody] LoginViewModel user) { bool userLogued = (!String.IsNullOrEmpty(user.Email)) ? true : false; string codLista = string.Empty; if (userLogued) { MaestroClientes mc = new MaestroClientes(); ClienteDTO cl = mc.GetCliente(user.Email); codLista = cl.CodLista; } else { MaestroParametros mp = new MaestroParametros(); ParametrosDTO param = mp.GetParametro("ListaPreciosDefecto"); codLista = param.Valor; } MaestroProductos m = new MaestroProductos(); List <ProductosDTO> productos = m.GetAllOneImage(codLista); return(Ok(productos)); }
public double CreaNotaVentaSofltand(int IdVenta) { double nventa = 0; try { //obtiene valor iva int iva = 19; MaestroParametros mpa = new MaestroParametros(); ParametrosDTO param = mpa.GetParametro("Iva"); if (param.Valor != null) { iva = Convert.ToInt32(param.Valor); } //Nota de Venta MaestroVentas m = new DAL.MaestroVentas(); VentaDTO vc = m.GetVentaById(IdVenta); List <VentaDetalleDTO> vd = m.GetDetallesVenta(IdVenta); MaestroClientes mc = new MaestroClientes(); ClienteDTO cliente = mc.GetClienteByRut(vc.RutCliente); MaestroCondicionVentaTipoPago cvtp = new MaestroCondicionVentaTipoPago(); List <CondicionVentaTipoPagoDTO> pago = cvtp.GetAllByCondVta(vc.CodCondVta); CondicionVentaTipoPagoDTO pagoFinal = pago.Where(x => x.IdTipoPago == vc.IdTipoPago).FirstOrDefault(); string tipoPagoDescripcion = ""; try { tipoPagoDescripcion = pagoFinal.Descripcion; } catch { } string[] CodAuxs = vc.RutCliente.Replace(".", "").Split('-'); string CodAux = CodAuxs[0].ToString().Trim(); decimal descuento = 0; decimal subtotal = 0; decimal monto = 0; int index = 1; ProductosDTO prod = new ProductosDTO(); MaestroProductos mp = new MaestroProductos(); NotaVentaDetalleDTO n = new NotaVentaDetalleDTO(); List <NotaVentaDetalleDTO> nvd = new List <NotaVentaDetalleDTO>(); foreach (VentaDetalleDTO item in vd) { monto = monto + item.Total; descuento = descuento + item.Descuento; subtotal = subtotal + item.SubTotal; prod = mp.GetProductoByCodigo(item.CodProducto); //remuevo el iva del precio decimal vIva = (item.Precio / Convert.ToDecimal(1.19)); item.Precio = vIva; n = new NotaVentaDetalleDTO { NVNumero = "", nvLinea = index, nvCorrela = 0, nvFecCompr = DateTime.Now, CodProd = item.CodProducto, nvCant = item.Cantidad, nvPrecio = item.Precio, //sin iva nvEquiv = 1, nvSubTotal = item.Precio * item.Cantidad, //sin iva nvTotLinea = item.Precio * item.Cantidad, //sin iva nvCantDesp = 0, nvCantProd = 0, nvCantFact = 0, nvCantDevuelto = 0, nvCantNC = 0, nvCantBoleta = 0, nvCantOC = 0, DetProd = prod.DesProd, CheckeoMovporAlarmaVtas = "N", CodPromocion = "", CodUMed = prod.CodUmed, CantUVta = prod.Cantidad }; nvd.Add(n); index = index + 1; } //Genera nota de venta NotaVentaDTO nvta = new NotaVentaDTO(); nvta.Detalles = nvd; nvta.Cabecera = new NotaVentaCabeceraDTO { RutCliente = vc.RutCliente, NVNumero = "", nvFem = DateTime.Now, nvEstado = "A", nvEstFact = 0, nvEstDesp = 0, nvEstRese = 0, nvEstConc = 0, CotNum = 0, NumOC = 0, nvFeEnt = DateTime.Now, CodAux = CodAux, VenCod = vc.CodVendedor, CodMon = "01", CodLista = cliente.CodLista, nvObser = tipoPagoDescripcion, nvCanalNV = "", CveCod = "EFE", NomCon = cliente.Contacto, CodiCC = "", CodBode = "", nvSubTotal = subtotal, //sin iva nvMonto = monto, //con iva nvFeAprob = DateTime.Now, NumGuiaRes = 0, nvPorcFlete = 0, nvValflete = 0, nvPorcEmb = 0, nvValEmb = 0, nvEquiv = 1, nvNetoExento = 0, nvNetoAfecto = subtotal, nvTotalDesc = descuento, ConcAuto = "N", CheckeoPorAlarmaVtas = "N", EnMantencion = 0, Usuario = "", UsuarioGeneraDocto = "softland", FechaHoraCreacion = DateTime.Now, Sistema = "NW", ConcManual = "N", RutSolicitante = "", proceso = "Nota de Venta", TotalBoleta = 0, NumReq = 0, CodLugarDesp = "" }; MaestroMetodosSoftland ms = new MaestroMetodosSoftland(); double NumNtaVenta = ms.SaveNotaVentaSoftland(nvta); nventa = NumNtaVenta; m.ActualizaNotaVenta_Venta(NumNtaVenta, IdVenta); try { //Despacho MaestroTipoDespacho mtd = new MaestroTipoDespacho(); VentaDespachoDTO vDes = m.GetDespachoVenta(IdVenta); TipoDespachoDTO td = mtd.GetById(vDes.IdTipoDespacho); DespachoSotlandDTO despacho = new DespachoSotlandDTO { CodAxD = nvta.Cabecera.CodAux, NomDch = NumNtaVenta.ToString(), DirDch = vDes.Direccion, ComDch = vDes.ComCod, CiuDch = vDes.CiuCom, PaiDch = "CL", Fon1Dch = vDes.Telefono, AteDch = td.Nombre, RegionDch = vDes.IdRegion, Usuario = "Web", Proceso = "IW_FACLIN", FechaUlMod = DateTime.Now }; ResponseInfo responseDespacho = ms.SaveDespachoSoftland(despacho); } catch { } } catch (Exception ex) { return(0); } return(nventa); }