Ejemplo n.º 1
0
        public String update(ItemsGrp p, String userId)
        {
            String re  = "";
            String sql = "";
            int    chk = 0;

            chkNull(p);

            sql = "Update " + itmG.table + " Set " +
                  " " + itmG.item_grp_code + " = '" + p.item_grp_code + "'" +
                  "," + itmG.item_grp_name_e + " = '" + p.item_grp_name_e.Replace("'", "''") + "'" +
                  "," + itmG.item_grp_name_t + " = '" + p.item_grp_name_t.Replace("'", "''") + "'" +
                  "," + itmG.remark + " = '" + p.remark.Replace("'", "''") + "'" +
                  "," + itmG.date_modi + " = now()" +
                  "," + itmG.user_modi + " = '" + userId + "' " +
                  "," + itmG.sort1 + " = '" + p.sort1 + "' " +
                  //"," + tmn.status_app + " = '" + p.status_app + "' " +
                  "Where " + itmG.pkField + "='" + p.item_grp_id + "'"
            ;

            try
            {
                re = conn.ExecuteNonQuery(conn.conn, sql);
            }
            catch (Exception ex)
            {
                sql = ex.Message + " " + ex.InnerException;
            }

            return(re);
        }
Ejemplo n.º 2
0
        private void initConfig()
        {
            itmG                 = new ItemsGrp();
            itmG.item_grp_id     = "item_grp_id";
            itmG.item_grp_code   = "item_grp_code";
            itmG.item_grp_name_e = "item_grp_name_e";
            itmG.item_grp_name_t = "item_grp_name_t";
            //tmn.status_app = "status_app";
            itmG.sort1 = "sort1";

            itmG.active      = "active";
            itmG.date_create = "date_create";
            itmG.date_modi   = "date_modi";
            itmG.date_cancel = "date_cancel";
            itmG.user_create = "user_create";
            itmG.user_modi   = "user_modi";
            itmG.user_cancel = "user_cancel";
            //tmn.status_app = "status_app";
            itmG.remark = "remark";

            itmG.table   = "b_items_grp";
            itmG.pkField = "item_grp_id";

            lexpnC = new List <ItemsGrp>();
        }
Ejemplo n.º 3
0
        public String insert(ItemsGrp p, String userId)
        {
            String re  = "";
            String sql = "";

            p.active = "1";
            //p.ssdata_id = "";
            int chk = 0;

            chkNull(p);
            //p.prefix_id = int.TryParse(p.prefix_id, out chk) ? chk.ToString() : "0";
            //p.dept_id = int.TryParse(p.dept_id, out chk) ? chk.ToString() : "0";

            sql = "Insert Into " + itmG.table + "(" + itmG.item_grp_code + "," + itmG.item_grp_name_e + "," + itmG.item_grp_name_t + "," +
                  itmG.date_create + "," + itmG.date_modi + "," + itmG.date_cancel + "," +
                  itmG.user_create + "," + itmG.user_modi + "," + itmG.user_cancel + "," +
                  itmG.active + "," + itmG.remark + ", " + itmG.sort1 + " " +
                  ") " +
                  "Values ('" + p.item_grp_code + "','" + p.item_grp_name_e.Replace("'", "''") + "','" + p.item_grp_name_t.Replace("'", "''") + "'," +
                  "'" + p.date_create + "','" + p.date_modi + "','" + p.date_cancel + "'," +
                  "'" + userId + "','" + p.user_modi + "','" + p.user_cancel + "'," +
                  "'" + p.active + "','" + p.remark.Replace("'", "''") + "','" + p.sort1 + "' " +
                  ")";
            try
            {
                re = conn.ExecuteNonQuery(conn.conn, sql);
            }
            catch (Exception ex)
            {
                sql = ex.Message + " " + ex.InnerException;
            }

            return(re);
        }
Ejemplo n.º 4
0
        private void initConfig()
        {
            expnG  = new ItemsGrp();
            fEdit  = new Font(xC.iniC.grdViewFontName, xC.grdViewFontSize, FontStyle.Regular);
            fEditB = new Font(xC.iniC.grdViewFontName, xC.grdViewFontSize, FontStyle.Bold);

            C1ThemeController.ApplicationTheme = xC.iniC.themeApplication;
            theme1.Theme = C1ThemeController.ApplicationTheme;
            theme1.SetTheme(sB, "BeigeOne");
            foreach (Control c in panel3.Controls)
            {
                theme1.SetTheme(c, "Office2013Red");
            }

            bg = txtCode.BackColor;
            fc = txtCode.ForeColor;
            ff = txtCode.Font;

            txtPasswordVoid.KeyUp += TxtPasswordVoid_KeyUp;
            btnNew.Click          += BtnNew_Click;
            btnEdit.Click         += BtnEdit_Click;
            btnSave.Click         += BtnSave_Click;

            initGrfDept();
            setGrfDeptH();
            setControlEnable(false);
            setFocusColor();
            sB1.Text = "";
            btnVoid.Hide();
            txtPasswordVoid.Hide();
            stt = new C1SuperTooltip();
            sep = new C1SuperErrorProvider();
            //stt.BackgroundGradient = C1.Win.C1SuperTooltip.BackgroundGradient.Gold;
        }
