Esempio n. 1
0
 public ActionResult Index()
 {
     if (!GLOBALS.CookieAuth())
     {
         return(RedirectToAction("Index", "Home"));
     }
     return(View());
 }
Esempio n. 2
0
 public ActionResult UserDelete(string id, FormCollection collection)
 {
     if (!GLOBALS.CookieAuth())
     {
         return(RedirectToAction("Index", "Home"));
     }
     using (db)
     {
         db.Execute("delete from USERS where LOGICALREF=" + id);
     }
     return(RedirectToAction("UserList"));
 }
Esempio n. 3
0
        public ActionResult TeknikTalepDelete(int id, FormCollection collection)
        {
            if (!GLOBALS.CookieAuth())
            {
                return(RedirectToAction("Index", "Home"));
            }
            using (db)
            {
                int rowsAffected = db.Execute("delete from FORMLINE where LOGICALREF=" + id);
            }

            return(RedirectToAction("TeknikTalepler"));
        }
Esempio n. 4
0
 public ActionResult UserEdit(string id, USERS _users)
 {
     if (!GLOBALS.CookieAuth())
     {
         return(RedirectToAction("Index", "Home"));
     }
     using (db)
     {
         db.Execute("update USERS set USERNAME='******',PASSWORD='******',CODE='" + _users.CODE + "'" +
                    ",TEL='" + _users.TEL + "',TEL2='" + _users.TEL2 + "',EMAIL='" + _users.EMAIL + "'" +
                    " where LOGICALREF=" + id + "");
     }
     return(RedirectToAction("UserList"));
 }
Esempio n. 5
0
        public ActionResult TeknikTalepler(string searchSTR)
        {
            if (!GLOBALS.CookieAuth())
            {
                return(RedirectToAction("Index", "Home"));
            }
            List <FORMLines> _formLines = new List <FORMLines>();

            using (db)
            {
                _formLines = db.Query <FORMLines>("select * from FORMLINE where DURUM=0 and ISTALEP=1 order by ADDDATE desc").ToList();
            }
            return(View(_formLines));
        }
Esempio n. 6
0
        public ActionResult GetClients(string searchSTR)
        {
            if (!GLOBALS.CookieAuth())
            {
                return(RedirectToAction("Index", "Home"));
            }
            List <CLIENTS> USERLists = new List <CLIENTS>();

            using (db)
            {
                USERLists = db.Query <CLIENTS>("Select DEFINITION_,CODE,SPECODE,LOGICALREF,TELNRS1 From LKSDB..LG_" + GLOBALS.GFirma + "_CLCARD where 1=1  and CODE like '120%' and replace(DEFINITION_+CODE,' ','') like '%" + searchSTR.Replace(" ", "") + "%' order by DEFINITION_").ToList();
            }
            return(Json(USERLists, JsonRequestBehavior.AllowGet));
        }
Esempio n. 7
0
        public ActionResult UrunList(string searchSTR)
        {
            if (!GLOBALS.CookieAuth())
            {
                return(RedirectToAction("Index", "Home"));
            }
            List <BarcodeUrun> _barcodeUrun = new List <BarcodeUrun>();

            using (db)
            {
                _barcodeUrun = db.Query <BarcodeUrun>("Select top 200 * from LKSDB..AA_FormUrun").ToList();
            }
            return(View(_barcodeUrun));
        }
Esempio n. 8
0
        public ActionResult UserList()
        {
            if (!GLOBALS.CookieAuth())
            {
                return(RedirectToAction("Index", "Home"));
            }
            List <USERS> USERLists = new List <USERS>();

            using (db)
            {
                USERLists = db.Query <USERS>("Select  U.LOGICALREF, U.USERNAME, U.PASSWORD, AUTHORITY, AUTHID, FLAG, ADDDATE,C.LOGICALREF as CLIENTREF, C.DEFINITION_ as NAME,U.CODE"
                                             + " From USERS as U left outer join LKSDB..LG_" + GLOBALS.GFirma + "_CLCARD as C on U.CODE=C.CODE where 1=1 ").ToList();
            }
            return(View(USERLists));
        }
