| 16:32:26.748 | trace | yii\base\Application::bootstrap | Bootstrap with yii\log\Dispatcher |
| 16:32:26.748 | trace | yii\base\Module::getModule | Loading module: debug |
| 16:32:26.749 | trace | yii\base\Application::bootstrap | Bootstrap with yii\debug\Module::bootstrap() |
| 16:32:26.754 | trace | yii\redis\Connection::open | Opening redis DB connection: redis.server.local:6379, database=1 |
| 16:32:26.754 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: SELECT |
| 16:32:26.756 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 16:32:26.756 | info | time tracing start | 1781166746756836864 |
| 16:32:26.757 | trace | yii\web\UrlManager::parseRequest | No matching URL rules. Using default URL parsing logic. |
| 16:32:26.757 | trace | yii\web\Application::handleRequest | Route requested: 'vue/history/list-object' |
| 16:32:26.757 | trace | yii\base\Module::getModule | Loading module: vue |
| 16:32:26.758 | info | yii\web\Session::open | Session started |
| 16:32:26.776 | info | yii\db\Command::query | SELECT * FROM "global"."vw_user_login" WHERE "id"=1013 |
| 16:32:26.776 | info | yii\db\Connection::open | Opening DB connection: pgsql:host=postgresql.server.local;port=5432;dbname=beta |
| 16:32:26.784 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 16:32:26.795 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
| 16:32:26.797 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 16:32:26.803 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
| 16:32:26.811 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_users" WHERE "id"=1013 |
| 16:32:26.850 | trace | yii\base\Controller::runAction | Route to run: vue/history/list-object |
| 16:32:26.850 | trace | yii\base\InlineAction::runWithParams | Running action: app\modules\vue\controllers\HistoryController::actionListObject() |
| 16:32:26.853 | info | yii\db\Command::query | SELECT COUNT(*) FROM (SELECT * FROM "a57be577deb434"."tbl_visit_object_histories" WHERE "user_id"=1013 ORDER BY "last_visit_at" DESC LIMIT 10) "c" |
| 16:32:26.869 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_visit_object_histories" WHERE "user_id"=1013 ORDER BY "last_visit_at" DESC LIMIT 20 |
| 16:32:27.056 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 16:32:27.065 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
| 16:32:27.065 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_purchase_contracts" WHERE "id"=4499 |
| 16:32:27.250 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 16:32:27.251 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
| 16:32:27.251 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_approves" WHERE "id"=2738 |
| 16:32:27.314 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_approves" WHERE "id"=2740 |
| 16:32:27.325 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_approves" WHERE "id"=2739 |
| 16:32:27.326 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_approves" WHERE "id"=2742 |
| 16:32:27.532 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 16:32:27.532 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
| 16:32:27.533 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_sales_contracts" WHERE "id"=4289 |
| 16:32:27.537 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_approves" WHERE "id"=2726 |
| 16:32:27.537 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_approves" WHERE "id"=2734 |
| 16:32:27.538 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_approves" WHERE "id"=2736 |
| 16:32:27.595 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 16:32:27.595 | info | yii\db\Command::query | SELECT
d.nspname AS table_schema,
c.relname AS table_name,
a.attname AS column_name,
t.typname AS data_type,
a.attlen AS character_maximum_length,
pg_catalog.col_description(c.oid, a.attnum) AS column_comment,
a.atttypmod AS modifier,
a.attnotnull = false AS is_nullable,
CAST(pg_get_expr(ad.adbin, ad.adrelid) AS varchar) AS column_default,
coalesce(pg_get_expr(ad.adbin, ad.adrelid) ~ 'nextval',false) AS is_autoinc,
array_to_string((select array_agg(enumlabel) from pg_enum where enumtypid=a.atttypid)::varchar[],',') as enum_values,
CASE atttypid
WHEN 21 /*int2*/ THEN 16
WHEN 23 /*int4*/ THEN 32
WHEN 20 /*int8*/ THEN 64
WHEN 1700 /*numeric*/ THEN
CASE WHEN atttypmod = -1
THEN null
ELSE ((atttypmod - 4) >> 16) & 65535
END
WHEN 700 /*float4*/ THEN 24 /*FLT_MANT_DIG*/
WHEN 701 /*float8*/ THEN 53 /*DBL_MANT_DIG*/
ELSE null
END AS numeric_precision,
CASE
WHEN atttypid IN (21, 23, 20) THEN 0
WHEN atttypid IN (1700) THEN
CASE
WHEN atttypmod = -1 THEN null
ELSE (atttypmod - 4) & 65535
END
ELSE null
END AS numeric_scale,
CAST(
information_schema._pg_char_max_length(information_schema._pg_truetypid(a, t), information_schema._pg_truetypmod(a, t))
AS numeric
) AS size,
a.attnum = any (ct.conkey) as is_pkey
FROM
pg_class c
LEFT JOIN pg_attribute a ON a.attrelid = c.oid
LEFT JOIN pg_attrdef ad ON a.attrelid = ad.adrelid AND a.attnum = ad.adnum
LEFT JOIN pg_type t ON a.atttypid = t.oid
LEFT JOIN pg_namespace d ON d.oid = c.relnamespace
LEFT join pg_constraint ct on ct.conrelid=c.oid and ct.contype='p'
WHERE
a.attnum > 0 and t.typname != ''
and c.relname = 'tbl_reimbursements'
and d.nspname = 'a57be577deb434'
ORDER BY
a.attnum; |
| 16:32:27.615 | info | yii\db\Command::query | select
ct.conname as constraint_name,
a.attname as column_name,
fc.relname as foreign_table_name,
fns.nspname as foreign_table_schema,
fa.attname as foreign_column_name
from
(SELECT ct.conname, ct.conrelid, ct.confrelid, ct.conkey, ct.contype, ct.confkey, generate_subscripts(ct.conkey, 1) AS s
FROM pg_constraint ct
) AS ct
inner join pg_class c on c.oid=ct.conrelid
inner join pg_namespace ns on c.relnamespace=ns.oid
inner join pg_attribute a on a.attrelid=ct.conrelid and a.attnum = ct.conkey[ct.s]
left join pg_class fc on fc.oid=ct.confrelid
left join pg_namespace fns on fc.relnamespace=fns.oid
left join pg_attribute fa on fa.attrelid=ct.confrelid and fa.attnum = ct.confkey[ct.s]
where
ct.contype='f'
and c.relname='tbl_reimbursements'
and ns.nspname='a57be577deb434'
order by
fns.nspname, fc.relname, a.attnum |
| 16:32:27.671 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
| 16:32:27.673 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: SET |
| 16:32:27.686 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_reimbursements" WHERE "id"=8875 |
| 16:32:27.751 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_term_taxonomy_relationships" WHERE "object_id"=8875 |
| 16:32:27.782 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_term_taxonomies" WHERE ("term_id"=15) AND ("id" IN (307, 352)) |
| 16:32:27.813 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 16:32:27.821 | info | yii\db\Command::query | SELECT
d.nspname AS table_schema,
c.relname AS table_name,
a.attname AS column_name,
t.typname AS data_type,
a.attlen AS character_maximum_length,
pg_catalog.col_description(c.oid, a.attnum) AS column_comment,
a.atttypmod AS modifier,
a.attnotnull = false AS is_nullable,
CAST(pg_get_expr(ad.adbin, ad.adrelid) AS varchar) AS column_default,
coalesce(pg_get_expr(ad.adbin, ad.adrelid) ~ 'nextval',false) AS is_autoinc,
array_to_string((select array_agg(enumlabel) from pg_enum where enumtypid=a.atttypid)::varchar[],',') as enum_values,
CASE atttypid
WHEN 21 /*int2*/ THEN 16
WHEN 23 /*int4*/ THEN 32
WHEN 20 /*int8*/ THEN 64
WHEN 1700 /*numeric*/ THEN
CASE WHEN atttypmod = -1
THEN null
ELSE ((atttypmod - 4) >> 16) & 65535
END
WHEN 700 /*float4*/ THEN 24 /*FLT_MANT_DIG*/
WHEN 701 /*float8*/ THEN 53 /*DBL_MANT_DIG*/
ELSE null
END AS numeric_precision,
CASE
WHEN atttypid IN (21, 23, 20) THEN 0
WHEN atttypid IN (1700) THEN
CASE
WHEN atttypmod = -1 THEN null
ELSE (atttypmod - 4) & 65535
END
ELSE null
END AS numeric_scale,
CAST(
information_schema._pg_char_max_length(information_schema._pg_truetypid(a, t), information_schema._pg_truetypmod(a, t))
AS numeric
) AS size,
a.attnum = any (ct.conkey) as is_pkey
FROM
pg_class c
LEFT JOIN pg_attribute a ON a.attrelid = c.oid
LEFT JOIN pg_attrdef ad ON a.attrelid = ad.adrelid AND a.attnum = ad.adnum
LEFT JOIN pg_type t ON a.atttypid = t.oid
LEFT JOIN pg_namespace d ON d.oid = c.relnamespace
LEFT join pg_constraint ct on ct.conrelid=c.oid and ct.contype='p'
WHERE
a.attnum > 0 and t.typname != ''
and c.relname = 'tbl_term_taxonomies'
and d.nspname = 'a57be577deb434'
ORDER BY
a.attnum; |
| 16:32:27.833 | info | yii\db\Command::query | select
ct.conname as constraint_name,
a.attname as column_name,
fc.relname as foreign_table_name,
fns.nspname as foreign_table_schema,
fa.attname as foreign_column_name
from
(SELECT ct.conname, ct.conrelid, ct.confrelid, ct.conkey, ct.contype, ct.confkey, generate_subscripts(ct.conkey, 1) AS s
FROM pg_constraint ct
) AS ct
inner join pg_class c on c.oid=ct.conrelid
inner join pg_namespace ns on c.relnamespace=ns.oid
inner join pg_attribute a on a.attrelid=ct.conrelid and a.attnum = ct.conkey[ct.s]
left join pg_class fc on fc.oid=ct.confrelid
left join pg_namespace fns on fc.relnamespace=fns.oid
left join pg_attribute fa on fa.attrelid=ct.confrelid and fa.attnum = ct.confkey[ct.s]
where
ct.contype='f'
and c.relname='tbl_term_taxonomies'
and ns.nspname='a57be577deb434'
order by
fns.nspname, fc.relname, a.attnum |
| 16:32:27.859 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
| 16:32:27.863 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: SET |
| 16:32:27.866 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 16:32:27.869 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
| 16:32:27.872 | info | yii\db\Command::query | INSERT INTO "global"."tbl_api_log" ("code", "schema", "user_id", "device_type", "url", "request", "response", "php_error", "time", "duration") VALUES (200, 'a57be577deb434', 1013, 5, 'vue/history/list-object', '{"web_access_token":"ExUPUMnhAUxb-Q96dD97Giij7XxiArHP"}', '{"code":2000,"result":{"list":[{"id":207722,"user_id":1013,"object_type":13,"object_id":4499,"last_visit_at":"2026-06-11 16:00:07","title":"\u5408\u540c\u7f16\u53f7\uff1a\u6536\u6b3e\u63d0\u9192\u4eba\u7684\u95ee\u9898","icon":"icon-caigouhetong"},{"id":206962,"user_id":1013,"object_type":37,"object_id":2738,"last_visit_at":"2026-03-25 14:20:07","title":"\u4ed8\u6b3e\u7533\u8bf7-\u4eac\u4e1c\u5546\u57ce","icon":"icon-shenpi"},{"id":206961,"user_id":1013,"object_type":37,"object_id":2740,"last_visit_at":"2026-03-25 14:20:01","title":"\u4ed8\u6b3e\u7533\u8bf7-\u4eac\u4e1c\u5546\u57ce","icon":"icon-shenpi"},{"id":206960,"user_id":1013,"object_type":37,"object_id":2739,"last_visit_at":"2026-03-25 14:19:34","title":"\u6d4b\u8bd5\u8bbe\u5907\u7533\u8bf7-\u4e50\u6210-\u6df1\u4fe1\u670d\u9632\u706b\u5899-2026","icon":"icon-shenpi"},{"id":206959,"user_id":1013,"object_type":37,"object_id":2742,"last_visit_at":"2026-03-25 14:16:28","title":"\u501f\u6b3e\u7533\u8bf7\u2014\u6df1\u4fe1\u670d\u79d1\u6280\u80a1\u4efd\u6709\u9650\u516c\u53f8","icon":"icon-shenpi"},{"id":206933,"user_id":1013,"object_type":7,"object_id":4289,"last_visit_at":"2026-03-25 10:06:53","title":"\u5408\u540c\u7f16\u53f7\uff1a2025-12-07-002","icon":"icon-xiaoshouhetong"},{"id":206856,"user_id":1013,"object_type":37,"object_id":2726,"last_visit_at":"2026-03-24 09:17:53","title":"\u5609\u8fd0\u8fbe\u6295\u6807\u4fdd\u8bc1\u91d1\u9000\u56de","icon":"icon-shenpi"},{"id":206621,"user_id":1013,"object_type":37,"object_id":2734,"last_visit_at":"2026-03-23 09:13:05","title":"\u63d0\u524d\u5907\u8d27\u7533\u8bf7-\u5357\u65b9-\u7fa4\u6656\u5b58\u50a8\u91c7\u8d2d","icon":"icon-shenpi"},{"id":206408,"user_id":1013,"object_type":37,"object_id":2736,"last_visit_at":"2026-03-20 16:00:36","title":"\u4ed8\u6b3e\u7533\u8bf7-\u521b\u4e1a\u9ed1\u9a6c\u79d1\u6280\u96c6\u56e2\u80a1\u4efd\u6709\u9650\u516c\u53f8","icon":"icon-shenpi"},{"id":206403,"user_id":1013,"object_type":20,"object_id":8875,"last_visit_at":"2026-03-20 15:10:27","title":"\u529e\u516c\u8d39","icon":"icon-feiyongbaoxiao"}]},"status":1,"msg":[{"name":"success","success":"\u6210\u529f\u83b7\u53d6\u6570\u636e","error":""}],"mod":0,"ip":"221.216.117.119","ua":"Mozilla\/5.0 (Macintosh; Intel Mac OS X 10.15; rv:151.0) Gecko\/20100101 Firefox\/151.0"}', FALSE, '2026-06-11 16:32:27', 1115711232) RETURNING "id" |
| 16:32:27.889 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 16:32:27.889 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: SET |