- Add TaskCompletionImage and DocumentImage models with one-to-many relationships
- Update admin panel to display images for completions and documents
- Add image arrays to API request/response DTOs
- Update repositories with Preload("Images") for eager loading
- Fix seed SQL execution to use raw SQL instead of prepared statements
- Fix table names in seed file (admin_users, push_notifications_*)
- Add comprehensive seed test data with 34 completion images and 24 document images
- Add subscription limitations admin feature with toggle
- Update admin sidebar with limitations link
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
100 lines
4.2 KiB
Go
100 lines
4.2 KiB
Go
package models
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/shopspring/decimal"
|
|
)
|
|
|
|
// DocumentType represents the type of document
|
|
type DocumentType string
|
|
|
|
const (
|
|
DocumentTypeGeneral DocumentType = "general"
|
|
DocumentTypeWarranty DocumentType = "warranty"
|
|
DocumentTypeReceipt DocumentType = "receipt"
|
|
DocumentTypeContract DocumentType = "contract"
|
|
DocumentTypeInsurance DocumentType = "insurance"
|
|
DocumentTypeManual DocumentType = "manual"
|
|
)
|
|
|
|
// Document represents the task_document table
|
|
type Document struct {
|
|
BaseModel
|
|
ResidenceID uint `gorm:"column:residence_id;index;not null" json:"residence_id"`
|
|
Residence Residence `gorm:"foreignKey:ResidenceID" json:"-"`
|
|
CreatedByID uint `gorm:"column:created_by_id;index;not null" json:"created_by_id"`
|
|
CreatedBy User `gorm:"foreignKey:CreatedByID" json:"created_by,omitempty"`
|
|
|
|
Title string `gorm:"column:title;size:200;not null" json:"title"`
|
|
Description string `gorm:"column:description;type:text" json:"description"`
|
|
DocumentType DocumentType `gorm:"column:document_type;size:20;default:'general'" json:"document_type"`
|
|
|
|
// File information
|
|
FileURL string `gorm:"column:file_url;size:500" json:"file_url"`
|
|
FileName string `gorm:"column:file_name;size:255" json:"file_name"`
|
|
FileSize *int64 `gorm:"column:file_size" json:"file_size"`
|
|
MimeType string `gorm:"column:mime_type;size:100" json:"mime_type"`
|
|
|
|
// Warranty-specific fields
|
|
PurchaseDate *time.Time `gorm:"column:purchase_date;type:date" json:"purchase_date"`
|
|
ExpiryDate *time.Time `gorm:"column:expiry_date;type:date;index" json:"expiry_date"`
|
|
PurchasePrice *decimal.Decimal `gorm:"column:purchase_price;type:decimal(10,2)" json:"purchase_price"`
|
|
Vendor string `gorm:"column:vendor;size:200" json:"vendor"`
|
|
SerialNumber string `gorm:"column:serial_number;size:100" json:"serial_number"`
|
|
ModelNumber string `gorm:"column:model_number;size:100" json:"model_number"`
|
|
|
|
// Warranty provider contact fields
|
|
Provider string `gorm:"column:provider;size:200" json:"provider"`
|
|
ProviderContact string `gorm:"column:provider_contact;size:200" json:"provider_contact"`
|
|
ClaimPhone string `gorm:"column:claim_phone;size:50" json:"claim_phone"`
|
|
ClaimEmail string `gorm:"column:claim_email;size:200" json:"claim_email"`
|
|
ClaimWebsite string `gorm:"column:claim_website;size:500" json:"claim_website"`
|
|
Notes string `gorm:"column:notes;type:text" json:"notes"`
|
|
|
|
// Associated task (optional)
|
|
TaskID *uint `gorm:"column:task_id;index" json:"task_id"`
|
|
Task *Task `gorm:"foreignKey:TaskID" json:"task,omitempty"`
|
|
|
|
// State
|
|
IsActive bool `gorm:"column:is_active;default:true;index" json:"is_active"`
|
|
|
|
// Multiple images support
|
|
Images []DocumentImage `gorm:"foreignKey:DocumentID" json:"images,omitempty"`
|
|
}
|
|
|
|
// TableName returns the table name for GORM
|
|
func (Document) TableName() string {
|
|
return "task_document"
|
|
}
|
|
|
|
// IsWarrantyExpiringSoon returns true if the warranty expires within the specified days
|
|
func (d *Document) IsWarrantyExpiringSoon(days int) bool {
|
|
if d.DocumentType != DocumentTypeWarranty || d.ExpiryDate == nil {
|
|
return false
|
|
}
|
|
threshold := time.Now().UTC().AddDate(0, 0, days)
|
|
return d.ExpiryDate.Before(threshold) && d.ExpiryDate.After(time.Now().UTC())
|
|
}
|
|
|
|
// IsWarrantyExpired returns true if the warranty has expired
|
|
func (d *Document) IsWarrantyExpired() bool {
|
|
if d.DocumentType != DocumentTypeWarranty || d.ExpiryDate == nil {
|
|
return false
|
|
}
|
|
return time.Now().UTC().After(*d.ExpiryDate)
|
|
}
|
|
|
|
// DocumentImage represents the task_documentimage table
|
|
type DocumentImage struct {
|
|
BaseModel
|
|
DocumentID uint `gorm:"column:document_id;index;not null" json:"document_id"`
|
|
ImageURL string `gorm:"column:image_url;size:500;not null" json:"image_url"`
|
|
Caption string `gorm:"column:caption;size:255" json:"caption"`
|
|
}
|
|
|
|
// TableName returns the table name for GORM
|
|
func (DocumentImage) TableName() string {
|
|
return "task_documentimage"
|
|
}
|