示例#1
0
        public ActionResult Addalbum(Album obj, HttpPostedFileBase file)
        {
            AlbumDAO dao = new AlbumDAO();

            if (file != null && file.ContentLength > 0)
            {
                string fileName = Path.GetFileNameWithoutExtension(file.FileName);
                fileName += "_" + obj.IdAlbum;
                fileName += Path.GetExtension(file.FileName);

                string folderPath  = Server.MapPath("~") + @"\Assets\images\ImagesOutSource\ImagesSong";
                string folderPath2 = Server.MapPath("~") + @"\Assets\images\ImagesOutSource\Album";

                if (!Directory.Exists(folderPath))
                {
                    Directory.CreateDirectory(folderPath);
                }

                string path  = Path.Combine(folderPath, fileName);
                string path2 = Path.Combine(folderPath2, fileName);

                file.SaveAs(path);
                file.SaveAs(path2);
                obj.AnhAlbum = fileName;
                int id = dao.Addalbum(obj);
                if (id != -1)
                {
                    return(RedirectToAction("Index", "Album"));
                }
                else
                {
                    ViewBag.Message("Them moi khong thanh cong");
                    return(RedirectToAction("Addalbum", "Album"));
                }
            }
            else
            {
                ModelState.AddModelError("", "Bạn phải nhập vào trường này");
            }
            NgheSiDAO nsDAO = new NgheSiDAO();
            var       ns    = nsDAO.Listof();
            KhuVucDAO kvDAO = new KhuVucDAO();
            var       kv    = kvDAO.ListOf();

            ViewBag.ns = ns;
            ViewBag.kv = kv;
            return(View());
        }
示例#2
0
 public static List <KhuVucDTO> LayDanhSachKhuVuc(int maNhaHang)
 {
     return(KhuVucDAO.LayDanhSachKhuVuc(maNhaHang));
 }
示例#3
0
 public KhuVucBUS()
 {
     khuVucDAO = new KhuVucDAO();
 }
示例#4
0
        public ActionResult AddNew(Video obj, HttpPostedFileBase videofile, HttpPostedFileBase file)
        {
            try
            {
                if (videofile != null && videofile.ContentLength > 0 && file.ContentLength > 0)
                {
                    string fileName = Path.GetFileNameWithoutExtension(videofile.FileName);
                    fileName += "_" + obj.IdVideo;
                    fileName += Path.GetExtension(videofile.FileName);

                    string folderPath = Server.MapPath("~") + @"\VideoDowLoad";

                    if (!Directory.Exists(folderPath))
                    {
                        Directory.CreateDirectory(folderPath);
                    }

                    string path = Path.Combine(folderPath, fileName);

                    videofile.SaveAs(path);
                    obj.LinkVideoMp4 = fileName;
                    string fileName1 = Path.GetFileNameWithoutExtension(file.FileName);
                    fileName1 += "_" + obj.IdVideo;
                    fileName1 += Path.GetExtension(file.FileName);

                    string folderPath1 = Server.MapPath("~") + @"\Assets\images\PosterVideo";

                    if (!Directory.Exists(folderPath1))
                    {
                        Directory.CreateDirectory(folderPath1);
                    }

                    string path1 = Path.Combine(folderPath1, fileName1);

                    file.SaveAs(path1);
                    obj.Poster = fileName1;
                    int id = dao.AddNew(obj);
                    if (id != -1)
                    {
                        return(RedirectToAction("Index", "Video"));
                    }
                    else
                    {
                        ViewBag.Message("Them moi khong thanh cong");
                        return(RedirectToAction("AddNew", "Video"));
                    }
                }
                else
                {
                    ModelState.AddModelError("", "Bạn phải nhập vào trường này");
                }
            }
            catch
            {
            }
            NgheSiDAO nsdao = new NgheSiDAO();
            var       ns    = nsdao.Listof();
            KhuVucDAO kvdao = new KhuVucDAO();
            var       kv    = kvdao.ListOf();

            ViewBag.ns = ns;
            ViewBag.kv = kv;
            return(View());
        }
示例#5
0
 public static void Sua(string Ma, string Ten, string GhiChu, bool ConQuanLy)
 {
     KhuVucDAO.Sua(Ma, Ten, GhiChu, ConQuanLy);
 }
示例#6
0
 public static void Xoa(string Ma)
 {
     KhuVucDAO.Xoa(Ma);
 }
示例#7
0
 public static string MaKhuVuc()
 {
     return(KhuVucDAO.MaKhuVuc());
 }
示例#8
0
 public static List <KhuVucDTO> DanhSach()
 {
     return(KhuVucDAO.DanhSach());
 }
示例#9
0
        public static List <KhuVucDTO> LayToanBoKhuVuc()
        {
            List <KhuVucDTO> lKV = KhuVucDAO.LayToanBoKhuVuc();

            return(lKV);
        }
