| 14:48:21.479 | trace | yii\base\Application::bootstrap | Bootstrap with yii\log\Dispatcher |
| 14:48:21.479 | trace | yii\base\Module::getModule | Loading module: debug |
| 14:48:21.480 | trace | yii\base\Application::bootstrap | Bootstrap with yii\debug\Module::bootstrap() |
| 14:48:21.480 | trace | yii\redis\Connection::open | Opening redis DB connection: redis.server.local:6379, database=1 |
| 14:48:21.481 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: SELECT |
| 14:48:21.481 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 14:48:21.481 | info | time tracing start | 1781765301481652992 |
| 14:48:21.481 | trace | yii\web\UrlManager::parseRequest | No matching URL rules. Using default URL parsing logic. |
| 14:48:21.481 | trace | yii\web\Application::handleRequest | Route requested: 'vue/history/list-object' |
| 14:48:21.481 | trace | yii\base\Module::getModule | Loading module: vue |
| 14:48:21.482 | info | yii\web\Session::open | Session started |
| 14:48:21.483 | info | yii\db\Command::query | SELECT * FROM "global"."vw_user_login" WHERE "id"=1001 |
| 14:48:21.483 | info | yii\db\Connection::open | Opening DB connection: pgsql:host=postgresql.server.local;port=5432;dbname=beta |
| 14:48:21.485 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 14:48:21.485 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
| 14:48:21.486 | info | yii\db\Command::query | SELECT * FROM "global"."vw_user_login" WHERE "id"=1001 |
| 14:48:21.487 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 14:48:21.487 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
| 14:48:21.487 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_users" WHERE "id"=1001 |
| 14:48:21.488 | trace | yii\base\Controller::runAction | Route to run: vue/history/list-object |
| 14:48:21.488 | trace | yii\base\InlineAction::runWithParams | Running action: app\modules\vue\controllers\HistoryController::actionListObject() |
| 14:48:21.489 | info | yii\db\Command::query | SELECT COUNT(*) FROM (SELECT * FROM "a57be577deb434"."tbl_visit_object_histories" WHERE "user_id"=1001 ORDER BY "last_visit_at" DESC LIMIT 10) "c" |
| 14:48:21.489 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_visit_object_histories" WHERE "user_id"=1001 ORDER BY "last_visit_at" DESC LIMIT 20 |
| 14:48:21.490 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 14:48:21.490 | 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_purchase_contracts'
and d.nspname = 'a57be577deb434'
ORDER BY
a.attnum; |
| 14:48:21.503 | 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_purchase_contracts'
and ns.nspname='a57be577deb434'
order by
fns.nspname, fc.relname, a.attnum |
| 14:48:21.536 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
| 14:48:21.536 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: SET |
| 14:48:21.536 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_purchase_contracts" WHERE "id"=4293 |
| 14:48:21.537 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_purchase_contracts" WHERE "id"=4376 |
| 14:48:21.538 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 14:48:21.538 | 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_approves'
and d.nspname = 'a57be577deb434'
ORDER BY
a.attnum; |
| 14:48:21.542 | 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_approves'
and ns.nspname='a57be577deb434'
order by
fns.nspname, fc.relname, a.attnum |
| 14:48:21.571 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
| 14:48:21.571 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: SET |
| 14:48:21.572 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_approves" WHERE "id"=2777 |
| 14:48:21.573 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_purchase_contracts" WHERE "id"=4463 |
| 14:48:21.574 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 14:48:21.574 | 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_cases'
and d.nspname = 'a57be577deb434'
ORDER BY
a.attnum; |
| 14:48:21.578 | 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_cases'
and ns.nspname='a57be577deb434'
order by
fns.nspname, fc.relname, a.attnum |
| 14:48:21.611 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
| 14:48:21.612 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: SET |
| 14:48:21.612 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_cases" WHERE "id"=9232 |
| 14:48:21.614 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_cases" WHERE "id"=8679 |
| 14:48:21.615 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_cases" WHERE "id"=8939 |
| 14:48:21.617 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_cases" WHERE "id"=9002 |
| 14:48:21.618 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_cases" WHERE "id"=9020 |
| 14:48:21.619 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_cases" WHERE "id"=9077 |
| 14:48:21.620 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 14:48:21.620 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
| 14:48:21.621 | 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', 1001, 5, 'vue/history/list-object', '{"page":"1","web_access_token":"s1xKbg9e3rlah-dvFsDEWCxiJPk9VpSm"}', '{"code":2000,"result":{"list":[{"id":207739,"user_id":1001,"object_type":13,"object_id":4293,"last_visit_at":"2026-06-18 11:41:12","title":"\u5408\u540c\u7f16\u53f7\uff1aKJSLS25222","icon":"icon-caigouhetong"},{"id":207738,"user_id":1001,"object_type":13,"object_id":4376,"last_visit_at":"2026-06-18 09:35:59","title":"\u5408\u540c\u7f16\u53f7\uff1aTSKJ20260112-HYF-001","icon":"icon-caigouhetong"},{"id":207737,"user_id":1001,"object_type":37,"object_id":2777,"last_visit_at":"2026-06-18 09:35:09","title":"\u6d4b\u8bd5","icon":"icon-shenpi"},{"id":207736,"user_id":1001,"object_type":13,"object_id":4463,"last_visit_at":"2026-06-18 09:34:04","title":"\u5408\u540c\u7f16\u53f7\uff1a\u53d1\u987a\u4e30","icon":"icon-caigouhetong"},{"id":207735,"user_id":1001,"object_type":18,"object_id":9232,"last_visit_at":"2026-06-17 16:00:01","title":"Case\u7f16\u53f7\uff1aIM260320003","icon":"icon-gongdanguanli"},{"id":207734,"user_id":1001,"object_type":18,"object_id":8679,"last_visit_at":"2026-06-17 15:59:47","title":"Case\u7f16\u53f7\uff1aIM250805004","icon":"icon-gongdanguanli"},{"id":207733,"user_id":1001,"object_type":18,"object_id":8939,"last_visit_at":"2026-06-17 15:59:45","title":"Case\u7f16\u53f7\uff1aIM251106001","icon":"icon-gongdanguanli"},{"id":207732,"user_id":1001,"object_type":18,"object_id":9002,"last_visit_at":"2026-06-17 15:59:42","title":"Case\u7f16\u53f7\uff1aIM251127005","icon":"icon-gongdanguanli"},{"id":207731,"user_id":1001,"object_type":18,"object_id":9020,"last_visit_at":"2026-06-17 15:59:39","title":"Case\u7f16\u53f7\uff1aIM251203001","icon":"icon-gongdanguanli"},{"id":207730,"user_id":1001,"object_type":18,"object_id":9077,"last_visit_at":"2026-06-17 15:59:31","title":"Case\u7f16\u53f7\uff1aIM251224004","icon":"icon-gongdanguanli"}]},"status":1,"msg":[{"name":"success","success":"\u6210\u529f\u83b7\u53d6\u6570\u636e","error":""}],"mod":0,"ip":"221.216.117.25","ua":"Mozilla\/5.0 (Macintosh; Intel Mac OS X 10.15; rv:151.0) Gecko\/20100101 Firefox\/151.0"}', FALSE, '2026-06-18 14:48:21', 139289088) RETURNING "id" |
| 14:48:21.623 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 14:48:21.623 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: SET |