Exemple #1
0
        public Int64 Insert(porderproducts objporderproducts)
        {
            Int64 result = 0;

            try
            {
                SqlCommand cmd = new SqlCommand();
                cmd.CommandText = "porderproducts_Insert";
                cmd.CommandType = CommandType.StoredProcedure;
                cmd.Connection  = ConnectionString;

                SqlParameter param = new SqlParameter();
                param.ParameterName = "@opid";
                param.Value         = objporderproducts.opid;
                param.SqlDbType     = SqlDbType.BigInt;
                param.Direction     = ParameterDirection.InputOutput;
                cmd.Parameters.Add(param);
                cmd.Parameters.AddWithValue("@oid", objporderproducts.oid);
                cmd.Parameters.AddWithValue("@uid", objporderproducts.uid);
                cmd.Parameters.AddWithValue("@pid", objporderproducts.pid);
                cmd.Parameters.AddWithValue("@brandid", objporderproducts.brandid);
                cmd.Parameters.AddWithValue("@sizeid", objporderproducts.sizeid);
                cmd.Parameters.AddWithValue("@colorid", objporderproducts.colorid);
                cmd.Parameters.AddWithValue("@cart", objporderproducts.cart);
                cmd.Parameters.AddWithValue("@pack", objporderproducts.pack);

                cmd.Parameters.AddWithValue("@qty", objporderproducts.qty);
                cmd.Parameters.AddWithValue("@mrp", objporderproducts.mrp);
                cmd.Parameters.AddWithValue("@unitRate", objporderproducts.unitRate);
                cmd.Parameters.AddWithValue("@subTotal", objporderproducts.subTotal);
                cmd.Parameters.AddWithValue("@discount", objporderproducts.discount);
                cmd.Parameters.AddWithValue("@scheme", objporderproducts.scheme);
                cmd.Parameters.AddWithValue("@taxableamt", objporderproducts.taxableamt);
                cmd.Parameters.AddWithValue("@CGSTper", objporderproducts.CGSTper);

                cmd.Parameters.AddWithValue("@SGSTper", objporderproducts.SGSTper);
                cmd.Parameters.AddWithValue("@IGSTper", objporderproducts.IGSTper);
                cmd.Parameters.AddWithValue("@GSTamt", objporderproducts.GSTamt);
                cmd.Parameters.AddWithValue("@TotalAmount", objporderproducts.TotalAmount);


                ConnectionString.Open();
                cmd.ExecuteNonQuery();
                result = Convert.ToInt64(param.Value);
            }
            catch (Exception ex)
            {
                ErrHandler.writeError(ex.Message, ex.StackTrace);
                return(result);
            }
            finally
            {
                ConnectionString.Close();
            }
            return(result);
        }
Exemple #2
0
        public porderproducts SelectById(Int64 opid)
        {
            SqlDataAdapter da;
            DataSet        ds = new DataSet();
            porderproducts objporderproducts = new porderproducts();

            try
            {
                SqlCommand cmd = new SqlCommand();
                cmd.CommandText = "porderproducts_SelectById";
                cmd.CommandType = CommandType.StoredProcedure;
                cmd.Connection  = ConnectionString;
                cmd.Parameters.AddWithValue("@opid", opid);
                ConnectionString.Open();
                da = new SqlDataAdapter(cmd);
                da.Fill(ds);

                if (ds != null)
                {
                    if (ds.Tables.Count > 0)
                    {
                        if (ds.Tables[0] != null)
                        {
                            if (ds.Tables[0].Rows.Count > 0)
                            {
                                {
                                    objporderproducts.opid    = Convert.ToInt64(ds.Tables[0].Rows[0]["opid"]);
                                    objporderproducts.oid     = Convert.ToInt64(ds.Tables[0].Rows[0]["oid"]);
                                    objporderproducts.uid     = Convert.ToInt64(ds.Tables[0].Rows[0]["uid"]);
                                    objporderproducts.pid     = Convert.ToInt64(ds.Tables[0].Rows[0]["pid"]);
                                    objporderproducts.brandid = Convert.ToString(ds.Tables[0].Rows[0]["brandid"]);

                                    objporderproducts.sizeid  = Convert.ToString(ds.Tables[0].Rows[0]["sizeid"]);
                                    objporderproducts.colorid = Convert.ToString(ds.Tables[0].Rows[0]["colorid"]);
                                    objporderproducts.cart    = Convert.ToDecimal(ds.Tables[0].Rows[0]["cart"]);
                                    objporderproducts.pack    = Convert.ToString(ds.Tables[0].Rows[0]["pack"]);
                                    objporderproducts.qty     = Convert.ToDecimal(ds.Tables[0].Rows[0]["qty"]);

                                    objporderproducts.mrp      = Convert.ToDecimal(ds.Tables[0].Rows[0]["mrp"]);
                                    objporderproducts.unitRate = Convert.ToDecimal(ds.Tables[0].Rows[0]["unitRate"]);
                                    objporderproducts.subTotal = Convert.ToDecimal(ds.Tables[0].Rows[0]["subTotal"]);
                                    objporderproducts.discount = Convert.ToDecimal(ds.Tables[0].Rows[0]["discount"]);
                                    objporderproducts.scheme   = Convert.ToDecimal(ds.Tables[0].Rows[0]["scheme"]);



                                    objporderproducts.taxableamt  = Convert.ToDecimal(ds.Tables[0].Rows[0]["taxableamt"]);
                                    objporderproducts.CGSTper     = Convert.ToDecimal(ds.Tables[0].Rows[0]["CGSTper"]);
                                    objporderproducts.SGSTper     = Convert.ToDecimal(ds.Tables[0].Rows[0]["SGSTper"]);
                                    objporderproducts.IGSTper     = Convert.ToDecimal(ds.Tables[0].Rows[0]["IGSTper"]);
                                    objporderproducts.GSTamt      = Convert.ToDecimal(ds.Tables[0].Rows[0]["GSTamt"]);
                                    objporderproducts.TotalAmount = Convert.ToDecimal(ds.Tables[0].Rows[0]["TotalAmount"]);
                                }
                            }
                        }
                    }
                }
            }
            catch (Exception ex)
            {
                ErrHandler.writeError(ex.Message, ex.StackTrace);
                return(null);
            }
            finally
            {
                ConnectionString.Close();
            }
            return(objporderproducts);
        }