Пример #1
0
        /// <summary>
        /// vuong hung =================================
        /// </summary>
        /// <param name="HanhDong"></param>
        /// <param name="PhieuThuID"></param>
        public int sp_Xoa_ChiTietTraLaiNhaCungCap(Entities.ChiTietKiemKeKho ddh)
        {
            int Trave = 0;

            try
            {
                Sql = new Constants.Sql();
                string sql = Sql.sp_Xoa_ChiTietTraLaiNhaCungCap;
                conn = new Connection();
                cn   = conn.openConnection();
                cmd  = new SqlCommand(sql, cn);
                cmd.Parameters.Add(dh.HanhDong, SqlDbType.NVarChar, 20).Value = ddh.Hanhdong;
                cmd.Parameters.Add(dh.MaPhieuKiemKe, SqlDbType.VarChar).Value = ddh.MaPhieuKiemKe;
                cmd.Parameters.Add(dh.MaHangHoa, SqlDbType.VarChar).Value     = ddh.MaHangHoa;
                Trave = cmd.ExecuteNonQuery();
            }
            catch (Exception ex)
            { string s = ex.Message.ToString(); }
            finally
            {
                cmd.Connection.Dispose();
                cn.Close();
                conn.closeConnection();
            }
            return(Trave);
        }
Пример #2
0
        /// <summary>
        /// vuong hung =================xu ly don dat hang================
        /// </summary>
        /// <returns></returns>
        public int sp_XuLy_ChiTietKiemKeKho(Entities.ChiTietKiemKeKho ddh)
        {
            int Trave = 0;

            try
            {
                Sql = new Constants.Sql();
                string sql = Sql.sp_XuLy_ChiTietKiemKeKho;
                conn = new Connection();
                cn   = conn.openConnection();
                dh   = new Constants.ChiTietKiemKeKho();
                cmd  = new SqlCommand(sql, cn);
                cmd.Parameters.Add(dh.HanhDong, SqlDbType.NVarChar, 20).Value     = ddh.Hanhdong;
                cmd.Parameters.Add(dh.MaPhieuKiemKe, SqlDbType.VarChar, 20).Value = ddh.MaPhieuKiemKe;
                cmd.Parameters.Add(dh.MaHangHoa, SqlDbType.VarChar).Value         = ddh.MaHangHoa;
                cmd.Parameters.Add(dh.TonThucTe, SqlDbType.Int).Value             = ddh.TonThucTe;
                cmd.Parameters.Add(dh.TonSoSach, SqlDbType.Float, 20).Value       = ddh.TonSoSach;
                cmd.Parameters.Add(dh.LyDo, SqlDbType.NVarChar).Value             = ddh.LyDo;
                cmd.Parameters.Add(dh.GhiChu, SqlDbType.NVarChar).Value           = ddh.GhiChu;
                cmd.Parameters.Add(dh.Deleted, SqlDbType.Bit).Value = ddh.Deleted;
                Trave = cmd.ExecuteNonQuery();
            }
            catch (Exception ex)
            { string s = ex.Message.ToString(); }
            finally
            {
                cmd.Connection.Dispose();
                cn.Close();
                conn.closeConnection();
            }
            return(Trave);
        }
Пример #3
0
        /// <summary>
        /// vuong hung =================xu ly don dat hang================
        /// </summary>
        /// <returns></returns>
        public int LuuLai(Entities.ChiTietKiemKeKho[] kkk)
        {
            int Trave = 0;

            try
            {
                Entities.ChiTietKiemKeKho tl = new Entities.ChiTietKiemKeKho();
                for (int i = 0; i < kkk.Length; i++)
                {
                    tl.Hanhdong      = kkk[i].Hanhdong;
                    tl.MaPhieuKiemKe = kkk[i].MaPhieuKiemKe.ToUpper();
                    tl.MaHangHoa     = kkk[i].MaHangHoa.ToUpper();
                    tl.TonThucTe     = 0 + kkk[i].TonThucTe;
                    tl.TonSoSach     = 0 + kkk[i].TonSoSach;
                    tl.LyDo          = "" + kkk[i].LyDo;
                    tl.GhiChu        = "" + kkk[i].GhiChu;
                    tl.Deleted       = kkk[i].Deleted;
                    Trave            = sp_XuLy_ChiTietKiemKeKho(tl);
                }
            }
            catch (Exception ex)
            {
                string s = ex.Message;
            }
            return(Trave);
        }
