Exemple #1
0
    public static string SaveData(string strID, string strAttFeeItem, string strPrice, string strInfo)
    {
        bool isSuccess = true;

        TMisContractAttfeeitemVo objFee = new TMisContractAttfeeitemVo();

        objFee.ID           = strID.Length > 0 ? strID : GetSerialNumber("t_mis_contract_attfeeitem_id");
        objFee.IS_DEL       = "0";
        objFee.ATT_FEE_ITEM = strAttFeeItem;
        objFee.PRICE        = strPrice;
        objFee.INFO         = strInfo;

        if (strID.Length > 0)
        {
            isSuccess = new TMisContractAttfeeitemLogic().Edit(objFee);
        }
        else
        {
            isSuccess = new TMisContractAttfeeitemLogic().Create(objFee);
        }

        if (isSuccess)
        {
            return("1");
        }
        else
        {
            return("0");
        }
    }
Exemple #2
0
    //获取信息
    private string getFee()
    {
        string strSortname  = Request.Params["sortname"];
        string strSortorder = Request.Params["sortorder"];
        //当前页面
        int intPageIndex = Convert.ToInt32(Request.Params["page"]);
        //每页记录数
        int intPageSize = Convert.ToInt32(Request.Params["pagesize"]);

        if (strSortname == null || strSortname.Length < 0)
        {
            strSortname = TMisContractAttfeeitemVo.ID_FIELD;
        }

        TMisContractAttfeeitemVo objFee = new TMisContractAttfeeitemVo();

        objFee.IS_DEL     = "0";
        objFee.SORT_FIELD = strSortname;
        objFee.SORT_TYPE  = strSortorder;
        DataTable dt            = new TMisContractAttfeeitemLogic().SelectByTable(objFee, intPageIndex, intPageSize);
        int       intTotalCount = new TMisContractAttfeeitemLogic().GetSelectResultCount(objFee);
        string    strJson       = CreateToJson(dt, intTotalCount);

        return(strJson);
    }
Exemple #3
0
    //获取数据
    private void GetData(string strID)
    {
        TMisContractAttfeeitemVo objFee = new TMisContractAttfeeitemLogic().Details(strID);

        string strJson = ToJson(objFee);

        Response.Write(strJson);
        Response.End();
    }
Exemple #4
0
    public static string deleteData(string strValue)
    {
        TMisContractAttfeeitemVo objFee = new TMisContractAttfeeitemVo();

        objFee.ID     = strValue;
        objFee.IS_DEL = "1";
        bool isSuccess = new TMisContractAttfeeitemLogic().Edit(objFee);

        return(isSuccess == true ? "1" : "0");
    }