config_data.go 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747
  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_Eliminate),
  45. Label: "淘汰牛舍",
  46. Disabled: true,
  47. })
  48. return barnTypeList
  49. }
  50. func (s *StoreEntry) BreedStatusEnumList() []*pasturePb.ConfigOptionsList {
  51. breedStatusList := make([]*pasturePb.ConfigOptionsList, 0)
  52. breedStatusList = append(breedStatusList, &pasturePb.ConfigOptionsList{
  53. Value: int32(pasturePb.BreedStatus_UnBreed),
  54. Label: "未配",
  55. Disabled: true,
  56. }, &pasturePb.ConfigOptionsList{
  57. Value: int32(pasturePb.BreedStatus_Breeding),
  58. Label: "已配未检",
  59. Disabled: true,
  60. }, &pasturePb.ConfigOptionsList{
  61. Value: int32(pasturePb.BreedStatus_Pregnant),
  62. Label: "怀孕",
  63. Disabled: true,
  64. }, &pasturePb.ConfigOptionsList{
  65. Value: int32(pasturePb.BreedStatus_Empty),
  66. Label: "空怀",
  67. Disabled: true,
  68. }, &pasturePb.ConfigOptionsList{
  69. Value: int32(pasturePb.BreedStatus_Calving),
  70. Label: "产犊",
  71. Disabled: true,
  72. }, &pasturePb.ConfigOptionsList{
  73. Value: int32(pasturePb.BreedStatus_Abort),
  74. Label: "流产",
  75. Disabled: true,
  76. }, &pasturePb.ConfigOptionsList{
  77. Value: int32(pasturePb.BreedStatus_No_Mating),
  78. Label: "禁配",
  79. Disabled: true,
  80. })
  81. return breedStatusList
  82. }
  83. func (s *StoreEntry) CowKindEnumList() []*pasturePb.ConfigOptionsList {
  84. cowKindList := make([]*pasturePb.ConfigOptionsList, 0)
  85. cowKindList = append(cowKindList, &pasturePb.ConfigOptionsList{
  86. Value: int32(pasturePb.CowKind_XMTEN),
  87. Label: "西门塔尔牛",
  88. Disabled: true,
  89. }, &pasturePb.ConfigOptionsList{
  90. Value: int32(pasturePb.CowKind_AGSN),
  91. Label: "安格斯牛",
  92. Disabled: true,
  93. }, &pasturePb.ConfigOptionsList{
  94. Value: int32(pasturePb.CowKind_XNLN),
  95. Label: "夏洛莱牛",
  96. Disabled: true,
  97. }, &pasturePb.ConfigOptionsList{
  98. Value: int32(pasturePb.CowKind_LMZN),
  99. Label: "利木赞牛",
  100. Disabled: true,
  101. }, &pasturePb.ConfigOptionsList{
  102. Value: int32(pasturePb.CowKind_HFTN),
  103. Label: "海福特牛",
  104. Disabled: true,
  105. }, &pasturePb.ConfigOptionsList{
  106. Value: int32(pasturePb.CowKind_HN),
  107. Label: "和牛",
  108. Disabled: true,
  109. })
  110. return cowKindList
  111. }
  112. func (s *StoreEntry) CowSourceEnumList() []*pasturePb.ConfigOptionsList {
  113. cowSourceList := make([]*pasturePb.ConfigOptionsList, 0)
  114. cowSourceList = append(cowSourceList, &pasturePb.ConfigOptionsList{
  115. Value: int32(pasturePb.CowSource_Calving),
  116. Label: "产犊",
  117. Disabled: true,
  118. }, &pasturePb.ConfigOptionsList{
  119. Value: int32(pasturePb.CowSource_Transfer_In),
  120. Label: "调入",
  121. Disabled: true,
  122. }, &pasturePb.ConfigOptionsList{
  123. Value: int32(pasturePb.CowSource_Buy),
  124. Label: "购买",
  125. Disabled: true,
  126. })
  127. return cowSourceList
  128. }
  129. func (s *StoreEntry) CowTypeEnumList() []*pasturePb.ConfigOptionsList {
  130. cowTypeList := make([]*pasturePb.ConfigOptionsList, 0)
  131. cowTypeList = append(cowTypeList, &pasturePb.ConfigOptionsList{
  132. Value: int32(pasturePb.CowType_Lactating_Calf),
  133. Label: "哺乳犊牛",
  134. Disabled: true,
  135. }, &pasturePb.ConfigOptionsList{
  136. Value: int32(pasturePb.CowType_Weaned_Calf),
  137. Label: "育成牛",
  138. Disabled: true,
  139. }, &pasturePb.ConfigOptionsList{
  140. Value: int32(pasturePb.CowType_Youth_Calf),
  141. Label: "青年牛",
  142. Disabled: true,
  143. }, &pasturePb.ConfigOptionsList{
  144. Value: int32(pasturePb.CowType_Fattening_Calf),
  145. Label: "育肥牛",
  146. Disabled: true,
  147. }, &pasturePb.ConfigOptionsList{
  148. Value: int32(pasturePb.CowType_Reserve_Calf),
  149. Label: "后备牛",
  150. Disabled: true,
  151. }, &pasturePb.ConfigOptionsList{
  152. Value: int32(pasturePb.CowType_Breeding_Calf),
  153. Label: "种母牛",
  154. Disabled: true,
  155. }, &pasturePb.ConfigOptionsList{
  156. Value: int32(pasturePb.CowType_Breeding_Bull),
  157. Label: "种公牛",
  158. Disabled: true,
  159. })
  160. return cowTypeList
  161. }
  162. func (s *StoreEntry) SemeTimeCowTypeEnumList() []*pasturePb.ConfigOptionsList {
  163. cowTypeList := make([]*pasturePb.ConfigOptionsList, 0)
  164. cowTypeList = append(cowTypeList, &pasturePb.ConfigOptionsList{
  165. Value: int32(pasturePb.CowType_Reserve_Calf),
  166. Label: "后备牛",
  167. Disabled: true,
  168. }, &pasturePb.ConfigOptionsList{
  169. Value: int32(pasturePb.CowType_Breeding_Calf),
  170. Label: "种母牛",
  171. Disabled: true,
  172. })
  173. return cowTypeList
  174. }
  175. func (s *StoreEntry) SameTimeTypeEnumList() []*pasturePb.ConfigOptionsList {
  176. cowTypeList := make([]*pasturePb.ConfigOptionsList, 0)
  177. cowTypeList = append(cowTypeList, &pasturePb.ConfigOptionsList{
  178. Value: int32(pasturePb.SameTimeType_PGBJ),
  179. Label: "PG保健",
  180. Disabled: true,
  181. }, &pasturePb.ConfigOptionsList{
  182. Value: int32(pasturePb.SameTimeType_PGTQ),
  183. Label: "PG同期",
  184. Disabled: true,
  185. }, &pasturePb.ConfigOptionsList{
  186. Value: int32(pasturePb.SameTimeType_RnGH),
  187. Label: "RnGH",
  188. Disabled: true,
  189. }, &pasturePb.ConfigOptionsList{
  190. Value: int32(pasturePb.SameTimeType_TAI),
  191. Label: "TAI输精",
  192. Disabled: true,
  193. })
  194. return cowTypeList
  195. }
  196. func (s *StoreEntry) ImmunizationCowTypeEnumList() []*pasturePb.ConfigOptionsList {
  197. cowTypeList := make([]*pasturePb.ConfigOptionsList, 0)
  198. cowTypeList = append(cowTypeList, &pasturePb.ConfigOptionsList{
  199. Value: int32(pasturePb.CowType_Lactating_Calf),
  200. Label: "犊牛",
  201. Disabled: true,
  202. }, &pasturePb.ConfigOptionsList{
  203. Value: int32(pasturePb.CowType_Weaned_Calf),
  204. Label: "育成牛",
  205. Disabled: true,
  206. }, &pasturePb.ConfigOptionsList{
  207. Value: int32(pasturePb.CowType_Youth_Calf),
  208. Label: "青年牛",
  209. Disabled: true,
  210. }, &pasturePb.ConfigOptionsList{
  211. Value: int32(pasturePb.CowType_Fattening_Calf),
  212. Label: "育肥牛",
  213. Disabled: true,
  214. }, &pasturePb.ConfigOptionsList{
  215. Value: int32(pasturePb.CowType_Reserve_Calf),
  216. Label: "后备牛",
  217. Disabled: true,
  218. }, &pasturePb.ConfigOptionsList{
  219. Value: int32(pasturePb.CowType_Reserve_Calf),
  220. Label: "种母牛",
  221. Disabled: true,
  222. }, &pasturePb.ConfigOptionsList{
  223. Value: int32(pasturePb.CowType_Breeding_Bull),
  224. Label: "种公牛",
  225. Disabled: true,
  226. })
  227. return cowTypeList
  228. }
  229. func (s *StoreEntry) ImmunizationConditionsEnumList() []*pasturePb.ConfigOptionsList {
  230. cowTypeList := make([]*pasturePb.ConfigOptionsList, 0)
  231. cowTypeList = append(cowTypeList, &pasturePb.ConfigOptionsList{
  232. Value: int32(pasturePb.ImmunizationConditions_Days_Age),
  233. Label: "日龄",
  234. Disabled: true,
  235. }, &pasturePb.ConfigOptionsList{
  236. Value: int32(pasturePb.ImmunizationConditions_Days_After_Delivery),
  237. Label: "产后天数",
  238. Disabled: true,
  239. }, &pasturePb.ConfigOptionsList{
  240. Value: int32(pasturePb.ImmunizationConditions_Days_Of_Pregnancy),
  241. Label: "怀孕天数",
  242. Disabled: true,
  243. }, &pasturePb.ConfigOptionsList{
  244. Value: int32(pasturePb.ImmunizationConditions_Admission_Days),
  245. Label: "入场天数",
  246. Disabled: true,
  247. }, &pasturePb.ConfigOptionsList{
  248. Value: int32(pasturePb.ImmunizationConditions_Other_Vaccine_After),
  249. Label: "基于其他疫苗之后",
  250. Disabled: true,
  251. })
  252. return cowTypeList
  253. }
  254. func (s *StoreEntry) TransferPenEnumList() []*pasturePb.ConfigOptionsList {
  255. transferPenList := make([]*pasturePb.ConfigOptionsList, 0)
  256. transferPenList = append(transferPenList, &pasturePb.ConfigOptionsList{
  257. Value: int32(pasturePb.TransferPenReason_Normal),
  258. Label: "正常转群",
  259. Disabled: true,
  260. }, &pasturePb.ConfigOptionsList{
  261. Value: int32(pasturePb.TransferPenReason_Feed),
  262. Label: "饲喂转群",
  263. Disabled: true,
  264. }, &pasturePb.ConfigOptionsList{
  265. Value: int32(pasturePb.TransferPenReason_Dry_Milk),
  266. Label: "干奶转群",
  267. Disabled: true,
  268. }, &pasturePb.ConfigOptionsList{
  269. Value: int32(pasturePb.TransferPenReason_Pregnant),
  270. Label: "怀孕转群",
  271. Disabled: true,
  272. }, &pasturePb.ConfigOptionsList{
  273. Value: int32(pasturePb.TransferPenReason_Overantibody),
  274. Label: "过抗转群",
  275. Disabled: true,
  276. })
  277. return transferPenList
  278. }
  279. func (s *StoreEntry) ChildNumberEnumList() []*pasturePb.ConfigOptionsList {
  280. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  281. configOptions = append(configOptions,
  282. &pasturePb.ConfigOptionsList{
  283. Value: int32(pasturePb.ChildNumber_One),
  284. Label: "单胎",
  285. Disabled: true,
  286. }, &pasturePb.ConfigOptionsList{
  287. Value: int32(pasturePb.ChildNumber_Two),
  288. Label: "双胎",
  289. Disabled: true,
  290. }, &pasturePb.ConfigOptionsList{
  291. Value: int32(pasturePb.ChildNumber_Three),
  292. Label: "三胎",
  293. Disabled: true,
  294. }, &pasturePb.ConfigOptionsList{
  295. Value: int32(pasturePb.ChildNumber_Four),
  296. Label: "四胎",
  297. Disabled: true,
  298. })
  299. return configOptions
  300. }
  301. func (s *StoreEntry) CalvingLevelEnumList() []*pasturePb.ConfigOptionsList {
  302. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  303. configOptions = append(configOptions,
  304. &pasturePb.ConfigOptionsList{
  305. Value: int32(pasturePb.CalvingLevel_Natural_Childbirth),
  306. Label: "自然分娩",
  307. Disabled: true,
  308. }, &pasturePb.ConfigOptionsList{
  309. Value: int32(pasturePb.CalvingLevel_Artificial_Midwifery1),
  310. Label: "人工助产(1-2人)",
  311. Disabled: true,
  312. }, &pasturePb.ConfigOptionsList{
  313. Value: int32(pasturePb.CalvingLevel_Artificial_Midwifery2),
  314. Label: "人工助产(3人以上)",
  315. Disabled: true,
  316. }, &pasturePb.ConfigOptionsList{
  317. Value: int32(pasturePb.CalvingLevel_Caesarean_Section),
  318. Label: "剖腹产",
  319. Disabled: true,
  320. })
  321. return configOptions
  322. }
  323. func (s *StoreEntry) DystociaReasonEnumList() []*pasturePb.ConfigOptionsList {
  324. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  325. configOptions = append(configOptions,
  326. &pasturePb.ConfigOptionsList{
  327. Value: int32(pasturePb.DystociaReason_Malposition),
  328. Label: "胎位不正",
  329. Disabled: true,
  330. }, &pasturePb.ConfigOptionsList{
  331. Value: int32(pasturePb.DystociaReason_Fetal_Overgrowth),
  332. Label: "胎儿过大",
  333. Disabled: true,
  334. }, &pasturePb.ConfigOptionsList{
  335. Value: int32(pasturePb.DystociaReason_Uterine_Atony),
  336. Label: "子宫收缩无力",
  337. Disabled: true,
  338. }, &pasturePb.ConfigOptionsList{
  339. Value: int32(pasturePb.DystociaReason_Pelvic_Stenosis),
  340. Label: "盆骨狭小",
  341. Disabled: true,
  342. }, &pasturePb.ConfigOptionsList{
  343. Value: int32(pasturePb.DystociaReason_Sub_Health),
  344. Label: "母牛亚健康状态",
  345. Disabled: true,
  346. })
  347. return configOptions
  348. }
  349. func (s *StoreEntry) PregnantCheckResultEnumList() []*pasturePb.ConfigOptionsList {
  350. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  351. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  352. Value: int32(pasturePb.PregnantCheckResult_Pregnant),
  353. Label: "有胎",
  354. Disabled: true,
  355. }, &pasturePb.ConfigOptionsList{
  356. Value: int32(pasturePb.PregnantCheckResult_UnPregnant),
  357. Label: "无胎",
  358. Disabled: true,
  359. })
  360. return configOptions
  361. }
  362. func (s *StoreEntry) PregnantCheckMethodEnumList() []*pasturePb.ConfigOptionsList {
  363. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  364. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  365. Value: int32(pasturePb.PregnantCheckMethod_B_Ultrasound),
  366. Label: "B超",
  367. Disabled: true,
  368. }, &pasturePb.ConfigOptionsList{
  369. Value: int32(pasturePb.PregnantCheckMethod_Blood_Testing),
  370. Label: "血检",
  371. Disabled: true,
  372. }, &pasturePb.ConfigOptionsList{
  373. Value: int32(pasturePb.PregnantCheckMethod_Manual_Inspection),
  374. Label: "人工检查",
  375. Disabled: true,
  376. })
  377. return configOptions
  378. }
  379. func (s *StoreEntry) DrugCategoryEnumList() []*pasturePb.ConfigOptionsList {
  380. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  381. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  382. Value: int32(pasturePb.DrugCategory_Antibiotics),
  383. Label: "抗生素类",
  384. Disabled: true,
  385. }, &pasturePb.ConfigOptionsList{
  386. Value: int32(pasturePb.DrugCategory_Antivirals),
  387. Label: "抗病毒类",
  388. Disabled: true,
  389. }, &pasturePb.ConfigOptionsList{
  390. Value: int32(pasturePb.DrugCategory_Antifungals),
  391. Label: "抗真菌类",
  392. Disabled: true,
  393. }, &pasturePb.ConfigOptionsList{
  394. Value: int32(pasturePb.DrugCategory_Antiparasitics),
  395. Label: "驱虫类",
  396. Disabled: true,
  397. }, &pasturePb.ConfigOptionsList{
  398. Value: int32(pasturePb.DrugCategory_Analgesics),
  399. Label: "镇痛类",
  400. Disabled: true,
  401. }, &pasturePb.ConfigOptionsList{
  402. Value: int32(pasturePb.DrugCategory_Antipyretic),
  403. Label: "退烧类",
  404. Disabled: true,
  405. }, &pasturePb.ConfigOptionsList{
  406. Value: int32(pasturePb.DrugCategory_Vitamin),
  407. Label: "维生素类",
  408. Disabled: true,
  409. }, &pasturePb.ConfigOptionsList{
  410. Value: int32(pasturePb.DrugCategory_Brine),
  411. Label: "盐水",
  412. Disabled: true,
  413. }, &pasturePb.ConfigOptionsList{
  414. Value: int32(pasturePb.DrugCategory_Glucose),
  415. Label: "葡萄糖",
  416. Disabled: true,
  417. }, &pasturePb.ConfigOptionsList{
  418. Value: int32(pasturePb.DrugCategory_Hormone),
  419. Label: "激素类",
  420. Disabled: true,
  421. }, &pasturePb.ConfigOptionsList{
  422. Value: int32(pasturePb.DrugCategory_Anti_Stress),
  423. Label: "抗应激类",
  424. Disabled: true,
  425. }, &pasturePb.ConfigOptionsList{
  426. Value: int32(pasturePb.DrugCategory_Disinfect),
  427. Label: "消毒类",
  428. Disabled: true,
  429. }, &pasturePb.ConfigOptionsList{
  430. Value: int32(pasturePb.DrugCategory_Chinese_Herbal),
  431. Label: "中药合剂",
  432. Disabled: true,
  433. }, &pasturePb.ConfigOptionsList{
  434. Value: int32(pasturePb.DrugCategory_Tocolytic),
  435. Label: "保胎类",
  436. Disabled: true,
  437. }, &pasturePb.ConfigOptionsList{
  438. Value: int32(pasturePb.DrugCategory_Immunity),
  439. Label: "疫苗类",
  440. Disabled: true,
  441. })
  442. return configOptions
  443. }
  444. func (s *StoreEntry) DrugUsageEnumList() []*pasturePb.ConfigOptionsList {
  445. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  446. configOptions = append(configOptions,
  447. &pasturePb.ConfigOptionsList{
  448. Value: int32(pasturePb.DrugUsage_Oral_Medications),
  449. Label: "口服",
  450. Disabled: true,
  451. }, &pasturePb.ConfigOptionsList{
  452. Value: int32(pasturePb.DrugUsage_Injectable_Medications),
  453. Label: "肌注",
  454. Disabled: true,
  455. }, &pasturePb.ConfigOptionsList{
  456. Value: int32(pasturePb.DrugUsage_Topical_Medications),
  457. Label: "外用",
  458. Disabled: true,
  459. }, &pasturePb.ConfigOptionsList{
  460. Value: int32(pasturePb.DrugUsage_Inhalation_Medications),
  461. Label: "吸入",
  462. Disabled: true,
  463. }, &pasturePb.ConfigOptionsList{
  464. Value: int32(pasturePb.DrugUsage_Drink_Medications),
  465. Label: "饮水",
  466. Disabled: true,
  467. })
  468. return configOptions
  469. }
  470. func (s *StoreEntry) UnitEnumList() []*pasturePb.ConfigOptionsList {
  471. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  472. configOptions = append(configOptions,
  473. &pasturePb.ConfigOptionsList{
  474. Value: int32(pasturePb.Unit_Pieces),
  475. Label: "个",
  476. Disabled: true,
  477. }, &pasturePb.ConfigOptionsList{
  478. Value: int32(pasturePb.Unit_Package),
  479. Label: "包/袋",
  480. Disabled: true,
  481. }, &pasturePb.ConfigOptionsList{
  482. Value: int32(pasturePb.Unit_Bottle),
  483. Label: "瓶",
  484. Disabled: true,
  485. }, &pasturePb.ConfigOptionsList{
  486. Value: int32(pasturePb.Unit_Box),
  487. Label: "盒",
  488. Disabled: true,
  489. }, &pasturePb.ConfigOptionsList{
  490. Value: int32(pasturePb.Unit_Boxful),
  491. Label: "箱",
  492. Disabled: true,
  493. }, &pasturePb.ConfigOptionsList{
  494. Value: int32(pasturePb.Unit_Branch),
  495. Label: "支",
  496. Disabled: true,
  497. }, &pasturePb.ConfigOptionsList{
  498. Value: int32(pasturePb.Unit_Barrel),
  499. Label: "桶",
  500. Disabled: true,
  501. }, &pasturePb.ConfigOptionsList{
  502. Value: int32(pasturePb.Unit_Pot),
  503. Label: "罐",
  504. Disabled: true,
  505. }, &pasturePb.ConfigOptionsList{
  506. Value: int32(pasturePb.Unit_ML),
  507. Label: "毫升",
  508. Disabled: true,
  509. }, &pasturePb.ConfigOptionsList{
  510. Value: int32(pasturePb.Unit_L),
  511. Label: "升",
  512. Disabled: true,
  513. })
  514. return configOptions
  515. }
  516. func (s *StoreEntry) ExposeEstrusTypeEnumList() []*pasturePb.ConfigOptionsList {
  517. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  518. configOptions = append(configOptions,
  519. &pasturePb.ConfigOptionsList{
  520. Value: int32(pasturePb.ExposeEstrusType_Neck_Ring),
  521. Label: "脖环揭发",
  522. Disabled: true,
  523. }, &pasturePb.ConfigOptionsList{
  524. Value: int32(pasturePb.ExposeEstrusType_Foot_Ring),
  525. Label: "脚环/计步器揭发",
  526. Disabled: true,
  527. }, &pasturePb.ConfigOptionsList{
  528. Value: int32(pasturePb.ExposeEstrusType_Manual_Observation),
  529. Label: "人工观察",
  530. Disabled: true,
  531. })
  532. return configOptions
  533. }
  534. func (s *StoreEntry) FrozenSemenTypeEnumList() []*pasturePb.ConfigOptionsList {
  535. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  536. configOptions = append(configOptions,
  537. &pasturePb.ConfigOptionsList{
  538. Value: int32(pasturePb.FrozenSemenType_Ordinary),
  539. Label: "常规冻精",
  540. Disabled: true,
  541. }, &pasturePb.ConfigOptionsList{
  542. Value: int32(pasturePb.FrozenSemenType_Gender_Control),
  543. Label: "性控冻精",
  544. Disabled: true,
  545. })
  546. return configOptions
  547. }
  548. func (s *StoreEntry) BullNumberEnumList() []*pasturePb.BullOptionsList {
  549. frozenSemenList := make([]*model.FrozenSemen, 0)
  550. bullNumberList := make([]*pasturePb.BullOptionsList, 0)
  551. if err := s.DB.Where("quantity > 0").Group("bull_id").Find(&frozenSemenList).Error; err != nil {
  552. zaplog.Error("BullNumberEnumList", zap.Any("Find", err))
  553. }
  554. for _, v := range frozenSemenList {
  555. bullNumberList = append(bullNumberList, &pasturePb.BullOptionsList{
  556. Value: v.BullId,
  557. Label: v.BullId,
  558. Disabled: true,
  559. })
  560. }
  561. return bullNumberList
  562. }
  563. func (s *StoreEntry) WeekEnumList() []*pasturePb.ConfigOptionsList {
  564. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  565. configOptions = append(configOptions,
  566. &pasturePb.ConfigOptionsList{
  567. Value: int32(pasturePb.Week_Monday),
  568. Label: "周一",
  569. Disabled: true,
  570. }, &pasturePb.ConfigOptionsList{
  571. Value: int32(pasturePb.Week_Tuesday),
  572. Label: "周二",
  573. Disabled: true,
  574. }, &pasturePb.ConfigOptionsList{
  575. Value: int32(pasturePb.Week_Wednesday),
  576. Label: "周三",
  577. Disabled: true,
  578. }, &pasturePb.ConfigOptionsList{
  579. Value: int32(pasturePb.Week_Thursday),
  580. Label: "周四",
  581. Disabled: true,
  582. }, &pasturePb.ConfigOptionsList{
  583. Value: int32(pasturePb.Week_Friday),
  584. Label: "周五",
  585. Disabled: true,
  586. }, &pasturePb.ConfigOptionsList{
  587. Value: int32(pasturePb.Week_Saturday),
  588. Label: "周六",
  589. Disabled: true,
  590. }, &pasturePb.ConfigOptionsList{
  591. Value: int32(pasturePb.Week_Sunday),
  592. Label: "周日",
  593. Disabled: true,
  594. })
  595. return configOptions
  596. }
  597. func (s *StoreEntry) MonthEnumList() []*pasturePb.ConfigOptionsList {
  598. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  599. for v := 1; v <= 31; v++ {
  600. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  601. Value: int32(v),
  602. Label: fmt.Sprintf("%d号", v),
  603. Disabled: true,
  604. })
  605. }
  606. return configOptions
  607. }
  608. func (s *StoreEntry) WorkOrderFrequencyEnumList() []*pasturePb.ConfigOptionsList {
  609. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  610. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  611. Value: int32(pasturePb.WorkOrderFrequency_None),
  612. Label: "一次性",
  613. Disabled: true,
  614. }, &pasturePb.ConfigOptionsList{
  615. Value: int32(pasturePb.WorkOrderFrequency_Daily),
  616. Label: "每天",
  617. Disabled: true,
  618. }, &pasturePb.ConfigOptionsList{
  619. Value: int32(pasturePb.WorkOrderFrequency_Weekly),
  620. Label: "每周",
  621. Disabled: true,
  622. }, &pasturePb.ConfigOptionsList{
  623. Value: int32(pasturePb.WorkOrderFrequency_Monthly),
  624. Label: "每月",
  625. Disabled: true,
  626. })
  627. return configOptions
  628. }
  629. func (s *StoreEntry) WorkOrderSubUnitEnumList() []*pasturePb.ConfigOptionsList {
  630. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  631. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  632. Value: int32(pasturePb.WorkOrderSubscribeUnit_Person),
  633. Label: "个人",
  634. Disabled: true,
  635. }, &pasturePb.ConfigOptionsList{
  636. Value: int32(pasturePb.WorkOrderSubscribeUnit_dept),
  637. Label: "部门",
  638. Disabled: true,
  639. })
  640. return configOptions
  641. }
  642. func (s *StoreEntry) WorkOrderPriorityEnumList() []*pasturePb.ConfigOptionsList {
  643. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  644. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  645. Value: int32(pasturePb.Priority_Low),
  646. Label: "低",
  647. Disabled: true,
  648. }, &pasturePb.ConfigOptionsList{
  649. Value: int32(pasturePb.Priority_Middle),
  650. Label: "一般",
  651. Disabled: true,
  652. }, &pasturePb.ConfigOptionsList{
  653. Value: int32(pasturePb.Priority_High),
  654. Label: "紧急",
  655. Disabled: true,
  656. })
  657. return configOptions
  658. }
  659. func (s *StoreEntry) WorkOrderCategoryEnumList() []*pasturePb.ConfigOptionsList {
  660. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  661. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  662. Value: int32(pasturePb.WorkOrderCategory_Health),
  663. Label: "保健",
  664. Disabled: true,
  665. }, &pasturePb.ConfigOptionsList{
  666. Value: int32(pasturePb.WorkOrderCategory_Breed),
  667. Label: "繁殖",
  668. Disabled: true,
  669. }, &pasturePb.ConfigOptionsList{
  670. Value: int32(pasturePb.WorkOrderCategory_Nutrition),
  671. Label: "营养",
  672. Disabled: true,
  673. }, &pasturePb.ConfigOptionsList{
  674. Value: int32(pasturePb.WorkOrderCategory_Ordinary),
  675. Label: "日常",
  676. Disabled: true,
  677. }, &pasturePb.ConfigOptionsList{
  678. Value: int32(pasturePb.WorkOrderCategory_Other),
  679. Label: "其他",
  680. Disabled: true,
  681. })
  682. return configOptions
  683. }
  684. func CalendarTypeEnumList() []*pasturePb.ConfigOptionsList {
  685. configOptions := make([]*pasturePb.ConfigOptionsList, 0)
  686. configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
  687. Value: int32(pasturePb.CalendarType_Immunisation),
  688. Label: "免疫",
  689. Disabled: true,
  690. }, &pasturePb.ConfigOptionsList{
  691. Value: int32(pasturePb.CalendarType_PG),
  692. Label: "PG",
  693. Disabled: true,
  694. }, &pasturePb.ConfigOptionsList{
  695. Value: int32(pasturePb.CalendarType_RnGH),
  696. Label: "RnGH",
  697. Disabled: true,
  698. }, &pasturePb.ConfigOptionsList{
  699. Value: int32(pasturePb.CalendarType_Pregnancy_Check),
  700. Label: "孕检",
  701. Disabled: true,
  702. }, &pasturePb.ConfigOptionsList{
  703. Value: int32(pasturePb.CalendarType_WorkOrder),
  704. Label: "工单",
  705. Disabled: true,
  706. }, &pasturePb.ConfigOptionsList{
  707. Value: int32(pasturePb.CalendarType_Weaning),
  708. Label: "断奶",
  709. Disabled: true,
  710. }, &pasturePb.ConfigOptionsList{
  711. Value: int32(pasturePb.CalendarType_Treatment),
  712. Label: "治疗",
  713. Disabled: true,
  714. })
  715. return configOptions
  716. }