Пример #4
0
        public int CongSoLuong(Entities.ChiTietKiemKeKho ctKiemKe)
        {
            int Trave = 0;

            try
            {
                string sql = "exec sp_CongSoLuong_CHITIETKHOHANG_k29 @MaKho,@MaHangHoa,@SoLuong";
                conn = new Connection();
                cn   = conn.openConnection();
                cmd  = new SqlCommand(sql, cn);
                cmd.Parameters.Add("MaKho", SqlDbType.VarChar, 20).Value     = ctKiemKe.MaKho;
                cmd.Parameters.Add("MaHangHoa", SqlDbType.VarChar, 50).Value = ctKiemKe.MaHangHoa;
                int slChengLech = int.Parse(ctKiemKe.TonThucTe) - int.Parse(ctKiemKe.TonSoSach);
                cmd.Parameters.Add("SoLuong", SqlDbType.Int).Value = slChengLech;
                Trave = cmd.ExecuteNonQuery();
            }
            catch (Exception ex)
            { string s = ex.Message.ToString(); }
            finally
            {
                cmd.Connection.Dispose();
                cn.Close();
                conn.closeConnection();
            }
            return(Trave);
        }
Пример #5
0
 /// <summary>
 /// vuong hung =================lay bang DonDatHang================
 /// </summary>
 /// <returns></returns>
 public Entities.ChiTietKiemKeKho[] sp_LayBang_ChiTietKiemKeKho(Entities.ChiTietKiemKeKho kk)
 {
     Entities.ChiTietKiemKeKho[] arrC = null;
     try
     {
         dh  = new Constants.ChiTietKiemKeKho();
         Sql = new Constants.Sql();
         string sql = Sql.sp_LayBang_ChiTietKiemKeKho;
         conn = new Connection();
         cn   = conn.openConnection();
         cmd  = new SqlCommand(sql, cn);
         cmd.Parameters.Add("MaPhieuKiemKe", SqlDbType.NVarChar, 20).Value = kk.MaPhieuKiemKe;
         dr  = cmd.ExecuteReader(CommandBehavior.CloseConnection);
         arr = new ArrayList();
         if (kk.MaPhieuKiemKe.Length <= 0)
         {
             while (dr.Read())
             {
                 Entities.ChiTietKiemKeKho chitietkiemkekho = new Entities.ChiTietKiemKeKho();
                 chitietkiemkekho.MaPhieuKiemKe = dr[dh.MaPhieuKiemKe].ToString().ToUpper();
                 chitietkiemkekho.MaHangHoa     = dr[dh.MaHangHoa].ToString().ToUpper();
                 chitietkiemkekho.TonThucTe     = int.Parse(0 + dr[dh.TonThucTe].ToString()).ToString();
                 chitietkiemkekho.TonSoSach     = int.Parse(0 + dr[dh.TonSoSach].ToString()).ToString();
                 chitietkiemkekho.LyDo          = "" + dr[dh.LyDo].ToString();
                 chitietkiemkekho.GhiChu        = "" + dr[dh.GhiChu].ToString();
                 chitietkiemkekho.Deleted       = Convert.ToBoolean(dr[dh.Deleted].ToString());
                 arr.Add(chitietkiemkekho);
             }
         }
         int n = arr.Count;
         if (n == 0)
         {
             return(null);
         }
         arrC = new Entities.ChiTietKiemKeKho[n];
         for (int i = 0; i < n; i++)
         {
             arrC[i] = (Entities.ChiTietKiemKeKho)arr[i];
         }
     }
     catch (Exception ex)
     { string s = ex.Message.ToString(); }
     finally
     {
         cmd.Connection.Dispose();
         cn.Close();
         conn.closeConnection();
     }
     return(arrC);
 }
