| 16:27:22.222 | trace | yii\base\Application::bootstrap | Bootstrap with yii\log\Dispatcher |
| 16:27:22.222 | trace | yii\base\Module::getModule | Loading module: debug |
| 16:27:22.224 | trace | yii\base\Application::bootstrap | Bootstrap with yii\debug\Module::bootstrap() |
| 16:27:22.225 | trace | yii\redis\Connection::open | Opening redis DB connection: redis.server.local:6379, database=1 |
| 16:27:22.225 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: SELECT |
| 16:27:22.226 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 16:27:22.227 | info | time tracing start | 1783326442227695872 |
| 16:27:22.228 | trace | yii\web\UrlManager::parseRequest | No matching URL rules. Using default URL parsing logic. |
| 16:27:22.228 | trace | yii\web\Application::handleRequest | Route requested: 'vue/erp-settle/list' |
| 16:27:22.228 | trace | yii\base\Module::getModule | Loading module: vue |
| 16:27:22.234 | info | yii\web\Session::open | Session started |
| 16:27:22.237 | info | yii\db\Command::query | SELECT * FROM "global"."vw_user_login" WHERE "id"=1001 |
| 16:27:22.237 | info | yii\db\Connection::open | Opening DB connection: pgsql:host=postgresql.server.local;port=5432;dbname=beta |
| 16:27:22.255 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 16:27:22.256 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
| 16:27:22.257 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 16:27:22.257 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
| 16:27:22.258 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_users" WHERE "id"=1001 |
| 16:27:22.267 | trace | yii\base\Controller::runAction | Route to run: vue/erp-settle/list |
| 16:27:22.268 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 16:27:22.271 | trace | uranus\rbac\DbManager::checkAccessFromCache | Checking role: Admin |
| 16:27:22.271 | trace | yii\base\InlineAction::runWithParams | Running action: app\modules\vue\controllers\ErpSettleController::actionList() |
| 16:27:22.271 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 16:27:22.272 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 16:27:22.274 | info | yii\db\Command::query | SELECT
*
FROM "a57be577deb434"."tbl_erp_settles" "td" ORDER BY "date" |
| 16:27:22.281 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_erp_settles" WHERE ("date"='2025-08-01') AND ("is_settle"=TRUE) |
| 16:27:22.282 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 16:27:22.283 | 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_erp_settles'
and d.nspname = 'a57be577deb434'
ORDER BY
a.attnum; |
| 16:27:22.290 | 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_erp_settles'
and ns.nspname='a57be577deb434'
order by
fns.nspname, fc.relname, a.attnum |
| 16:27:22.301 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
| 16:27:22.301 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: SET |
| 16:27:22.302 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_erp_settles" WHERE ("date"='2025-09-01') AND ("is_settle"=TRUE) |
| 16:27:22.303 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_erp_settles" WHERE ("date"='2025-10-01') AND ("is_settle"=TRUE) |
| 16:27:22.303 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_erp_settles" WHERE ("date"='2025-11-01') AND ("is_settle"=TRUE) |
| 16:27:22.305 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_erp_settles" WHERE ("date"='2025-12-01') AND ("is_settle"=TRUE) |
| 16:27:22.305 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_erp_settles" WHERE ("date"='2026-01-01') AND ("is_settle"=TRUE) |
| 16:27:22.306 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_erp_settles" WHERE ("date"='2026-02-01') AND ("is_settle"=TRUE) |
| 16:27:22.307 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_erp_settles" WHERE ("date"='2026-03-01') AND ("is_settle"=TRUE) |
| 16:27:22.308 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_erp_settles" WHERE ("date"='2026-04-01') AND ("is_settle"=TRUE) |
| 16:27:22.309 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_erp_settles" WHERE ("date"='2026-05-01') AND ("is_settle"=TRUE) |
| 16:27:22.310 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_erp_settles" WHERE ("date"='2026-06-01') AND ("is_settle"=TRUE) |
| 16:27:22.311 | info | yii\db\Command::query | SELECT MAX(end_date) FROM "a57be577deb434"."tbl_erp_settles" WHERE "is_settle"=TRUE |
| 16:27:22.312 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_erp_settles" WHERE "is_settle"=TRUE ORDER BY "date" DESC |
| 16:27:22.313 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 16:27:22.313 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
| 16:27:22.314 | 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/erp-settle/list', '[]', '{"code":2000,"result":{"list":[{"id":"2025-08","from":"2025-08-08","to":"2025-08-31","name":"2025\u5e7408\u6708","is_settle":true,"can_settle":false,"can_re_settle":true,"days":24},{"id":"2025-09","from":"2025-09-01","to":"2025-09-30","name":"2025\u5e7409\u6708","is_settle":0,"can_settle":true,"can_re_settle":false,"days":30},{"id":"2025-10","from":"2025-10-01","to":"2025-10-31","name":"2025\u5e7410\u6708","is_settle":0,"can_settle":false,"can_re_settle":false,"days":31},{"id":"2025-11","from":"2025-11-01","to":"2025-11-30","name":"2025\u5e7411\u6708","is_settle":0,"can_settle":false,"can_re_settle":false,"days":30},{"id":"2025-12","from":"2025-12-01","to":"2025-12-31","name":"2025\u5e7412\u6708","is_settle":0,"can_settle":false,"can_re_settle":false,"days":31},{"id":"2026-01","from":"2026-01-01","to":"2026-01-31","name":"2026\u5e7401\u6708","is_settle":0,"can_settle":false,"can_re_settle":false,"days":31},{"id":"2026-02","from":"2026-02-01","to":"2026-02-28","name":"2026\u5e7402\u6708","is_settle":0,"can_settle":false,"can_re_settle":false,"days":28},{"id":"2026-03","from":"2026-03-01","to":"2026-03-31","name":"2026\u5e7403\u6708","is_settle":0,"can_settle":false,"can_re_settle":false,"days":31},{"id":"2026-04","from":"2026-04-01","to":"2026-04-30","name":"2026\u5e7404\u6708","is_settle":0,"can_settle":false,"can_re_settle":false,"days":30},{"id":"2026-05","from":"2026-05-01","to":"2026-05-31","name":"2026\u5e7405\u6708","is_settle":0,"can_settle":false,"can_re_settle":false,"days":31},{"id":"2026-06","from":"2026-06-01","to":"2026-06-30","name":"2026\u5e7406\u6708","is_settle":0,"can_settle":false,"can_re_settle":false,"days":30},{"id":"2026-07","from":"2026-07-01","to":"2026-07-31","name":"2026\u5e7407\u6708","is_settle":0,"can_settle":false,"can_re_settle":false,"days":31}],"disableMonth":{"minTime":"2025-09-29","maxTime":"2025-11-01","disabledRanges":[]}},"status":1,"msg":[{"name":"success","success":"\u6210\u529f\u83b7\u53d6\u6570\u636e","error":""}],"mod":0,"ip":"39.156.194.178","ua":"Mozilla\/5.0 (Macintosh; Intel Mac OS X 10.15; rv:152.0) Gecko\/20100101 Firefox\/152.0"}', FALSE, '2026-07-06 16:27:22', 86148096) RETURNING "id" |
| 16:27:22.317 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
| 16:27:22.317 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: SET |