Ejemplo n.º 1
0
 public static void setJsonModelFromEntity(AgentJsonModel jModel, Agent agent)
 {
     jModel.id     = agent.c_id;
     jModel.name   = agent.c_name;
     jModel.mobile = agent.c_mobile;
     jModel.level  = CommConfigLogic.GetValueFromConfig((int)ConfigCategory.PostitionLevel, agent.c_levle);
 }
Ejemplo n.º 2
0
        public ActionResult GetLevelJson(int enCode)
        {
            var           data = CommConfigLogic.GetConfigListByCate(enCode);
            List <object> list = new List <object>();

            foreach (var item in data)
            {
                list.Add(new { id = item.c_key, text = item.c_value });
            }
            return(Content(list.ToJson()));
        }
Ejemplo n.º 3
0
        public ActionResult Index()
        {
            var list = CommConfigLogic.GetConfigListByCate((int)ConfigCategory.HPConfig).ToList();

            foreach (var item in list)
            {
                item.c_value = ConfigurationManager.AppSettings["ProductImagePath"] + item.c_value;
            }
            int[] spanKeys = new int[4] {
                1, 2, 3, 4
            };
            ViewBag.spanList   = list.Where(f => spanKeys.Contains((int)f.c_key)).ToList();
            ViewBag.IntroImage = list.Where(f => f.c_key == 5).First().c_value;
            return(View());
        }
Ejemplo n.º 4
0
        /// <summary>
        /// 获取客户关系数据
        /// </summary>
        /// <returns></returns>
        public string data()
        {
            string ageId = agentInfo.agent.c_id;


            RelationModel relation = new RelationModel();

            relation.name   = agentInfo.agent.c_name;
            relation.number = agentInfo.agent.c_mobile;
            List <RelationModel> children = new List <RelationModel>();
            var list = AgentRelationLogic.GetFirstCustomer(ageId);

            foreach (var item in list)
            {
                if (item != null)
                {
                    RelationModel m = new RelationModel();
                    m.name   = item.c_name;
                    m.number = item.c_mobile;
                    m.level  = CommConfigLogic.GetValueFromConfig((int)ConfigCategory.PostitionLevel, item.c_levle);
                    List <RelationModel> secondList = new List <RelationModel>();
                    var sList = AgentRelationLogic.GetFirstCustomer(item.c_id);
                    if (sList.Count() > 0)
                    {
                        foreach (var second in sList)
                        {
                            if (second != null)
                            {
                                RelationModel m2 = new RelationModel();
                                m2.name   = second.c_name;
                                m2.number = second.c_mobile;
                                m2.level  = CommConfigLogic.GetValueFromConfig((int)ConfigCategory.PostitionLevel, second.c_levle);
                                secondList.Add(m2);
                            }
                        }
                        m.children = secondList;
                    }
                    children.Add(m);
                }
            }
            relation.children = children;

            string json = relation.ToJson();

            return(json);
        }
Ejemplo n.º 5
0
        public ActionResult CheckApply(string keyValue)
        {
            ExpApplyEntity entity = entityApp.GetForm(keyValue);

            AgentApp    agApp = new AgentApp();
            AgentEntity ag    = agApp.GetForm(entity.c_agent_id);

            //更新申请表
            entity.c_apply_state = 1;
            entityApp.SubmitForm(entity, keyValue);

            //更新代理商表

            ag.c_agnet_type = (int)AgentType.Fran;
            agApp.SubmitForm(ag, null, ag.F_Id);

            #region 推荐奖励
            //积分奖励
            ScoreLogic.DealRewardScore(ag.F_Id, RewartType.Recommend);

            Agent ag2 = AgentLogic.GetEnityById(entity.c_agent_id);
            #endregion

            //扣减积分
            int score = Convert.ToInt32(CommConfigLogic.GetValueFromConfig((int)ConfigCategory.ScoreConfigCate, (int)RewardConfigKey.expLevelUpScore));
            ScoreDetailLogic.UpdateAgentScore(entity.c_agent_id, -score, "体验店升级扣除");

            //升级
            AgentRelation ar        = AgentRelationLogic.FindEntity(t => t.c_child_id == ag.F_Id);
            Agent         recomm_ag = AgentLogic.GetEnityById(ar.c_parent_id);
            LevelLogic.IsLevelUpWithCondition(recomm_ag);

            #region 生成代理商订单
            Order order = new Order();
            order.c_agent_id   = ag.F_Id;
            order.c_mobile     = ag.c_mobile;
            order.c_state      = (int)OrderState.NoDeliver;
            order.c_remark     = "代理商订单";
            order.c_order_num  = DateTime.Now.ToString("yyyyMMddHHmmss-") + Guid.NewGuid().ToString().Substring(0, 6);
            order.c_order_type = (int)OrderType.Agent;
            OrderLogic.InsertNewEntiy(order);
            #endregion


            return(Success("审核成功。"));
        }
