config_data_breed.go 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498
  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) NeckRingIsBindEnumList(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.NeckRingIsBind_Invalid),
  232. Label: "全部",
  233. Disabled: true,
  234. })
  235. }
  236. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  237. Value: int32(pasturePb.NeckRingIsBind_Bind),
  238. Label: "已绑定",
  239. Disabled: true,
  240. }, &pasturePb.ConfigOptionsList{
  241. Value: int32(pasturePb.NeckRingIsBind_Unbind),
  242. Label: "未绑定",
  243. Disabled: true,
  244. })
  245. return configOptions
  246. }
  247. func (s *StoreEntry) NeckRingStatusEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  248. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  249. if isAll == model.IsAllYes {
  250. configOptions = append(configOptions,
  251. &pasturePb.ConfigOptionsList{
  252. Value: int32(pasturePb.NeckRingStatus_Invalid),
  253. Label: "全部",
  254. Disabled: true,
  255. })
  256. }
  257. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  258. Value: int32(pasturePb.NeckRingStatus_Normal),
  259. Label: "正常",
  260. Disabled: true,
  261. }, &pasturePb.ConfigOptionsList{
  262. Value: int32(pasturePb.NeckRingStatus_Abnormal),
  263. Label: "异常",
  264. Disabled: true,
  265. })
  266. return configOptions
  267. }
  268. func (s *StoreEntry) WorkOrderSubUnitEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  269. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  270. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  271. Value: int32(pasturePb.WorkOrderSubscribeUnit_Person),
  272. Label: "个人",
  273. Disabled: true,
  274. }, &pasturePb.ConfigOptionsList{
  275. Value: int32(pasturePb.WorkOrderSubscribeUnit_dept),
  276. Label: "部门",
  277. Disabled: true,
  278. })
  279. return configOptions
  280. }
  281. func (s *StoreEntry) WorkOrderPriorityEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  282. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  283. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  284. Value: int32(pasturePb.Priority_Low),
  285. Label: "低",
  286. Disabled: true,
  287. }, &pasturePb.ConfigOptionsList{
  288. Value: int32(pasturePb.Priority_Middle),
  289. Label: "一般",
  290. Disabled: true,
  291. }, &pasturePb.ConfigOptionsList{
  292. Value: int32(pasturePb.Priority_High),
  293. Label: "紧急",
  294. Disabled: true,
  295. })
  296. return configOptions
  297. }
  298. func (s *StoreEntry) WorkOrderCategoryEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  299. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  300. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  301. Value: int32(pasturePb.WorkOrderCategory_Health),
  302. Label: "保健",
  303. Disabled: true,
  304. }, &pasturePb.ConfigOptionsList{
  305. Value: int32(pasturePb.WorkOrderCategory_Breed),
  306. Label: "繁殖",
  307. Disabled: true,
  308. }, &pasturePb.ConfigOptionsList{
  309. Value: int32(pasturePb.WorkOrderCategory_Nutrition),
  310. Label: "营养",
  311. Disabled: true,
  312. }, &pasturePb.ConfigOptionsList{
  313. Value: int32(pasturePb.WorkOrderCategory_Ordinary),
  314. Label: "日常",
  315. Disabled: true,
  316. }, &pasturePb.ConfigOptionsList{
  317. Value: int32(pasturePb.WorkOrderCategory_Other),
  318. Label: "其他",
  319. Disabled: true,
  320. })
  321. return configOptions
  322. }
  323. func CalendarTypeEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  324. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  325. if isAll == model.IsAllYes {
  326. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  327. Value: int32(pasturePb.CalendarType_Invalid),
  328. Label: "全部",
  329. Disabled: true,
  330. })
  331. }
  332. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  333. Value: int32(pasturePb.CalendarType_Immunisation),
  334. Label: "免疫",
  335. Disabled: true,
  336. }, &pasturePb.ConfigOptionsList{
  337. Value: int32(pasturePb.CalendarType_PG),
  338. Label: "同期PG",
  339. Disabled: true,
  340. }, &pasturePb.ConfigOptionsList{
  341. Value: int32(pasturePb.CalendarType_RnGH),
  342. Label: "同期RnGH",
  343. Disabled: true,
  344. }, &pasturePb.ConfigOptionsList{
  345. Value: int32(pasturePb.CalendarType_Pregnancy_Check),
  346. Label: "孕检",
  347. Disabled: true,
  348. }, &pasturePb.ConfigOptionsList{
  349. Value: int32(pasturePb.CalendarType_Weaning),
  350. Label: "断奶",
  351. Disabled: true,
  352. }, &pasturePb.ConfigOptionsList{
  353. Value: int32(pasturePb.CalendarType_Disease),
  354. Label: "疾病",
  355. Disabled: true,
  356. }, &pasturePb.ConfigOptionsList{
  357. Value: int32(pasturePb.CalendarType_Mating),
  358. Label: "配种",
  359. Disabled: true,
  360. }, &pasturePb.ConfigOptionsList{
  361. Value: int32(pasturePb.CalendarType_Calving),
  362. Label: "产犊",
  363. Disabled: true,
  364. }, &pasturePb.ConfigOptionsList{
  365. Value: int32(pasturePb.CalendarType_DryMilk),
  366. Label: "干奶",
  367. Disabled: true,
  368. })
  369. return configOptions
  370. }
  371. func (s *StoreEntry) AbortionReasonsEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  372. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  373. if isAll == model.IsAllYes {
  374. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  375. Value: int32(pasturePb.AbortionReasons_Invalid),
  376. Label: "全部",
  377. Disabled: true,
  378. })
  379. }
  380. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  381. Value: int32(pasturePb.AbortionReasons_Mechanical_Abortion),
  382. Label: "机械性流产",
  383. Disabled: true,
  384. }, &pasturePb.ConfigOptionsList{
  385. Value: int32(pasturePb.AbortionReasons_Malnutrition_Abortion),
  386. Label: "营养不良性流产",
  387. Disabled: true,
  388. }, &pasturePb.ConfigOptionsList{
  389. Value: int32(pasturePb.AbortionReasons_Mycotoxin_Abortion),
  390. Label: "霉菌毒素流产",
  391. Disabled: true,
  392. }, &pasturePb.ConfigOptionsList{
  393. Value: int32(pasturePb.AbortionReasons_Habitual_Abortion),
  394. Label: "习惯性流产",
  395. Disabled: true,
  396. }, &pasturePb.ConfigOptionsList{
  397. Value: int32(pasturePb.AbortionReasons_Brucellosis_Abortion),
  398. Label: "布病流产",
  399. Disabled: true,
  400. }, &pasturePb.ConfigOptionsList{
  401. Value: int32(pasturePb.AbortionReasons_Inflammatory_Abortion),
  402. Label: "产道炎症性流产",
  403. Disabled: true,
  404. }, &pasturePb.ConfigOptionsList{
  405. Value: int32(pasturePb.AbortionReasons_Heat_Stress_Abortion),
  406. Label: "热应激流产",
  407. Disabled: true,
  408. }, &pasturePb.ConfigOptionsList{
  409. Value: int32(pasturePb.AbortionReasons_Infectious_Abortion),
  410. Label: "传染病性流产",
  411. Disabled: true,
  412. }, &pasturePb.ConfigOptionsList{
  413. Value: int32(pasturePb.AbortionReasons_Unknown),
  414. Label: "未知原因",
  415. Disabled: true,
  416. }, &pasturePb.ConfigOptionsList{
  417. Value: int32(pasturePb.AbortionReasons_Other),
  418. Label: "其他",
  419. Disabled: true,
  420. })
  421. return configOptions
  422. }
  423. func (s *StoreEntry) HealthStatusEnumList(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.HealthStatus_Invalid),
  428. Label: "全部",
  429. Disabled: true,
  430. })
  431. }
  432. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  433. Value: int32(pasturePb.HealthStatus_Health),
  434. Label: "健康",
  435. Disabled: true,
  436. }, &pasturePb.ConfigOptionsList{
  437. Value: int32(pasturePb.HealthStatus_Disease),
  438. Label: "发病",
  439. Disabled: true,
  440. }, &pasturePb.ConfigOptionsList{
  441. Value: int32(pasturePb.HealthStatus_Treatment),
  442. Label: "治疗中",
  443. Disabled: true,
  444. }, &pasturePb.ConfigOptionsList{
  445. Value: int32(pasturePb.HealthStatus_Curable),
  446. Label: "治愈",
  447. Disabled: true,
  448. }, &pasturePb.ConfigOptionsList{
  449. Value: int32(pasturePb.HealthStatus_Out),
  450. Label: "淘汰",
  451. Disabled: true,
  452. }, &pasturePb.ConfigOptionsList{
  453. Value: int32(pasturePb.HealthStatus_Dead),
  454. Label: "死亡",
  455. Disabled: true,
  456. })
  457. return configOptions
  458. }
  459. func (s *StoreEntry) CalvingAnalysisMethodEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  460. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  461. if isAll == model.IsAllYes {
  462. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  463. Value: int32(pasturePb.CalvingAnalysisMethod_Invalid),
  464. Label: "全部",
  465. Disabled: true,
  466. })
  467. }
  468. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  469. Value: int32(pasturePb.CalvingAnalysisMethod_Months),
  470. Label: "按月份统计",
  471. Disabled: true,
  472. }, &pasturePb.ConfigOptionsList{
  473. Value: int32(pasturePb.CalvingAnalysisMethod_CowKind),
  474. Label: "按照品种统计",
  475. Disabled: true,
  476. })
  477. return configOptions
  478. }