|
@@ -87,6 +87,7 @@ func (s *StoreEntry) BarnTypeEnumList() []*pasturePb.ConfigOptionsList {
|
|
|
})
|
|
|
return barnTypeList
|
|
|
}
|
|
|
+
|
|
|
func (s *StoreEntry) BreedStatusEnumList() []*pasturePb.ConfigOptionsList {
|
|
|
breedStatusList := make([]*pasturePb.ConfigOptionsList, 0)
|
|
|
breedStatusList = append(breedStatusList, &pasturePb.ConfigOptionsList{
|
|
@@ -120,6 +121,7 @@ func (s *StoreEntry) BreedStatusEnumList() []*pasturePb.ConfigOptionsList {
|
|
|
})
|
|
|
return breedStatusList
|
|
|
}
|
|
|
+
|
|
|
func (s *StoreEntry) CowKindEnumList() []*pasturePb.ConfigOptionsList {
|
|
|
cowKindList := make([]*pasturePb.ConfigOptionsList, 0)
|
|
|
cowKindList = append(cowKindList, &pasturePb.ConfigOptionsList{
|
|
@@ -232,6 +234,20 @@ func (s *StoreEntry) CowTypeEnumList() []*pasturePb.ConfigOptionsList {
|
|
|
return cowTypeList
|
|
|
}
|
|
|
|
|
|
+func (s *StoreEntry) SemeTimeCowTypeEnumList() []*pasturePb.ConfigOptionsList {
|
|
|
+ cowTypeList := make([]*pasturePb.ConfigOptionsList, 0)
|
|
|
+ cowTypeList = append(cowTypeList, &pasturePb.ConfigOptionsList{
|
|
|
+ Value: int32(pasturePb.CowType_Nurturing),
|
|
|
+ Label: "育成牛",
|
|
|
+ Disabled: true,
|
|
|
+ }, &pasturePb.ConfigOptionsList{
|
|
|
+ Value: int32(pasturePb.CowType_Lactation),
|
|
|
+ Label: "泌乳牛",
|
|
|
+ Disabled: true,
|
|
|
+ })
|
|
|
+ return cowTypeList
|
|
|
+}
|
|
|
+
|
|
|
func (s *StoreEntry) TransferPenEnumList() []*pasturePb.ConfigOptionsList {
|
|
|
transferPenList := make([]*pasturePb.ConfigOptionsList, 0)
|
|
|
transferPenList = append(transferPenList, &pasturePb.ConfigOptionsList{
|
|
@@ -513,6 +529,7 @@ func (s *StoreEntry) ExposeEstrusTypeEnumList() []*pasturePb.ConfigOptionsList {
|
|
|
})
|
|
|
return configOptions
|
|
|
}
|
|
|
+
|
|
|
func (s *StoreEntry) FrozenSemenTypeEnumList() []*pasturePb.ConfigOptionsList {
|
|
|
configOptions := make([]*pasturePb.ConfigOptionsList, 0)
|
|
|
configOptions = append(configOptions,
|
|
@@ -544,6 +561,42 @@ func (s *StoreEntry) BullNumberEnumList() []*pasturePb.BullOptionsList {
|
|
|
}
|
|
|
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) DrugUsageMaps() map[pasturePb.DrugUsage_Kind]string {
|
|
|
res := make(map[pasturePb.DrugUsage_Kind]string)
|
|
|
for _, v := range s.DrugUsageEnumList() {
|
|
@@ -551,6 +604,7 @@ func (s *StoreEntry) DrugUsageMaps() map[pasturePb.DrugUsage_Kind]string {
|
|
|
}
|
|
|
return res
|
|
|
}
|
|
|
+
|
|
|
func (s *StoreEntry) ExposeEstrusTypeMap() map[pasturePb.ExposeEstrusType_Kind]string {
|
|
|
res := make(map[pasturePb.ExposeEstrusType_Kind]string)
|
|
|
for _, v := range s.ExposeEstrusTypeEnumList() {
|
|
@@ -558,6 +612,7 @@ func (s *StoreEntry) ExposeEstrusTypeMap() map[pasturePb.ExposeEstrusType_Kind]s
|
|
|
}
|
|
|
return res
|
|
|
}
|
|
|
+
|
|
|
func (s *StoreEntry) FrozenSemenTypeMap() map[pasturePb.FrozenSemenType_Kind]string {
|
|
|
res := make(map[pasturePb.FrozenSemenType_Kind]string)
|
|
|
for _, v := range s.FrozenSemenTypeEnumList() {
|
|
@@ -573,6 +628,23 @@ func (s *StoreEntry) UnitMap() map[pasturePb.Unit_Kind]string {
|
|
|
}
|
|
|
return res
|
|
|
}
|
|
|
+
|
|
|
+func (s *StoreEntry) WeekMap() map[pasturePb.Week_Kind]string {
|
|
|
+ res := make(map[pasturePb.Week_Kind]string)
|
|
|
+ for _, v := range s.WeekEnumList() {
|
|
|
+ res[pasturePb.Week_Kind(v.Value)] = v.Label
|
|
|
+ }
|
|
|
+ return res
|
|
|
+}
|
|
|
+
|
|
|
+func (s *StoreEntry) CowTypeMap() map[pasturePb.CowType_Kind]string {
|
|
|
+ res := make(map[pasturePb.CowType_Kind]string)
|
|
|
+ for _, v := range s.CowTypeEnumList() {
|
|
|
+ res[pasturePb.CowType_Kind(v.Value)] = v.Label
|
|
|
+ }
|
|
|
+ return res
|
|
|
+}
|
|
|
+
|
|
|
func (s *StoreEntry) BarnTypeOptions(ctx context.Context) (*pasturePb.ConfigOptionsListResponse, error) {
|
|
|
return &pasturePb.ConfigOptionsListResponse{
|
|
|
Code: http.StatusOK,
|
|
@@ -693,6 +765,10 @@ func (s *StoreEntry) SystemBaseConfigOptions(ctx context.Context, optionsName st
|
|
|
configOptions = s.ExposeEstrusTypeEnumList()
|
|
|
case "frozenSemenType":
|
|
|
configOptions = s.FrozenSemenTypeEnumList()
|
|
|
+ case "week":
|
|
|
+ configOptions = s.WeekEnumList()
|
|
|
+ case "sameTimeCowType":
|
|
|
+ configOptions = s.SemeTimeCowTypeEnumList()
|
|
|
}
|
|
|
|
|
|
return &pasturePb.ConfigOptionsListResponse{
|