Beispiel #1
0
        void Save_new()
        {
            //id, yydh, qymc, classname, title, jpjf, simg, bimg, info, bz, hyjfrx, add_edit_delete, xxzs
            string url = common_file.common_app.service_url + "Hhygl/Hhygl_app.asmx";

            object[] args = new object[13];
            args[0]  = Hhyjfjp_id;
            args[1]  = common_file.common_app.yydh;
            args[2]  = common_file.common_app.qymc;
            args[3]  = tB_classname.Text.Trim().Replace("'", "-");
            args[4]  = tB_Title.Text.Trim().Replace("'", "-");
            args[5]  = tB_dfjf.Text.Trim().Replace("'", "-");
            args[6]  = "";
            args[7]  = "";
            args[8]  = "";
            args[9]  = tB_bz.Text.Trim().Replace("'", "-");
            args[10] = common_file.common_app.hyjfrx;
            args[11] = judge_add_edit;
            args[12] = common_file.common_app.xxzs;

            Hotel_app.Server.Hhygl.Hhyjf_jp Hhyjf_jp_services = new Hotel_app.Server.Hhygl.Hhyjf_jp();
            string result = Hhyjf_jp_services.Hhyjfjp_add_edit(args[0].ToString(), args[1].ToString(), args[2].ToString(), args[3].ToString(), args[4].ToString(), args[5].ToString(), args[6].ToString(), args[7].ToString(), args[8].ToString(), args[9].ToString(), args[10].ToString(), args[11].ToString(), args[12].ToString());

            //object result = Hotel_app.我的替换DynamicWebServiceCall.InvokeWebService(url, "Hhyjfjp_add_edit", args);
            if (result == common_file.common_app.get_suc)
            {
                common_file.common_app.Message_box_show(common_file.common_app.message_title, "保存成功!");
                if (judge_add_edit == common_file.common_app.get_add)
                {
                    parent_form.refresh_app();

                    tB_classname.Focus();
                    tB_dfjf.Text  = "";
                    tB_Title.Text = "";
                    tB_bz.Text    = "";
                }
                else if (judge_add_edit == common_file.common_app.get_edit)
                {
                    parent_form.refresh_app();
                    this.Close();
                }
            }
            else
            {
                common_file.common_app.Message_box_show(common_file.common_app.message_title, "操作失败!");
            }
        }
Beispiel #2
0
        private void b_delete_Click(object sender, EventArgs e)
        {
            common_file.common_app.get_czsj();
            if (DS_Hhyjfjp != null && DS_Hhyjfjp.Tables[0].Rows.Count > 0)
            {
                if (common_file.common_app.message_box_show_select(common_file.common_app.message_title, "是否要删除所选中的记录!") == true)
                {
                    int j = 0; string s = "";
                    for (int i = 0; i < dg_count; i++)
                    {
                        common_file.common_app.get_czsj();
                        DataGridViewDataErrorContexts ss = new DataGridViewDataErrorContexts();
                        if (this.dg_hyjfjp.Rows[i].Cells[0].GetEditedFormattedValue(i, ss) != null && Convert.ToBoolean(this.dg_hyjfjp.Rows[i].Cells[0].GetEditedFormattedValue(i, ss)) == true)
                        {
                            //j = Convert.ToInt32(dg_hyjfjp.Rows[i].Index.ToString());

                            DataRowView dgr = dg_hyjfjp.Rows[i].DataBoundItem as DataRowView;
                            j = DS_Hhyjfjp.Tables[0].Rows.IndexOf(dgr.Row);


                            if (DS_Hhyjfjp.Tables[0].Rows[j]["id"].ToString() != "")
                            {
                                string   url  = common_file.common_app.service_url + "Hhygl/Hhygl_app.asmx";
                                string[] args = new string[13];
                                args[0]  = DS_Hhyjfjp.Tables[0].Rows[j]["id"].ToString();
                                args[1]  = common_file.common_app.yydh;
                                args[2]  = common_file.common_app.qymc;
                                args[3]  = "";
                                args[4]  = "";
                                args[5]  = "";
                                args[6]  = "";
                                args[7]  = "";
                                args[8]  = "";
                                args[9]  = "";
                                args[10] = "";
                                args[11] = common_file.common_app.get_delete;
                                args[12] = common_file.common_app.xxzs;

                                Hotel_app.Server.Hhygl.Hhyjf_jp Hhyjf_jp_services = new Hotel_app.Server.Hhygl.Hhyjf_jp();
                                string result = Hhyjf_jp_services.Hhyjfjp_add_edit(args[0].ToString(), args[1].ToString(), args[2].ToString(), args[3].ToString(), args[4].ToString(), args[5].ToString(), args[6].ToString(), args[7].ToString(), args[8].ToString(), args[9].ToString(), args[10].ToString(), args[11].ToString(), args[12].ToString());
                                //object result = Hotel_app.我的替换DynamicWebServiceCall.InvokeWebService(url, "Hhyjfjp_add_edit", args);
                                if (result == common_file.common_app.get_suc && (s == common_file.common_app.get_suc || s == ""))
                                {
                                    s = common_file.common_app.get_suc;
                                }
                                else
                                {
                                    s = common_file.common_app.get_failure;
                                }
                            }
                            else
                            {
                                //提示
                                common_file.common_app.Message_box_show(common_file.common_app.message_title, "你好,你没有选择任何信息");
                            }
                            //common_file.common_app.Message_box_show(common_file.common_app.message_title, dataGridViewSummary1.Rows[i].Index.ToString());
                        }
                    }
                    if (s == common_file.common_app.get_suc)
                    {
                        common_file.common_app.Message_box_show(common_file.common_app.message_title, "删除成功!");
                    }
                    else
                    if (s == common_file.common_app.get_failure)
                    {
                        common_file.common_app.Message_box_show(common_file.common_app.message_title, "删除不成功!");
                    }
                    refresh_app();
                }
            }
            Cursor.Current = Cursors.Default;
        }