示例#1
0
        public string RemoveCartProduct()
        {
            int          productId    = -1;
            string       productColor = "";
            string       productSize  = "";
            MemoryStream stream       = new MemoryStream();

            Request.Body.CopyTo(stream);
            stream.Position = 0;
            using (StreamReader reader = new StreamReader(stream))
            {
                string requestBody = reader.ReadToEnd();
                if (requestBody.Length > 0)
                {
                    var obj = JsonConvert.DeserializeObject <PostData>(requestBody);
                    if (obj != null)
                    {
                        productId    = int.Parse(obj.productId);
                        productColor = obj.productColor;
                        productSize  = obj.productSize;
                    }
                }
            }
            CartProductManager.removeProduct(productId, productColor, productSize);
            double totalPrice = CartProductManager.getTotalPrice();

            if (CartProductManager.getCount() == 0)
            {
                return("empty");
            }
            else
            {
                return("" + totalPrice);
            }
        }
示例#2
0
        public string UpdateCartProductQuantity()
        {
            int          productId    = -1;
            String       productColor = "";
            String       productSize  = "";
            int          quantity     = -1;
            MemoryStream stream       = new MemoryStream();

            Request.Body.CopyTo(stream);
            stream.Position = 0;
            using (StreamReader reader = new StreamReader(stream))
            {
                string requestBody = reader.ReadToEnd();
                if (requestBody.Length > 0)
                {
                    var obj = JsonConvert.DeserializeObject <PostData>(requestBody);
                    if (obj != null)
                    {
                        productId    = int.Parse(obj.productId);
                        productColor = obj.productColor;
                        productSize  = obj.productSize;
                        quantity     = int.Parse(obj.quantity);
                    }
                }
            }
            double newPrice = CartProductManager.updateCartProductQuantity(productId, productColor, productSize, quantity);

            return(newPrice + "-" + CartProductManager.getTotalPrice());
        }
示例#3
0
 // GET: /<controller>/
 public IActionResult Login()
 {
     if (HttpContext.Session.Keys.Contains("username") &&
         HttpContext.Session.Keys.Contains("userid"))
     {
         HttpContext.Session.Remove("username");
         HttpContext.Session.Remove("userid");
     }
     if (HttpContext.Session.Keys.Contains("cartProducts"))
     {
         HttpContext.Session.Remove("cartProducts");
     }
     if (HttpContext.Session.Keys.Contains("code"))
     {
         HttpContext.Session.Remove("code");
     }
     CartProductManager.clear();
     return(View());
 }
示例#4
0
        public string Checkout()
        {
            string       userid     = HttpContext.Session.GetString("userid");
            string       shippingTo = "";
            string       orderNote  = "";
            MemoryStream stream     = new MemoryStream();

            Request.Body.CopyTo(stream);
            stream.Position = 0;
            using (StreamReader reader = new StreamReader(stream))
            {
                string requestBody = reader.ReadToEnd();
                if (requestBody.Length > 0)
                {
                    var obj = JsonConvert.DeserializeObject <PostData>(requestBody);
                    if (obj != null)
                    {
                        shippingTo = obj.shippingTo;
                        orderNote  = obj.notetext;
                    }
                }
            }
            double             totalPrice  = CartProductManager.getTotalPrice();
            string             dateString  = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
            string             orderStatus = "Paid";
            List <CartProduct> products    = CartProductManager.getCartProducts();
            string             orderid     = "";

            MySqlConnection connection = DBManager.getManager().getConnection();
            MySqlCommand    command    = new MySqlCommand();

            command.CommandText = "INSERT INTO orders(userid,totalprice,shippingto,orderdate,orderstatus,ordernote) VALUES(" + userid + "," + totalPrice + ",'" + shippingTo + "','" + dateString + "','" + orderStatus + "','" + orderNote + "');";
            command.Connection  = connection;
            command.CommandType = System.Data.CommandType.Text;
            int rows = command.ExecuteNonQuery();

            if (rows <= 0)
            {
                return("false");
            }
            command.CommandText = "SELECT orderid FROM orders WHERE userid=" + userid + " AND orderdate='" + dateString + "'";
            MySqlDataReader dataReader = command.ExecuteReader();

            if (dataReader.Read())
            {
                orderid = dataReader.GetString("orderid");
                dataReader.Close();
            }
            else
            {
                dataReader.Close();
                return("false");
            }
            foreach (CartProduct cartProduct in products)
            {
                string productColor = "";
                if (cartProduct.getProductColor() == "null")
                {
                    productColor = "";
                }
                else
                {
                    productColor = cartProduct.getProductColor();
                }
                string productSize = "";
                if (cartProduct.getProductSize() == "null")
                {
                    productSize = "";
                }
                else
                {
                    productSize = cartProduct.getProductSize();
                }
                command.CommandText = "INSERT INTO order_product(orderid,productid,quantity,selectedcolor,selectedsize) VALUES(" + orderid + "," + cartProduct.getProductId() + "," + cartProduct.getQuantity() + ",'" + productColor + "','" + productSize + "');";
                rows = command.ExecuteNonQuery();
                if (rows <= 0)
                {
                    return("false");
                }
            }
            CartProductManager.clear();
            return(orderid + "-" + totalPrice);
        }