Esempio n. 1
0
        //
        // GET: /ZPVM/Decay/Detail
        public async Task <ActionResult> Detail(string code, EnumPVMTestDataType obj)
        {
            using (DecayServiceClient client = new DecayServiceClient())
            {
                DecayKey key = new DecayKey()
                {
                    Code   = code,
                    Object = obj
                };
                MethodReturnResult <Decay> result = await client.GetAsync(key);

                if (result.Code == 0)
                {
                    DecayViewModel viewModel = new DecayViewModel()
                    {
                        Description = result.Data.Description,
                        IsUsed      = result.Data.IsUsed,
                        Object      = result.Data.Key.Object,
                        Type        = result.Data.Type,
                        Value       = result.Data.Value,
                        Code        = result.Data.Key.Code,
                        CreateTime  = result.Data.CreateTime,
                        Creator     = result.Data.Creator,
                        Editor      = result.Data.Editor,
                        EditTime    = result.Data.EditTime
                    };
                    return(PartialView("_InfoPartial", viewModel));
                }
                else
                {
                    ModelState.AddModelError("", result.Message);
                }
            }
            return(PartialView("_InfoPartial"));
        }
Esempio n. 2
0
        public async Task <ActionResult> Query(DecayQueryViewModel model)
        {
            if (ModelState.IsValid)
            {
                using (DecayServiceClient client = new DecayServiceClient())
                {
                    await Task.Run(() =>
                    {
                        StringBuilder where = new StringBuilder();
                        if (model != null)
                        {
                            if (!string.IsNullOrEmpty(model.Code))
                            {
                                where.AppendFormat(" {0} Key.Code LIKE '{1}%'"
                                                   , where.Length > 0 ? "AND" : string.Empty
                                                   , model.Code);
                            }
                        }
                        PagingConfig cfg = new PagingConfig()
                        {
                            OrderBy = "Key",
                            Where   = where.ToString()
                        };
                        MethodReturnResult <IList <Decay> > result = client.Get(ref cfg);

                        if (result.Code == 0)
                        {
                            ViewBag.PagingConfig = cfg;
                            ViewBag.List         = result.Data;
                        }
                    });
                }
            }
            return(PartialView("_ListPartial"));
        }
Esempio n. 3
0
        public async Task <ActionResult> SaveModify(DecayViewModel model)
        {
            using (DecayServiceClient client = new DecayServiceClient())
            {
                DecayKey key = new DecayKey()
                {
                    Code   = model.Code,
                    Object = model.Object
                };
                MethodReturnResult <Decay> result = await client.GetAsync(key);

                if (result.Code == 0)
                {
                    result.Data.Value       = model.Value ?? 0;
                    result.Data.Type        = model.Type;
                    result.Data.Description = model.Description;
                    result.Data.IsUsed      = model.IsUsed;
                    result.Data.Editor      = User.Identity.Name;
                    result.Data.EditTime    = DateTime.Now;
                    MethodReturnResult rst = await client.ModifyAsync(result.Data);

                    if (rst.Code == 0)
                    {
                        rst.Message = string.Format(ZPVMResources.StringResource.Decay_SaveModify_Success
                                                    , model.Code);
                    }
                    return(Json(rst));
                }
                return(Json(result));
            }
        }
Esempio n. 4
0
        public async Task <ActionResult> Save(DecayViewModel model)
        {
            using (DecayServiceClient client = new DecayServiceClient())
            {
                Decay obj = new Decay()
                {
                    Key = new DecayKey()
                    {
                        Code   = model.Code.ToUpper(),
                        Object = model.Object
                    },
                    Type        = model.Type,
                    Value       = model.Value ?? 0,
                    Description = model.Description,
                    IsUsed      = model.IsUsed,
                    Editor      = User.Identity.Name,
                    EditTime    = DateTime.Now,
                    CreateTime  = DateTime.Now,
                    Creator     = User.Identity.Name
                };
                MethodReturnResult rst = await client.AddAsync(obj);

                if (rst.Code == 0)
                {
                    rst.Message = string.Format(ZPVMResources.StringResource.Decay_Save_Success
                                                , obj.Key);
                }
                return(Json(rst));
            }
        }
Esempio n. 5
0
        public ActionResult GetDecayCode(string q)
        {
            IList <Decay> lstDetail = new List <Decay>();

            using (DecayServiceClient client = new DecayServiceClient())
            {
                PagingConfig cfg = new PagingConfig()
                {
                    IsPaging = false,
                    Where    = string.Format(@"Key.Code LIKE '{0}%'
                                            AND IsUsed=1"
                                             , q),
                    OrderBy = "Key.Code"
                };

                MethodReturnResult <IList <Decay> > result = client.Get(ref cfg);
                if (result.Code <= 0 && result.Data != null)
                {
                    lstDetail = result.Data;
                }
            }

            var lnq = from item in lstDetail
                      select item.Key.Code;

            return(Json(from item in lnq.Distinct()
                        select new
            {
                @label = item,
                @value = item,
            }, JsonRequestBehavior.AllowGet));
        }
Esempio n. 6
0
        public async Task <ActionResult> Delete(string code, EnumPVMTestDataType obj)
        {
            MethodReturnResult result = new MethodReturnResult();
            DecayKey           key    = new DecayKey()
            {
                Code   = code,
                Object = obj
            };

            using (DecayServiceClient client = new DecayServiceClient())
            {
                result = await client.DeleteAsync(key);

                if (result.Code == 0)
                {
                    result.Message = string.Format(ZPVMResources.StringResource.Decay_Delete_Success
                                                   , key);
                }
                return(Json(result));
            }
        }
Esempio n. 7
0
        //
        // GET: /ZPVM/Decay/
        public async Task <ActionResult> Index()
        {
            using (DecayServiceClient client = new DecayServiceClient())
            {
                await Task.Run(() =>
                {
                    PagingConfig cfg = new PagingConfig()
                    {
                        OrderBy = "Key"
                    };
                    MethodReturnResult <IList <Decay> > result = client.Get(ref cfg);

                    if (result.Code == 0)
                    {
                        ViewBag.PagingConfig = cfg;
                        ViewBag.List         = result.Data;
                    }
                });
            }
            return(View(new DecayQueryViewModel()));
        }
Esempio n. 8
0
        public async Task <ActionResult> PagingQuery(string where, string orderBy, int?currentPageNo, int?currentPageSize)
        {
            if (ModelState.IsValid)
            {
                int pageNo   = currentPageNo ?? 0;
                int pageSize = currentPageSize ?? 20;
                if (Request["PageNo"] != null)
                {
                    pageNo = Convert.ToInt32(Request["PageNo"]);
                }
                if (Request["PageSize"] != null)
                {
                    pageSize = Convert.ToInt32(Request["PageSize"]);
                }

                using (DecayServiceClient client = new DecayServiceClient())
                {
                    await Task.Run(() =>
                    {
                        PagingConfig cfg = new PagingConfig()
                        {
                            PageNo   = pageNo,
                            PageSize = pageSize,
                            Where    = where ?? string.Empty,
                            OrderBy  = orderBy ?? string.Empty
                        };
                        MethodReturnResult <IList <Decay> > result = client.Get(ref cfg);
                        if (result.Code == 0)
                        {
                            ViewBag.PagingConfig = cfg;
                            ViewBag.List         = result.Data;
                        }
                    });
                }
            }
            return(PartialView("_ListPartial"));
        }