public ActionResult Create(M_Nota_Credito_Compra MNCC)
        {
            //Obteniendo el valor del Master
            int Maestro = Convert.ToInt16(Session["M_C"]);
            m_compra MC = db.m_compra.Where(p => p.id == Maestro).Single();
            nota_credito_compra NCC = new nota_credito_compra();
            NCC.plazo = Convert.ToDateTime(MNCC.plazo);
            NCC.fecha_extendido = Convert.ToDateTime(MC.fecha_compra);
            NCC.M_COMPRA_id = MC.id;
            NCC.estado = true;

            db.nota_credito_compra.Add(NCC);
            db.SaveChanges();

            Session["M_C"] = null;
            return RedirectToAction("Index");
        }
Exemple #2
0
        public ActionResult Create(M_Nota_Credito_Compra MNCC)
        {
            //Obteniendo el valor del Master
            int                 Maestro = Convert.ToInt16(Session["M_C"]);
            m_compra            MC      = db.m_compra.Where(p => p.id == Maestro).Single();
            nota_credito_compra NCC     = new nota_credito_compra();

            NCC.plazo           = Convert.ToDateTime(MNCC.plazo);
            NCC.fecha_extendido = Convert.ToDateTime(MC.fecha_compra);
            NCC.M_COMPRA_id     = MC.id;
            NCC.estado          = true;

            db.nota_credito_compra.Add(NCC);
            db.SaveChanges();

            Session["M_C"] = null;
            return(RedirectToAction("Index"));
        }
 //
 // GET: /NotaCreditoCompra/Create
 public ActionResult Create()
 {
     int rol = Convert.ToInt16(Session["Rol_id"]);
     bool Validacion = SEG.ValidarAcceso(rol, "NotaCreditoCompra", "Create");
     if (Validacion)
     {
         //Obteniendo el valor del Master Compra
         int Maestro = Convert.ToInt16(Session["M_C"]);
         m_compra MC = db.m_compra.Where(p => p.id == Maestro).Single();
         M_Nota_Credito_Compra MNCC = new M_Nota_Credito_Compra();
         MNCC.MC = MC;
         return View(MNCC);
     }
     else
     {
         return RedirectToAction("Error");
     }
 }
Exemple #4
0
        //
        // GET: /NotaCreditoCompra/Create
        public ActionResult Create()
        {
            int  rol        = Convert.ToInt16(Session["Rol_id"]);
            bool Validacion = SEG.ValidarAcceso(rol, "NotaCreditoCompra", "Create");

            if (Validacion)
            {
                //Obteniendo el valor del Master Compra
                int      Maestro           = Convert.ToInt16(Session["M_C"]);
                m_compra MC                = db.m_compra.Where(p => p.id == Maestro).Single();
                M_Nota_Credito_Compra MNCC = new M_Nota_Credito_Compra();
                MNCC.MC = MC;
                return(View(MNCC));
            }
            else
            {
                return(RedirectToAction("Error"));
            }
        }