Esempio n. 9
0
        public ActionResult UserDelete(string id)
        {
            if (!GLOBALS.CookieAuth())
            {
                return(RedirectToAction("Index", "Home"));
            }
            USERS _users = new USERS();

            using (db)
            {
                _users = db.Query <USERS>("select * from USERS where LOGICALREF=" + id).SingleOrDefault();
            }

            return(View(_users));
        }
Esempio n. 10
0
        // GET: Forms/Edit/5
        public ActionResult TeknikTalepEdit(int id, string formtype)
        {
            if (!GLOBALS.CookieAuth())
            {
                return(RedirectToAction("Index", "Home"));
            }
            FORMTYPECheck(formtype);
            FORMLines FormDetail = new FORMLines();

            using (db)
            {
                FormDetail = db.Query <FORMLines>("Select * From FORMLINE where LOGICALREF=" + id, new { id }).SingleOrDefault();
            }
            return(View(FormDetail));
        }
Esempio n. 11
0
        public ActionResult TeknikTalep(string clientid, string caridef, string carikod)
        {
            if (!GLOBALS.CookieAuth())
            {
                return(RedirectToAction("Index", "Home"));
            }

            FORMLines _fORMLines = new FORMLines();

            _fORMLines.BELGENO   = Convert.ToInt32(cookie["BELGEID"]);
            _fORMLines.BELGESTR  = cookie["USERID"];
            _fORMLines.CLIENTREF = Convert.ToInt32((clientid == null)?"0":clientid);
            _fORMLines.NAME      = caridef;
            _fORMLines.CODE      = carikod;
            return(View(_fORMLines));
        }
Esempio n. 12
0
        public ActionResult UserEdit(string id, string fromAdd)
        {
            if (!GLOBALS.CookieAuth())
            {
                return(RedirectToAction("Index", "Home"));
            }
            USERS _users = new USERS();

            if (fromAdd == "1")
            {
                TempData["msg"] = "<script>alert('Bu Firmanın Kullanıcısı Mevcut Güncelleme Yapabilirsiniz!!!');</script>";
            }
            using (db)
            {
                _users = db.Query <USERS>("select * from USERS where LOGICALREF=" + id).SingleOrDefault();
            }
            return(View(_users));
        }
Esempio n. 13
0
        public ActionResult GetUrunList(string searchSTR)
        {
            if (!GLOBALS.CookieAuth())
            {
                return(RedirectToAction("Index", "Home"));
            }
            string SqlAra = "";

            if (searchSTR != "")
            {
                SqlAra += " and replace(Barcode,' ','') like '%" + searchSTR.Replace(" ", "") + "%'";
            }
            List <BarcodeUrun> _barcodeUrun = new List <BarcodeUrun>();

            using (db)
            {
                _barcodeUrun = db.Query <BarcodeUrun>("Select top 200 * from LKSDB..AA_FormUrun where 1=1 " + SqlAra + " order by UrunAdi ").ToList();
            }
            return(Json(_barcodeUrun, JsonRequestBehavior.AllowGet));
        }
Esempio n. 14
0
        public ActionResult TeknikTalepEdit(int id, FORMLines FormLines)
        {
            if (!GLOBALS.CookieAuth())
            {
                return(RedirectToAction("Index", "Home"));
            }
            using (db)
            {
                string sqlQuery = "update [dbo].[FORMLINE] set " +
                                  "BELGENO=" + FormLines.BELGENO + "" +
                                  ",BELGESTR='" + FormLines.BELGESTR + "'" +
                                  ",ADSOYAD='" + FormLines.ADSOYAD + "'" +
                                  ",ADRES='" + FormLines.ADRES + "'" +
                                  ",TEL='" + FormLines.TEL + "'" +
                                  " WHERE LOGICALREF=" + id;
                int rowsAffected = db.Execute(sqlQuery);
            }

            return(RedirectToAction("TeknikTalepler"));
        }
