Ejemplo n.º 1
0
 public JsonResult GetCustomerState()
 {
     EnumJson[] cState = EnumJson.Convert(typeof(Sintoacct.Progress.Models.CustomerState));
     foreach (EnumJson s in cState)
     {
         if (s.Name == "Normal")
         {
             s.Name = "正常";
         }
         if (s.Name == "Stopped")
         {
             s.Name = "欠费";
         }
         if (s.Name == "Canceled")
         {
             s.Name = "已注销";
         }
         if (s.Name == "Deleted")
         {
             s.Name = "已删除";
         }
         if (s.Name == "LostContact")
         {
             s.Name = "已失联";
         }
         if (s.Name == "Transferred")
         {
             s.Name = "已转走";
         }
     }
     return(Json(cState, "text/html", JsonRequestBehavior.AllowGet));
 }
Ejemplo n.º 2
0
 public JsonResult GetWorkOrderPriority()
 {
     return(Json(EnumJson.Convert(typeof(Sintoacct.Progress.Models.WorkOrderPriority)), "text/html", JsonRequestBehavior.AllowGet));
 }
Ejemplo n.º 3
0
 public JsonResult GetCustomerLevel()
 {
     return(Json(EnumJson.Convert(typeof(Sintoacct.Progress.Models.CustomerLevel)), "text/html", JsonRequestBehavior.AllowGet));
 }