public ActionResult Consultar(int IdEmpresa = 0, int IdMotivo_Inv = 0, bool Exito = false) { in_Motivo_Inven_Info model = bus_motivo.get_info(IdEmpresa, IdMotivo_Inv); if (model == null) { return(RedirectToAction("Index")); } #region Permisos seg_Menu_x_Empresa_x_Usuario_Info info = bus_permisos.get_list_menu_accion(Convert.ToInt32(SessionFixed.IdEmpresa), SessionFixed.IdUsuario, "Inventario", "MotivoInventario", "Index"); if (model.estado == "I") { info.Modificar = false; info.Anular = false; } model.Nuevo = (info.Nuevo == true ? 1 : 0); model.Modificar = (info.Modificar == true ? 1 : 0); model.Anular = (info.Anular == true ? 1 : 0); #endregion cargar_combos(); if (Exito) { ViewBag.MensajeSuccess = MensajeSuccess; } return(View(model)); }
public ActionResult Modificar(int IdEmpresa = 0, int IdMotivo_Inv = 0) { in_Motivo_Inven_Info model = bus_motivo.get_info(IdEmpresa, IdMotivo_Inv); if (model == null) { return(RedirectToAction("Index")); } cargar_combos(); return(View(model)); }
public void AddRow(in_Ing_Egr_Inven_det_Info info_det, decimal IdTransaccionSession) { List <in_Ing_Egr_Inven_det_Info> list = get_list(IdTransaccionSession); info_det.Secuencia = list.Count == 0 ? 1 : list.Max(q => q.Secuencia) + 1; info_det.IdProducto = info_det.IdProducto; info_det.IdUnidadMedida = info_det.IdUnidadMedida; info_det.IdMotivo_Inv_det = info_det.IdMotivo_Inv_det; info_det.mv_costo_sinConversion = info_det.mv_costo_sinConversion; info_det.dm_cantidad_sinConversion = info_det.dm_cantidad_sinConversion; #region Centro de costo if (string.IsNullOrEmpty(info_det.IdCentroCosto)) { info_det.cc_Descripcion = string.Empty; } else { var cc = bus_cc.get_info(Convert.ToInt32(SessionFixed.IdEmpresa), info_det.IdCentroCosto); if (cc != null) { info_det.cc_Descripcion = cc.cc_Descripcion; } } #endregion #region Motivo if (info_det.IdMotivo_Inv_det == 0) { info_det.Desc_mov_inv = string.Empty; } else { var motivo = bus_motivo.get_info(Convert.ToInt32(SessionFixed.IdEmpresa), info_det.IdMotivo_Inv_det); if (motivo != null) { info_det.Desc_mov_inv = motivo.Desc_mov_inv; } } #endregion list.Add(info_det); }