config_data.go 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970
  1. package backend
  2. import (
  3. "fmt"
  4. "kpt-pasture/model"
  5. "gitee.com/xuyiping_admin/pkg/logger/zaplog"
  6. "go.uber.org/zap"
  7. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  8. )
  9. func (s *StoreEntry) BarnTypeEnumList() []*pasturePb.ConfigOptionsList {
  10. barnTypeList := make([]*pasturePb.ConfigOptionsList, 0)
  11. barnTypeList = append(barnTypeList, &pasturePb.ConfigOptionsList{
  12. Value: int32(pasturePb.PenType_Lactating_Calves),
  13. Label: "哺乳牛舍",
  14. Disabled: true,
  15. }, &pasturePb.ConfigOptionsList{
  16. Value: int32(pasturePb.PenType_Weaned_Calves),
  17. Label: "断奶牛舍",
  18. Disabled: true,
  19. }, &pasturePb.ConfigOptionsList{
  20. Value: int32(pasturePb.PenType_Youth),
  21. Label: "育成牛舍",
  22. Disabled: true,
  23. }, &pasturePb.ConfigOptionsList{
  24. Value: int32(pasturePb.PenType_Nurturing),
  25. Label: "育成牛舍",
  26. Disabled: true,
  27. }, &pasturePb.ConfigOptionsList{
  28. Value: int32(pasturePb.PenType_Lactation),
  29. Label: "泌乳牛舍",
  30. Disabled: true,
  31. }, &pasturePb.ConfigOptionsList{
  32. Value: int32(pasturePb.PenType_Peripartum),
  33. Label: "围产牛舍",
  34. Disabled: true,
  35. }, &pasturePb.ConfigOptionsList{
  36. Value: int32(pasturePb.PenType_Dry_Milking),
  37. Label: "干奶牛舍",
  38. Disabled: true,
  39. }, &pasturePb.ConfigOptionsList{
  40. Value: int32(pasturePb.PenType_Sick_Cow),
  41. Label: "病牛舍",
  42. Disabled: true,
  43. }, &pasturePb.ConfigOptionsList{
  44. Value: int32(pasturePb.PenType_Out),
  45. Label: "淘汰牛舍",
  46. Disabled: true,
  47. }, &pasturePb.ConfigOptionsList{
  48. Value: int32(pasturePb.PenType_Segregate),
  49. Label: "隔离牛舍",
  50. Disabled: true,
  51. })
  52. return barnTypeList
  53. }
  54. func (s *StoreEntry) BreedStatusEnumList() []*pasturePb.ConfigOptionsList {
  55. breedStatusList := make([]*pasturePb.ConfigOptionsList, 0)
  56. breedStatusList = append(breedStatusList, &pasturePb.ConfigOptionsList{
  57. Value: int32(pasturePb.BreedStatus_UnBreed),
  58. Label: "未配",
  59. Disabled: true,
  60. }, &pasturePb.ConfigOptionsList{
  61. Value: int32(pasturePb.BreedStatus_Breeding),
  62. Label: "已配未检",
  63. Disabled: true,
  64. }, &pasturePb.ConfigOptionsList{
  65. Value: int32(pasturePb.BreedStatus_Pregnant),
  66. Label: "怀孕",
  67. Disabled: true,
  68. }, &pasturePb.ConfigOptionsList{
  69. Value: int32(pasturePb.BreedStatus_Empty),
  70. Label: "空怀",
  71. Disabled: true,
  72. }, &pasturePb.ConfigOptionsList{
  73. Value: int32(pasturePb.BreedStatus_Calving),
  74. Label: "产犊",
  75. Disabled: true,
  76. }, &pasturePb.ConfigOptionsList{
  77. Value: int32(pasturePb.BreedStatus_Abort),
  78. Label: "流产",
  79. Disabled: true,
  80. }, &pasturePb.ConfigOptionsList{
  81. Value: int32(pasturePb.BreedStatus_No_Mating),
  82. Label: "禁配",
  83. Disabled: true,
  84. })
  85. return breedStatusList
  86. }
  87. func (s *StoreEntry) CowKindEnumList() []*pasturePb.ConfigOptionsList {
  88. cowKindList := make([]*pasturePb.ConfigOptionsList, 0)
  89. cowKindList = append(cowKindList, &pasturePb.ConfigOptionsList{
  90. Value: int32(pasturePb.CowKind_XMTEN),
  91. Label: "西门塔尔牛",
  92. Disabled: true,
  93. }, &pasturePb.ConfigOptionsList{
  94. Value: int32(pasturePb.CowKind_AGSN),
  95. Label: "安格斯牛",
  96. Disabled: true,
  97. }, &pasturePb.ConfigOptionsList{
  98. Value: int32(pasturePb.CowKind_XNLN),
  99. Label: "夏洛莱牛",
  100. Disabled: true,
  101. }, &pasturePb.ConfigOptionsList{
  102. Value: int32(pasturePb.CowKind_LMZN),
  103. Label: "利木赞牛",
  104. Disabled: true,
  105. }, &pasturePb.ConfigOptionsList{
  106. Value: int32(pasturePb.CowKind_HFTN),
  107. Label: "海福特牛",
  108. Disabled: true,
  109. }, &pasturePb.ConfigOptionsList{
  110. Value: int32(pasturePb.CowKind_HN),
  111. Label: "和牛",
  112. Disabled: true,
  113. })
  114. return cowKindList
  115. }
  116. func (s *StoreEntry) CowSourceEnumList() []*pasturePb.ConfigOptionsList {
  117. cowSourceList := make([]*pasturePb.ConfigOptionsList, 0)
  118. cowSourceList = append(cowSourceList, &pasturePb.ConfigOptionsList{
  119. Value: int32(pasturePb.CowSource_Calving),
  120. Label: "产犊",
  121. Disabled: true,
  122. }, &pasturePb.ConfigOptionsList{
  123. Value: int32(pasturePb.CowSource_Transfer_In),
  124. Label: "调入",
  125. Disabled: true,
  126. }, &pasturePb.ConfigOptionsList{
  127. Value: int32(pasturePb.CowSource_Buy),
  128. Label: "购买",
  129. Disabled: true,
  130. })
  131. return cowSourceList
  132. }
  133. func (s *StoreEntry) CowTypeEnumList(optionName, isAll string) []*pasturePb.ConfigOptionsList {
  134. cowTypeList := make([]*pasturePb.ConfigOptionsList, 0)
  135. if isAll == model.IsAllYes {
  136. cowTypeList = append(cowTypeList, &pasturePb.ConfigOptionsList{
  137. Value: int32(pasturePb.CowType_Invalid),
  138. Label: "全部",
  139. Disabled: true,
  140. })
  141. }
  142. if optionName == "breed" {
  143. cowTypeList = append(cowTypeList, &pasturePb.ConfigOptionsList{
  144. Value: int32(pasturePb.CowType_Reserve_Calf),
  145. Label: "后备牛",
  146. Disabled: true,
  147. }, &pasturePb.ConfigOptionsList{
  148. Value: int32(pasturePb.CowType_Breeding_Calf),
  149. Label: "经产牛",
  150. Disabled: true,
  151. })
  152. return cowTypeList
  153. }
  154. cowTypeList = append(cowTypeList, &pasturePb.ConfigOptionsList{
  155. Value: int32(pasturePb.CowType_Lactating_Calf),
  156. Label: "哺乳犊牛",
  157. Disabled: true,
  158. }, &pasturePb.ConfigOptionsList{
  159. Value: int32(pasturePb.CowType_Weaned_Calf),
  160. Label: "育成牛",
  161. Disabled: true,
  162. }, &pasturePb.ConfigOptionsList{
  163. Value: int32(pasturePb.CowType_Youth_Calf),
  164. Label: "青年牛",
  165. Disabled: true,
  166. }, &pasturePb.ConfigOptionsList{
  167. Value: int32(pasturePb.CowType_Fattening_Calf),
  168. Label: "育肥牛",
  169. Disabled: true,
  170. }, &pasturePb.ConfigOptionsList{
  171. Value: int32(pasturePb.CowType_Reserve_Calf),
  172. Label: "后备牛",
  173. Disabled: true,
  174. }, &pasturePb.ConfigOptionsList{
  175. Value: int32(pasturePb.CowType_Breeding_Calf),
  176. Label: "种母牛",
  177. Disabled: true,
  178. }, &pasturePb.ConfigOptionsList{
  179. Value: int32(pasturePb.CowType_Breeding_Bull),
  180. Label: "种公牛",
  181. Disabled: true,
  182. })
  183. return cowTypeList
  184. }
  185. func (s *StoreEntry) SameTimeCowTypeEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  186. cowTypeList := make([]*pasturePb.ConfigOptionsList, 0)
  187. if isAll == model.IsAllYes {
  188. cowTypeList = append(cowTypeList, &pasturePb.ConfigOptionsList{
  189. Value: int32(pasturePb.SameTimeStatus_Invalid),
  190. Label: "全部",
  191. Disabled: true,
  192. })
  193. }
  194. cowTypeList = append(cowTypeList, &pasturePb.ConfigOptionsList{
  195. Value: int32(pasturePb.SameTimeCowType_Empty),
  196. Label: "空怀牛",
  197. Disabled: true,
  198. }, &pasturePb.ConfigOptionsList{
  199. Value: int32(pasturePb.SameTimeCowType_Breeding_Calf),
  200. Label: "种母牛",
  201. Disabled: true,
  202. })
  203. return cowTypeList
  204. }
  205. func (s *StoreEntry) SameTimeTypeEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  206. cowTypeList := make([]*pasturePb.ConfigOptionsList, 0)
  207. if isAll == model.IsAllYes {
  208. cowTypeList = append(cowTypeList, &pasturePb.ConfigOptionsList{
  209. Value: int32(pasturePb.SameTimeStatus_Invalid),
  210. Label: "全部",
  211. Disabled: true,
  212. })
  213. }
  214. cowTypeList = append(cowTypeList, &pasturePb.ConfigOptionsList{
  215. Value: int32(pasturePb.SameTimeType_PGBJ),
  216. Label: "PG保健",
  217. Disabled: true,
  218. }, &pasturePb.ConfigOptionsList{
  219. Value: int32(pasturePb.SameTimeType_PGTQ),
  220. Label: "PG同期",
  221. Disabled: true,
  222. }, &pasturePb.ConfigOptionsList{
  223. Value: int32(pasturePb.SameTimeType_RnGH),
  224. Label: "RnGH",
  225. Disabled: true,
  226. }, &pasturePb.ConfigOptionsList{
  227. Value: int32(pasturePb.SameTimeType_TAI),
  228. Label: "TAI输精",
  229. Disabled: true,
  230. })
  231. return cowTypeList
  232. }
  233. func (s *StoreEntry) ImmunizationCowTypeEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  234. cowTypeList := make([]*pasturePb.ConfigOptionsList, 0)
  235. cowTypeList = append(cowTypeList, &pasturePb.ConfigOptionsList{
  236. Value: int32(pasturePb.CowType_Lactating_Calf),
  237. Label: "犊牛",
  238. Disabled: true,
  239. }, &pasturePb.ConfigOptionsList{
  240. Value: int32(pasturePb.CowType_Weaned_Calf),
  241. Label: "育成牛",
  242. Disabled: true,
  243. }, &pasturePb.ConfigOptionsList{
  244. Value: int32(pasturePb.CowType_Youth_Calf),
  245. Label: "青年牛",
  246. Disabled: true,
  247. }, &pasturePb.ConfigOptionsList{
  248. Value: int32(pasturePb.CowType_Fattening_Calf),
  249. Label: "育肥牛",
  250. Disabled: true,
  251. }, &pasturePb.ConfigOptionsList{
  252. Value: int32(pasturePb.CowType_Reserve_Calf),
  253. Label: "后备牛",
  254. Disabled: true,
  255. }, &pasturePb.ConfigOptionsList{
  256. Value: int32(pasturePb.CowType_Reserve_Calf),
  257. Label: "种母牛",
  258. Disabled: true,
  259. }, &pasturePb.ConfigOptionsList{
  260. Value: int32(pasturePb.CowType_Breeding_Bull),
  261. Label: "种公牛",
  262. Disabled: true,
  263. })
  264. return cowTypeList
  265. }
  266. func (s *StoreEntry) ImmunizationConditionsEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  267. cowTypeList := make([]*pasturePb.ConfigOptionsList, 0)
  268. if isAll == model.IsAllYes {
  269. cowTypeList = append(cowTypeList, &pasturePb.ConfigOptionsList{
  270. Value: int32(pasturePb.ImmunizationConditions_Invalid),
  271. Label: "全部",
  272. Disabled: true,
  273. })
  274. }
  275. cowTypeList = append(cowTypeList, &pasturePb.ConfigOptionsList{
  276. Value: int32(pasturePb.ImmunizationConditions_Days_Age),
  277. Label: "日龄",
  278. Disabled: true,
  279. }, &pasturePb.ConfigOptionsList{
  280. Value: int32(pasturePb.ImmunizationConditions_Days_After_Delivery),
  281. Label: "产后天数",
  282. Disabled: true,
  283. }, &pasturePb.ConfigOptionsList{
  284. Value: int32(pasturePb.ImmunizationConditions_Days_Of_Pregnancy),
  285. Label: "怀孕天数",
  286. Disabled: true,
  287. }, &pasturePb.ConfigOptionsList{
  288. Value: int32(pasturePb.ImmunizationConditions_Admission_Days),
  289. Label: "入场天数",
  290. Disabled: true,
  291. }, &pasturePb.ConfigOptionsList{
  292. Value: int32(pasturePb.ImmunizationConditions_Other_Vaccine_After),
  293. Label: "基于其他疫苗之后",
  294. Disabled: true,
  295. })
  296. return cowTypeList
  297. }
  298. func (s *StoreEntry) TransferPenEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  299. transferPenList := make([]*pasturePb.ConfigOptionsList, 0)
  300. if isAll == model.IsAllYes {
  301. transferPenList = append(transferPenList, &pasturePb.ConfigOptionsList{
  302. Value: int32(pasturePb.TransferPenReason_Invalid),
  303. Label: "全部",
  304. Disabled: true,
  305. })
  306. }
  307. transferPenList = append(transferPenList, &pasturePb.ConfigOptionsList{
  308. Value: int32(pasturePb.TransferPenReason_Normal),
  309. Label: "正常转群",
  310. Disabled: true,
  311. }, &pasturePb.ConfigOptionsList{
  312. Value: int32(pasturePb.TransferPenReason_Feed),
  313. Label: "饲喂转群",
  314. Disabled: true,
  315. }, &pasturePb.ConfigOptionsList{
  316. Value: int32(pasturePb.TransferPenReason_Dry_Milk),
  317. Label: "干奶转群",
  318. Disabled: true,
  319. }, &pasturePb.ConfigOptionsList{
  320. Value: int32(pasturePb.TransferPenReason_Pregnant),
  321. Label: "怀孕转群",
  322. Disabled: true,
  323. }, &pasturePb.ConfigOptionsList{
  324. Value: int32(pasturePb.TransferPenReason_Overantibody),
  325. Label: "过抗转群",
  326. Disabled: true,
  327. })
  328. return transferPenList
  329. }
  330. func (s *StoreEntry) ChildNumberEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  331. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  332. if isAll == model.IsAllYes {
  333. configOptions = append(configOptions,
  334. &pasturePb.ConfigOptionsList{
  335. Value: int32(pasturePb.ChildNumber_Invalid),
  336. Label: "全部",
  337. Disabled: true,
  338. })
  339. }
  340. configOptions = append(configOptions,
  341. &pasturePb.ConfigOptionsList{
  342. Value: int32(pasturePb.ChildNumber_One),
  343. Label: "单胎",
  344. Disabled: true,
  345. }, &pasturePb.ConfigOptionsList{
  346. Value: int32(pasturePb.ChildNumber_Two),
  347. Label: "双胎",
  348. Disabled: true,
  349. }, &pasturePb.ConfigOptionsList{
  350. Value: int32(pasturePb.ChildNumber_Three),
  351. Label: "三胎",
  352. Disabled: true,
  353. }, &pasturePb.ConfigOptionsList{
  354. Value: int32(pasturePb.ChildNumber_Four),
  355. Label: "四胎",
  356. Disabled: true,
  357. })
  358. return configOptions
  359. }
  360. func (s *StoreEntry) CalvingLevelEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  361. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  362. if isAll == model.IsAllYes {
  363. configOptions = append(configOptions,
  364. &pasturePb.ConfigOptionsList{
  365. Value: int32(pasturePb.CalvingLevel_Invalid),
  366. Label: "全部",
  367. Disabled: true,
  368. })
  369. }
  370. configOptions = append(configOptions,
  371. &pasturePb.ConfigOptionsList{
  372. Value: int32(pasturePb.CalvingLevel_Natural_Childbirth),
  373. Label: "自然分娩",
  374. Disabled: true,
  375. }, &pasturePb.ConfigOptionsList{
  376. Value: int32(pasturePb.CalvingLevel_Artificial_Midwifery1),
  377. Label: "人工助产(1-2人)",
  378. Disabled: true,
  379. }, &pasturePb.ConfigOptionsList{
  380. Value: int32(pasturePb.CalvingLevel_Artificial_Midwifery2),
  381. Label: "人工助产(3人以上)",
  382. Disabled: true,
  383. }, &pasturePb.ConfigOptionsList{
  384. Value: int32(pasturePb.CalvingLevel_Caesarean_Section),
  385. Label: "剖腹产",
  386. Disabled: true,
  387. })
  388. return configOptions
  389. }
  390. func (s *StoreEntry) DystociaReasonEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  391. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  392. if isAll == model.IsAllYes {
  393. configOptions = append(configOptions,
  394. &pasturePb.ConfigOptionsList{
  395. Value: int32(pasturePb.DystociaReason_Invalid),
  396. Label: "全部",
  397. Disabled: true,
  398. })
  399. }
  400. configOptions = append(configOptions,
  401. &pasturePb.ConfigOptionsList{
  402. Value: int32(pasturePb.DystociaReason_Malposition),
  403. Label: "胎位不正",
  404. Disabled: true,
  405. }, &pasturePb.ConfigOptionsList{
  406. Value: int32(pasturePb.DystociaReason_Fetal_Overgrowth),
  407. Label: "胎儿过大",
  408. Disabled: true,
  409. }, &pasturePb.ConfigOptionsList{
  410. Value: int32(pasturePb.DystociaReason_Uterine_Atony),
  411. Label: "子宫收缩无力",
  412. Disabled: true,
  413. }, &pasturePb.ConfigOptionsList{
  414. Value: int32(pasturePb.DystociaReason_Pelvic_Stenosis),
  415. Label: "盆骨狭小",
  416. Disabled: true,
  417. }, &pasturePb.ConfigOptionsList{
  418. Value: int32(pasturePb.DystociaReason_Sub_Health),
  419. Label: "母牛亚健康状态",
  420. Disabled: true,
  421. })
  422. return configOptions
  423. }
  424. func (s *StoreEntry) PregnantCheckResultEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  425. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  426. if isAll == model.IsAllYes {
  427. configOptions = append(configOptions,
  428. &pasturePb.ConfigOptionsList{
  429. Value: int32(pasturePb.PregnantCheckResult_Invalid),
  430. Label: "全部",
  431. Disabled: true,
  432. })
  433. }
  434. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  435. Value: int32(pasturePb.PregnantCheckResult_Pregnant),
  436. Label: "有胎",
  437. Disabled: true,
  438. }, &pasturePb.ConfigOptionsList{
  439. Value: int32(pasturePb.PregnantCheckResult_UnPregnant),
  440. Label: "无胎",
  441. Disabled: true,
  442. })
  443. return configOptions
  444. }
  445. func (s *StoreEntry) PregnantCheckMethodEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  446. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  447. if isAll == model.IsAllYes {
  448. configOptions = append(configOptions,
  449. &pasturePb.ConfigOptionsList{
  450. Value: int32(pasturePb.PregnantCheckMethod_Invalid),
  451. })
  452. }
  453. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  454. Value: int32(pasturePb.PregnantCheckMethod_B_Ultrasound),
  455. Label: "B超",
  456. Disabled: true,
  457. }, &pasturePb.ConfigOptionsList{
  458. Value: int32(pasturePb.PregnantCheckMethod_Blood_Testing),
  459. Label: "血检",
  460. Disabled: true,
  461. }, &pasturePb.ConfigOptionsList{
  462. Value: int32(pasturePb.PregnantCheckMethod_Manual_Inspection),
  463. Label: "人工检查",
  464. Disabled: true,
  465. })
  466. return configOptions
  467. }
  468. func (s *StoreEntry) DrugCategoryEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  469. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  470. if isAll == model.IsAllYes {
  471. configOptions = append(configOptions,
  472. &pasturePb.ConfigOptionsList{
  473. Value: int32(pasturePb.DrugCategory_Invalid),
  474. Label: "全部",
  475. Disabled: true,
  476. })
  477. }
  478. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  479. Value: int32(pasturePb.DrugCategory_Antibiotics),
  480. Label: "抗生素类",
  481. Disabled: true,
  482. }, &pasturePb.ConfigOptionsList{
  483. Value: int32(pasturePb.DrugCategory_Antivirals),
  484. Label: "抗病毒类",
  485. Disabled: true,
  486. }, &pasturePb.ConfigOptionsList{
  487. Value: int32(pasturePb.DrugCategory_Antifungals),
  488. Label: "抗真菌类",
  489. Disabled: true,
  490. }, &pasturePb.ConfigOptionsList{
  491. Value: int32(pasturePb.DrugCategory_Antiparasitics),
  492. Label: "驱虫类",
  493. Disabled: true,
  494. }, &pasturePb.ConfigOptionsList{
  495. Value: int32(pasturePb.DrugCategory_Analgesics),
  496. Label: "镇痛类",
  497. Disabled: true,
  498. }, &pasturePb.ConfigOptionsList{
  499. Value: int32(pasturePb.DrugCategory_Antipyretic),
  500. Label: "退烧类",
  501. Disabled: true,
  502. }, &pasturePb.ConfigOptionsList{
  503. Value: int32(pasturePb.DrugCategory_Vitamin),
  504. Label: "维生素类",
  505. Disabled: true,
  506. }, &pasturePb.ConfigOptionsList{
  507. Value: int32(pasturePb.DrugCategory_Brine),
  508. Label: "盐水",
  509. Disabled: true,
  510. }, &pasturePb.ConfigOptionsList{
  511. Value: int32(pasturePb.DrugCategory_Glucose),
  512. Label: "葡萄糖",
  513. Disabled: true,
  514. }, &pasturePb.ConfigOptionsList{
  515. Value: int32(pasturePb.DrugCategory_Hormone),
  516. Label: "激素类",
  517. Disabled: true,
  518. }, &pasturePb.ConfigOptionsList{
  519. Value: int32(pasturePb.DrugCategory_Anti_Stress),
  520. Label: "抗应激类",
  521. Disabled: true,
  522. }, &pasturePb.ConfigOptionsList{
  523. Value: int32(pasturePb.DrugCategory_Disinfect),
  524. Label: "消毒类",
  525. Disabled: true,
  526. }, &pasturePb.ConfigOptionsList{
  527. Value: int32(pasturePb.DrugCategory_Chinese_Herbal),
  528. Label: "中药合剂",
  529. Disabled: true,
  530. }, &pasturePb.ConfigOptionsList{
  531. Value: int32(pasturePb.DrugCategory_Tocolytic),
  532. Label: "保胎类",
  533. Disabled: true,
  534. }, &pasturePb.ConfigOptionsList{
  535. Value: int32(pasturePb.DrugCategory_Immunity),
  536. Label: "疫苗类",
  537. Disabled: true,
  538. })
  539. return configOptions
  540. }
  541. func (s *StoreEntry) DrugUsageEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  542. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  543. if isAll == model.IsAllYes {
  544. configOptions = append(configOptions,
  545. &pasturePb.ConfigOptionsList{
  546. Value: int32(pasturePb.DrugUsage_Invalid),
  547. Label: "全部",
  548. Disabled: true,
  549. })
  550. }
  551. configOptions = append(configOptions,
  552. &pasturePb.ConfigOptionsList{
  553. Value: int32(pasturePb.DrugUsage_Oral_Medications),
  554. Label: "口服",
  555. Disabled: true,
  556. }, &pasturePb.ConfigOptionsList{
  557. Value: int32(pasturePb.DrugUsage_Injectable_Medications),
  558. Label: "肌注",
  559. Disabled: true,
  560. }, &pasturePb.ConfigOptionsList{
  561. Value: int32(pasturePb.DrugUsage_Topical_Medications),
  562. Label: "外用",
  563. Disabled: true,
  564. }, &pasturePb.ConfigOptionsList{
  565. Value: int32(pasturePb.DrugUsage_Inhalation_Medications),
  566. Label: "吸入",
  567. Disabled: true,
  568. }, &pasturePb.ConfigOptionsList{
  569. Value: int32(pasturePb.DrugUsage_Drink_Medications),
  570. Label: "饮水",
  571. Disabled: true,
  572. })
  573. return configOptions
  574. }
  575. func (s *StoreEntry) UnitEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  576. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  577. configOptions = append(configOptions,
  578. &pasturePb.ConfigOptionsList{
  579. Value: int32(pasturePb.Unit_Pieces),
  580. Label: "个",
  581. Disabled: true,
  582. }, &pasturePb.ConfigOptionsList{
  583. Value: int32(pasturePb.Unit_Package),
  584. Label: "包/袋",
  585. Disabled: true,
  586. }, &pasturePb.ConfigOptionsList{
  587. Value: int32(pasturePb.Unit_Bottle),
  588. Label: "瓶",
  589. Disabled: true,
  590. }, &pasturePb.ConfigOptionsList{
  591. Value: int32(pasturePb.Unit_Box),
  592. Label: "盒",
  593. Disabled: true,
  594. }, &pasturePb.ConfigOptionsList{
  595. Value: int32(pasturePb.Unit_Boxful),
  596. Label: "箱",
  597. Disabled: true,
  598. }, &pasturePb.ConfigOptionsList{
  599. Value: int32(pasturePb.Unit_Branch),
  600. Label: "支",
  601. Disabled: true,
  602. }, &pasturePb.ConfigOptionsList{
  603. Value: int32(pasturePb.Unit_Barrel),
  604. Label: "桶",
  605. Disabled: true,
  606. }, &pasturePb.ConfigOptionsList{
  607. Value: int32(pasturePb.Unit_Pot),
  608. Label: "罐",
  609. Disabled: true,
  610. }, &pasturePb.ConfigOptionsList{
  611. Value: int32(pasturePb.Unit_ML),
  612. Label: "毫升",
  613. Disabled: true,
  614. }, &pasturePb.ConfigOptionsList{
  615. Value: int32(pasturePb.Unit_L),
  616. Label: "升",
  617. Disabled: true,
  618. })
  619. return configOptions
  620. }
  621. func (s *StoreEntry) ExposeEstrusTypeEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  622. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  623. if isAll == model.IsAllYes {
  624. configOptions = append(configOptions,
  625. &pasturePb.ConfigOptionsList{
  626. Value: int32(pasturePb.ExposeEstrusType_Invalid),
  627. Label: "全部",
  628. Disabled: true,
  629. })
  630. }
  631. configOptions = append(configOptions,
  632. &pasturePb.ConfigOptionsList{
  633. Value: int32(pasturePb.ExposeEstrusType_Neck_Ring),
  634. Label: "脖环揭发",
  635. Disabled: true,
  636. }, &pasturePb.ConfigOptionsList{
  637. Value: int32(pasturePb.ExposeEstrusType_Foot_Ring),
  638. Label: "脚环揭发",
  639. Disabled: true,
  640. }, &pasturePb.ConfigOptionsList{
  641. Value: int32(pasturePb.ExposeEstrusType_Natural_Estrus),
  642. Label: "自然发情",
  643. Disabled: true,
  644. })
  645. return configOptions
  646. }
  647. func (s *StoreEntry) FrozenSemenTypeEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  648. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  649. if isAll == model.IsAllYes {
  650. configOptions = append(configOptions,
  651. &pasturePb.ConfigOptionsList{
  652. Value: int32(pasturePb.FrozenSemenType_Invalid),
  653. Label: "全部",
  654. Disabled: true,
  655. })
  656. }
  657. configOptions = append(configOptions,
  658. &pasturePb.ConfigOptionsList{
  659. Value: int32(pasturePb.FrozenSemenType_Ordinary),
  660. Label: "常规冻精",
  661. Disabled: true,
  662. }, &pasturePb.ConfigOptionsList{
  663. Value: int32(pasturePb.FrozenSemenType_Gender_Control),
  664. Label: "性控冻精",
  665. Disabled: true,
  666. })
  667. return configOptions
  668. }
  669. func (s *StoreEntry) BullNumberEnumList(isAll string) []*pasturePb.BullOptionsList {
  670. frozenSemenList := make([]*model.FrozenSemen, 0)
  671. bullNumberList := make([]*pasturePb.BullOptionsList, 0)
  672. if err := s.DB.Where("quantity > 0").Group("bull_id").Find(&frozenSemenList).Error; err != nil {
  673. zaplog.Error("BullNumberEnumList", zap.Any("Find", err))
  674. }
  675. for _, v := range frozenSemenList {
  676. bullNumberList = append(bullNumberList, &pasturePb.BullOptionsList{
  677. Value: v.BullId,
  678. Label: v.BullId,
  679. Disabled: true,
  680. })
  681. }
  682. return bullNumberList
  683. }
  684. func (s *StoreEntry) WeekEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  685. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  686. configOptions = append(configOptions,
  687. &pasturePb.ConfigOptionsList{
  688. Value: int32(pasturePb.Week_Monday),
  689. Label: "周一",
  690. Disabled: true,
  691. }, &pasturePb.ConfigOptionsList{
  692. Value: int32(pasturePb.Week_Tuesday),
  693. Label: "周二",
  694. Disabled: true,
  695. }, &pasturePb.ConfigOptionsList{
  696. Value: int32(pasturePb.Week_Wednesday),
  697. Label: "周三",
  698. Disabled: true,
  699. }, &pasturePb.ConfigOptionsList{
  700. Value: int32(pasturePb.Week_Thursday),
  701. Label: "周四",
  702. Disabled: true,
  703. }, &pasturePb.ConfigOptionsList{
  704. Value: int32(pasturePb.Week_Friday),
  705. Label: "周五",
  706. Disabled: true,
  707. }, &pasturePb.ConfigOptionsList{
  708. Value: int32(pasturePb.Week_Saturday),
  709. Label: "周六",
  710. Disabled: true,
  711. }, &pasturePb.ConfigOptionsList{
  712. Value: int32(pasturePb.Week_Sunday),
  713. Label: "周日",
  714. Disabled: true,
  715. })
  716. return configOptions
  717. }
  718. func (s *StoreEntry) MonthEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  719. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  720. for v := 1; v <= 31; v++ {
  721. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  722. Value: int32(v),
  723. Label: fmt.Sprintf("%d号", v),
  724. Disabled: true,
  725. })
  726. }
  727. return configOptions
  728. }
  729. func (s *StoreEntry) WorkOrderFrequencyEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  730. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  731. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  732. Value: int32(pasturePb.WorkOrderFrequency_None),
  733. Label: "一次性",
  734. Disabled: true,
  735. }, &pasturePb.ConfigOptionsList{
  736. Value: int32(pasturePb.WorkOrderFrequency_Daily),
  737. Label: "每天",
  738. Disabled: true,
  739. }, &pasturePb.ConfigOptionsList{
  740. Value: int32(pasturePb.WorkOrderFrequency_Weekly),
  741. Label: "每周",
  742. Disabled: true,
  743. }, &pasturePb.ConfigOptionsList{
  744. Value: int32(pasturePb.WorkOrderFrequency_Monthly),
  745. Label: "每月",
  746. Disabled: true,
  747. })
  748. return configOptions
  749. }
  750. func (s *StoreEntry) WorkOrderSubUnitEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  751. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  752. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  753. Value: int32(pasturePb.WorkOrderSubscribeUnit_Person),
  754. Label: "个人",
  755. Disabled: true,
  756. }, &pasturePb.ConfigOptionsList{
  757. Value: int32(pasturePb.WorkOrderSubscribeUnit_dept),
  758. Label: "部门",
  759. Disabled: true,
  760. })
  761. return configOptions
  762. }
  763. func (s *StoreEntry) WorkOrderPriorityEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  764. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  765. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  766. Value: int32(pasturePb.Priority_Low),
  767. Label: "低",
  768. Disabled: true,
  769. }, &pasturePb.ConfigOptionsList{
  770. Value: int32(pasturePb.Priority_Middle),
  771. Label: "一般",
  772. Disabled: true,
  773. }, &pasturePb.ConfigOptionsList{
  774. Value: int32(pasturePb.Priority_High),
  775. Label: "紧急",
  776. Disabled: true,
  777. })
  778. return configOptions
  779. }
  780. func (s *StoreEntry) WorkOrderCategoryEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  781. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  782. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  783. Value: int32(pasturePb.WorkOrderCategory_Health),
  784. Label: "保健",
  785. Disabled: true,
  786. }, &pasturePb.ConfigOptionsList{
  787. Value: int32(pasturePb.WorkOrderCategory_Breed),
  788. Label: "繁殖",
  789. Disabled: true,
  790. }, &pasturePb.ConfigOptionsList{
  791. Value: int32(pasturePb.WorkOrderCategory_Nutrition),
  792. Label: "营养",
  793. Disabled: true,
  794. }, &pasturePb.ConfigOptionsList{
  795. Value: int32(pasturePb.WorkOrderCategory_Ordinary),
  796. Label: "日常",
  797. Disabled: true,
  798. }, &pasturePb.ConfigOptionsList{
  799. Value: int32(pasturePb.WorkOrderCategory_Other),
  800. Label: "其他",
  801. Disabled: true,
  802. })
  803. return configOptions
  804. }
  805. func CalendarTypeEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  806. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  807. if isAll == model.IsAllYes {
  808. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  809. Value: int32(pasturePb.SameTimeStatus_Invalid),
  810. Label: "全部",
  811. Disabled: true,
  812. })
  813. }
  814. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  815. Value: int32(pasturePb.CalendarType_Immunisation),
  816. Label: "免疫",
  817. Disabled: true,
  818. }, &pasturePb.ConfigOptionsList{
  819. Value: int32(pasturePb.CalendarType_PG),
  820. Label: "同期PG",
  821. Disabled: true,
  822. }, &pasturePb.ConfigOptionsList{
  823. Value: int32(pasturePb.CalendarType_RnGH),
  824. Label: "同期RnGH",
  825. Disabled: true,
  826. }, &pasturePb.ConfigOptionsList{
  827. Value: int32(pasturePb.CalendarType_Pregnancy_Check),
  828. Label: "孕检",
  829. Disabled: true,
  830. }, &pasturePb.ConfigOptionsList{
  831. Value: int32(pasturePb.CalendarType_WorkOrder),
  832. Label: "工单",
  833. Disabled: true,
  834. }, &pasturePb.ConfigOptionsList{
  835. Value: int32(pasturePb.CalendarType_Weaning),
  836. Label: "断奶",
  837. Disabled: true,
  838. }, &pasturePb.ConfigOptionsList{
  839. Value: int32(pasturePb.CalendarType_Treatment),
  840. Label: "治疗",
  841. Disabled: true,
  842. }, &pasturePb.ConfigOptionsList{
  843. Value: int32(pasturePb.CalendarType_Mating),
  844. Label: "配种",
  845. Disabled: true,
  846. })
  847. return configOptions
  848. }
  849. func (s *StoreEntry) AbortionReasonsEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  850. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  851. if isAll == model.IsAllYes {
  852. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  853. Value: int32(pasturePb.AbortionReasons_Invalid),
  854. Label: "全部",
  855. Disabled: true,
  856. })
  857. }
  858. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  859. Value: int32(pasturePb.AbortionReasons_Mechanical_Abortion),
  860. Label: "机械性流产",
  861. Disabled: true,
  862. }, &pasturePb.ConfigOptionsList{
  863. Value: int32(pasturePb.AbortionReasons_Malnutrition_Abortion),
  864. Label: "营养不良性流产",
  865. Disabled: true,
  866. }, &pasturePb.ConfigOptionsList{
  867. Value: int32(pasturePb.AbortionReasons_Mycotoxin_Abortion),
  868. Label: "霉菌毒素流产",
  869. Disabled: true,
  870. }, &pasturePb.ConfigOptionsList{
  871. Value: int32(pasturePb.AbortionReasons_Habitual_Abortion),
  872. Label: "习惯性流产",
  873. Disabled: true,
  874. }, &pasturePb.ConfigOptionsList{
  875. Value: int32(pasturePb.AbortionReasons_Brucellosis_Abortion),
  876. Label: "布病流产",
  877. Disabled: true,
  878. }, &pasturePb.ConfigOptionsList{
  879. Value: int32(pasturePb.AbortionReasons_Inflammatory_Abortion),
  880. Label: "产道炎症性流产",
  881. Disabled: true,
  882. }, &pasturePb.ConfigOptionsList{
  883. Value: int32(pasturePb.AbortionReasons_Heat_Stress_Abortion),
  884. Label: "热应激流产",
  885. Disabled: true,
  886. }, &pasturePb.ConfigOptionsList{
  887. Value: int32(pasturePb.AbortionReasons_Infectious_Abortion),
  888. Label: "传染病性流产",
  889. Disabled: true,
  890. }, &pasturePb.ConfigOptionsList{
  891. Value: int32(pasturePb.AbortionReasons_Other),
  892. Label: "其他",
  893. Disabled: true,
  894. })
  895. return configOptions
  896. }
  897. func (s *StoreEntry) HealthStatusEnumList(isAll string) []*pasturePb.ConfigOptionsList {
  898. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  899. if isAll == model.IsAllYes {
  900. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  901. Value: int32(pasturePb.HealthStatus_Invalid),
  902. Label: "全部",
  903. Disabled: true,
  904. })
  905. }
  906. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  907. Value: int32(pasturePb.HealthStatus_Health),
  908. Label: "健康",
  909. Disabled: true,
  910. }, &pasturePb.ConfigOptionsList{
  911. Value: int32(pasturePb.HealthStatus_Disease),
  912. Label: "发病",
  913. Disabled: true,
  914. }, &pasturePb.ConfigOptionsList{
  915. Value: int32(pasturePb.HealthStatus_Treatment),
  916. Label: "治疗",
  917. Disabled: true,
  918. }, &pasturePb.ConfigOptionsList{
  919. Value: int32(pasturePb.HealthStatus_Curable),
  920. Label: "治愈",
  921. Disabled: true,
  922. }, &pasturePb.ConfigOptionsList{
  923. Value: int32(pasturePb.HealthStatus_Out),
  924. Label: "淘汰",
  925. Disabled: true,
  926. }, &pasturePb.ConfigOptionsList{
  927. Value: int32(pasturePb.HealthStatus_Dead),
  928. Label: "死亡",
  929. Disabled: true,
  930. })
  931. return configOptions
  932. }