Ejemplo n.º 5
0
 private void setControl(String deptId)
 {
     expnG           = xC.iniDB.itmgDB.selectByPk1(deptId);
     txtID.Value     = expnG.item_grp_id;
     txtCode.Value   = expnG.item_grp_code;
     txtNameT.Value  = expnG.item_grp_name_t;
     txtRemark.Value = expnG.remark;
 }
Ejemplo n.º 6
0
        public ItemsGrp selectByPk1(String copId)
        {
            ItemsGrp  cop1 = new ItemsGrp();
            DataTable dt   = new DataTable();
            String    sql  = "select expC.* " +
                             "From " + itmG.table + " expC " +
                             //"Left Join t_ssdata_visit ssv On ssv.ssdata_visit_id = bd.ssdata_visit_id " +
                             "Where expC." + itmG.pkField + " ='" + copId + "' ";

            dt   = conn.selectData(conn.conn, sql);
            cop1 = setExpenseGrp(dt);
            return(cop1);
        }
Ejemplo n.º 7
0
        public String insertExpenseGrp(ItemsGrp p, String userId)
        {
            String re = "";

            if (p.item_grp_id.Equals(""))
            {
                re = insert(p, userId);
            }
            else
            {
                re = update(p, userId);
            }

            return(re);
        }
Ejemplo n.º 8
0
        private void chkNull(ItemsGrp p)
        {
            int     chk  = 0;
            Decimal chk1 = 0;

            p.date_modi       = p.date_modi == null ? "" : p.date_modi;
            p.date_cancel     = p.date_cancel == null ? "" : p.date_cancel;
            p.user_create     = p.user_create == null ? "" : p.user_create;
            p.user_modi       = p.user_modi == null ? "" : p.user_modi;
            p.user_cancel     = p.user_cancel == null ? "" : p.user_cancel;
            p.item_grp_code   = p.item_grp_code == null ? "" : p.item_grp_code;
            p.item_grp_name_e = p.item_grp_name_e == null ? "" : p.item_grp_name_e;
            p.item_grp_name_t = p.item_grp_name_t == null ? "" : p.item_grp_name_t;
            p.remark          = p.remark == null ? "" : p.remark;
            p.sort1           = p.sort1 == null ? "" : p.sort1;
        }
Ejemplo n.º 9
0
        public void getlexpnC()
        {
            //lDept = new List<Department>();

            DataTable dt = new DataTable();

            dt = selectAll();
            foreach (DataRow row in dt.Rows)
            {
                ItemsGrp curr1 = new ItemsGrp();
                curr1.item_grp_id     = row[itmG.item_grp_id].ToString();
                curr1.item_grp_code   = row[itmG.item_grp_code].ToString();
                curr1.item_grp_name_e = row[itmG.item_grp_name_e].ToString();
                curr1.item_grp_name_t = row[itmG.item_grp_name_t].ToString();
                lexpnC.Add(curr1);
            }
        }
Ejemplo n.º 10
0
        public ItemsGrp setExpenseGrp(DataTable dt)
        {
            ItemsGrp curr1 = new ItemsGrp();

            if (dt.Rows.Count > 0)
            {
                curr1.item_grp_id     = dt.Rows[0][itmG.item_grp_id].ToString();
                curr1.item_grp_code   = dt.Rows[0][itmG.item_grp_code].ToString();
                curr1.item_grp_name_e = dt.Rows[0][itmG.item_grp_name_e].ToString();
                curr1.item_grp_name_t = dt.Rows[0][itmG.item_grp_name_t].ToString();
                curr1.active          = dt.Rows[0][itmG.active].ToString();
                curr1.date_cancel     = dt.Rows[0][itmG.date_cancel].ToString();
                curr1.date_create     = dt.Rows[0][itmG.date_create].ToString();
                curr1.date_modi       = dt.Rows[0][itmG.date_modi].ToString();
                curr1.user_cancel     = dt.Rows[0][itmG.user_cancel].ToString();
                curr1.user_create     = dt.Rows[0][itmG.user_create].ToString();
                curr1.user_modi       = dt.Rows[0][itmG.user_modi].ToString();
                //pti1.status_app = dt.Rows[0][tmn.status_app].ToString();
                curr1.remark = dt.Rows[0][itmG.remark].ToString();
                curr1.sort1  = dt.Rows[0][itmG.sort1].ToString();
            }

            return(curr1);
        }