config_data_breed.go 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480
  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. }, &pasturePb.ConfigOptionsList{
  163. Value: int32(pasturePb.CompareSymbol_Include),
  164. Label: "包含",
  165. Disabled: true,
  166. }, &pasturePb.ConfigOptionsList{
  167. Value: int32(pasturePb.CompareSymbol_Not_Include),
  168. Label: "不包含",
  169. Disabled: true,
  170. })
  171. return configOptions
  172. }
  173. func (s *StoreEntry) MultiFactorAnalysisMethodEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  174. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  175. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  176. Value: int32(pasturePb.MultiFactorAnalysisMethod_Months),
  177. Label: "月份",
  178. Props: "months",
  179. Disabled: true,
  180. }, &pasturePb.ConfigOptionsList{
  181. Value: int32(pasturePb.MultiFactorAnalysisMethod_Week),
  182. Label: "周",
  183. Props: "week",
  184. Disabled: true,
  185. }, &pasturePb.ConfigOptionsList{
  186. Value: int32(pasturePb.MultiFactorAnalysisMethod_Operation),
  187. Label: "配种员",
  188. Props: "operationName",
  189. Disabled: true,
  190. }, &pasturePb.ConfigOptionsList{
  191. Value: int32(pasturePb.MultiFactorAnalysisMethod_Bull),
  192. Label: "公牛",
  193. Props: "bull",
  194. Disabled: true,
  195. }, &pasturePb.ConfigOptionsList{
  196. Value: int32(pasturePb.MultiFactorAnalysisMethod_Lact),
  197. Label: "胎次",
  198. Props: "lact",
  199. Disabled: true,
  200. }, &pasturePb.ConfigOptionsList{
  201. Value: int32(pasturePb.MultiFactorAnalysisMethod_Mating_Times),
  202. Label: "配次",
  203. Props: "matingTimes",
  204. Disabled: true,
  205. }, &pasturePb.ConfigOptionsList{
  206. Value: int32(pasturePb.MultiFactorAnalysisMethod_Breeding_Method),
  207. Label: "配种方式",
  208. Props: "exposeEstrusType",
  209. Disabled: true,
  210. })
  211. return configOptions
  212. }
  213. func (s *StoreEntry) SaleCowAnalysisMethodEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  214. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  215. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  216. Value: int32(pasturePb.SaleCowAnalysisMethod_Months),
  217. Label: "月份",
  218. Disabled: true,
  219. }, &pasturePb.ConfigOptionsList{
  220. Value: int32(pasturePb.SaleCowAnalysisMethod_Dealer),
  221. Label: "经销商",
  222. Disabled: true,
  223. })
  224. return configOptions
  225. }
  226. func (s *StoreEntry) NeckRingStatusEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  227. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  228. if isAll == model.IsAllYes {
  229. configOptions = append(configOptions,
  230. &pasturePb.ConfigOptionsList{
  231. Value: int32(pasturePb.NeckRingStatus_Invalid),
  232. Label: "全部",
  233. Disabled: true,
  234. })
  235. }
  236. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  237. Value: int32(pasturePb.NeckRingStatus_Unbind),
  238. Label: "未绑定",
  239. Disabled: true,
  240. }, &pasturePb.ConfigOptionsList{
  241. Value: int32(pasturePb.NeckRingStatus_Bind),
  242. Label: "绑定",
  243. Disabled: true,
  244. }, &pasturePb.ConfigOptionsList{
  245. Value: int32(pasturePb.NeckRingStatus_Normal),
  246. Label: "正常",
  247. Disabled: true,
  248. }, &pasturePb.ConfigOptionsList{
  249. Value: int32(pasturePb.NeckRingStatus_Offline),
  250. Label: "在线",
  251. Disabled: true,
  252. }, &pasturePb.ConfigOptionsList{
  253. Value: int32(pasturePb.NeckRingStatus_Error),
  254. Label: "异常",
  255. Disabled: true,
  256. })
  257. return configOptions
  258. }
  259. func (s *StoreEntry) WorkOrderSubUnitEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  260. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  261. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  262. Value: int32(pasturePb.WorkOrderSubscribeUnit_Person),
  263. Label: "个人",
  264. Disabled: true,
  265. }, &pasturePb.ConfigOptionsList{
  266. Value: int32(pasturePb.WorkOrderSubscribeUnit_dept),
  267. Label: "部门",
  268. Disabled: true,
  269. })
  270. return configOptions
  271. }
  272. func (s *StoreEntry) WorkOrderPriorityEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  273. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  274. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  275. Value: int32(pasturePb.Priority_Low),
  276. Label: "低",
  277. Disabled: true,
  278. }, &pasturePb.ConfigOptionsList{
  279. Value: int32(pasturePb.Priority_Middle),
  280. Label: "一般",
  281. Disabled: true,
  282. }, &pasturePb.ConfigOptionsList{
  283. Value: int32(pasturePb.Priority_High),
  284. Label: "紧急",
  285. Disabled: true,
  286. })
  287. return configOptions
  288. }
  289. func (s *StoreEntry) WorkOrderCategoryEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  290. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  291. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  292. Value: int32(pasturePb.WorkOrderCategory_Health),
  293. Label: "保健",
  294. Disabled: true,
  295. }, &pasturePb.ConfigOptionsList{
  296. Value: int32(pasturePb.WorkOrderCategory_Breed),
  297. Label: "繁殖",
  298. Disabled: true,
  299. }, &pasturePb.ConfigOptionsList{
  300. Value: int32(pasturePb.WorkOrderCategory_Nutrition),
  301. Label: "营养",
  302. Disabled: true,
  303. }, &pasturePb.ConfigOptionsList{
  304. Value: int32(pasturePb.WorkOrderCategory_Ordinary),
  305. Label: "日常",
  306. Disabled: true,
  307. }, &pasturePb.ConfigOptionsList{
  308. Value: int32(pasturePb.WorkOrderCategory_Other),
  309. Label: "其他",
  310. Disabled: true,
  311. })
  312. return configOptions
  313. }
  314. func CalendarTypeEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  315. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  316. if isAll == model.IsAllYes {
  317. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  318. Value: int32(pasturePb.CalendarType_Invalid),
  319. Label: "全部",
  320. Disabled: true,
  321. })
  322. }
  323. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  324. Value: int32(pasturePb.CalendarType_Immunisation),
  325. Label: "免疫",
  326. Disabled: true,
  327. }, &pasturePb.ConfigOptionsList{
  328. Value: int32(pasturePb.CalendarType_PG),
  329. Label: "同期PG",
  330. Disabled: true,
  331. }, &pasturePb.ConfigOptionsList{
  332. Value: int32(pasturePb.CalendarType_RnGH),
  333. Label: "同期RnGH",
  334. Disabled: true,
  335. }, &pasturePb.ConfigOptionsList{
  336. Value: int32(pasturePb.CalendarType_Pregnancy_Check),
  337. Label: "孕检",
  338. Disabled: true,
  339. }, &pasturePb.ConfigOptionsList{
  340. Value: int32(pasturePb.CalendarType_Weaning),
  341. Label: "断奶",
  342. Disabled: true,
  343. }, &pasturePb.ConfigOptionsList{
  344. Value: int32(pasturePb.CalendarType_Mating),
  345. Label: "配种",
  346. Disabled: true,
  347. }, &pasturePb.ConfigOptionsList{
  348. Value: int32(pasturePb.CalendarType_Calving),
  349. Label: "产犊",
  350. Disabled: true,
  351. })
  352. return configOptions
  353. }
  354. func (s *StoreEntry) AbortionReasonsEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  355. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  356. if isAll == model.IsAllYes {
  357. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  358. Value: int32(pasturePb.AbortionReasons_Invalid),
  359. Label: "全部",
  360. Disabled: true,
  361. })
  362. }
  363. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  364. Value: int32(pasturePb.AbortionReasons_Mechanical_Abortion),
  365. Label: "机械性流产",
  366. Disabled: true,
  367. }, &pasturePb.ConfigOptionsList{
  368. Value: int32(pasturePb.AbortionReasons_Malnutrition_Abortion),
  369. Label: "营养不良性流产",
  370. Disabled: true,
  371. }, &pasturePb.ConfigOptionsList{
  372. Value: int32(pasturePb.AbortionReasons_Mycotoxin_Abortion),
  373. Label: "霉菌毒素流产",
  374. Disabled: true,
  375. }, &pasturePb.ConfigOptionsList{
  376. Value: int32(pasturePb.AbortionReasons_Habitual_Abortion),
  377. Label: "习惯性流产",
  378. Disabled: true,
  379. }, &pasturePb.ConfigOptionsList{
  380. Value: int32(pasturePb.AbortionReasons_Brucellosis_Abortion),
  381. Label: "布病流产",
  382. Disabled: true,
  383. }, &pasturePb.ConfigOptionsList{
  384. Value: int32(pasturePb.AbortionReasons_Inflammatory_Abortion),
  385. Label: "产道炎症性流产",
  386. Disabled: true,
  387. }, &pasturePb.ConfigOptionsList{
  388. Value: int32(pasturePb.AbortionReasons_Heat_Stress_Abortion),
  389. Label: "热应激流产",
  390. Disabled: true,
  391. }, &pasturePb.ConfigOptionsList{
  392. Value: int32(pasturePb.AbortionReasons_Infectious_Abortion),
  393. Label: "传染病性流产",
  394. Disabled: true,
  395. }, &pasturePb.ConfigOptionsList{
  396. Value: int32(pasturePb.AbortionReasons_Unknown),
  397. Label: "未知原因",
  398. Disabled: true,
  399. }, &pasturePb.ConfigOptionsList{
  400. Value: int32(pasturePb.AbortionReasons_Other),
  401. Label: "其他",
  402. Disabled: true,
  403. })
  404. return configOptions
  405. }
  406. func (s *StoreEntry) HealthStatusEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  407. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  408. if isAll == model.IsAllYes {
  409. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  410. Value: int32(pasturePb.HealthStatus_Invalid),
  411. Label: "全部",
  412. Disabled: true,
  413. })
  414. }
  415. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  416. Value: int32(pasturePb.HealthStatus_Health),
  417. Label: "健康",
  418. Disabled: true,
  419. }, &pasturePb.ConfigOptionsList{
  420. Value: int32(pasturePb.HealthStatus_Disease),
  421. Label: "发病",
  422. Disabled: true,
  423. }, &pasturePb.ConfigOptionsList{
  424. Value: int32(pasturePb.HealthStatus_Treatment),
  425. Label: "治疗中",
  426. Disabled: true,
  427. }, &pasturePb.ConfigOptionsList{
  428. Value: int32(pasturePb.HealthStatus_Curable),
  429. Label: "治愈",
  430. Disabled: true,
  431. }, &pasturePb.ConfigOptionsList{
  432. Value: int32(pasturePb.HealthStatus_Out),
  433. Label: "淘汰",
  434. Disabled: true,
  435. }, &pasturePb.ConfigOptionsList{
  436. Value: int32(pasturePb.HealthStatus_Dead),
  437. Label: "死亡",
  438. Disabled: true,
  439. })
  440. return configOptions
  441. }
  442. func (s *StoreEntry) CalvingAnalysisMethodEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  443. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  444. if isAll == model.IsAllYes {
  445. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  446. Value: int32(pasturePb.CalvingAnalysisMethod_Invalid),
  447. Label: "全部",
  448. Disabled: true,
  449. })
  450. }
  451. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  452. Value: int32(pasturePb.CalvingAnalysisMethod_Months),
  453. Label: "按月份统计",
  454. Disabled: true,
  455. }, &pasturePb.ConfigOptionsList{
  456. Value: int32(pasturePb.CalvingAnalysisMethod_CowKind),
  457. Label: "按照品种统计",
  458. Disabled: true,
  459. })
  460. return configOptions
  461. }