public void ActionAdd(ModProduct_OrderModel model)
        {
            List <ModProduct_Order_DetailsEntity> lstOrder_Details = new List <ModProduct_Order_DetailsEntity>();

            if (model.RecordID > 0)
            {
                item = ModProduct_OrderService.Instance.GetByID(model.RecordID);

                // khoi tao gia tri mac dinh khi update
                lstOrder_Details = ModProduct_Order_DetailsService.Instance.CreateQuery().Where(p => p.OrderId == item.ID).ToList();
                if (lstOrder_Details == null)
                {
                    lstOrder_Details = new List <ModProduct_Order_DetailsEntity>();
                }
            }
            else
            {
                item = new ModProduct_OrderEntity();

                // khoi tao gia tri mac dinh khi insert
            }
            ViewBag.ListOrderDetails = lstOrder_Details;
            ViewBag.Data             = item;
            ViewBag.Model            = model;
        }
 public void ActionSaveNew(ModProduct_OrderModel model)
 {
     if (ValidSave(model))
     {
         SaveNewRedirect(model.RecordID, item.ID);
     }
 }
 public void ActionApply(ModProduct_OrderModel model)
 {
     if (ValidSave(model))
     {
         ApplyRedirect(model.RecordID, item.ID);
     }
 }
 public void ActionSave(ModProduct_OrderModel model)
 {
     if (ValidSave(model))
     {
         SaveRedirect();
     }
 }
        public void ActionIndex(ModProduct_OrderModel model)
        {
            // sap xep tu dong
            string orderBy = AutoSort(model.Sort);

            // tao danh sach
            var dbQuery = ModProduct_OrderService.Instance.CreateQuery()
                          .Take(model.PageSize)
                          .OrderBy(orderBy)
                          .Skip(model.PageIndex * model.PageSize);

            ViewBag.Data      = dbQuery.ToList();
            model.TotalRecord = dbQuery.TotalRecord;
            ViewBag.Model     = model;
        }
        private bool ValidSave(ModProduct_OrderModel model)
        {
            TryUpdateModel(item);

            //chong hack
            item.ID = model.RecordID;

            ViewBag.Data  = item;
            ViewBag.Model = model;

            CPViewPage.Message.MessageType = Message.MessageTypeEnum.Error;

            //kiem tra quyen han
            if ((model.RecordID < 1 && !CPViewPage.UserPermissions.Add) || (model.RecordID > 0 && !CPViewPage.UserPermissions.Edit))
            {
                CPViewPage.Message.ListMessage.Add("Quyền hạn chế.");
            }

            if (CPViewPage.Message.ListMessage.Count == 0)
            {
                //neu khong nhap code -> tu sinh
                if (item.Code.Trim() == string.Empty)
                {
                    item.Code = Data.GetCode(item.Name);
                }

                try
                {
                    //save
                    ModProduct_OrderService.Instance.Save(item);
                }
                catch (Exception ex)
                {
                    Global.Error.Write(ex);
                    CPViewPage.Message.ListMessage.Add(ex.Message);
                    return(false);
                }

                return(true);
            }

            return(false);
        }