14 new optional residence fields (heating, cooling, water heater, roof, pool, sprinkler, septic, fireplace, garage, basement, attic, exterior, flooring, landscaping) with JSONB conditions on templates. Suggestion engine scores templates against home profile: string match +0.25, bool +0.3, property type +0.15, universal base 0.3. Graceful degradation from minimal to full profile info. GET /api/tasks/suggestions/?residence_id=X returns ranked templates. 54 template conditions across 44 templates in seed data. 8 suggestion service tests.
27 lines
1.5 KiB
Go
27 lines
1.5 KiB
Go
package models
|
|
|
|
import "encoding/json"
|
|
|
|
// TaskTemplate represents a predefined task template that users can select when creating tasks
|
|
type TaskTemplate struct {
|
|
BaseModel
|
|
Title string `gorm:"column:title;size:200;not null" json:"title"`
|
|
Description string `gorm:"column:description;type:text" json:"description"`
|
|
CategoryID *uint `gorm:"column:category_id;index" json:"category_id"`
|
|
Category *TaskCategory `gorm:"foreignKey:CategoryID" json:"category,omitempty"`
|
|
FrequencyID *uint `gorm:"column:frequency_id;index" json:"frequency_id"`
|
|
Frequency *TaskFrequency `gorm:"foreignKey:FrequencyID" json:"frequency,omitempty"`
|
|
IconIOS string `gorm:"column:icon_ios;size:100" json:"icon_ios"`
|
|
IconAndroid string `gorm:"column:icon_android;size:100" json:"icon_android"`
|
|
Tags string `gorm:"column:tags;type:text" json:"tags"` // Comma-separated tags for search
|
|
DisplayOrder int `gorm:"column:display_order;default:0" json:"display_order"`
|
|
IsActive bool `gorm:"column:is_active;default:true;index" json:"is_active"`
|
|
Conditions json.RawMessage `gorm:"column:conditions;type:jsonb;default:'{}'" json:"conditions"`
|
|
Regions []ClimateRegion `gorm:"many2many:task_tasktemplate_regions;" json:"regions,omitempty"`
|
|
}
|
|
|
|
// TableName returns the table name for GORM
|
|
func (TaskTemplate) TableName() string {
|
|
return "task_tasktemplate"
|
|
}
|