protected void btnSubmit_Click(object sender, EventArgs e)
        {
            string error = string.Empty;

            Model.MakeCollectionsModes makecollectionsmode = new Model.MakeCollectionsModes();
            makecollectionsmode.Id = this.txtNumber.Text.Trim();
            makecollectionsmode.MakeCollectionsMode = this.txtMakeCollectionsMode.Text.Trim();
            if (string.IsNullOrEmpty(makecollectionsmode.Id) || string.IsNullOrEmpty(makecollectionsmode.MakeCollectionsMode))
            {
                lbSubmit.Text = "请将带*号的内容填写完整!";
                return;
            }
            if (MakeCollectionsModeManager.CheckHave(makecollectionsmode.MakeCollectionsMode))
            {
                lbSubmit.Text = "已经有该收款方式,请重新填写!";
                return;
            }
            else
            {
                bool result = false;
                if (btnSubmit.Text.Equals("添加"))
                {
                    result        = MakeCollectionsModeManager.AddMakeCollectionsMode(makecollectionsmode, ref error);
                    lbSubmit.Text = result == true ? "添加成功!" : "添加失败,原因:" + error;
                    if (result)
                    {
                        Tool.WriteLog(Tool.LogType.Operating, "增加付款方式", "增加成功");
                        ToolCode.Tool.ResetControl(this.Controls);
                        return;
                    }
                    else
                    {
                        Tool.WriteLog(Tool.LogType.Operating, "增加付款方式", "增加失败!原因" + error);
                        return;
                    }
                }

                else
                {
                    result        = MakeCollectionsModeManager.EditMakeCollectionsMode(makecollectionsmode, ref error);
                    lbSubmit.Text = result == true ? "修改成功!" : "修改失败:原因:" + error;
                    if (MakeCollectionsModeManager.EditMakeCollectionsMode(makecollectionsmode, ref error))
                    {
                        Tool.WriteLog(Tool.LogType.Operating, "编辑付款方式", "编辑失败");
                        lbSubmit.Text = "修改成功!";
                    }
                    else
                    {
                        Tool.WriteLog(Tool.LogType.Operating, "编辑付款方式", "编辑失败!原因" + error);
                        lbSubmit.Text = "修改失败!";
                        return;
                    }
                }
            }
        }