示例#1
0
        public ActionResult medicineSupplierList(string keyword, tbl_MedicineSupplierProfile medicineSupplier)
        {
            var results   = (from item in db.tbl_MedicineSupplierProfile where item.tbl_MedicineSupplierInfo.MediSupplyerName.Contains(keyword) select item).ToList();
            var pageIndex = medicineSupplier.Page ?? 1;

            medicineSupplier.MedicinesupplierProfileListResults = results.ToPagedList(pageIndex, RecordsPerPage);
            return(View(medicineSupplier));
        }
示例#2
0
        public JsonResult MedicinesupplierProfileDelete(int id = 0)
        {
            tbl_MedicineSupplierProfile advance = db.tbl_MedicineSupplierProfile.Where(m => m.SupplierProfileID == id).FirstOrDefault();

            db.tbl_MedicineSupplierProfile.Remove(advance);
            db.SaveChanges();

            return(Json(true, JsonRequestBehavior.AllowGet));
        }
示例#3
0
        public ActionResult medicineSupplierList(tbl_MedicineSupplierProfile medicineSupplier)
        {
            var results = (from item in db.tbl_MedicineSupplierProfile
                           select item).ToList().OrderBy(m => m.SupplierProfileID);
            var pageIndex = medicineSupplier.Page ?? 1;

            medicineSupplier.MedicinesupplierProfileListResults = results.ToPagedList(pageIndex, RecordsPerPage);
            return(View(medicineSupplier));

            //return View(db.MedicineSupplierProfiles.ToList());
        }
示例#4
0
        public ActionResult medicineSupplierProfileUpdate(int id = 0)
        {
            medicineSupplierProfileId = id;
            tbl_MedicineSupplierProfile bc = db.tbl_MedicineSupplierProfile.FirstOrDefault(m => m.SupplierProfileID == medicineSupplierProfileId);

            if (bc == null)
            {
                return(HttpNotFound());
            }
            ViewBag.MediSupplyerID       = new SelectList(db.tbl_MedicineSupplierInfo, "MediSupplyerID", "MediSupplyerName");
            ViewBag.GetVoucherNo         = bc.VoucherNo;
            ViewBag.GetTotalAmount       = bc.TotalAmount;
            ViewBag.GetPayAmount         = bc.PayAmount;
            ViewBag.GetDueAmount         = bc.DueAmount;
            ViewBag.GetDueAmountBack     = bc.DueAmountBack;
            ViewBag.GetDueAmountBackDate = bc.DueAmountBackDate;
            ViewBag.GetGrandTotalAmount  = bc.GrandTotalAmount;
            return(View(bc));
        }
示例#5
0
        public ActionResult medicineSupplierProfileUpdate(tbl_MedicineSupplierProfile bc, int id = 0)
        {
            tbl_MedicineSupplierProfile bc1 = db.tbl_MedicineSupplierProfile.FirstOrDefault(m => m.SupplierProfileID == medicineSupplierProfileId);

            bc1.MediSupplyerID    = bc.MediSupplyerID;
            bc1.VoucherNo         = bc.VoucherNo;
            bc1.TotalAmount       = bc.TotalAmount;
            bc1.PayAmount         = bc.PayAmount;
            bc1.DueAmount         = bc.DueAmount;
            bc1.DueAmountBack     = bc.DueAmountBack;
            bc1.DueAmountBackDate = bc.DueAmountBackDate;
            bc1.GrandTotalAmount  = bc.GrandTotalAmount;
            if (bc1 == null)
            {
                return(HttpNotFound());
            }
            db.SaveChanges();
            ViewBag.MediSupplyerID = new SelectList(db.tbl_MedicineSupplierInfo, "MediSupplyerID", "MediSupplyerName");
            return(View(bc1));
        }
示例#6
0
 public ActionResult addMedicineSuplierProfile(tbl_MedicineSupplierProfile mSupplierProfile)
 {
     if (ModelState.IsValid)
     {
         string userid       = "";
         string userSettings = "";
         if (Request.Cookies["UserSettings"] != null)
         {
             if (Request.Cookies["UserSettings"]["UserName"] != null)
             {
                 userSettings = Request.Cookies["UserSettings"]["UserName"]; userid = Request.Cookies["UserSettings"]["UserId"];
             }
         }
         mSupplierProfile.EntryDate = DateTime.Today;
         mSupplierProfile.UserID    = Convert.ToInt32(userid);
         db.tbl_MedicineSupplierProfile.Add(mSupplierProfile);
         db.SaveChanges();
         return(RedirectToAction("medicineSupplierList"));
     }
     ViewBag.MediSupplyerID = new SelectList(db.tbl_MedicineSupplierInfo, "MediSupplyerID", "MediSupplyerName");
     ViewBag.UserID         = new SelectList(db.tbl_UserInfo, "UserInfoID", "UserName");
     return(View(mSupplierProfile));
 }