mirror of
https://github.com/DRYTRIX/TimeTracker.git
synced 2026-05-19 04:40:32 -05:00
b4486a627f
- Webhook models: remove duplicate index definitions so db.create_all() no longer raises 'index already exists' (columns already have index=True) - ImportService: fix circular import by late-importing ClientService, ProjectService, TimeTrackingService in __init__ - reports: fix F823 by renaming unpack variable _ to _entry_count to avoid shadowing gettext _ in export_task_excel() - Code quality: add .flake8 with extend-ignore so flake8 CI passes; simplify pyproject.toml isort config (drop unsupported options) - Format: run black and isort on app/ - tests: restore minimal app fixture in test_import_export_models
23 lines
810 B
Python
23 lines
810 B
Python
from datetime import datetime
|
|
|
|
from app import db
|
|
|
|
|
|
class InvoiceTemplate(db.Model):
|
|
"""Reusable invoice templates/themes with customizable HTML and CSS."""
|
|
|
|
__tablename__ = "invoice_templates"
|
|
|
|
id = db.Column(db.Integer, primary_key=True)
|
|
name = db.Column(db.String(100), nullable=False, unique=True, index=True)
|
|
description = db.Column(db.String(255), nullable=True)
|
|
html = db.Column(db.Text, nullable=True)
|
|
css = db.Column(db.Text, nullable=True)
|
|
is_default = db.Column(db.Boolean, default=False, nullable=False)
|
|
|
|
created_at = db.Column(db.DateTime, default=datetime.utcnow, nullable=False)
|
|
updated_at = db.Column(db.DateTime, default=datetime.utcnow, onupdate=datetime.utcnow, nullable=False)
|
|
|
|
def __repr__(self):
|
|
return f"<InvoiceTemplate {self.name}>"
|