Esempio n. 1
0
        public ActionResult Delete(long id)
        {
            var apiResult = new APIResult();

            try
            {
                PosDiscountBll.DeleteById(id);
            }
            catch (Exception ex)
            {
                apiResult.Ret = -1;
                apiResult.Msg = ex.Message;
                if (!(ex is OperationExceptionFacade))
                {
                    LogFactory.GetLogger().Log(LogLevel.Error, ex);
                }
            }
            return(Json(apiResult));
        }
Esempio n. 2
0
        public JsonResult Edit(PosDiscount model)
        {
            var apiResult = new APIResult();

            try
            {
                PosDiscountBll.AddOrUpdate(model, UserContext.CurrentUser.HotelId);
            }
            catch (Exception ex)
            {
                apiResult.Ret = -1;
                apiResult.Msg = ex.Message;
                if (!(ex is OperationExceptionFacade))
                {
                    LogFactory.GetLogger().Log(LogLevel.Error, ex);
                }
            }

            return(Json(apiResult));
        }
Esempio n. 3
0
        public ActionResult Edit(long posId, long id = 0)
        {
            var now = DateTime.Now;

            ViewBag.CurrentTime = now.ToString("yyyy-MM-dd HH:mm:ss");
            ViewBag.PosId       = posId;
            if (id == 0)
            {
                return(View(new PosDiscount()
                {
                    PosId = posId
                }));
            }
            var info = PosDiscountBll.GetById(id);

            if (info.PosId == 0)
            {
                info.PosId = posId;
            }
            return(View(info));
        }
Esempio n. 4
0
        public string GetList(long posId)
        {
            var models = PosDiscountBll.GetListByPos(posId, UserContext.CurrentUser.HotelId);

            return(JsonConvert.SerializeObject(models));
        }