Пример #6
0
 /// <summary>
 /// vuong hung =================xu ly don dat hang================
 /// </summary>
 /// <returns></returns>
 public int LuuLai(Entities.ChiTietKiemKeKho[] kkk)
 {
     int Trave = 0;
     try
     {
         Entities.ChiTietKiemKeKho tl = new Entities.ChiTietKiemKeKho();
         for (int i = 0; i < kkk.Length; i++)
         {
             tl.Hanhdong = kkk[i].Hanhdong;
             tl.MaPhieuKiemKe = kkk[i].MaPhieuKiemKe.ToUpper();
             tl.MaHangHoa = kkk[i].MaHangHoa.ToUpper();
             tl.TonThucTe = 0 + kkk[i].TonThucTe;
             tl.TonSoSach = 0 + kkk[i].TonSoSach;
             tl.LyDo = "" + kkk[i].LyDo;
             tl.GhiChu = "" + kkk[i].GhiChu;
             tl.Deleted = kkk[i].Deleted;
             Trave = sp_XuLy_ChiTietKiemKeKho(tl);
         }
     }
     catch (Exception ex)
     {
         string s = ex.Message;
     }
     return Trave;
 }
Пример #7
0
 /// <summary>
 /// vuong hung =================lay bang DonDatHang================
 /// </summary>
 /// <returns></returns>
 public Entities.ChiTietKiemKeKho[] sp_LayBang_ChiTietKiemKeKho(Entities.ChiTietKiemKeKho kk)
 {
     Entities.ChiTietKiemKeKho[] arrC = null;
     try
     {
         dh = new Constants.ChiTietKiemKeKho();
         Sql = new Constants.Sql();
         string sql = Sql.sp_LayBang_ChiTietKiemKeKho;
         conn = new Connection();
         cn = conn.openConnection();
         cmd = new SqlCommand(sql, cn);
         cmd.Parameters.Add("MaPhieuKiemKe", SqlDbType.NVarChar, 20).Value = kk.MaPhieuKiemKe;
         dr = cmd.ExecuteReader(CommandBehavior.CloseConnection);
         arr = new ArrayList();
         if (kk.MaPhieuKiemKe.Length <= 0)
         {
             while (dr.Read())
             {
                 Entities.ChiTietKiemKeKho chitietkiemkekho = new Entities.ChiTietKiemKeKho();
                 chitietkiemkekho.MaPhieuKiemKe = dr[dh.MaPhieuKiemKe].ToString().ToUpper();
                 chitietkiemkekho.MaHangHoa = dr[dh.MaHangHoa].ToString().ToUpper();
                 chitietkiemkekho.TonThucTe = int.Parse(0 + dr[dh.TonThucTe].ToString()).ToString();
                 chitietkiemkekho.TonSoSach = int.Parse(0 + dr[dh.TonSoSach].ToString()).ToString();
                 chitietkiemkekho.LyDo = "" + dr[dh.LyDo].ToString();
                 chitietkiemkekho.GhiChu = "" + dr[dh.GhiChu].ToString();
                 chitietkiemkekho.Deleted = Convert.ToBoolean(dr[dh.Deleted].ToString());
                 arr.Add(chitietkiemkekho);
             }
         }
         int n = arr.Count;
         if (n == 0) { return null; }
         arrC = new Entities.ChiTietKiemKeKho[n];
         for (int i = 0; i < n; i++)
         {
             arrC[i] = (Entities.ChiTietKiemKeKho)arr[i];
         }
     }
     catch (Exception ex)
     { string s = ex.Message.ToString(); }
     finally
     {
         cmd.Connection.Dispose();
         cn.Close();
         conn.closeConnection();
     }
     return arrC;
 }