示例#10
0
 public static bool KiemTraThem(KhuVucDTO kv)
 {
     KhuVucDAO.ThemKhuVuc(kv);
     return(true);
 }
        public ActionResult hoadon(FormCollection f)
        {
            String error = "";

            if (string.IsNullOrEmpty(f["user2"]))
            {
                error           += "Tên người nhận không được để trống";
                ViewBag.message1 = "Tên người nhận không được để trống";
            }
            if (string.IsNullOrEmpty(f["soDT"]))
            {
                error           += "Số điện thoại không được để trống";
                ViewBag.message2 = "Số điện thoại không được để trống";
            }
            if (string.IsNullOrEmpty(f["diaChi"]))
            {
                error           += "Dia chi không được để trống";
                ViewBag.messag31 = "Địa chỉ không được để trống";
            }
            if (string.IsNullOrEmpty(error))
            {
                //Lưu hóa đơn và chi tiết hóa đơn
                //Câp nhật lại số xu tích lũy , tiền nợ khách hàng
                KhachHang kh1           = (KhachHang)Session["user"];
                int       soXuKhachHang = kh1.getSoXuTichLuy();
                int       soXuSuDung    = 0;
                if (f["xu"] != null)
                {
                    soXuSuDung = Convert.ToInt32(f["xu"]);
                }
                Cart cart        = (Cart)Session["cart"];
                int  phiGiaoHang = 0;
                if (cart.total() < 250000)
                {
                    phiGiaoHang = KhuVucDAO.getPhiGiaoHang(f["khuvuc"].ToString());
                }
                int tongTien = 0;
                if (cart.total() + phiGiaoHang > soXuSuDung)
                {
                    tongTien = (int)cart.total() + phiGiaoHang - soXuSuDung;
                }
                else
                {
                    tongTien   = 0;
                    soXuSuDung = (int)cart.total() + phiGiaoHang;
                }
                soXuKhachHang = soXuKhachHang - soXuSuDung;
                KhachHangDAO.capNhatKhachHang(kh1.getMaKhachHang(), 0, soXuKhachHang);
                //Lưu lại hóa đơn
                HoaDon hd = new HoaDon();
                hd.setMaHoaDon(HoaDonDAO.getSoLuong() + 1);
                DateTime dt    = DateTime.Now;
                String   date1 = dt.ToString("yyyy/MM/dd");
                hd.setNgayLapHoaDon(DateTime.ParseExact(date1, "yyyy/MM/dd", CultureInfo.InvariantCulture, DateTimeStyles.None));
                hd.setMaKhachHang(kh1.getMaKhachHang());
                hd.setDiaChiGiaoHang(f["diaChi"]);
                hd.setMaKhuVucGiaoHang(KhuVucDAO.getMaKhuVuc(f["khuvuc"]));
                hd.setSoDienThoai(f["soDT"]);
                hd.setTenNguoiNhan(f["user2"]);
                hd.setSoXuSuDung(Convert.ToInt32(f["xu"]));
                hd.setTongTienHoaDon(tongTien);
                hd.setPhiGiaoHang(phiGiaoHang);
                HoaDonDAO.insertHoaDon(hd);
                //Lưu lại chi tiết hóa đơn
                String noiDung = "";
                foreach (Item item in cart.getCartItems().Values)
                {
                    //cập số lượng của từng đầu sách
                    int soLuongBan = item.getSoLuongBan();
                    int soLuongTon = item.getSach().getSoLuongTon() - soLuongBan;
                    SachDAO.capNhatSoLuong(item.getSach().getMaSach(), soLuongTon);
                    //Lưu vào bảng chi tiết hóa đơn
                    ChiTietHoaDon chiTietHoaDon = new ChiTietHoaDon();
                    chiTietHoaDon.setMaHoaDon(hd.getMaHoaDon());
                    chiTietHoaDon.setMaSach(item.getSach().getMaSach());
                    chiTietHoaDon.setGiaBanCu(item.getSach().getGiaBan());
                    chiTietHoaDon.setKhuyenMaiCu(item.getSach().getKhuyenMai());
                    chiTietHoaDon.setSoLuongBan(soLuongBan);
                    noiDung += soLuongBan + "   cuốn  " + SachDAO.getSach(item.getSach().getMaSach()).getTenSach() + " , ";
                    ChiTietHoaDonDAO.insertChiTietHoaDon(chiTietHoaDon);
                }
                cart            = new Cart();
                Session["cart"] = cart;
                //Gửi email cho khách hàng
                SendMail      sm      = new SendMail();
                StringBuilder builder = new StringBuilder();
                builder.Append("Kính chào quý khách " + kh1.getHoTenKhachHang());
                builder.Append("\nCửa hàng bán sách trực tuyến ABC vừa nhận được đơn hàng " + hd.getMaHoaDon() + " của quý khách đặt ngày " + hd.getNgayLapHoaDon().ToString("dd-MM-yyyy"));
                builder.Append(". Chúng tôi thông báo đến khách hàng thông tin chi tiết đơn hàng đã đặt.");
                builder.Append("\n\n\n\nSau đây là thông tin chi tiết đơn hàng:");
                builder.Append("\nNgười nhận đơn hàng: " + hd.getTenNguoiNhan());
                builder.Append("\nĐịa chỉ giao hàng: " + hd.getDiaChiGiaoHang());
                builder.Append("\nSố điện thoại người nhận: " + hd.getSoDienThoai());
                builder.Append("\nCác loại sách đã mua: " + noiDung);
                builder.Append("\nTổng tiền cần thanh toán: " + tongTien + " VNĐ");
                sm.sendMail(kh1.geteMail(), "Cửa hàng bán sách trực tuyến ABC", builder.ToString());
                return(Redirect("~/Home/index"));
            }
            else
            {
                ViewBag.error = "Điền đầy thông tin";
            }
            return(View());
        }