コード例 #1
0
ファイル: ListController.cs プロジェクト: 943885179/wuzhihua
        public object getProcess(WriteModel pro)
        {
            FromOA            f    = new FromOA();
            List <WriteModel> list = f.getProcessList(pro);

            return(list);
        }
コード例 #2
0
ファイル: ListController.cs プロジェクト: 943885179/wuzhihua
        public object getList(Condition condition)
        {
            condition.form_enumvalue = (form_enumvalue)HttpContext.Current.Session["caiwu"];
            condition.userInfo       = (userInfo)HttpContext.Current.Session["userInfo"];
            FromOA f = new FromOA();

            return(f.getList(condition));
        }
コード例 #3
0
ファイル: ListController.cs プロジェクト: 943885179/wuzhihua
        public object getDetail(ResultListModel model)
        {
            if (model == null || string.IsNullOrEmpty(model.type))
            {
                ResultListModel re = new ResultListModel();
                re.list = new List <Detail>();
                Detail d = new Detail();
                re.lAmount = null;
                d.jine     = null;
                re.list.Add(d);
                return(re);
            }
            FromOA f = new FromOA();

            return(f.getDetail(model));
        }/// <summary>
コード例 #4
0
ファイル: ListController.cs プロジェクト: 943885179/wuzhihua
        public object getSunByattachment(ResultListModel model)
        {
            FromOA f = new FromOA();

            return(f.getSunByattachment(model));
        }
コード例 #5
0
ファイル: ListController.cs プロジェクト: 943885179/wuzhihua
        public object getCodes(WriteModel pro)
        {
            FromOA f = new FromOA();

            return(f.getCode("U8046费用科目"));
        }
コード例 #6
0
ファイル: ListController.cs プロジェクト: 943885179/wuzhihua
        public object getChunaBianhao([FromUri] string pid)
        {
            FromOA f = new FromOA();

            return(f.getChunaBianhao(pid));
        }