123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763 |
- package backend
- import (
- "fmt"
- "kpt-pasture/model"
- "gitee.com/xuyiping_admin/pkg/logger/zaplog"
- "go.uber.org/zap"
- pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
- )
- func (s *StoreEntry) BarnTypeEnumList() []*pasturePb.ConfigOptionsList {
- barnTypeList := make([]*pasturePb.ConfigOptionsList, 0)
- barnTypeList = append(barnTypeList, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.PenType_Lactating_Calves),
- Label: "哺乳犊牛舍",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.PenType_Weaned_Calves),
- Label: "断奶犊牛舍",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.PenType_Youth),
- Label: "育成牛舍",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.PenType_Nurturing),
- Label: "育成牛舍",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.PenType_Lactation),
- Label: "泌乳牛舍",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.PenType_Peripartum),
- Label: "围产牛舍",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.PenType_Dry_Milking),
- Label: "干奶牛舍",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.PenType_Sick_Cow),
- Label: "病牛舍",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.PenType_Eliminate),
- Label: "淘汰牛舍",
- Disabled: true,
- })
- return barnTypeList
- }
- func (s *StoreEntry) BreedStatusEnumList() []*pasturePb.ConfigOptionsList {
- breedStatusList := make([]*pasturePb.ConfigOptionsList, 0)
- breedStatusList = append(breedStatusList, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.BreedStatus_UnBreed),
- Label: "未配",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.BreedStatus_Breeding),
- Label: "已配未检",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.BreedStatus_Pregnant),
- Label: "怀孕",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.BreedStatus_Empty),
- Label: "空怀",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.BreedStatus_Calving),
- Label: "产犊",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.BreedStatus_Abort),
- Label: "流产",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.BreedStatus_No_Pregnant),
- Label: "禁配",
- Disabled: true,
- })
- return breedStatusList
- }
- func (s *StoreEntry) CowKindEnumList() []*pasturePb.ConfigOptionsList {
- cowKindList := make([]*pasturePb.ConfigOptionsList, 0)
- cowKindList = append(cowKindList, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CowKind_HST),
- Label: "荷斯坦",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CowKind_JSN),
- Label: "娟姗牛",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CowKind_SHN),
- Label: "三河牛",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CowKind_XJHN),
- Label: "新疆褐牛",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CowKind_MN),
- Label: "牦牛",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CowKind_XMTEN),
- Label: "西门塔尔牛",
- Disabled: true,
- })
- return cowKindList
- }
- func (s *StoreEntry) CowSourceEnumList() []*pasturePb.ConfigOptionsList {
- cowSourceList := make([]*pasturePb.ConfigOptionsList, 0)
- cowSourceList = append(cowSourceList, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CowSource_Calving),
- Label: "产犊",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CowSource_Transfer_In),
- Label: "调入",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CowSource_Buy),
- Label: "购买",
- Disabled: true,
- })
- return cowSourceList
- }
- func (s *StoreEntry) CowTypeEnumList() []*pasturePb.ConfigOptionsList {
- cowTypeList := make([]*pasturePb.ConfigOptionsList, 0)
- cowTypeList = append(cowTypeList, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CowType_Lactating_Calf),
- Label: "哺乳犊牛",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CowType_Weaned_Calf),
- Label: "断奶犊牛",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CowType_Youth_Calf),
- Label: "青年牛",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CowType_Fattening_Calf),
- Label: "育肥牛",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CowType_Reserve_Calf),
- Label: "后备牛",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CowType_Breeding_Calf),
- Label: "种母牛",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CowType_Breeding_Bull),
- Label: "种公牛",
- Disabled: true,
- })
- return cowTypeList
- }
- func (s *StoreEntry) SemeTimeCowTypeEnumList() []*pasturePb.ConfigOptionsList {
- cowTypeList := make([]*pasturePb.ConfigOptionsList, 0)
- cowTypeList = append(cowTypeList, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CowType_Reserve_Calf),
- Label: "后备牛",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CowType_Breeding_Calf),
- Label: "种母牛",
- Disabled: true,
- })
- return cowTypeList
- }
- func (s *StoreEntry) SameTimeTypeEnumList() []*pasturePb.ConfigOptionsList {
- cowTypeList := make([]*pasturePb.ConfigOptionsList, 0)
- cowTypeList = append(cowTypeList, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.SameTimeType_PGBJ),
- Label: "PG保健",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.SameTimeType_PGTQ),
- Label: "PG同期",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.SameTimeType_RnGH),
- Label: "RnGH",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.SameTimeType_TAI),
- Label: "TAI输精",
- Disabled: true,
- })
- return cowTypeList
- }
- func (s *StoreEntry) ImmunizationCowTypeEnumList() []*pasturePb.ConfigOptionsList {
- cowTypeList := make([]*pasturePb.ConfigOptionsList, 0)
- cowTypeList = append(cowTypeList, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CowType_Lactating_Calf),
- Label: "犊牛",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CowType_Weaned_Calf),
- Label: "育成牛",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CowType_Youth_Calf),
- Label: "青年牛",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CowType_Fattening_Calf),
- Label: "育肥牛",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CowType_Reserve_Calf),
- Label: "后备牛",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CowType_Reserve_Calf),
- Label: "种母牛",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CowType_Breeding_Bull),
- Label: "种公牛",
- Disabled: true,
- })
- return cowTypeList
- }
- func (s *StoreEntry) ImmunizationConditionsEnumList() []*pasturePb.ConfigOptionsList {
- cowTypeList := make([]*pasturePb.ConfigOptionsList, 0)
- cowTypeList = append(cowTypeList, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.ImmunizationConditions_Days_Age),
- Label: "日龄",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.ImmunizationConditions_Days_After_Delivery),
- Label: "产后天数",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.ImmunizationConditions_Days_Of_Pregnancy),
- Label: "怀孕天数",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.ImmunizationConditions_Admission_Days),
- Label: "入场天数",
- Disabled: true,
- })
- return cowTypeList
- }
- func (s *StoreEntry) TransferPenEnumList() []*pasturePb.ConfigOptionsList {
- transferPenList := make([]*pasturePb.ConfigOptionsList, 0)
- transferPenList = append(transferPenList, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.TransferPenReason_Normal),
- Label: "正常转群",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.TransferPenReason_Feed),
- Label: "饲喂转群",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.TransferPenReason_Dry_Milk),
- Label: "干奶转群",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.TransferPenReason_Pregnant),
- Label: "怀孕转群",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.TransferPenReason_Overantibody),
- Label: "过抗转群",
- Disabled: true,
- })
- return transferPenList
- }
- func (s *StoreEntry) ChildNumberEnumList() []*pasturePb.ConfigOptionsList {
- configOptions := make([]*pasturePb.ConfigOptionsList, 0)
- configOptions = append(configOptions,
- &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.ChildNumber_One),
- Label: "单胎",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.ChildNumber_Two),
- Label: "双胎",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.ChildNumber_Three),
- Label: "三胎",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.ChildNumber_Four),
- Label: "四胎",
- Disabled: true,
- })
- return configOptions
- }
- func (s *StoreEntry) CalvingLevelEnumList() []*pasturePb.ConfigOptionsList {
- configOptions := make([]*pasturePb.ConfigOptionsList, 0)
- configOptions = append(configOptions,
- &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CalvingLevel_Natural_Childbirth),
- Label: "自然分娩",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CalvingLevel_Artificial_Midwifery1),
- Label: "人工助产(1-2人)",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CalvingLevel_Artificial_Midwifery2),
- Label: "人工助产(3人以上)",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CalvingLevel_Caesarean_Section),
- Label: "剖腹产",
- Disabled: true,
- })
- return configOptions
- }
- func (s *StoreEntry) DystociaReasonEnumList() []*pasturePb.ConfigOptionsList {
- configOptions := make([]*pasturePb.ConfigOptionsList, 0)
- configOptions = append(configOptions,
- &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.DystociaReason_Malposition),
- Label: "胎位不正",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.DystociaReason_Fetal_Overgrowth),
- Label: "胎儿过大",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.DystociaReason_Uterine_Atony),
- Label: "子宫收缩无力",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.DystociaReason_Pelvic_Stenosis),
- Label: "盆骨狭小",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.DystociaReason_Sub_Health),
- Label: "母牛亚健康状态",
- Disabled: true,
- })
- return configOptions
- }
- func (s *StoreEntry) PregnantCheckResultEnumList() []*pasturePb.ConfigOptionsList {
- configOptions := make([]*pasturePb.ConfigOptionsList, 0)
- configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.PregnantCheckResult_InCheck_UnPregnant),
- Label: "初检未孕",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.PregnantCheckResult_InCheck_Pregnant),
- Label: "初检已孕",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.PregnantCheckResult_Recheck_UnPregnant),
- Label: "复检未孕",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.PregnantCheckResult_Recheck_Pregnant),
- Label: "初检已孕",
- Disabled: true,
- })
- return configOptions
- }
- func (s *StoreEntry) PregnantCheckMethodEnumList() []*pasturePb.ConfigOptionsList {
- configOptions := make([]*pasturePb.ConfigOptionsList, 0)
- configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.PregnantCheckMethod_B_Ultrasound),
- Label: "B超",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.PregnantCheckMethod_Blood_Testing),
- Label: "血检",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.PregnantCheckMethod_Manual_Inspection),
- Label: "人工检查",
- Disabled: true,
- })
- return configOptions
- }
- func (s *StoreEntry) DrugCategoryEnumList() []*pasturePb.ConfigOptionsList {
- configOptions := make([]*pasturePb.ConfigOptionsList, 0)
- configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.DrugCategory_Antibiotics),
- Label: "抗生素类",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.DrugCategory_Antivirals),
- Label: "抗病毒类",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.DrugCategory_Antifungals),
- Label: "抗真菌类",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.DrugCategory_Antiparasitics),
- Label: "驱虫类",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.DrugCategory_Analgesics),
- Label: "镇痛类",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.DrugCategory_Antipyretic),
- Label: "退烧类",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.DrugCategory_Vitamin),
- Label: "维生素类",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.DrugCategory_Brine),
- Label: "盐水",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.DrugCategory_Glucose),
- Label: "葡萄糖",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.DrugCategory_Hormone),
- Label: "激素类",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.DrugCategory_Anti_Stress),
- Label: "抗应激类",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.DrugCategory_Disinfect),
- Label: "消毒类",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.DrugCategory_Chinese_Herbal),
- Label: "中药合剂",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.DrugCategory_Tocolytic),
- Label: "保胎类",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.DrugCategory_Immunity),
- Label: "疫苗类",
- Disabled: true,
- })
- return configOptions
- }
- func (s *StoreEntry) DrugUsageEnumList() []*pasturePb.ConfigOptionsList {
- configOptions := make([]*pasturePb.ConfigOptionsList, 0)
- configOptions = append(configOptions,
- &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.DrugUsage_Oral_Medications),
- Label: "口服",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.DrugUsage_Injectable_Medications),
- Label: "肌注",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.DrugUsage_Topical_Medications),
- Label: "外用",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.DrugUsage_Inhalation_Medications),
- Label: "吸入",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.DrugUsage_Drink_Medications),
- Label: "饮水",
- Disabled: true,
- })
- return configOptions
- }
- func (s *StoreEntry) UnitEnumList() []*pasturePb.ConfigOptionsList {
- configOptions := make([]*pasturePb.ConfigOptionsList, 0)
- configOptions = append(configOptions,
- &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.Unit_Pieces),
- Label: "个",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.Unit_Package),
- Label: "包/袋",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.Unit_Bottle),
- Label: "瓶",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.Unit_Box),
- Label: "盒",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.Unit_Boxful),
- Label: "箱",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.Unit_Branch),
- Label: "支",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.Unit_Barrel),
- Label: "桶",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.Unit_Pot),
- Label: "罐",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.Unit_ML),
- Label: "毫升",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.Unit_L),
- Label: "升",
- Disabled: true,
- })
- return configOptions
- }
- func (s *StoreEntry) ExposeEstrusTypeEnumList() []*pasturePb.ConfigOptionsList {
- configOptions := make([]*pasturePb.ConfigOptionsList, 0)
- configOptions = append(configOptions,
- &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.ExposeEstrusType_Neck_Ring),
- Label: "脖环揭发",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.ExposeEstrusType_Foot_Ring),
- Label: "脚环/计步器揭发",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.ExposeEstrusType_Manual_Observation),
- Label: "人工观察",
- Disabled: true,
- })
- return configOptions
- }
- func (s *StoreEntry) FrozenSemenTypeEnumList() []*pasturePb.ConfigOptionsList {
- configOptions := make([]*pasturePb.ConfigOptionsList, 0)
- configOptions = append(configOptions,
- &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.FrozenSemenType_Ordinary),
- Label: "常规冻精",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.FrozenSemenType_Gender_Control),
- Label: "性控冻精",
- Disabled: true,
- })
- return configOptions
- }
- func (s *StoreEntry) BullNumberEnumList() []*pasturePb.BullOptionsList {
- frozenSemenList := make([]*model.EventFrozenSemen, 0)
- bullNumberList := make([]*pasturePb.BullOptionsList, 0)
- if err := s.DB.Where("quantity > 0").Group("bull_id").Find(&frozenSemenList).Error; err != nil {
- zaplog.Error("BullNumberEnumList", zap.Any("Find", err))
- }
- for _, v := range frozenSemenList {
- bullNumberList = append(bullNumberList, &pasturePb.BullOptionsList{
- Value: v.BullId,
- Label: v.BullId,
- Disabled: true,
- })
- }
- return bullNumberList
- }
- func (s *StoreEntry) WeekEnumList() []*pasturePb.ConfigOptionsList {
- configOptions := make([]*pasturePb.ConfigOptionsList, 0)
- configOptions = append(configOptions,
- &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.Week_Monday),
- Label: "周一",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.Week_Tuesday),
- Label: "周二",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.Week_Wednesday),
- Label: "周三",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.Week_Thursday),
- Label: "周四",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.Week_Friday),
- Label: "周五",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.Week_Saturday),
- Label: "周六",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.Week_Sunday),
- Label: "周日",
- Disabled: true,
- })
- return configOptions
- }
- func (s *StoreEntry) MonthEnumList() []*pasturePb.ConfigOptionsList {
- configOptions := make([]*pasturePb.ConfigOptionsList, 0)
- for v := 1; v <= 31; v++ {
- configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
- Value: int32(v),
- Label: fmt.Sprintf("%d号", v),
- Disabled: true,
- })
- }
- return configOptions
- }
- func (s *StoreEntry) WorkOrderFrequencyEnumList() []*pasturePb.ConfigOptionsList {
- configOptions := make([]*pasturePb.ConfigOptionsList, 0)
- configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.WorkOrderFrequency_None),
- Label: "一次性",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.WorkOrderFrequency_Daily),
- Label: "每天",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.WorkOrderFrequency_Weekly),
- Label: "每周",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.WorkOrderFrequency_Monthly),
- Label: "每月",
- Disabled: true,
- })
- return configOptions
- }
- func (s *StoreEntry) WorkOrderSubUnitEnumList() []*pasturePb.ConfigOptionsList {
- configOptions := make([]*pasturePb.ConfigOptionsList, 0)
- configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.WorkOrderSubscribeUnit_Person),
- Label: "个人",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.WorkOrderSubscribeUnit_dept),
- Label: "部门",
- Disabled: true,
- })
- return configOptions
- }
- func (s *StoreEntry) WorkOrderPriorityEnumList() []*pasturePb.ConfigOptionsList {
- configOptions := make([]*pasturePb.ConfigOptionsList, 0)
- configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.Priority_Low),
- Label: "低",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.Priority_Middle),
- Label: "一般",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.Priority_High),
- Label: "紧急",
- Disabled: true,
- })
- return configOptions
- }
- func (s *StoreEntry) WorkOrderCategoryEnumList() []*pasturePb.ConfigOptionsList {
- configOptions := make([]*pasturePb.ConfigOptionsList, 0)
- configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.WorkOrderCategory_Health),
- Label: "保健",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.WorkOrderCategory_Breed),
- Label: "繁殖",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.WorkOrderCategory_Nutrition),
- Label: "营养",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.WorkOrderCategory_Ordinary),
- Label: "日常",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.WorkOrderCategory_Other),
- Label: "其他",
- Disabled: true,
- })
- return configOptions
- }
- func CalendarTypeEnumList() []*pasturePb.ConfigOptionsList {
- configOptions := make([]*pasturePb.ConfigOptionsList, 0)
- configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CalendarType_Immunisation),
- Label: "免疫",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CalendarType_PG),
- Label: "PG",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CalendarType_RnGH),
- Label: "RnGH",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CalendarType_First_Pregnancy_Check),
- Label: "孕检-初检",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CalendarType_Second_Pregnancy_Check),
- Label: "孕检-二检",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CalendarType_Third_Pregnancy_Check),
- Label: "孕检-三检",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CalendarType_Fourth_Pregnancy_Check),
- Label: "孕检-四检",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CalendarType_WorkOrder),
- Label: "工单",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CalendarType_Weaning),
- Label: "断奶",
- Disabled: true,
- }, &pasturePb.ConfigOptionsList{
- Value: int32(pasturePb.CalendarType_Treatment),
- Label: "治疗",
- Disabled: true,
- })
- return configOptions
- }
|