05ed037fe8
- DNS: pilot.landvex.com -> 16.170.83.169 - TLS: Let's Encrypt certificate (expires 2026-09-30) - Nginx: reverse proxy with SSL termination - API: https://pilot.landvex.com/api/v1/missions - UI: https://pilot.landvex.com/ - Upload: POST /api/v1/missions/import (multipart/form-data) Verified: ✅ https://pilot.landvex.com/health ✅ https://pilot.landvex.com/version ✅ https://pilot.landvex.com/api/v1/missions (list) ✅ https://pilot.landvex.com/api/v1/missions/:id (get) ✅ POST /api/v1/missions/import (video upload) ✅ UI loads with title 'LandveX Intelligence Lab' Next: Pilot 001 — Break the system!
36 lines
1.0 KiB
JSON
36 lines
1.0 KiB
JSON
{
|
|
"db_name": "PostgreSQL",
|
|
"query": "\n SELECT\n l.account_number,\n COALESCE(SUM(l.debit), 0) as total_debit,\n COALESCE(SUM(l.credit), 0) as total_credit\n FROM ledger_journal_lines l\n JOIN ledger_journal_entries e ON e.id = l.entry_id\n WHERE e.tenant_id = $1\n AND e.period = $2\n AND e.status = 'posted'\n AND l.account_number IN ('7010', '7510', '2012', '2013')\n GROUP BY l.account_number\n ",
|
|
"describe": {
|
|
"columns": [
|
|
{
|
|
"ordinal": 0,
|
|
"name": "account_number",
|
|
"type_info": "Text"
|
|
},
|
|
{
|
|
"ordinal": 1,
|
|
"name": "total_debit",
|
|
"type_info": "Numeric"
|
|
},
|
|
{
|
|
"ordinal": 2,
|
|
"name": "total_credit",
|
|
"type_info": "Numeric"
|
|
}
|
|
],
|
|
"parameters": {
|
|
"Left": [
|
|
"Text",
|
|
"Text"
|
|
]
|
|
},
|
|
"nullable": [
|
|
false,
|
|
null,
|
|
null
|
|
]
|
|
},
|
|
"hash": "11de4992223c86c036172eeaecda16ef144d874cf6be7d9c4a5c4e4fb5aaae8f"
|
|
}
|