Ejemplo n.º 6
0
        public BasicController()
        {
            var UserInfo = NFine.Code.OperatorProvider.Provider.GetCurrent();

            ViewBag.UserId = "";
            ViewBag.User   = "";
            if (agentInfo == null)
            {
                agentInfo = new AgentInfoModel();
                if (UserInfo != null)
                {
                    ViewBag.UserId = UserInfo.UserId;
                    ViewBag.User   = UserInfo.UserCode;
                    Agent ag = AgentLogic.GetEnityById(UserInfo.UserId);
                    if (ag == null)
                    {
                        return;
                    }
                    agentInfo.agent = ag;
                    AgentRelation ar = AgentRelationLogic.FindEntity(t => t.c_child_id == ag.c_id);
                    if (ag.c_levle != null)
                    {
                        agentInfo.Level = CommConfigLogic.GetValueFromConfig(1, ag.c_levle);
                    }
                    if (ag.c_agent_level != null)
                    {
                        agentInfo.AgLevel = CommConfigLogic.GetValueFromConfig(2, ag.c_agent_level);
                    }
                    if (ar != null)
                    {
                        agentInfo.RecomAgentName = AgentLogic.GetEnityById(ar.c_parent_id).c_name;
                    }
                    int totalScore = ScoreDetailLogic.GetTotalScore(ag.c_id);
                    int fisrtCount = 0, secondCount = 0, otherCount = 0, expCount = 0;
                    var readSessionAgent = OperatorProvider.Provider.GetAgentInfo(agentInfo.agent.c_id);
                    if (readSessionAgent != null)
                    {
                        fisrtCount  = readSessionAgent.FirstCount;
                        secondCount = readSessionAgent.SecondCount;
                        otherCount  = readSessionAgent.DeptCount;
                        expCount    = readSessionAgent.ExpCount;
                    }
                    else
                    {
                        fisrtCount = AgentRelationLogic.GetFirstCount(ag.c_id, out secondCount, out otherCount, out expCount);
                        AgentInfo sInfo = new AgentInfo();
                        sInfo.AgeId       = agentInfo.agent.c_id;
                        sInfo.FirstCount  = fisrtCount;
                        sInfo.SecondCount = secondCount;
                        sInfo.DeptCount   = otherCount;
                        sInfo.ExpCount    = expCount;
                        OperatorProvider.Provider.AddCurrentAgentInfo(sInfo, agentInfo.agent.c_id);
                    }
                    agentInfo.FirstCount  = fisrtCount;
                    agentInfo.SecondCount = secondCount;
                    agentInfo.OtherCount  = otherCount;
                    agentInfo.ExpCount    = expCount;
                    agentInfo.TotalScore  = totalScore.ToString();
                    int dealingScore = ScoreCashLogic.GetTotalCashScoreByState(ag.c_id, CashScoreState.Dealing);
                    agentInfo.CanCashScore    = ((int)agentInfo.agent.c_score - dealingScore);
                    agentInfo.expLevelUpScore = Convert.ToInt32(CommConfigLogic.GetValueFromConfig((int)ConfigCategory.ScoreConfigCate, (int)RewardConfigKey.expLevelUpScore));;
                    agentInfo.prodStartAmount = Convert.ToInt32(CommConfigLogic.GetValueFromConfig((int)ConfigCategory.ScoreConfigCate, (int)RewardConfigKey.productAmount));
                }
            }
        }