import 'package:sqflite/sqflite.dart'; import 'package:path/path.dart'; class DatabaseHelper { 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: 1, onCreate: _onCreate, ); } 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, odoo_id TEXT, is_synced INTEGER DEFAULT 0, updated_at TEXT NOT NULL ) '''); // GPS履歴 (直近10件想定だがDB上は保持) 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 products ( id TEXT PRIMARY KEY, name TEXT NOT NULL, default_unit_price INTEGER, odoo_id TEXT ) '''); // 伝票マスター await db.execute(''' CREATE TABLE invoices ( id TEXT PRIMARY KEY, customer_id TEXT NOT NULL, date TEXT NOT NULL, notes TEXT, file_path TEXT, total_amount INTEGER, odoo_id TEXT, is_synced INTEGER DEFAULT 0, updated_at TEXT NOT NULL, FOREIGN KEY (customer_id) REFERENCES customers (id) ) '''); // 伝票明細 await db.execute(''' CREATE TABLE invoice_items ( id TEXT PRIMARY KEY, invoice_id TEXT NOT NULL, description TEXT NOT NULL, quantity INTEGER NOT NULL, unit_price INTEGER NOT NULL, FOREIGN KEY (invoice_id) REFERENCES invoices (id) ON DELETE CASCADE ) '''); } }