feat(F-185): completed feature

This commit is contained in:
chattie
2026-08-22 19:30:45 +02:00
parent 5f60c191b4
commit b79f50f0b1
15 changed files with 91 additions and 17 deletions

View File

@@ -43,7 +43,12 @@ describe.skipIf(!hasDb)('F-145 reporting payment lines (real PostgreSQL)', () =>
});
beforeEach(async () => {
// Ensure table exists (migrations already applied).
// Ensure FK fixtures and table exist (migrations already applied).
await pool.query(
`INSERT INTO orders_orders (id, source, user_id)
VALUES ('00000000-0000-0000-0000-000000000002', 'pos', NULL)
ON CONFLICT (id) DO NOTHING`,
);
await pool.query(`
CREATE TABLE IF NOT EXISTS reporting_payment_lines (
id uuid PRIMARY KEY DEFAULT gen_random_uuid(),