| 14:53:22.070 | trace | yii\base\Application::bootstrap | Bootstrap with yii\log\Dispatcher |
| 14:53:22.070 | trace | yii\base\Module::getModule | Loading module: debug |
| 14:53:22.071 | trace | yii\base\Application::bootstrap | Bootstrap with yii\debug\Module::bootstrap() |
| 14:53:22.071 | trace | yii\redis\Connection::open | Opening redis DB connection: redis.server.local:6379, database=1 |
| 14:53:22.071 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: SELECT |
| 14:53:22.071 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 14:53:22.071 | info | time tracing start | 1780815202071679232 |
| 14:53:22.071 | trace | yii\web\UrlManager::parseRequest | No matching URL rules. Using default URL parsing logic. |
| 14:53:22.071 | trace | yii\web\Application::handleRequest | Route requested: 'v2/task/close' |
| 14:53:22.071 | trace | yii\base\Module::getModule | Loading module: v2 |
| 14:53:22.075 | info | yii\web\Session::open | Session started |
| 14:53:22.077 | info | yii\db\Connection::open | Opening DB connection: pgsql:host=postgresql.server.local;port=5432;dbname=beta |
| 14:53:22.077 | info | yii\db\Command::query | SELECT * FROM "global"."vw_user_login" WHERE "access_token"='R8ScrIY1ab3sgHgv8KlMKFukwMtD6QYC' |
| 14:53:22.078 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 14:53:22.078 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
| 14:53:22.079 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 14:53:22.080 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
| 14:53:22.080 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_users" WHERE "id"=1000 |
| 14:53:22.080 | trace | yii\base\Controller::runAction | Route to run: v2/task/close |
| 14:53:22.080 | trace | yii\base\InlineAction::runWithParams | Running action: app\modules\v2\controllers\TaskController::actionClose() |
| 14:53:22.081 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 14:53:22.081 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
| 14:53:22.081 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_tasks" WHERE "id"='1685' |
| 14:53:22.082 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_task_groups" WHERE "id"=106 |
| 14:53:22.083 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 14:53:22.083 | 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_task_groups'
and d.nspname = 'a57be577deb434'
ORDER BY
a.attnum; |
| 14:53:22.087 | 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_task_groups'
and ns.nspname='a57be577deb434'
order by
fns.nspname, fc.relname, a.attnum |
| 14:53:22.103 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
| 14:53:22.103 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: SET |
| 14:53:22.103 | info | yii\db\Command::execute | UPDATE "a57be577deb434"."tbl_tasks" SET "status"=1, "completed_at"='now()', "updated_at"='now()', "complete_description"='f c f f r', "progress"=100 WHERE "id"=1685 |
| 14:53:22.106 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 14:53:22.106 | 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_action_logs'
and d.nspname = 'a57be577deb434'
ORDER BY
a.attnum; |
| 14:53:22.108 | 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_action_logs'
and ns.nspname='a57be577deb434'
order by
fns.nspname, fc.relname, a.attnum |
| 14:53:22.118 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
| 14:53:22.118 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: SET |
| 14:53:22.118 | info | yii\db\Command::execute | INSERT INTO "a57be577deb434"."tbl_action_logs" ("action", "object_type", "object_id", "new_value", "old_value", "created_by", "ip_address") VALUES ('UPDATE', 'app\models\Tasks', 1685, 'a:5:{s:8:"start_at";s:19:"2026-06-07 00:00:00";s:6:"status";s:1:"1";s:12:"completed_at";s:19:"1970-01-01 08:00:00";s:20:"complete_description";s:17:"f c f f r";s:8:"progress";i:100;}', '', 1000, '111.9.5.86') |
| 14:53:22.119 | info | yii\db\Command::execute | UPDATE "a57be577deb434"."tbl_tasks" SET "status"=2 WHERE ("parent_id"=1685) AND ("status"=0) |
| 14:53:22.120 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_tasks" WHERE "parent_id"=1685 |
| 14:53:22.120 | info | yii\db\Command::execute | INSERT INTO "a57be577deb434"."tbl_action_logs" ("action", "object_type", "object_id", "new_value", "old_value", "created_by", "ip_address") VALUES ('UPDATE', 'app\models\Tasks', 1685, 'a:2:{s:12:"completed_at";s:19:"1970-01-01 08:00:00";s:8:"start_at";s:19:"2026-06-07 00:00:00";}', '', 1000, '111.9.5.86') |
| 14:53:22.121 | info | yii\db\Command::execute | INSERT INTO "a57be577deb434"."tbl_action_logs" ("action", "object_type", "object_id", "new_value", "old_value", "created_by", "ip_address") VALUES ('UPDATE', 'app\models\Tasks', 1685, 'a:2:{s:12:"completed_at";s:19:"1970-01-01 08:00:00";s:8:"start_at";s:19:"2026-06-07 00:00:00";}', '', 1000, '111.9.5.86') |
| 14:53:22.122 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_tasks" WHERE "id"=1645 |
| 14:53:22.123 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_tasks" WHERE "parent_id"=1645 |
| 14:53:22.123 | info | yii\db\Command::execute | INSERT INTO "a57be577deb434"."tbl_action_logs" ("action", "object_type", "object_id", "new_value", "old_value", "created_by", "ip_address") VALUES ('UPDATE', 'app\models\Tasks', 1646, 'a:3:{s:19:"target_completed_at";s:19:"2026-06-05 00:00:00";s:8:"start_at";s:19:"2026-05-31 00:00:00";s:6:"end_at";s:19:"2026-06-05 00:00:00";}', '', 1000, '111.9.5.86') |
| 14:53:22.124 | info | yii\db\Command::execute | INSERT INTO "a57be577deb434"."tbl_action_logs" ("action", "object_type", "object_id", "new_value", "old_value", "created_by", "ip_address") VALUES ('UPDATE', 'app\models\Tasks', 1681, 'a:1:{s:12:"completed_at";s:19:"2026-06-06 10:43:45";}', '', 1000, '111.9.5.86') |
| 14:53:22.125 | info | yii\db\Command::execute | INSERT INTO "a57be577deb434"."tbl_action_logs" ("action", "object_type", "object_id", "new_value", "old_value", "created_by", "ip_address") VALUES ('UPDATE', 'app\models\Tasks', 1682, 'a:1:{s:12:"completed_at";s:19:"2026-06-06 10:44:09";}', '', 1000, '111.9.5.86') |
| 14:53:22.126 | info | yii\db\Command::execute | INSERT INTO "a57be577deb434"."tbl_action_logs" ("action", "object_type", "object_id", "new_value", "old_value", "created_by", "ip_address") VALUES ('UPDATE', 'app\models\Tasks', 1680, 'a:1:{s:12:"completed_at";s:19:"2026-06-06 10:43:10";}', '', 1000, '111.9.5.86') |
| 14:53:22.127 | info | yii\db\Command::execute | INSERT INTO "a57be577deb434"."tbl_action_logs" ("action", "object_type", "object_id", "new_value", "old_value", "created_by", "ip_address") VALUES ('UPDATE', 'app\models\Tasks', 1685, 'a:2:{s:12:"completed_at";s:19:"2026-06-07 14:53:22";s:8:"start_at";s:19:"2026-06-07 00:00:00";}', '', 1000, '111.9.5.86') |
| 14:53:22.128 | info | yii\db\Command::execute | UPDATE "a57be577deb434"."tbl_tasks" SET "progress"=82 WHERE "id"=1645 |
| 14:53:22.129 | info | yii\db\Command::execute | INSERT INTO "a57be577deb434"."tbl_action_logs" ("action", "object_type", "object_id", "new_value", "old_value", "created_by", "ip_address") VALUES ('UPDATE', 'app\models\Tasks', 1645, 'a:4:{s:19:"target_completed_at";s:19:"2026-06-12 00:00:00";s:8:"progress";i:82;s:8:"start_at";s:19:"2026-05-31 00:00:00";s:6:"end_at";s:19:"2026-06-12 00:00:00";}', '', 1000, '111.9.5.86') |
| 14:53:22.130 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_tasks" WHERE "id"=1596 |
| 14:53:22.130 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_tasks" WHERE "parent_id"=1596 |
| 14:53:22.130 | info | yii\db\Command::execute | INSERT INTO "a57be577deb434"."tbl_action_logs" ("action", "object_type", "object_id", "new_value", "old_value", "created_by", "ip_address") VALUES ('UPDATE', 'app\models\Tasks', 1620, 'a:1:{s:12:"completed_at";s:19:"2026-05-26 17:21:16";}', '', 1000, '111.9.5.86') |
| 14:53:22.131 | info | yii\db\Command::execute | UPDATE "a57be577deb434"."tbl_tasks" SET "end_out_value"=13 WHERE "id"=1645 |
| 14:53:22.132 | info | yii\db\Command::execute | INSERT INTO "a57be577deb434"."tbl_action_logs" ("action", "object_type", "object_id", "new_value", "old_value", "created_by", "ip_address") VALUES ('UPDATE', 'app\models\Tasks', 1645, 'a:3:{s:19:"target_completed_at";s:19:"2026-06-12 00:00:00";s:8:"start_at";s:19:"2026-05-31 00:00:00";s:6:"end_at";s:19:"2026-06-12 00:00:00";}', '', 1000, '111.9.5.86') |
| 14:53:22.133 | info | yii\db\Command::execute | UPDATE "a57be577deb434"."tbl_tasks" SET "progress"=91 WHERE "id"=1596 |
| 14:53:22.134 | info | yii\db\Command::execute | INSERT INTO "a57be577deb434"."tbl_action_logs" ("action", "object_type", "object_id", "new_value", "old_value", "created_by", "ip_address") VALUES ('UPDATE', 'app\models\Tasks', 1596, 'a:4:{s:19:"target_completed_at";s:19:"2026-05-30 00:00:00";s:8:"progress";i:91;s:8:"start_at";s:19:"2026-05-22 00:00:00";s:6:"end_at";s:19:"2026-05-30 00:00:00";}', '', 1000, '111.9.5.86') |
| 14:53:22.135 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_task_groups" WHERE "id"=106 |
| 14:53:22.135 | info | yii\db\Command::execute | INSERT INTO "a57be577deb434"."tbl_action_logs" ("action", "object_type", "object_id", "new_value", "old_value", "created_by", "ip_address") VALUES ('UPDATE', 'app\models\Tasks', 1596, 'a:3:{s:19:"target_completed_at";s:19:"2026-05-30 00:00:00";s:8:"start_at";s:19:"2026-05-22 00:00:00";s:6:"end_at";s:19:"2026-05-30 00:00:00";}', '', 1000, '111.9.5.86') |
| 14:53:22.136 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_task_groups" WHERE "id"=106 |
| 14:53:22.136 | info | yii\db\Command::query | SELECT SUM(weight) FROM "a57be577deb434"."tbl_tasks" WHERE ("task_group_id"=106) AND ("status"=1) |
| 14:53:22.137 | info | yii\db\Command::query | SELECT "status", "progress" FROM "a57be577deb434"."tbl_tasks" WHERE ("task_group_id"=106) AND (parent_id is null) |
| 14:53:22.137 | info | yii\db\Command::execute | UPDATE "a57be577deb434"."tbl_task_groups" SET "progress"=82 WHERE "id"=106 |
| 14:53:22.138 | info | yii\db\Command::execute | INSERT INTO "a57be577deb434"."tbl_action_logs" ("action", "object_type", "object_id", "new_value", "old_value", "created_by", "ip_address") VALUES ('UPDATE', 'app\models\TaskGroups', 106, 'a:1:{s:8:"progress";i:82;}', '', 1000, '111.9.5.86') |
| 14:53:22.140 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_tasks" WHERE "id"=1685 |
| 14:53:22.140 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_users" WHERE "id"=1000 |
| 14:53:22.141 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_users" WHERE "id"=1000 |
| 14:53:22.141 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_users" WHERE "id"=1000 |
| 14:53:22.141 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_users" WHERE "id"=1000 |
| 14:53:22.142 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 14:53:22.142 | 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_object_change_logs'
and d.nspname = 'a57be577deb434'
ORDER BY
a.attnum; |
| 14:53:22.145 | 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_object_change_logs'
and ns.nspname='a57be577deb434'
order by
fns.nspname, fc.relname, a.attnum |
| 14:53:22.155 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
| 14:53:22.155 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: SET |
| 14:53:22.155 | info | yii\db\Command::execute | INSERT INTO "a57be577deb434"."tbl_object_change_logs" ("act", "attribute", "object_id", "object_type", "target_id", "target_object_type", "created_by", "created_at", "new_value", "old_value", "description") VALUES (10, 'status', 1685, 101, NULL, NULL, 1000, 'now()', '["\u66f9\u6c38\u751f"]', '[]', '{"d1":"\u66f9\u6c38\u751f","d2":"\u5b8c\u6210\u4e86","d3":"\u6e05\u5355","d4":[""]}'), (2, 'status', 106, 102, 1685, 101, 1000, 'now()', '["\u66f9\u6c38\u751f"]', '[]', '{"d1":"\u66f9\u6c38\u751f","d2":"\u5b8c\u6210\u4e86","d3":"\u6e05\u5355","d4":[]}'), (2, 'status', 1645, 101, 1685, 101, 1000, 'now()', '["\u66f9\u6c38\u751f"]', '[]', '{"d1":"\u66f9\u6c38\u751f","d2":"\u5b8c\u6210\u4e86","d3":"\u6e05\u5355","d4":[]}') |
| 14:53:22.157 | info | yii\db\Command::query | SELECT "user_id" FROM "a57be577deb434"."tbl_task_group_user_relationships" "c" LEFT JOIN "a57be577deb434"."tbl_users" "u" ON "u"."id" = "c"."user_id" WHERE "c"."task_group_id"=106 ORDER BY
pinyin1 nulls first, namecut1 nulls first,
pinyin2 nulls first, namecut2 nulls first,
pinyin3 nulls first, namecut3 nulls first,
pinyin4 nulls first, namecut4 nulls first |
| 14:53:22.158 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 14:53:22.158 | 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_comments'
and d.nspname = 'a57be577deb434'
ORDER BY
a.attnum; |
| 14:53:22.161 | 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_comments'
and ns.nspname='a57be577deb434'
order by
fns.nspname, fc.relname, a.attnum |
| 14:53:22.173 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
| 14:53:22.173 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: SET |
| 14:53:22.173 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_tasks" WHERE "id"=1685 |
| 14:53:22.177 | info | yii\db\Command::query | SELECT EXISTS(SELECT * FROM "a57be577deb434"."tbl_users" WHERE "id"=1000) |
| 14:53:22.178 | info | yii\db\Command::query | INSERT INTO "a57be577deb434"."tbl_comments" ("created_by", "object_type", "object_id", "is_system", "description2", "description") VALUES (1000, '101', 1685, TRUE, 'q', '我完成了一个任务') RETURNING "id" |
| 14:53:22.179 | info | yii\db\Command::execute | INSERT INTO "a57be577deb434"."tbl_action_logs" ("action", "object_type", "object_id", "new_value", "old_value", "created_by", "ip_address") VALUES ('INSERT', 'app\models\Comments', 220766, 'a:11:{s:2:"id";i:220766;s:9:"object_id";i:1685;s:11:"object_type";s:3:"101";s:6:"parent";N;s:11:"description";s:24:"我完成了一个任务";s:10:"created_by";i:1000;s:10:"created_at";N;s:8:"reply_to";N;s:9:"is_system";b:1;s:8:"for_user";N;s:12:"description2";s:1:"q";}', '', 1000, '111.9.5.86') |
| 14:53:22.180 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 14:53:22.180 | 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_unread_comments'
and d.nspname = 'a57be577deb434'
ORDER BY
a.attnum; |
| 14:53:22.182 | 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_unread_comments'
and ns.nspname='a57be577deb434'
order by
fns.nspname, fc.relname, a.attnum |
| 14:53:22.192 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
| 14:53:22.193 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: SET |
| 14:53:22.193 | info | yii\db\Command::execute | INSERT INTO "a57be577deb434"."tbl_unread_comments" ("object_id", "object_type", "comment_id", "remind_user_id") VALUES (1685, '101', 220766, 5250), (1685, '101', 220766, 5461), (1685, '101', 220766, 5064) |
| 14:53:22.194 | info | yii\db\Command::query | SELECT "channel_id" FROM "global"."tbl_logins" WHERE ("id" IN (1000, 5250, 5461, 5064)) AND ("id" != 1000) AND (channel_id IS NOT NULL) |
| 14:53:22.201 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: INCR |
| 14:53:22.201 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: HSET |
| 14:53:22.201 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: LPUSH |
| 14:53:22.201 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_tasks" WHERE "id"='1685' |
| 14:53:22.201 | info | yii\db\Command::query | SELECT "id", "id" AS "key", "name", "sex" FROM "a57be577deb434"."tbl_users" WHERE "id"=1000 |
| 14:53:22.202 | info | yii\db\Command::query | SELECT "id", "user_id", "meta_value" AS "name" FROM "a57be577deb434"."tbl_user_meta" WHERE ("meta_key"='avatar') AND ("user_id"=1000) |
| 14:53:22.203 | info | yii\db\Command::query | SELECT "id", "id" AS "key", "title" AS "name", "project_id", "client_id", "head_of", "status", "target_completed_at", "start_at" FROM "a57be577deb434"."tbl_task_groups" WHERE "id"=106 |
| 14:53:22.205 | info | yii\db\Command::query | SELECT "id", "id" AS "key", "name", "sales_rep", "logo" FROM "a57be577deb434"."tbl_clients" WHERE "id"=982 |
| 14:53:22.206 | info | yii\db\Command::query | SELECT "id", "id" AS "key", "project_title" AS "name" FROM "a57be577deb434"."tbl_projects" WHERE "id"=1018 |
| 14:53:22.206 | info | yii\db\Command::query | SELECT "c".* FROM "a57be577deb434"."tbl_task_group_head_of_relationships" "c" LEFT JOIN "a57be577deb434"."tbl_users" "u" ON "u"."id" = "c"."user_id" WHERE "c"."task_group_id"=106 ORDER BY
pinyin1 nulls first, namecut1 nulls first,
pinyin2 nulls first, namecut2 nulls first,
pinyin3 nulls first, namecut3 nulls first,
pinyin4 nulls first, namecut4 nulls first |
| 14:53:22.206 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 14:53:22.207 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
| 14:53:22.207 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_task_group_head_of_relationships" WHERE ("user_id"=1000) AND ("task_group_id"=106) |
| 14:53:22.207 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_task_group_user_relationships" WHERE ("user_id"=1000) AND ("task_group_id"=106) |
| 14:53:22.207 | info | yii\db\Command::query | SELECT "id", "id" AS "key", "name", "sex", "department_id" FROM "a57be577deb434"."tbl_users" WHERE "id"=1000 |
| 14:53:22.209 | info | yii\db\Command::query | SELECT "id", "user_id", "meta_value" AS "name" FROM "a57be577deb434"."tbl_user_meta" WHERE ("meta_key"='avatar') AND ("user_id"=1000) |
| 14:53:22.209 | info | yii\db\Command::query | SELECT "id", "id" AS "key", "name" FROM "a57be577deb434"."tbl_departments" WHERE "id"=10 |
| 14:53:22.209 | info | yii\db\Command::query | SELECT "object_id", count(*) as comment FROM "a57be577deb434"."tbl_comments" WHERE ("object_type"=101) AND ("object_id"=1685) GROUP BY "object_id" |
| 14:53:22.230 | info | yii\db\Command::query | SELECT "object_id", count(*) AS unread FROM "a57be577deb434"."tbl_unread_comments" WHERE ("object_type"=101) AND (remind_user_id = 1000 AND is_read = false) AND ("object_id"=1685) GROUP BY "object_id" |
| 14:53:22.249 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_tasks" WHERE "id"=1645 |
| 14:53:22.249 | info | yii\db\Command::query | SELECT "parent_id", count(*) as count FROM "a57be577deb434"."tbl_tasks" WHERE "parent_id"=1685 GROUP BY "parent_id" |
| 14:53:22.250 | info | yii\db\Command::query | SELECT "parent_id", count(*) as count FROM "a57be577deb434"."tbl_tasks" WHERE ("status"=1) AND ("parent_id"=1685) GROUP BY "parent_id" |
| 14:53:22.250 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 14:53:22.252 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 14:53:22.255 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 14:53:22.257 | trace | uranus\rbac\DbManager::checkAccessFromCache | Checking permission: deleteTask |
| 14:53:22.257 | trace | uranus\rbac\DbManager::checkAccessFromCache | Checking role: StoreKeeper |
| 14:53:22.257 | trace | uranus\rbac\DbManager::checkAccessFromCache | Checking role: Engineer |
| 14:53:22.257 | trace | uranus\rbac\DbManager::checkAccessFromCache | Checking role: TechDirector |
| 14:53:22.257 | trace | uranus\rbac\DbManager::checkAccessFromCache | Checking role: ProjectManager |
| 14:53:22.257 | trace | uranus\rbac\DbManager::checkAccessFromCache | Checking role: 电话销售 |
| 14:53:22.257 | trace | uranus\rbac\DbManager::checkAccessFromCache | Checking role: AccountManager |
| 14:53:22.257 | trace | uranus\rbac\DbManager::checkAccessFromCache | Checking role: 人力资源 |
| 14:53:22.257 | trace | uranus\rbac\DbManager::checkAccessFromCache | Checking role: SalesDirector |
| 14:53:22.257 | trace | uranus\rbac\DbManager::checkAccessFromCache | Checking role: CommercialAttache |
| 14:53:22.257 | trace | uranus\rbac\DbManager::checkAccessFromCache | Checking role: GM |
| 14:53:22.257 | trace | uranus\rbac\DbManager::checkAccessFromCache | Checking role: Accountant |
| 14:53:22.258 | info | yii\db\Command::query | SELECT "id", "parent_id" FROM "a57be577deb434"."tbl_tasks" WHERE "id"=1685 |
| 14:53:22.259 | info | yii\db\Command::query | SELECT "id", "parent_id" FROM "a57be577deb434"."tbl_tasks" WHERE "id"=1645 |
| 14:53:22.259 | info | yii\db\Command::query | SELECT "id", "parent_id" FROM "a57be577deb434"."tbl_tasks" WHERE "id"=1596 |
| 14:53:22.259 | info | yii\db\Command::query | SELECT "u"."id" AS "key", "u"."name" FROM "a57be577deb434"."tbl_users" "u" LEFT JOIN "a57be577deb434"."tbl_task_group_user_relationships" "turs" ON u.id = turs.user_id WHERE ("turs"."task_group_id"=106) OR ("u"."id"=1000) GROUP BY "u"."id" ORDER BY pinyin1 nulls first, namecut1 nulls first, pinyin2 nulls first, namecut2 nulls first, pinyin3 nulls first, namecut3 nulls first, pinyin4 nulls first, namecut4 nulls first |
| 14:53:22.261 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 14:53:22.261 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
| 14:53:22.262 | info | yii\db\Command::query | INSERT INTO "global"."tbl_api_log" ("code", "schema", "user_id", "device_type", "version_code", "url", "request", "response", "php_error", "time", "duration") VALUES (200, 'a57be577deb434', 1000, 2, 1159, 'v2/task/close', '{"access_token":"R8ScrIY1ab3sgHgv8KlMKFukwMtD6QYC","complete_description":"f\u2006c\u2006f\u2006f\u2006r","device_type":"2","id":"1685","posttime":"1780815232","token":"990f687d5bbb2847d851050cdfda713b","type":"1","version_code":"1159"}', '{"code":200,"data":{"model":{"id":1685,"task_group_id":106,"title":"q","description":null,"client_id":null,"head_of":1000,"status":1,"target_completed_at":"","completed_at":"2026-06-07 14:53:22","created_by":1000,"created_at":"2026-06-07 11:50:45","updated_at":"2026-06-07 14:53:22","is_important":0,"complete_description":"f\u2006c\u2006f\u2006f\u2006r","weight":null,"tree_path":"1596.1645.1685","progress":100,"start_at":"2026-06-07 00:00:00","end_at":"","parent_id":1645,"is_end_out":false,"is_start_out":false,"is_child_end_out":false,"is_child_start_out":false,"end_out_value":null,"start_out_value":null,"child_end_out_value":null,"child_start_out_value":null,"headOf":{"id":1000,"key":1000,"name":"\u66f9\u6c38\u751f","sex":"M","avatar":{"id":1,"user_id":1000,"name":"\/files\/cdn\/\/avatar\/618545c1-a2ce-3918-9d51-25924baf6d6f.jpg"}},"taskGroup":{"id":106,"key":106,"name":"2020\u5e742\u6708\u5f00\u53d1\u90e8\u4efb\u52a1","project_id":1018,"client_id":982,"head_of":1000,"status":0,"target_completed_at":"2027-03-01 23:59:00","start_at":"2020-02-10 00:00:00","client":{"id":982,"key":982,"name":"\u4e2d\u56fd\u4fe1\u606f\u5b89\u5168\u7814\u7a76\u6240","sales_rep":1001,"logo":null},"project":{"id":1018,"key":1018,"name":"\u89c6\u9891\u534f\u4f5c\u53ca\u5373\u65f6\u901a\u8baf\u878d\u5408\u65b9\u6848"},"taskGroupHeadOfRelationships":[{"id":544,"task_group_id":106,"user_id":1000},{"id":546,"task_group_id":106,"user_id":5250},{"id":545,"task_group_id":106,"user_id":5461},{"id":543,"task_group_id":106,"user_id":5064}],"isHeadOf":{"id":544,"task_group_id":106,"user_id":1000},"isMember":{"id":2555,"task_group_id":106,"user_id":1000},"bgcolor":"#FF7300","status_display":"\u8fdb\u884c\u4e2d"},"createdBy":{"id":1000,"key":1000,"name":"\u66f9\u6c38\u751f","sex":"M","department_id":10,"avatar":{"id":1,"user_id":1000,"name":"\/files\/cdn\/\/avatar\/618545c1-a2ce-3918-9d51-25924baf6d6f.jpg"},"department":{"id":10,"key":10,"name":"\u8f6f\u4ef6\u5f00\u53d1"}},"commentCount":{"object_id":1685,"comment":1},"unreadComments":null,"parent":{"id":1645,"task_group_id":106,"title":"AA","description":"\u597d\u7684\u5475\u5475\u65b9\u4fbf","client_id":null,"head_of":1000,"status":0,"target_completed_at":"2026-06-12 00:00:00","completed_at":"","created_by":1000,"created_at":"2026-05-31 16:30:56","updated_at":"2026-05-31 16:31:09","is_important":0,"complete_description":null,"weight":0,"tree_path":"1596.1645","progress":82,"start_at":"2026-05-31 00:00:00","end_at":"2026-06-12 00:00:00","parent_id":1596,"is_end_out":true,"is_start_out":false,"is_child_end_out":false,"is_child_start_out":false,"end_out_value":13,"start_out_value":null,"child_end_out_value":null,"child_start_out_value":null},"childCount":null,"childDoneCount":null,"index":3,"remain_time":"","target_completed_at_display":"","unread":0,"can_update":true,"can_delete":true,"can_create":false,"can_select":true,"bgcolor":"#21943A","is_important_display":"\u666e\u901a","status_display":"\u5df2\u5b8c\u6210","root_id":1596,"showTime":{"time_name":"\u5b8c\u6210\u65f6\u95f4","time_display":"2026\u5e7406\u670807\u65e5","description":""},"child":[],"start_at_out_day":"","end_at_out_day":""},"options":[{"key":"Tasks[head_of]","name":"\u6210\u5458","value":[{"key":1000,"name":"\u66f9\u6c38\u751f"},{"key":5250,"name":"\u8463\u8363"},{"key":5461,"name":"\u8096\u5e05"},{"key":5064,"name":"\u59da\u96ea\u7eaf"}]}]},"status":1,"msg":[{"name":"success","success":"\u606d\u559c\uff0c\u4efb\u52a1\u5df2\u5b8c\u6210\uff01","error":""}],"ip":"111.9.5.86","ua":"jinchangxiao\/2.3.156 (iPhone 12 mini; iOS 26.2; Scale\/3.00)"}', FALSE, '2026-06-07 14:53:22', 190258944) RETURNING "id" |