| 18:40:44.138 | trace | yii\base\Application::bootstrap | Bootstrap with yii\log\Dispatcher |
| 18:40:44.138 | trace | yii\base\Module::getModule | Loading module: debug |
| 18:40:44.139 | trace | yii\base\Application::bootstrap | Bootstrap with yii\debug\Module::bootstrap() |
| 18:40:44.139 | trace | yii\redis\Connection::open | Opening redis DB connection: redis.server.local:6379, database=1 |
| 18:40:44.139 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: SELECT |
| 18:40:44.140 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 18:40:44.140 | info | time tracing start | 1780310444140826112 |
| 18:40:44.140 | trace | yii\web\UrlManager::parseRequest | No matching URL rules. Using default URL parsing logic. |
| 18:40:44.141 | trace | yii\web\Application::handleRequest | Route requested: 'v2/contact/of-client' |
| 18:40:44.141 | trace | yii\base\Module::getModule | Loading module: v2 |
| 18:40:44.224 | info | yii\web\Session::open | Session started |
| 18:40:44.224 | info | yii\db\Connection::open | Opening DB connection: pgsql:host=postgresql.server.local;port=5432;dbname=beta |
| 18:40:44.226 | info | yii\db\Command::query | SELECT * FROM "global"."vw_user_login" WHERE "access_token"='QKDY_CpNUpX4m5jisn-MMZOAmIh4LXYL' |
| 18:40:44.227 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 18:40:44.227 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
| 18:40:44.227 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 18:40:44.227 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
| 18:40:44.228 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_users" WHERE "id"=5064 |
| 18:40:44.228 | trace | yii\base\Controller::runAction | Route to run: v2/contact/of-client |
| 18:40:44.229 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 18:40:44.230 | trace | uranus\rbac\DbManager::checkAccessFromCache | Checking role: Admin |
| 18:40:44.230 | trace | yii\base\InlineAction::runWithParams | Running action: app\modules\v2\controllers\ContactController::actionOfClient() |
| 18:40:44.231 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_clients" WHERE ("id"='3424') AND ("deleted"=FALSE) |
| 18:40:44.231 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 18:40:44.231 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
| 18:40:44.232 | info | yii\db\Command::query | SELECT COUNT(*) FROM (SELECT
c.*,
CASE WHEN count(cm.id) != 0 THEN 1 ELSE null END as mp_open_id
FROM "a57be577deb434"."tbl_contacts" "c" LEFT JOIN "a57be577deb434"."tbl_clients" "client" ON client.id = c.client_id LEFT JOIN "a57be577deb434"."tbl_contact_mobiles" "cm" ON c.id = cm.contact_id AND cm.mp_open_id IS NOT NULL WHERE "client"."id"='3424' GROUP BY "c"."id" ORDER BY (case c.user_status when 3 then 1 when 1 then 0 else c.user_status end) DESC, c.updated_at DESC) "c" |
| 18:40:44.238 | info | yii\db\Command::query | SELECT
c.*,
CASE WHEN count(cm.id) != 0 THEN 1 ELSE null END as mp_open_id
FROM "a57be577deb434"."tbl_contacts" "c" LEFT JOIN "a57be577deb434"."tbl_clients" "client" ON client.id = c.client_id LEFT JOIN "a57be577deb434"."tbl_contact_mobiles" "cm" ON c.id = cm.contact_id AND cm.mp_open_id IS NOT NULL WHERE "client"."id"='3424' GROUP BY "c"."id" ORDER BY (case c.user_status when 3 then 1 when 1 then 0 else c.user_status end) DESC, c.updated_at DESC LIMIT 10 |
| 18:40:44.241 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 18:40:44.242 | 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_contacts'
and d.nspname = 'a57be577deb434'
ORDER BY
a.attnum; |
| 18:40:44.251 | 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_contacts'
and ns.nspname='a57be577deb434'
order by
fns.nspname, fc.relname, a.attnum |
| 18:40:44.266 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
| 18:40:44.267 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: SET |
| 18:40:44.268 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_contact_statuses" WHERE "id"=2 |
| 18:40:44.269 | info | yii\db\Command::query | SELECT "id", "id" AS "key", "name", "sex" FROM "a57be577deb434"."tbl_users" WHERE "id"=1011 |
| 18:40:44.269 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_contact_key_roles" WHERE "contact_id"=6192 ORDER BY "key_role" |
| 18:40:44.271 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_contact_mobiles" WHERE "contact_id"=6192 |
| 18:40:44.272 | info | yii\db\Command::query | SELECT "object_id", count(*) as comment FROM "a57be577deb434"."tbl_comments" WHERE ("object_type"=14) AND ("object_id"=6192) GROUP BY "object_id" |
| 18:40:44.299 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_term_taxonomy_relationships" WHERE "object_id"=6192 |
| 18:40:44.300 | info | yii\db\Command::query | SELECT "id", "id" AS "key", "name" FROM "a57be577deb434"."tbl_term_taxonomies" WHERE ("term_id"=11) AND ("id" IN (1, 184, 349, 356)) ORDER BY "sort" |
| 18:40:44.300 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_term_taxonomy_relationships" WHERE "object_id"=6192 |
| 18:40:44.301 | info | yii\db\Command::query | SELECT "id", "id" AS "key", "name" FROM "a57be577deb434"."tbl_term_taxonomies" WHERE ("term_id"=12) AND ("id" IN (1, 184, 349, 356)) ORDER BY "sort" |
| 18:40:44.301 | info | yii\db\Command::query | SELECT "object_id", count(*) AS unread FROM "a57be577deb434"."tbl_unread_comments" WHERE ("object_type"=14) AND (remind_user_id = 5064 AND is_read = false) AND ("object_id"=6192) GROUP BY "object_id" |
| 18:40:44.329 | trace | uranus\rbac\DbManager::checkAccessFromCache | Checking permission: updateClientContact |
| 18:40:44.329 | trace | uranus\rbac\DbManager::checkAccessFromCache | Checking role: StoreKeeper |
| 18:40:44.329 | trace | uranus\rbac\DbManager::checkAccessFromCache | Checking role: Engineer |
| 18:40:44.329 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 18:40:44.331 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 18:40:44.333 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 18:40:44.333 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
| 18:40:44.333 | 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', 5064, 2, 1155, 'v2/contact/of-client', '{"access_token":"QKDY_CpNUpX4m5jisn-MMZOAmIh4LXYL","device_type":"2","id":"3424","page":"1","posttime":"1780310400","token":"269d181ed5c4ee11d7a007ebdcc78fdf","version_code":"1155"}', '{"code":200,"data":{"list":[{"id":6192,"name":"\u6797\u5973\u58eb","email":"","pinyin_shortcut":"lns","sex":"F","birth_date":null,"department":null,"job_position":null,"mobile":"18519265219","telephone":"","client_id":3424,"supplier_id":null,"created_by":1011,"created_at":"2025-11-18 14:53:54","updated_at":"2025-11-18 14:53:54","user_status":2,"description":null,"contact_type":"1","contact_attitude":null,"telephone_area_code":"","telephone_extension_number":"","mp_open_id":null,"pinyin1":"lin","pinyin2":"nyu","pinyin3":"shi","pinyin4":null,"namecut1":"\u6797","namecut2":"\u5973","namecut3":"\u58eb","namecut4":null,"is_mp_bind":false,"contactStatus":{"id":2,"status":"\u5728\u804c","description":"\u5728\u804c","created_by":1000,"created_at":"2016-10-31 21:28:36","updated_at":"2016-10-31 21:28:40"},"createdBy":{"id":1011,"key":1011,"name":"\u97e9\u96c5\u82b3","sex":"F"},"keyRoles":[],"mobiles":[{"id":6974,"contact_id":6192,"mobile":"18519265219","mp_open_id":null,"mobile_display":"18519265219"}],"commentCount":null,"contactKeyRoles":[],"contactAttitude":null,"unreadComments":null,"can_update":true,"can_delete":true,"name_display":"\u6797\u5973\u58eb","telephone_display":"","unread":0,"bind_status":0,"bind_status_display":"\u672a\u8ba4\u8bc1"}],"pagenation":{"totalcount":1,"thispage":1,"pagesize":10}},"status":1,"msg":[{"name":"success","success":"\u6210\u529f\u83b7\u53d6\u6570\u636e","error":""}],"ip":"223.104.44.100","ua":"jinchangxiao\/2.3.153 (iPhone 12; iOS 18.6.2; Scale\/3.00)"}', FALSE, '2026-06-01 18:40:44', 192870912) RETURNING "id" |