config_data_breed.go 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461
  1. package backend
  2. import (
  3. "kpt-pasture/model"
  4. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  5. "gitee.com/xuyiping_admin/pkg/logger/zaplog"
  6. "go.uber.org/zap"
  7. )
  8. func (s *StoreEntry) LactEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  9. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  10. if isAll == model.IsAllYes {
  11. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  12. Value: int32(0),
  13. Label: "全部",
  14. Disabled: true,
  15. })
  16. }
  17. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  18. Value: int32(1),
  19. Label: "1",
  20. Disabled: true,
  21. }, &pasturePb.ConfigOptionsList{
  22. Value: int32(2),
  23. Label: "2",
  24. Disabled: true,
  25. }, &pasturePb.ConfigOptionsList{
  26. Value: int32(3),
  27. Label: "3",
  28. Disabled: true,
  29. }, &pasturePb.ConfigOptionsList{
  30. Value: int32(4),
  31. Label: ">3",
  32. Disabled: true,
  33. })
  34. return configOptions
  35. }
  36. func (s *StoreEntry) DiseaseAnalysisMethodEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  37. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  38. if isAll == model.IsAllYes {
  39. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  40. Value: int32(pasturePb.DiseaseAnalysisMethod_Invalid),
  41. Label: "全部",
  42. Disabled: true,
  43. })
  44. }
  45. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  46. Value: int32(pasturePb.DiseaseAnalysisMethod_Months),
  47. Label: "按月份",
  48. Disabled: true,
  49. }, &pasturePb.ConfigOptionsList{
  50. Value: int32(pasturePb.DiseaseAnalysisMethod_Disease_Category),
  51. Label: "疾病分类",
  52. Disabled: true,
  53. }, &pasturePb.ConfigOptionsList{
  54. Value: int32(pasturePb.DiseaseAnalysisMethod_Disease),
  55. Label: "疾病名称",
  56. Disabled: true,
  57. }, &pasturePb.ConfigOptionsList{
  58. Value: int32(pasturePb.DiseaseAnalysisMethod_Operator),
  59. Label: "兽医",
  60. Disabled: true,
  61. }, &pasturePb.ConfigOptionsList{
  62. Value: int32(pasturePb.DiseaseAnalysisMethod_Prescription),
  63. Label: "处方",
  64. Disabled: true,
  65. })
  66. return configOptions
  67. }
  68. func (s *StoreEntry) diseaseTypeEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  69. configDiseaseTypeList := make([]*model.ConfigDiseaseType, 0)
  70. configOptionsList := make([]*pasturePb.ConfigOptionsList, 0)
  71. if err := s.DB.Where("is_show = ?", pasturePb.IsShow_Ok).Find(&configDiseaseTypeList).Error; err != nil {
  72. zaplog.Error("diseaseTypeEnumList", zap.Any("Find", err))
  73. }
  74. for _, v := range configDiseaseTypeList {
  75. configOptionsList = append(configOptionsList, &pasturePb.ConfigOptionsList{
  76. Value: int32(v.Id),
  77. Label: v.Name,
  78. Disabled: true,
  79. })
  80. }
  81. return configOptionsList
  82. }
  83. func (s *StoreEntry) SingleFactorAnalysisMethodEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  84. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  85. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  86. Value: int32(pasturePb.SingleFactorAnalysisMethod_Cycle),
  87. Label: "按周期分析",
  88. Disabled: true,
  89. }, &pasturePb.ConfigOptionsList{
  90. Value: int32(pasturePb.SingleFactorAnalysisMethod_Months),
  91. Label: "按月份分析",
  92. Disabled: true,
  93. }, &pasturePb.ConfigOptionsList{
  94. Value: int32(pasturePb.SingleFactorAnalysisMethod_Mating_Times),
  95. Label: "按配种次数分析",
  96. Disabled: true,
  97. }, &pasturePb.ConfigOptionsList{
  98. Value: int32(pasturePb.SingleFactorAnalysisMethod_Breeding_Method),
  99. Label: "按配种方式分析",
  100. Disabled: true,
  101. }, &pasturePb.ConfigOptionsList{
  102. Value: int32(pasturePb.SingleFactorAnalysisMethod_Breeding_Company),
  103. Label: "按育种公司分析",
  104. Disabled: true,
  105. }, &pasturePb.ConfigOptionsList{
  106. Value: int32(pasturePb.SingleFactorAnalysisMethod_Operation),
  107. Label: "按兽医人员分析",
  108. Disabled: true,
  109. }, &pasturePb.ConfigOptionsList{
  110. Value: int32(pasturePb.SingleFactorAnalysisMethod_Mating_Interval),
  111. Label: "按配种间隔分析",
  112. Disabled: true,
  113. }, &pasturePb.ConfigOptionsList{
  114. Value: int32(pasturePb.SingleFactorAnalysisMethod_Bull),
  115. Label: "按公牛号分析",
  116. Disabled: true,
  117. }, &pasturePb.ConfigOptionsList{
  118. Value: int32(pasturePb.SingleFactorAnalysisMethod_Breeding_Cycle),
  119. Label: "按配种周期分析",
  120. Disabled: true,
  121. }, &pasturePb.ConfigOptionsList{
  122. Value: int32(pasturePb.SingleFactorAnalysisMethod_Week),
  123. Label: "按星期分析",
  124. Disabled: true,
  125. }, &pasturePb.ConfigOptionsList{
  126. Value: int32(pasturePb.SingleFactorAnalysisMethod_Lact),
  127. Label: "按胎次分析",
  128. Disabled: true,
  129. })
  130. return configOptions
  131. }
  132. func (s *StoreEntry) LactIntervalSymbolEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  133. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  134. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  135. Value: int32(pasturePb.CompareSymbol_Less_Than),
  136. Label: "<",
  137. Disabled: true,
  138. }, &pasturePb.ConfigOptionsList{
  139. Value: int32(pasturePb.CompareSymbol_Less_Than_Or_Equal_To),
  140. Label: "<=",
  141. Disabled: true,
  142. }, &pasturePb.ConfigOptionsList{
  143. Value: int32(pasturePb.CompareSymbol_Greater_Than),
  144. Label: ">",
  145. Disabled: true,
  146. }, &pasturePb.ConfigOptionsList{
  147. Value: int32(pasturePb.CompareSymbol_Greater_Than_Or_Equal_To),
  148. Label: ">=",
  149. Disabled: true,
  150. }, &pasturePb.ConfigOptionsList{
  151. Value: int32(pasturePb.CompareSymbol_Equal_To),
  152. Label: "=",
  153. Disabled: true,
  154. }, &pasturePb.ConfigOptionsList{
  155. Value: int32(pasturePb.CompareSymbol_Not_Equal_To),
  156. Label: "!=",
  157. Disabled: true,
  158. }, &pasturePb.ConfigOptionsList{
  159. Value: int32(pasturePb.CompareSymbol_Between),
  160. Label: "区间",
  161. Disabled: true,
  162. })
  163. return configOptions
  164. }
  165. func (s *StoreEntry) MultiFactorAnalysisMethodEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  166. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  167. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  168. Value: int32(pasturePb.MultiFactorAnalysisMethod_Months),
  169. Label: "月份",
  170. Disabled: true,
  171. }, &pasturePb.ConfigOptionsList{
  172. Value: int32(pasturePb.MultiFactorAnalysisMethod_Week),
  173. Label: "周",
  174. Disabled: true,
  175. }, &pasturePb.ConfigOptionsList{
  176. Value: int32(pasturePb.MultiFactorAnalysisMethod_Operation),
  177. Label: "配种员",
  178. Disabled: true,
  179. }, &pasturePb.ConfigOptionsList{
  180. Value: int32(pasturePb.MultiFactorAnalysisMethod_Bull),
  181. Label: "公牛",
  182. Disabled: true,
  183. }, &pasturePb.ConfigOptionsList{
  184. Value: int32(pasturePb.MultiFactorAnalysisMethod_Lact),
  185. Label: "胎次",
  186. Disabled: true,
  187. }, &pasturePb.ConfigOptionsList{
  188. Value: int32(pasturePb.MultiFactorAnalysisMethod_Mating_Times),
  189. Label: "配次",
  190. Disabled: true,
  191. }, &pasturePb.ConfigOptionsList{
  192. Value: int32(pasturePb.MultiFactorAnalysisMethod_Breeding_Method),
  193. Label: "配种方式",
  194. Disabled: true,
  195. })
  196. return configOptions
  197. }
  198. func (s *StoreEntry) SaleCowAnalysisMethodEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  199. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  200. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  201. Value: int32(pasturePb.SaleCowAnalysisMethod_Months),
  202. Label: "月份",
  203. Disabled: true,
  204. }, &pasturePb.ConfigOptionsList{
  205. Value: int32(pasturePb.SaleCowAnalysisMethod_Dealer),
  206. Label: "经销商",
  207. Disabled: true,
  208. })
  209. return configOptions
  210. }
  211. func (s *StoreEntry) NeckRingStatusEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  212. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  213. if isAll == model.IsAllYes {
  214. configOptions = append(configOptions,
  215. &pasturePb.ConfigOptionsList{
  216. Value: int32(pasturePb.NeckRingStatus_Invalid),
  217. Label: "全部",
  218. Disabled: true,
  219. })
  220. }
  221. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  222. Value: int32(pasturePb.NeckRingStatus_Bind),
  223. Label: "绑定",
  224. Disabled: true,
  225. }, &pasturePb.ConfigOptionsList{
  226. Value: int32(pasturePb.NeckRingStatus_Normal),
  227. Label: "正常",
  228. Disabled: true,
  229. }, &pasturePb.ConfigOptionsList{
  230. Value: int32(pasturePb.NeckRingStatus_Offline),
  231. Label: "在线",
  232. Disabled: true,
  233. }, &pasturePb.ConfigOptionsList{
  234. Value: int32(pasturePb.NeckRingStatus_Error),
  235. Label: "异常",
  236. Disabled: true,
  237. })
  238. return configOptions
  239. }
  240. func (s *StoreEntry) WorkOrderSubUnitEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  241. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  242. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  243. Value: int32(pasturePb.WorkOrderSubscribeUnit_Person),
  244. Label: "个人",
  245. Disabled: true,
  246. }, &pasturePb.ConfigOptionsList{
  247. Value: int32(pasturePb.WorkOrderSubscribeUnit_dept),
  248. Label: "部门",
  249. Disabled: true,
  250. })
  251. return configOptions
  252. }
  253. func (s *StoreEntry) WorkOrderPriorityEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  254. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  255. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  256. Value: int32(pasturePb.Priority_Low),
  257. Label: "低",
  258. Disabled: true,
  259. }, &pasturePb.ConfigOptionsList{
  260. Value: int32(pasturePb.Priority_Middle),
  261. Label: "一般",
  262. Disabled: true,
  263. }, &pasturePb.ConfigOptionsList{
  264. Value: int32(pasturePb.Priority_High),
  265. Label: "紧急",
  266. Disabled: true,
  267. })
  268. return configOptions
  269. }
  270. func (s *StoreEntry) WorkOrderCategoryEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  271. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  272. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  273. Value: int32(pasturePb.WorkOrderCategory_Health),
  274. Label: "保健",
  275. Disabled: true,
  276. }, &pasturePb.ConfigOptionsList{
  277. Value: int32(pasturePb.WorkOrderCategory_Breed),
  278. Label: "繁殖",
  279. Disabled: true,
  280. }, &pasturePb.ConfigOptionsList{
  281. Value: int32(pasturePb.WorkOrderCategory_Nutrition),
  282. Label: "营养",
  283. Disabled: true,
  284. }, &pasturePb.ConfigOptionsList{
  285. Value: int32(pasturePb.WorkOrderCategory_Ordinary),
  286. Label: "日常",
  287. Disabled: true,
  288. }, &pasturePb.ConfigOptionsList{
  289. Value: int32(pasturePb.WorkOrderCategory_Other),
  290. Label: "其他",
  291. Disabled: true,
  292. })
  293. return configOptions
  294. }
  295. func CalendarTypeEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  296. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  297. if isAll == model.IsAllYes {
  298. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  299. Value: int32(pasturePb.SameTimeStatus_Invalid),
  300. Label: "全部",
  301. Disabled: true,
  302. })
  303. }
  304. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  305. Value: int32(pasturePb.CalendarType_Immunisation),
  306. Label: "免疫",
  307. Disabled: true,
  308. }, &pasturePb.ConfigOptionsList{
  309. Value: int32(pasturePb.CalendarType_PG),
  310. Label: "同期PG",
  311. Disabled: true,
  312. }, &pasturePb.ConfigOptionsList{
  313. Value: int32(pasturePb.CalendarType_RnGH),
  314. Label: "同期RnGH",
  315. Disabled: true,
  316. }, &pasturePb.ConfigOptionsList{
  317. Value: int32(pasturePb.CalendarType_Pregnancy_Check),
  318. Label: "孕检",
  319. Disabled: true,
  320. }, &pasturePb.ConfigOptionsList{
  321. Value: int32(pasturePb.CalendarType_WorkOrder),
  322. Label: "工单",
  323. Disabled: true,
  324. }, &pasturePb.ConfigOptionsList{
  325. Value: int32(pasturePb.CalendarType_Weaning),
  326. Label: "断奶",
  327. Disabled: true,
  328. }, &pasturePb.ConfigOptionsList{
  329. Value: int32(pasturePb.CalendarType_Treatment),
  330. Label: "治疗",
  331. Disabled: true,
  332. }, &pasturePb.ConfigOptionsList{
  333. Value: int32(pasturePb.CalendarType_Mating),
  334. Label: "配种",
  335. Disabled: true,
  336. })
  337. return configOptions
  338. }
  339. func (s *StoreEntry) AbortionReasonsEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  340. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  341. if isAll == model.IsAllYes {
  342. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  343. Value: int32(pasturePb.AbortionReasons_Invalid),
  344. Label: "全部",
  345. Disabled: true,
  346. })
  347. }
  348. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  349. Value: int32(pasturePb.AbortionReasons_Mechanical_Abortion),
  350. Label: "机械性流产",
  351. Disabled: true,
  352. }, &pasturePb.ConfigOptionsList{
  353. Value: int32(pasturePb.AbortionReasons_Malnutrition_Abortion),
  354. Label: "营养不良性流产",
  355. Disabled: true,
  356. }, &pasturePb.ConfigOptionsList{
  357. Value: int32(pasturePb.AbortionReasons_Mycotoxin_Abortion),
  358. Label: "霉菌毒素流产",
  359. Disabled: true,
  360. }, &pasturePb.ConfigOptionsList{
  361. Value: int32(pasturePb.AbortionReasons_Habitual_Abortion),
  362. Label: "习惯性流产",
  363. Disabled: true,
  364. }, &pasturePb.ConfigOptionsList{
  365. Value: int32(pasturePb.AbortionReasons_Brucellosis_Abortion),
  366. Label: "布病流产",
  367. Disabled: true,
  368. }, &pasturePb.ConfigOptionsList{
  369. Value: int32(pasturePb.AbortionReasons_Inflammatory_Abortion),
  370. Label: "产道炎症性流产",
  371. Disabled: true,
  372. }, &pasturePb.ConfigOptionsList{
  373. Value: int32(pasturePb.AbortionReasons_Heat_Stress_Abortion),
  374. Label: "热应激流产",
  375. Disabled: true,
  376. }, &pasturePb.ConfigOptionsList{
  377. Value: int32(pasturePb.AbortionReasons_Infectious_Abortion),
  378. Label: "传染病性流产",
  379. Disabled: true,
  380. }, &pasturePb.ConfigOptionsList{
  381. Value: int32(pasturePb.AbortionReasons_Other),
  382. Label: "其他",
  383. Disabled: true,
  384. })
  385. return configOptions
  386. }
  387. func (s *StoreEntry) HealthStatusEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  388. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  389. if isAll == model.IsAllYes {
  390. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  391. Value: int32(pasturePb.HealthStatus_Invalid),
  392. Label: "全部",
  393. Disabled: true,
  394. })
  395. }
  396. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  397. Value: int32(pasturePb.HealthStatus_Health),
  398. Label: "健康",
  399. Disabled: true,
  400. }, &pasturePb.ConfigOptionsList{
  401. Value: int32(pasturePb.HealthStatus_Disease),
  402. Label: "发病",
  403. Disabled: true,
  404. }, &pasturePb.ConfigOptionsList{
  405. Value: int32(pasturePb.HealthStatus_Treatment),
  406. Label: "治疗",
  407. Disabled: true,
  408. }, &pasturePb.ConfigOptionsList{
  409. Value: int32(pasturePb.HealthStatus_Curable),
  410. Label: "治愈",
  411. Disabled: true,
  412. }, &pasturePb.ConfigOptionsList{
  413. Value: int32(pasturePb.HealthStatus_Out),
  414. Label: "淘汰",
  415. Disabled: true,
  416. }, &pasturePb.ConfigOptionsList{
  417. Value: int32(pasturePb.HealthStatus_Dead),
  418. Label: "死亡",
  419. Disabled: true,
  420. })
  421. return configOptions
  422. }
  423. func (s *StoreEntry) CalvingAnalysisMethodEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  424. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  425. if isAll == model.IsAllYes {
  426. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  427. Value: int32(pasturePb.CalvingAnalysisMethod_Invalid),
  428. Label: "全部",
  429. Disabled: true,
  430. })
  431. }
  432. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  433. Value: int32(pasturePb.CalvingAnalysisMethod_Months),
  434. Label: "按月份统计",
  435. Disabled: true,
  436. }, &pasturePb.ConfigOptionsList{
  437. Value: int32(pasturePb.CalvingAnalysisMethod_CowKind),
  438. Label: "按照品种统计",
  439. Disabled: true,
  440. })
  441. return configOptions
  442. }