public virtual void Modify(ref ValidationErrors errors, Apps.Models.SCV.REPLENISHMENT.REPLENISHMENT_MASTER_MODEL model, params string[] updateProperties)
        {
            Apps.Models.REPLENISHMENT_MASTER entity = m_Rep.GetById(model.INTERNAL_NUM);
            if (entity == null)
            {
                errors.Add(Resource.Disable);
                return;
            }
            if (updateProperties.Count() <= 0)
            {
                entity.INTERNAL_NUM    = model.INTERNAL_NUM;
                entity.MASTER_NAME     = model.MASTER_NAME;
                entity.DESCRIPTION     = model.DESCRIPTION;
                entity.ITEM_SEL        = model.ITEM_SEL;
                entity.LOCATION_SEL    = model.LOCATION_SEL;
                entity.ALLOCATION_RULE = model.ALLOCATION_RULE;
                entity.LOCATING_RULE   = model.LOCATING_RULE;
                entity.REPLENISH_MODE  = model.REPLENISH_MODE;
                entity.REPLENISH_UM    = model.REPLENISH_UM;
                entity.STRATEGY        = model.STRATEGY;
                entity.IN_PROCESS      = model.IN_PROCESS;
                entity.PRIORITY        = model.PRIORITY;
                entity.MAX_ITEMS       = model.MAX_ITEMS;
                entity.MAX_QTY         = model.MAX_QTY;
                entity.MAX_LINES       = model.MAX_LINES;
                entity.MAX_WEIGHT      = model.MAX_WEIGHT;
                entity.MAX_VOLUME      = model.MAX_VOLUME;
                entity.ACTIVE          = model.ACTIVE;
                entity.USER_STAMP      = model.USER_STAMP;
                entity.DATE_TIME_STAMP = model.DATE_TIME_STAMP;
                entity.USER_DEF1       = model.USER_DEF1;
                entity.USER_DEF2       = model.USER_DEF2;
                entity.USER_DEF3       = model.USER_DEF3;
                entity.USER_DEF4       = model.USER_DEF4;
                entity.USER_DEF5       = model.USER_DEF5;
                entity.USER_DEF6       = model.USER_DEF6;
                entity.USER_DEF7       = model.USER_DEF7;
                entity.USER_DEF8       = model.USER_DEF8;
            }
            else
            {
                Type type  = typeof(Apps.Models.SCV.REPLENISHMENT.REPLENISHMENT_MASTER_MODEL);
                Type typeE = typeof(Apps.Models.REPLENISHMENT_MASTER);
                foreach (var item in updateProperties)
                {
                    System.Reflection.PropertyInfo pi  = type.GetProperty(item);
                    System.Reflection.PropertyInfo piE = typeE.GetProperty(item);
                    piE.SetValue(entity, pi.GetValue(model), null);
                }
            }


            m_Rep.Modify(entity, updateProperties);
        }
        public virtual Apps.Models.SCV.REPLENISHMENT.REPLENISHMENT_MASTER_MODEL GetById(string id)
        {
            Apps.Models.REPLENISHMENT_MASTER entity = m_Rep.GetById(id);
            if (entity != null)
            {
                //REPLENISHMENT_MASTER entity = m_Rep.GetById(id);
                Apps.Models.SCV.REPLENISHMENT.REPLENISHMENT_MASTER_MODEL model = new Apps.Models.SCV.REPLENISHMENT.REPLENISHMENT_MASTER_MODEL();
                model.INTERNAL_NUM    = entity.INTERNAL_NUM;
                model.MASTER_NAME     = entity.MASTER_NAME;
                model.DESCRIPTION     = entity.DESCRIPTION;
                model.ITEM_SEL        = entity.ITEM_SEL;
                model.LOCATION_SEL    = entity.LOCATION_SEL;
                model.ALLOCATION_RULE = entity.ALLOCATION_RULE;
                model.LOCATING_RULE   = entity.LOCATING_RULE;
                model.REPLENISH_MODE  = entity.REPLENISH_MODE;
                model.REPLENISH_UM    = entity.REPLENISH_UM;
                model.STRATEGY        = entity.STRATEGY;
                model.IN_PROCESS      = entity.IN_PROCESS;
                model.PRIORITY        = entity.PRIORITY;
                model.MAX_ITEMS       = entity.MAX_ITEMS;
                model.MAX_QTY         = entity.MAX_QTY;
                model.MAX_LINES       = entity.MAX_LINES;
                model.MAX_WEIGHT      = entity.MAX_WEIGHT;
                model.MAX_VOLUME      = entity.MAX_VOLUME;
                model.ACTIVE          = entity.ACTIVE;
                model.USER_STAMP      = entity.USER_STAMP;
                model.DATE_TIME_STAMP = entity.DATE_TIME_STAMP;
                model.USER_DEF1       = entity.USER_DEF1;
                model.USER_DEF2       = entity.USER_DEF2;
                model.USER_DEF3       = entity.USER_DEF3;
                model.USER_DEF4       = entity.USER_DEF4;
                model.USER_DEF5       = entity.USER_DEF5;
                model.USER_DEF6       = entity.USER_DEF6;
                model.USER_DEF7       = entity.USER_DEF7;
                model.USER_DEF8       = entity.USER_DEF8;

                return(model);
            }
            else
            {
                return(null);
            }
        }
        public virtual void Create(ref ValidationErrors errors, Apps.Models.SCV.REPLENISHMENT.REPLENISHMENT_MASTER_MODEL model)
        {
            Apps.Models.REPLENISHMENT_MASTER entity = m_Rep.GetById(model.INTERNAL_NUM);
            if (entity != null)
            {
                errors.Add(Resource.PrimaryRepeat);
                return;
            }
            entity = new Apps.Models.REPLENISHMENT_MASTER();
            entity.INTERNAL_NUM    = model.INTERNAL_NUM;
            entity.MASTER_NAME     = model.MASTER_NAME;
            entity.DESCRIPTION     = model.DESCRIPTION;
            entity.ITEM_SEL        = model.ITEM_SEL;
            entity.LOCATION_SEL    = model.LOCATION_SEL;
            entity.ALLOCATION_RULE = model.ALLOCATION_RULE;
            entity.LOCATING_RULE   = model.LOCATING_RULE;
            entity.REPLENISH_MODE  = model.REPLENISH_MODE;
            entity.REPLENISH_UM    = model.REPLENISH_UM;
            entity.STRATEGY        = model.STRATEGY;
            entity.IN_PROCESS      = model.IN_PROCESS;
            entity.PRIORITY        = model.PRIORITY;
            entity.MAX_ITEMS       = model.MAX_ITEMS;
            entity.MAX_QTY         = model.MAX_QTY;
            entity.MAX_LINES       = model.MAX_LINES;
            entity.MAX_WEIGHT      = model.MAX_WEIGHT;
            entity.MAX_VOLUME      = model.MAX_VOLUME;
            entity.ACTIVE          = model.ACTIVE;
            entity.USER_STAMP      = model.USER_STAMP;
            entity.DATE_TIME_STAMP = model.DATE_TIME_STAMP;
            entity.USER_DEF1       = model.USER_DEF1;
            entity.USER_DEF2       = model.USER_DEF2;
            entity.USER_DEF3       = model.USER_DEF3;
            entity.USER_DEF4       = model.USER_DEF4;
            entity.USER_DEF5       = model.USER_DEF5;
            entity.USER_DEF6       = model.USER_DEF6;
            entity.USER_DEF7       = model.USER_DEF7;
            entity.USER_DEF8       = model.USER_DEF8;

            m_Rep.Create(entity);
        }