Esempio n. 15
0
        public ActionResult TeknikTalep(FORMLines _talep)
        {
            if (!GLOBALS.CookieAuth())
            {
                return(RedirectToAction("Index", "Home"));
            }
            using (db)
            {
                string sqlQuery = "INSERT INTO [dbo].[FORMLINE](ISTALEP,FICHENO,ACIKLAMA,CLIENTREF,NAME,CODE,FORMTYPE,ADMIN,DURUM,BELGESTR,BELGENO,ADSOYAD,FIRMA,ADRES,TEL,ADDDATE) VALUES" +
                                  "(1,'" + _talep.BELGESTR + "-" + _talep.BELGENO + "','" + _talep.ACIKLAMA + "'," + _talep.CLIENTREF + ",'" + _talep.NAME + "','" + _talep.CODE + "','" + _talep.FORMTYPE + "'," + giris["USERID"] + ",0,'" + _talep.BELGESTR + "'," + _talep.BELGENO + ",'" + _talep.ADSOYAD + "','" + _talep.FIRMA + "','" + _talep.ADRES + "','" + _talep.TEL + "','" + DateTime.Now.ToString("MM/dd/yyyy HH:mm:ss") + "') ";

                int rowsAffected = GLOBALS.db.Execute(sqlQuery);
                GLOBALS.db.Execute("update USERS set BELGEID=BELGEID+1 where LOGICALREF=" + giris["USERID"] + "");
                int belgeid = Convert.ToInt32(cookie["BELGEID"]);
                belgeid++;
                cookie["BELGEID"] = belgeid.ToString();
                Response.Cookies.Add(cookie);
                //mail at
            }
            return(RedirectToAction("TeknikTalepler", "Admin"));
        }
Esempio n. 16
0
        public ActionResult UserAdd(USERS PostedUsers)
        {
            if (!GLOBALS.CookieAuth())
            {
                return(RedirectToAction("Index", "Home"));
            }
            using (db)
            {
                string sqlQuery = "INSERT INTO [dbo].[USERS]" +
                                  "([USERNAME]" +
                                  ",[PASSWORD]" +
                                  ",[AUTHORITY]" +
                                  ",[AUTHID]" +
                                  ",[FLAG]" +
                                  ",[ADDDATE]" +
                                  ",[CLIENTREF]" +
                                  ",[TEL]" +
                                  ",[TEL2]" +
                                  ",[EMAIL]" +
                                  ",[NAME]" +
                                  ",[CODE])" +
                                  "VALUES" +
                                  "('" + PostedUsers.USERNAME + "'" +
                                  ",'" + PostedUsers.PASSWORD + "'" +
                                  ",'" + PostedUsers.AUTHORITY + "'" +
                                  ",'" + PostedUsers.AUTHID + "'" +
                                  ",0" +
                                  ",'" + DateTime.Now.ToString("MM/dd/yyyy HH:mm:ss") + "'" +
                                  ",'" + PostedUsers.CLIENTREF + "'" +
                                  ",'" + PostedUsers.TEL + "'" +
                                  ",'" + PostedUsers.TEL2 + "'" +
                                  ",'" + PostedUsers.EMAIL + "'" +
                                  ",'" + PostedUsers.NAME + "'" +
                                  ",'" + PostedUsers.CODE + "')";

                int rowsAffected = db.Execute(sqlQuery);
            }
            return(RedirectToAction("UserList"));
        }
Esempio n. 17
0
        public ActionResult UserAdd(string clientref, string def, string code, string authid, string telnrs1)
        {
            if (!GLOBALS.CookieAuth())
            {
                return(RedirectToAction("Index", "Home"));
            }
            //kullanıcı kontrolü
            SqlDataReader oku = GLOBALS.GetDataReader("select LOGICALREF from USERS where CLIENTREF=" + clientref + "");

            if (oku.Read())
            {
                return(RedirectToAction("UserEdit", new { id = oku[0].ToString(), fromAdd = 1 }));
            }
            USERS _users = new USERS();

            _users.CLIENTREF = Convert.ToInt32((clientref == null) ? "0" : clientref);
            _users.NAME      = def;
            _users.CODE      = code;
            _users.AUTHID    = Convert.ToInt32(authid);
            _users.TEL2      = telnrs1;
            _users.AUTHORITY = (authid == "1") ? "Teknik Servis" : "Admin";
            return(View(_users));
        }