import 'package:sqflite/sqflite.dart'; import 'package:path/path.dart'; class DatabaseHelper { static const _databaseVersion = 26; static final DatabaseHelper _instance = DatabaseHelper._internal(); static Database? _database; factory DatabaseHelper() => _instance; DatabaseHelper._internal(); Future get database async { if (_database != null) return _database!; _database = await _initDatabase(); return _database!; } Future _initDatabase() async { String path = join(await getDatabasesPath(), 'gemi_invoice.db'); return await openDatabase( path, version: _databaseVersion, onCreate: _onCreate, onUpgrade: _onUpgrade, ); } Future _onUpgrade(Database db, int oldVersion, int newVersion) async { if (oldVersion < 2) { await db.execute('ALTER TABLE invoices ADD COLUMN tax_rate REAL DEFAULT 0.10'); } if (oldVersion < 3) { await db.execute(''' CREATE TABLE company_info ( id INTEGER PRIMARY KEY, name TEXT NOT NULL, zip_code TEXT, address TEXT, tel TEXT, fax TEXT, email TEXT, url TEXT, default_tax_rate REAL DEFAULT 0.10, seal_path TEXT ) '''); } if (oldVersion < 4) { await db.execute('ALTER TABLE products ADD COLUMN barcode TEXT'); } if (oldVersion < 5) { await db.execute('ALTER TABLE invoices ADD COLUMN customer_formal_name TEXT'); } if (oldVersion < 6) { await db.execute('ALTER TABLE products ADD COLUMN category TEXT'); await db.execute('CREATE INDEX idx_products_name ON products(name)'); await db.execute('CREATE INDEX idx_products_barcode ON products(barcode)'); await db.execute(''' CREATE TABLE activity_logs ( id TEXT PRIMARY KEY, action TEXT NOT NULL, target_type TEXT NOT NULL, target_id TEXT, details TEXT, timestamp TEXT NOT NULL ) '''); } if (oldVersion < 7) { await db.execute('ALTER TABLE products ADD COLUMN stock_quantity INTEGER DEFAULT 0'); await db.execute('ALTER TABLE invoices ADD COLUMN document_type TEXT DEFAULT "invoice"'); await db.execute('ALTER TABLE invoice_items ADD COLUMN product_id TEXT'); } if (oldVersion < 8) { await db.execute('ALTER TABLE invoices ADD COLUMN latitude REAL'); await db.execute('ALTER TABLE invoices ADD COLUMN longitude REAL'); await db.execute(''' CREATE TABLE app_gps_history ( id INTEGER PRIMARY KEY AUTOINCREMENT, latitude REAL NOT NULL, longitude REAL NOT NULL, timestamp TEXT NOT NULL ) '''); } if (oldVersion < 9) { await db.execute('ALTER TABLE company_info ADD COLUMN tax_display_mode TEXT DEFAULT "normal"'); } if (oldVersion < 10) { await db.execute('ALTER TABLE invoices ADD COLUMN terminal_id TEXT DEFAULT "T1"'); await db.execute('ALTER TABLE invoices ADD COLUMN content_hash TEXT'); } if (oldVersion < 11) { await db.execute('ALTER TABLE invoices ADD COLUMN is_draft INTEGER DEFAULT 0'); } if (oldVersion < 12) { await db.execute('ALTER TABLE invoices ADD COLUMN subject TEXT'); } if (oldVersion < 13) { await db.execute('ALTER TABLE company_info ADD COLUMN registration_number TEXT'); } if (oldVersion < 14) { await _safeAddColumn(db, 'invoices', 'subject TEXT'); } if (oldVersion < 15) { await _safeAddColumn(db, 'invoices', 'is_locked INTEGER DEFAULT 0'); await _safeAddColumn(db, 'customers', 'is_locked INTEGER DEFAULT 0'); await _safeAddColumn(db, 'products', 'is_locked INTEGER DEFAULT 0'); } if (oldVersion < 16) { await db.execute(''' CREATE TABLE customer_contacts ( id TEXT PRIMARY KEY, customer_id TEXT NOT NULL, email TEXT, tel TEXT, address TEXT, version INTEGER NOT NULL, is_active INTEGER DEFAULT 1, created_at TEXT NOT NULL, FOREIGN KEY(customer_id) REFERENCES customers(id) ON DELETE CASCADE ) '''); await db.execute('CREATE INDEX idx_customer_contacts_cust ON customer_contacts(customer_id)'); // 既存顧客の連絡先を初期バージョンとしてコピー final existing = await db.query('customers'); final now = DateTime.now().toIso8601String(); for (final row in existing) { final contactId = "${row['id']}_v1"; await db.insert('customer_contacts', { 'id': contactId, 'customer_id': row['id'], 'email': null, 'tel': row['tel'], 'address': row['address'], 'version': 1, 'is_active': 1, 'created_at': now, }); } } if (oldVersion < 17) { await _safeAddColumn(db, 'invoices', 'contact_version_id INTEGER'); await _safeAddColumn(db, 'invoices', 'contact_email_snapshot TEXT'); await _safeAddColumn(db, 'invoices', 'contact_tel_snapshot TEXT'); await _safeAddColumn(db, 'invoices', 'contact_address_snapshot TEXT'); } if (oldVersion < 20) { await _safeAddColumn(db, 'company_info', 'fax TEXT'); await _safeAddColumn(db, 'company_info', 'email TEXT'); await _safeAddColumn(db, 'company_info', 'url TEXT'); } if (oldVersion < 18) { await _safeAddColumn(db, 'customers', 'contact_version_id INTEGER'); } if (oldVersion < 19) { await _safeAddColumn(db, 'customers', 'head_char1 TEXT'); await _safeAddColumn(db, 'customers', 'head_char2 TEXT'); await db.execute('CREATE INDEX IF NOT EXISTS idx_customers_head1 ON customers(head_char1)'); await db.execute('CREATE INDEX IF NOT EXISTS idx_customers_head2 ON customers(head_char2)'); } if (oldVersion < 20) { await _safeAddColumn(db, 'customers', 'email TEXT'); } if (oldVersion < 22) { await db.execute(''' CREATE TABLE IF NOT EXISTS app_settings ( key TEXT PRIMARY KEY, value TEXT ) '''); } if (oldVersion < 23) { await _safeAddColumn(db, 'customers', 'is_hidden INTEGER DEFAULT 0'); await _safeAddColumn(db, 'products', 'is_hidden INTEGER DEFAULT 0'); await db.execute('CREATE INDEX IF NOT EXISTS idx_customers_hidden ON customers(is_hidden)'); await db.execute('CREATE INDEX IF NOT EXISTS idx_products_hidden ON products(is_hidden)'); } if (oldVersion < 24) { await db.execute(''' CREATE TABLE IF NOT EXISTS master_hidden ( master_type TEXT NOT NULL, master_id TEXT NOT NULL, is_hidden INTEGER DEFAULT 0, PRIMARY KEY(master_type, master_id) ) '''); await db.execute('CREATE INDEX IF NOT EXISTS idx_master_hidden_type ON master_hidden(master_type)'); } if (oldVersion < 25) { await _safeAddColumn(db, 'invoices', 'company_snapshot TEXT'); await _safeAddColumn(db, 'invoices', 'company_seal_hash TEXT'); await _safeAddColumn(db, 'invoices', 'meta_json TEXT'); await _safeAddColumn(db, 'invoices', 'meta_hash TEXT'); } if (oldVersion < 26) { await db.execute(''' CREATE TABLE IF NOT EXISTS chat_messages ( id INTEGER PRIMARY KEY AUTOINCREMENT, message_id TEXT UNIQUE NOT NULL, client_id TEXT NOT NULL, direction TEXT NOT NULL, body TEXT NOT NULL, created_at INTEGER NOT NULL, synced INTEGER DEFAULT 0, delivered_at INTEGER ) '''); await db.execute('CREATE INDEX IF NOT EXISTS idx_chat_messages_created_at ON chat_messages(created_at)'); } } Future _onCreate(Database db, int version) async { await db.execute(''' CREATE TABLE customers ( id TEXT PRIMARY KEY, display_name TEXT NOT NULL, formal_name TEXT NOT NULL, title TEXT DEFAULT '様', department TEXT, address TEXT, tel TEXT, email TEXT, contact_version_id INTEGER, odoo_id TEXT, head_char1 TEXT, head_char2 TEXT, is_locked INTEGER DEFAULT 0, is_hidden INTEGER DEFAULT 0, is_synced INTEGER DEFAULT 0, updated_at TEXT NOT NULL ) '''); await db.execute(''' CREATE TABLE customer_gps_history ( id INTEGER PRIMARY KEY AUTOINCREMENT, customer_id TEXT NOT NULL, latitude REAL NOT NULL, longitude REAL NOT NULL, timestamp TEXT NOT NULL, FOREIGN KEY (customer_id) REFERENCES customers (id) ON DELETE CASCADE ) '''); await db.execute(''' CREATE TABLE customer_contacts ( id TEXT PRIMARY KEY, customer_id TEXT NOT NULL, email TEXT, tel TEXT, address TEXT, version INTEGER NOT NULL, is_active INTEGER DEFAULT 1, created_at TEXT NOT NULL, FOREIGN KEY(customer_id) REFERENCES customers(id) ON DELETE CASCADE ) '''); await db.execute('CREATE INDEX idx_customer_contacts_cust ON customer_contacts(customer_id)'); // 商品マスター await db.execute(''' CREATE TABLE products ( id TEXT PRIMARY KEY, name TEXT NOT NULL, default_unit_price INTEGER, barcode TEXT, category TEXT, stock_quantity INTEGER DEFAULT 0, is_locked INTEGER DEFAULT 0, is_hidden INTEGER DEFAULT 0, odoo_id TEXT ) '''); await db.execute('CREATE INDEX idx_products_name ON products(name)'); await db.execute('CREATE INDEX idx_products_barcode ON products(barcode)'); await db.execute(''' CREATE TABLE master_hidden ( master_type TEXT NOT NULL, master_id TEXT NOT NULL, is_hidden INTEGER DEFAULT 0, PRIMARY KEY(master_type, master_id) ) '''); await db.execute('CREATE INDEX idx_master_hidden_type ON master_hidden(master_type)'); // 伝票マスター await db.execute(''' CREATE TABLE invoices ( id TEXT PRIMARY KEY, customer_id TEXT NOT NULL, date TEXT NOT NULL, notes TEXT, subject TEXT, file_path TEXT, total_amount INTEGER, tax_rate REAL DEFAULT 0.10, document_type TEXT DEFAULT "invoice", customer_formal_name TEXT, odoo_id TEXT, is_synced INTEGER DEFAULT 0, updated_at TEXT NOT NULL, latitude REAL, longitude REAL, terminal_id TEXT DEFAULT "T1", content_hash TEXT, is_draft INTEGER DEFAULT 0, is_locked INTEGER DEFAULT 0, contact_version_id INTEGER, contact_email_snapshot TEXT, contact_tel_snapshot TEXT, contact_address_snapshot TEXT, company_snapshot TEXT, company_seal_hash TEXT, meta_json TEXT, meta_hash TEXT, FOREIGN KEY (customer_id) REFERENCES customers (id) ) '''); await db.execute(''' CREATE TABLE app_gps_history ( id INTEGER PRIMARY KEY AUTOINCREMENT, latitude REAL NOT NULL, longitude REAL NOT NULL, timestamp TEXT NOT NULL ) '''); // 伝票明細 await db.execute(''' CREATE TABLE invoice_items ( id TEXT PRIMARY KEY, invoice_id TEXT NOT NULL, product_id TEXT, description TEXT NOT NULL, quantity INTEGER NOT NULL, unit_price INTEGER NOT NULL, FOREIGN KEY (invoice_id) REFERENCES invoices (id) ON DELETE CASCADE ) '''); await db.execute(''' CREATE TABLE company_info ( id INTEGER PRIMARY KEY, name TEXT NOT NULL, zip_code TEXT, address TEXT, tel TEXT, default_tax_rate REAL DEFAULT 0.10, seal_path TEXT, tax_display_mode TEXT DEFAULT "normal", registration_number TEXT ) '''); await db.execute(''' CREATE TABLE activity_logs ( id TEXT PRIMARY KEY, action TEXT NOT NULL, target_type TEXT NOT NULL, target_id TEXT, details TEXT, timestamp TEXT NOT NULL ) '''); await db.execute(''' CREATE TABLE app_settings ( key TEXT PRIMARY KEY, value TEXT ) '''); await db.execute(''' CREATE TABLE chat_messages ( id INTEGER PRIMARY KEY AUTOINCREMENT, message_id TEXT UNIQUE NOT NULL, client_id TEXT NOT NULL, direction TEXT NOT NULL, body TEXT NOT NULL, created_at INTEGER NOT NULL, synced INTEGER DEFAULT 0, delivered_at INTEGER ) '''); await db.execute('CREATE INDEX idx_chat_messages_created_at ON chat_messages(created_at)'); } Future _safeAddColumn(Database db, String table, String columnDef) async { try { await db.execute('ALTER TABLE $table ADD COLUMN $columnDef'); } catch (_) { // Ignore if the column already exists. } } }