Pembuatan KPI, Triggers KPI CRM

This commit is contained in:
2026-03-06 07:01:51 +07:00
parent 13d12d2f41
commit 832d09c7df
33 changed files with 1493 additions and 153 deletions
+122 -117
View File
@@ -2,27 +2,27 @@
## Overview
Dokumen ini menjelaskan desain sistem KPI yang dapat diimplementasikan sebagai custom module pada Odoo.
Dokumen ini menjelaskan desain sistem KPI yang dapat digunakan sebagai modul custom pada Odoo.
Tujuan sistem KPI:
Sistem KPI digunakan untuk:
* Mengukur performa karyawan
* Mengukur performa departemen
* Mengukur performa perusahaan
* Mengintegrasikan data performa dari modul ERP
* mengukur performa karyawan
* mengukur performa departemen
* mengukur performa perusahaan
* mengambil data KPI dari modul ERP
Sistem KPI harus bersifat:
Sistem harus bersifat:
* dinamis
* scalable
* modular
* terintegrasi dengan modul ERP
* scalable
* terintegrasi dengan ERP
---
# KPI Architecture
Struktur KPI mengikuti hierarki berikut:
Hierarchy KPI:
Company KPI
@@ -36,27 +36,18 @@ KPI Score
---
# KPI Entities
# Entities
## KPI Department
Menyimpan daftar departemen perusahaan.
Menyimpan daftar departemen.
Contoh:
* Sales
* Finance
* IT
* Inventory
* Production
Field:
| Field | Description |
| ----------- | --------------- |
| id | primary key |
| name | nama departemen |
| description | deskripsi |
Sales
Finance
Inventory
IT
---
@@ -66,23 +57,17 @@ Master definisi KPI.
Contoh:
| KPI | Department |
| -------------- | ---------- |
| Revenue | Sales |
| Repeat Order | Sales |
| Stock Accuracy | Inventory |
| System Uptime | IT |
Revenue
Repeat Order
Inventory Accuracy
System Uptime
Field:
Field utama:
| Field | Description |
| ------------------ | ----------- |
| code | kode KPI |
| name | nama KPI |
| department_id | departemen |
| kpi_type | tipe KPI |
| calculation_method | auto/manual |
| source_module | modul ERP |
* code
* name
* department_id
* source_module
---
@@ -92,10 +77,8 @@ Target KPI dan bobot KPI.
Contoh:
| KPI | Target | Weight |
| ------------ | --------- | ------ |
| Revenue | 100000000 | 40 |
| Repeat Order | 20 | 20 |
Revenue target = 100000000
Weight = 40%
---
@@ -107,20 +90,18 @@ Digunakan untuk menyimpan perubahan target setiap tahun.
## KPI Period
Menentukan periode evaluasi KPI.
Periode evaluasi KPI.
Contoh:
| Year | Month |
| ---- | ----- |
| 2025 | 01 |
| 2025 | 02 |
2025-01
2025-02
Status:
* draft
* open
* closed
draft
open
closed
---
@@ -130,10 +111,14 @@ Mapping KPI ke employee.
Contoh:
| Employee | KPI |
| -------- | ------------ |
| Sales A | Revenue |
| Sales A | Repeat Order |
Sales A → Revenue
Sales A → Repeat Order
Assignment menentukan:
* KPI apa yang dimiliki employee
* target KPI
* weight KPI
---
@@ -141,19 +126,27 @@ Contoh:
Nilai KPI aktual.
Nilai KPI dapat berasal dari:
KPI value selalu terhubung ke assignment.
* modul Sales
* modul CRM
* modul Inventory
* modul Manufacturing
* input manual
Field utama:
assignment_id
value
source_module
reference_model
reference_id
Contoh:
assignment_id = 10
value = 15000000
reference_model = sale.order
---
## KPI Score
Skor KPI yang dihitung dari nilai KPI.
Hasil agregasi KPI.
Formula dasar:
@@ -163,19 +156,18 @@ score = (actual_value / target_value) × weight
## KPI Team
Menyimpan tim kerja.
Digunakan untuk mengelompokkan employee.
Contoh:
* Sales Team A
* Warehouse Team
* Production Team
Sales Team A
Warehouse Team
---
## KPI Team Score
Skor KPI untuk tim.
Score KPI pada level tim.
---
@@ -185,39 +177,75 @@ Bukti pencapaian KPI.
Contoh:
* laporan
* dokumen
* foto
laporan
dokumen
foto
---
# KPI Calculation Flow
# KPI Data Flow
1. Modul ERP menghasilkan event
ERP Event
contoh:
Insert KPI Value
Aggregate KPI Score
Update KPI Score Table
---
# Example ERP Integration
Sales Module
Event:
Sales Order Confirmed
2. Sistem menyimpan nilai KPI
insert ke table kpi_value
Insert KPI Value (Revenue KPI)
3. Cron job menghitung score
---
calculate_kpi_score()
Inventory Module
4. Score disimpan ke table kpi_score
Event:
Stock Move Completed
Insert KPI Value (Stock Accuracy KPI)
---
Manufacturing Module
Event:
Production Finished
Insert KPI Value (Production Output KPI)
---
# Odoo Module Structure
Disarankan membuat module:
Custom module:
odoo_kpi
Struktur:
Structure:
odoo_kpi
@@ -226,10 +254,11 @@ odoo_kpi
│ ├── kpi_assignment.py
│ ├── kpi_value.py
│ ├── kpi_score.py
── kpi_team.py
── kpi_team.py
├── views
│ ├── kpi_definition_view.xml
│ ├── kpi_assignment_view.xml
│ ├── kpi_dashboard.xml
├── security
@@ -240,14 +269,14 @@ odoo_kpi
---
# Cron Job
# KPI Calculation
Cron digunakan untuk menghitung KPI.
Cron job menghitung KPI score.
Schedule:
schedule:
* daily
* monthly
daily
monthly
Function:
@@ -255,29 +284,6 @@ calculate_kpi_score()
---
# KPI Dashboard
Dashboard menampilkan:
Employee KPI
* KPI achievement
* score
* grade
Department KPI
* average score
* top performer
* bottom performer
Company KPI
* department ranking
* total score
---
# Security Role
Role yang disarankan:
@@ -288,11 +294,10 @@ Employee
---
# Future Extension
# Advantages
Sistem KPI dapat dikembangkan menjadi:
* Balanced Scorecard
* AI KPI prediction
* KPI gamification
* KPI forecasting
Dynamic KPI configuration
ERP integrated
Scalable architecture
Audit trail support
Supports employee and team KPI
+19 -18
View File
@@ -14,7 +14,7 @@
"id":"pk",
"code":"string",
"name":"string",
"department_id":"fk",
"department_id":"fk -> kpi_department.id",
"kpi_type":"string",
"description":"text",
"calculation_method":"string",
@@ -26,7 +26,7 @@
"name":"kpi_target",
"columns":{
"id":"pk",
"kpi_definition_id":"fk",
"kpi_definition_id":"fk -> kpi_definition.id",
"target_value":"float",
"weight":"float"
}
@@ -35,7 +35,7 @@
"name":"kpi_target_history",
"columns":{
"id":"pk",
"kpi_target_id":"fk",
"kpi_target_id":"fk -> kpi_target.id",
"year":"integer",
"target_value":"float"
}
@@ -55,9 +55,9 @@
"name":"kpi_assignment",
"columns":{
"id":"pk",
"employee_id":"fk",
"kpi_definition_id":"fk",
"period_id":"fk",
"employee_id":"fk -> hr_employee.id",
"kpi_definition_id":"fk -> kpi_definition.id",
"period_id":"fk -> kpi_period.id",
"target_override":"float",
"weight_override":"float"
}
@@ -66,11 +66,11 @@
"name":"kpi_value",
"columns":{
"id":"pk",
"employee_id":"fk",
"kpi_definition_id":"fk",
"period_id":"fk",
"assignment_id":"fk -> kpi_assignment.id",
"value":"float",
"source_module":"string",
"reference_model":"string",
"reference_id":"integer",
"created_at":"datetime"
}
},
@@ -78,10 +78,11 @@
"name":"kpi_score",
"columns":{
"id":"pk",
"employee_id":"fk",
"period_id":"fk",
"employee_id":"fk -> hr_employee.id",
"period_id":"fk -> kpi_period.id",
"total_score":"float",
"grade":"string"
"grade":"string",
"calculated_at":"datetime"
}
},
{
@@ -89,23 +90,23 @@
"columns":{
"id":"pk",
"name":"string",
"department_id":"fk"
"department_id":"fk -> kpi_department.id"
}
},
{
"name":"kpi_team_member",
"columns":{
"id":"pk",
"team_id":"fk",
"employee_id":"fk"
"team_id":"fk -> kpi_team.id",
"employee_id":"fk -> hr_employee.id"
}
},
{
"name":"kpi_team_score",
"columns":{
"id":"pk",
"team_id":"fk",
"period_id":"fk",
"team_id":"fk -> kpi_team.id",
"period_id":"fk -> kpi_period.id",
"score":"float"
}
},
@@ -113,7 +114,7 @@
"name":"kpi_evidence",
"columns":{
"id":"pk",
"kpi_value_id":"fk",
"kpi_value_id":"fk -> kpi_value.id",
"attachment":"string",
"note":"text"
}
+979
View File
@@ -121486,3 +121486,982 @@ LINE 1: ...m_id" as "team_id", "crm_stage"."fold" as "fold", "crm_stage...
2026-03-05 15:46:27,937 20824 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [05/Mar/2026 15:46:27] "POST /longpolling/poll HTTP/1.1" 200 - 18 0.106 50.035
2026-03-05 15:46:28,572 20824 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [05/Mar/2026 15:46:28] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.040 0.002
2026-03-05 15:46:38,864 20824 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [05/Mar/2026 15:46:38] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.011 0.036
2026-03-05 15:47:18,277 20824 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [05/Mar/2026 15:47:18] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.000 50.021
2026-03-06 05:54:11,377 19452 INFO ? odoo: Odoo version 14.0-20231205
2026-03-06 05:54:11,384 19452 INFO ? odoo: Using configuration file at C:\addon14\odoo.conf
2026-03-06 05:54:11,384 19452 INFO ? odoo: addons paths: ['C:\\odoo14c\\server\\odoo\\addons', 'c:\\users\\sapta\\appdata\\local\\openerp s.a\\odoo\\addons\\14.0', 'c:\\odoo14c\\server\\odoo\\addons', 'c:\\addon14']
2026-03-06 05:54:11,385 19452 INFO ? odoo: database: openpg@localhost:5432
2026-03-06 05:54:14,129 19452 INFO ? odoo.addons.base.models.ir_actions_report: Will use the Wkhtmltopdf binary at C:\odoo14c\thirdparty\wkhtmltopdf.exe
2026-03-06 05:54:14,597 19452 INFO ? odoo.service.server: HTTP service (werkzeug) running on ThinkpadSaptadi:8070
2026-03-06 05:54:14,675 19452 INFO kanjabung_MRP odoo.modules.loading: loading 1 modules...
2026-03-06 05:54:14,715 19452 INFO kanjabung_MRP odoo.modules.loading: 1 modules loaded in 0.04s, 0 queries (+0 extra)
2026-03-06 05:54:15,021 19452 INFO kanjabung_MRP odoo.modules.loading: loading 87 modules...
2026-03-06 05:54:15,438 19452 WARNING kanjabung_MRP py.warnings: C:\odoo14c\python\lib\site-packages\jinja2\sandbox.py:82: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3,and in 3.9 it will stop working
from collections import MutableSet, MutableMapping, MutableSequence
2026-03-06 05:54:16,891 19452 WARNING kanjabung_MRP odoo.models: The model ins.general.ledger has no _description
2026-03-06 05:54:16,899 19452 WARNING kanjabung_MRP odoo.models: The model ins.partner.ledger has no _description
2026-03-06 05:54:16,899 19452 WARNING kanjabung_MRP odoo.models: The model ins.trial.balance has no _description
2026-03-06 05:54:16,899 19452 WARNING kanjabung_MRP odoo.models: The model ins.partner.ageing has no _description
2026-03-06 05:54:16,899 19452 WARNING kanjabung_MRP odoo.models: The model report.account_dynamic_reports.general_ledger has no _description
2026-03-06 05:54:16,899 19452 WARNING kanjabung_MRP odoo.models: The model report.account_dynamic_reports.partner_ledger has no _description
2026-03-06 05:54:16,899 19452 WARNING kanjabung_MRP odoo.models: The model report.account_dynamic_reports.trial_balance has no _description
2026-03-06 05:54:16,899 19452 WARNING kanjabung_MRP odoo.models: The model report.account_dynamic_reports.partner_ageing has no _description
2026-03-06 05:54:18,680 19452 INFO kanjabung_MRP odoo.modules.loading: 87 modules loaded in 3.66s, 0 queries (+0 extra)
2026-03-06 05:54:20,508 19452 INFO kanjabung_MRP odoo.modules.loading: Modules loaded.
2026-03-05 22:54:37,080 14112 INFO ? odoo: Odoo version 14.0-20231205
2026-03-05 22:54:37,080 14112 INFO ? odoo: Using configuration file at C:\addon14\odoo.conf
2026-03-05 22:54:37,080 14112 INFO ? odoo: addons paths: ['C:\\odoo14c\\server\\odoo\\addons', 'c:\\users\\sapta\\appdata\\local\\openerp s.a\\odoo\\addons\\14.0', 'c:\\odoo14c\\server\\odoo\\addons', 'c:\\addon14']
2026-03-05 22:54:37,080 14112 INFO ? odoo: database: openpg@localhost:5432
2026-03-05 22:54:37,491 14112 INFO ? odoo.addons.base.models.ir_actions_report: Will use the Wkhtmltopdf binary at C:\odoo14c\thirdparty\wkhtmltopdf.exe
2026-03-05 22:54:37,790 14112 INFO kanjabung_MRP odoo.modules.loading: loading 1 modules...
2026-03-05 22:54:37,799 14112 INFO kanjabung_MRP odoo.modules.loading: 1 modules loaded in 0.01s, 0 queries (+0 extra)
2026-03-05 22:54:37,918 14112 INFO kanjabung_MRP odoo.modules.loading: updating modules list
2026-03-05 22:54:37,938 14112 INFO kanjabung_MRP odoo.addons.base.models.ir_module: ALLOW access to module.update_list on [] to user __system__ #1 via n/a
2026-03-05 22:54:40,306 14112 INFO kanjabung_MRP odoo.addons.base.models.ir_module: ALLOW access to module.button_upgrade on ['Odoo KPI System'] to user __system__ #1 via n/a
2026-03-05 22:54:40,306 14112 INFO kanjabung_MRP odoo.addons.base.models.ir_module: ALLOW access to module.update_list on ['Odoo KPI System'] to user __system__ #1 via n/a
2026-03-05 22:54:42,031 14112 INFO kanjabung_MRP odoo.addons.base.models.ir_module: ALLOW access to module.button_install on [] to user __system__ #1 via n/a
2026-03-05 22:54:42,187 14112 INFO kanjabung_MRP odoo.modules.loading: loading 87 modules...
2026-03-05 22:54:42,428 14112 WARNING kanjabung_MRP py.warnings: C:\odoo14c\python\lib\site-packages\jinja2\sandbox.py:82: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3,and in 3.9 it will stop working
from collections import MutableSet, MutableMapping, MutableSequence
2026-03-05 22:54:43,233 14112 WARNING kanjabung_MRP odoo.models: The model ins.general.ledger has no _description
2026-03-05 22:54:43,237 14112 WARNING kanjabung_MRP odoo.models: The model ins.partner.ledger has no _description
2026-03-05 22:54:43,237 14112 WARNING kanjabung_MRP odoo.models: The model ins.trial.balance has no _description
2026-03-05 22:54:43,237 14112 WARNING kanjabung_MRP odoo.models: The model ins.partner.ageing has no _description
2026-03-05 22:54:43,237 14112 WARNING kanjabung_MRP odoo.models: The model report.account_dynamic_reports.general_ledger has no _description
2026-03-05 22:54:43,237 14112 WARNING kanjabung_MRP odoo.models: The model report.account_dynamic_reports.partner_ledger has no _description
2026-03-05 22:54:43,237 14112 WARNING kanjabung_MRP odoo.models: The model report.account_dynamic_reports.trial_balance has no _description
2026-03-05 22:54:43,237 14112 WARNING kanjabung_MRP odoo.models: The model report.account_dynamic_reports.partner_ageing has no _description
2026-03-05 22:54:43,442 14112 INFO kanjabung_MRP odoo.modules.loading: Loading module odoo_kpi (55/87)
2026-03-05 22:54:44,274 14112 INFO kanjabung_MRP odoo.modules.registry: module odoo_kpi: creating or updating database tables
2026-03-05 22:54:44,788 14112 INFO kanjabung_MRP odoo.modules.loading: loading odoo_kpi/security/kpi_security.xml
2026-03-05 22:54:45,095 14112 INFO kanjabung_MRP odoo.modules.loading: loading odoo_kpi/security/ir.model.access.csv
2026-03-05 22:54:45,394 14112 INFO kanjabung_MRP odoo.modules.loading: loading odoo_kpi/views/kpi_department_views.xml
2026-03-05 22:54:45,440 14112 INFO kanjabung_MRP odoo.modules.loading: loading odoo_kpi/views/kpi_definition_views.xml
2026-03-05 22:54:45,484 14112 INFO kanjabung_MRP odoo.modules.loading: loading odoo_kpi/views/kpi_target_views.xml
2026-03-05 22:54:45,524 14112 INFO kanjabung_MRP odoo.modules.loading: loading odoo_kpi/views/kpi_period_views.xml
2026-03-05 22:54:45,554 14112 INFO kanjabung_MRP odoo.modules.loading: loading odoo_kpi/views/kpi_assignment_views.xml
2026-03-05 22:54:45,607 14112 INFO kanjabung_MRP odoo.modules.loading: loading odoo_kpi/views/kpi_value_views.xml
2026-03-05 22:54:45,657 14112 INFO kanjabung_MRP odoo.modules.loading: loading odoo_kpi/views/kpi_score_views.xml
2026-03-05 22:54:45,749 14112 INFO kanjabung_MRP odoo.modules.loading: loading odoo_kpi/views/kpi_team_views.xml
2026-03-05 22:54:45,783 14112 INFO kanjabung_MRP odoo.modules.loading: loading odoo_kpi/views/kpi_evidence_views.xml
2026-03-05 22:54:45,820 14112 INFO kanjabung_MRP odoo.modules.loading: loading odoo_kpi/views/kpi_menu.xml
2026-03-05 22:54:45,983 14112 INFO kanjabung_MRP odoo.modules.loading: loading odoo_kpi/data/kpi_cron.xml
2026-03-05 22:54:46,000 14112 INFO kanjabung_MRP odoo.addons.base.models.ir_translation: module odoo_kpi: no translation for language id
2026-03-05 22:54:46,033 14112 INFO kanjabung_MRP odoo.modules.loading: Module odoo_kpi loaded in 2.59s, 1003 queries
2026-03-05 22:54:46,748 14112 INFO kanjabung_MRP odoo.modules.loading: 87 modules loaded in 4.56s, 1003 queries (+0 extra)
2026-03-05 22:54:47,228 14112 WARNING kanjabung_MRP odoo.modules.loading: The model scada.health has no access rules, consider adding one. E.g. access_scada_health,access_scada_health,model_scada_health,base.group_user,1,0,0,0
2026-03-05 22:54:47,228 14112 WARNING kanjabung_MRP odoo.modules.loading: The model scada.module has no access rules, consider adding one. E.g. access_scada_module,access_scada_module,model_scada_module,base.group_user,1,0,0,0
2026-03-05 22:54:47,228 14112 WARNING kanjabung_MRP odoo.modules.loading: The model scada.mo.data has no access rules, consider adding one. E.g. access_scada_mo_data,access_scada_mo_data,model_scada_mo_data,base.group_user,1,0,0,0
2026-03-05 22:54:47,228 14112 WARNING kanjabung_MRP odoo.modules.loading: The model scada.material.consumption has no access rules, consider adding one. E.g. access_scada_material_consumption,access_scada_material_consumption,model_scada_material_consumption,base.group_user,1,0,0,0
2026-03-05 22:54:48,866 14112 INFO kanjabung_MRP odoo.modules.loading: Modules loaded.
2026-03-05 22:54:48,878 14112 INFO kanjabung_MRP odoo.service.server: Initiating shutdown
2026-03-05 22:54:48,878 14112 INFO kanjabung_MRP odoo.service.server: Hit CTRL-C again or send a second signal to force the shutdown.
2026-03-05 22:54:48,878 14112 INFO kanjabung_MRP odoo.sql_db: ConnectionPool(used=0/count=0/max=64): Closed 1 connections
2026-03-06 05:55:21,608 19452 INFO kanjabung_MRP odoo.addons.base.models.ir_cron: Starting job `Calendar: Event Reminder`.
2026-03-06 05:55:21,718 19452 INFO kanjabung_MRP odoo.addons.base.models.ir_cron: Starting job `Post process payment transactions`.
2026-03-06 05:55:21,960 19452 INFO kanjabung_MRP odoo.addons.base.models.ir_cron: Job `Post process payment transactions` done.
2026-03-06 05:55:21,966 19452 INFO kanjabung_MRP odoo.addons.base.models.ir_cron: Starting job `Mail: Email Queue Manager`.
2026-03-06 05:55:21,971 19452 INFO kanjabung_MRP odoo.addons.base.models.ir_cron: Job `Calendar: Event Reminder` done.
2026-03-06 05:55:21,996 19452 INFO kanjabung_MRP odoo.addons.base.models.ir_cron: Starting job `KPI: Calculate Employee and Team Score`.
2026-03-06 05:55:22,099 19452 INFO kanjabung_MRP odoo.addons.base.models.ir_cron: Job `KPI: Calculate Employee and Team Score` done.
2026-03-06 05:55:22,101 19452 INFO kanjabung_MRP odoo.addons.base.models.ir_cron: Starting job `KPI: Monthly Recalculate Score`.
2026-03-06 05:55:22,185 19452 INFO kanjabung_MRP odoo.addons.base.models.ir_cron: Job `KPI: Monthly Recalculate Score` done.
2026-03-06 05:55:27,578 19452 INFO kanjabung_MRP odoo.addons.base.models.ir_cron: Job `Mail: Email Queue Manager` done.
2026-03-06 05:56:34,794 19452 INFO ? odoo.http: HTTP Configuring static files
2026-03-06 05:56:34,837 19452 INFO kanjabung_MRP odoo.addons.base.models.ir_http: Generating routing map for key None
2026-03-06 05:56:35,670 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:56:35] "POST /xmlrpc/2/common HTTP/1.1" 200 - 1 0.004 0.847
2026-03-06 05:56:37,827 19452 INFO kanjabung_MRP odoo.addons.base.models.res_users: Login successful for db:kanjabung_MRP login:admin from 127.0.0.1
2026-03-06 05:56:37,836 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:56:37] "POST /xmlrpc/2/common HTTP/1.1" 200 - 19 0.072 0.061
2026-03-06 05:56:39,947 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:56:39] "POST /xmlrpc/2/object HTTP/1.1" 200 - 13 0.014 0.066
2026-03-06 05:56:42,037 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:56:42] "POST /xmlrpc/2/object HTTP/1.1" 200 - 6 0.032 0.019
2026-03-06 05:58:24,955 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:24] "GET / HTTP/1.1" 303 - 3 0.007 0.030
2026-03-06 05:58:39,867 19452 INFO kanjabung_MRP odoo.modules.registry: At least one model cache has been invalidated, signaling through the database.
2026-03-06 05:58:39,870 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:39] "GET /web HTTP/1.1" 200 - 822 1.165 13.535
2026-03-06 05:58:39,940 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:39] "GET /web/content/253-40402f3/web.assets_common.css HTTP/1.1" 200 - 4 0.008 0.025
2026-03-06 05:58:40,270 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:40] "GET /web/content/254-240b7d8/web.assets_backend.css HTTP/1.1" 200 - 2 0.005 0.043
2026-03-06 05:58:40,270 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:40] "GET /web/content/255-40402f3/web.assets_common.js HTTP/1.1" 200 - 2 0.000 0.043
2026-03-06 05:58:40,307 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:40] "GET /web/content/256-240b7d8/web.assets_backend.js HTTP/1.1" 200 - 2 0.007 0.030
2026-03-06 05:58:40,612 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:40] "GET /web/content/257-b4d6493/web.assets_backend_prod_only.js HTTP/1.1" 200 - 2 0.000 0.018
2026-03-06 05:58:41,195 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:41] "GET /web/webclient/qweb/6d03d6361c541da8318a8d024f5bad5537bfebff4a21d6e533a8a8f29caf35c0?mods=base,web,base_setup,bus,web_tour,mail,product,web_editor,http_routing,auth_signup,portal,resource,digest,account,accounting_pdf_reports,om_account_asset,om_account_budget,om_account_bank_statement_import,om_account_accountant,sales_team,payment,utm,sale,sale_management,account_dynamic_reports,calendar,contacts,crm,barcodes,stock,purchase,mrp,hr,hr_contract,hr_expense,grt_scada,maintenance,purchase_stock,auth_totp,auth_totp_portal,base_iban,base_import,crm_iap_lead,grt_crm_business_category,hr_org_chart,iap,l10n_id,mail_bot,partner_autocomplete,payment_transfer,sale_expense,sale_stock,sms,snailmail,snailmail_account,web_kanban_gauge,web_unsplash HTTP/1.1" 200 - 1 0.000 0.453
2026-03-06 05:58:41,787 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:41] "GET /web/webclient/translations/745ce24ffe3acf4ad2cdb8ceb36272b8576d874f?mods=base%2Cweb%2Cbase_setup%2Cbus%2Cweb_tour%2Cmail%2Cproduct%2Cweb_editor%2Chttp_routing%2Cauth_signup%2Cportal%2Cresource%2Cdigest%2Caccount%2Caccounting_pdf_reports%2Com_account_asset%2Com_account_budget%2Com_account_bank_statement_import%2Com_account_accountant%2Csales_team%2Cpayment%2Cutm%2Csale%2Csale_management%2Caccount_dynamic_reports%2Ccalendar%2Ccontacts%2Ccrm%2Cbarcodes%2Cstock%2Cpurchase%2Cmrp%2Chr%2Chr_contract%2Chr_expense%2Cgrt_scada%2Cmaintenance%2Cpurchase_stock%2Cauth_totp%2Cauth_totp_portal%2Cbase_iban%2Cbase_import%2Ccrm_iap_lead%2Cgrt_crm_business_category%2Chr_org_chart%2Ciap%2Cl10n_id%2Cmail_bot%2Cpartner_autocomplete%2Cpayment_transfer%2Csale_expense%2Csale_stock%2Csms%2Csnailmail%2Csnailmail_account%2Cweb_kanban_gauge%2Cweb_unsplash&lang=id_ID HTTP/1.1" 200 - 5 0.040 0.173
2026-03-06 05:58:42,074 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:42] "GET /web/webclient/load_menus/5704b71a1de8c746443ad417c9673fdff26dccb2418ad322ac93af34b0377210 HTTP/1.1" 200 - 511 0.733 1.102
2026-03-06 05:58:42,133 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:42] "GET /web/webclient/locale/id_ID HTTP/1.1" 200 - 1 0.000 0.013
2026-03-06 05:58:42,513 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:42] "GET /web/static/lib/fontawesome/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/1.1" 304 - - - -
2026-03-06 05:58:42,606 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:42] "GET /web/static/src/xml/debug.xml?debug=1772751522248 HTTP/1.1" 200 - - - -
2026-03-06 05:58:42,720 19452 INFO ? odoo.addons.bus.models.bus: Bus.loop listen imbus on db postgres
2026-03-06 05:58:42,834 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:42] "GET /web/image?model=res.users&field=image_128&id=2 HTTP/1.1" 200 - 17 0.086 0.124
2026-03-06 05:58:42,853 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:42] "POST /web/dataset/call_kw/res.users/systray_get_activities HTTP/1.1" 200 - 21 0.133 0.123
2026-03-06 05:58:42,948 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:42] "POST /web/dataset/call_kw/ir.rule/check_access_rights HTTP/1.1" 200 - 1 0.000 0.012
2026-03-06 05:58:42,957 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:42] "POST /web/dataset/call_kw/ir.model.access/check_access_rights HTTP/1.1" 200 - 1 0.004 0.016
2026-03-06 05:58:42,980 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:42] "POST /mail/init_messaging HTTP/1.1" 200 - 83 0.287 0.180
2026-03-06 05:58:43,189 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:43] "POST /web/dataset/call_kw/ir.ui.view/check_access_rights HTTP/1.1" 200 - 2 0.009 0.021
2026-03-06 05:58:43,236 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:43] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.010 0.028
2026-03-06 05:58:43,311 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:43] "POST /web/dataset/call_kw/res.users/read HTTP/1.1" 200 - 2 0.000 0.008
2026-03-06 05:58:43,571 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:43] "POST /web/action/load HTTP/1.1" 200 - 9 0.017 0.015
2026-03-06 05:58:43,658 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:43] "POST /calendar/notify HTTP/1.1" 200 - 3 0.012 0.010
2026-03-06 05:58:43,737 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:43] "POST /web/dataset/call_kw/mail.message/load_views HTTP/1.1" 200 - 29 0.041 0.053
2026-03-06 05:58:43,905 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:43] "GET /crm/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:45,287 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:45] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 4 0.008 0.022
2026-03-06 05:58:49,245 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:49] "POST /web/dataset/call_kw/mail.message/message_fetch HTTP/1.1" 200 - 9 0.035 0.022
2026-03-06 05:58:50,340 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:50] "GET /web_tour/static/src/xml/tip.xml?debug=1772751530023 HTTP/1.1" 200 - - - -
2026-03-06 05:58:52,984 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:52] "POST /web/action/load HTTP/1.1" 200 - 29 0.050 0.109
2026-03-06 05:58:53,583 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:53] "POST /web/dataset/call_kw/ir.module.module/load_views HTTP/1.1" 200 - 72 0.095 0.183
2026-03-06 05:58:54,044 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:54] "POST /web/dataset/call_kw/ir.module.module/search_panel_select_range HTTP/1.1" 200 - 46 0.048 0.086
2026-03-06 05:58:54,406 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:54] "POST /web/dataset/search_read HTTP/1.1" 200 - 4 0.005 0.037
2026-03-06 05:58:54,834 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:54] "GET /hr_recruitment/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:54,843 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:54] "GET /stock/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:54,852 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:54] "GET /bi_project_template/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:54,858 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:54] "GET /mass_mailing/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:54,863 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:54] "GET /project/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:55,151 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:55] "GET /foss_project_tags/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:55,168 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:55] "GET /point_of_sale/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:55,200 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:55] "GET /hr/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:55,208 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:55] "GET /purchase/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:55,236 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:55] "GET /hr_expense/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:55,482 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:55] "GET /base/static/img/icons/mrp_workorder.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:55,482 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:55] "GET /mrp/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:55,526 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:55] "GET /hr_holidays/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:55,526 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:55] "GET /website_sale/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:55,559 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:55] "GET /base/static/img/icons/account_accountant.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:55,793 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:55] "GET /account_dynamic_reports/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:55,803 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:55] "GET /website/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:55,845 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:55] "GET /base_territory/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:55,845 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:55] "GET /abs_meeting_from_task/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:55,877 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:55] "GET /abs_project_task_template/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:56,112 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:56] "GET /base/static/img/icons/web_studio.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:56,122 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:56] "GET /base/static/img/icons/timesheet_grid.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:56,159 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:56] "GET /fl_quick_task/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:56,169 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:56] "GET /odoo_traccar_tracking/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:56,199 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:56] "GET /om_account_accountant/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:56,433 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:56] "GET /sale_management/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:56,433 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:56] "GET /account/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:56,474 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:56] "GET /bt_asset_management/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:56,486 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:56] "GET /fieldservice/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:56,517 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:56] "GET /garazd_product_label/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:56,770 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:56] "GET /base/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:56,772 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:56] "GET /knowledge/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:56,794 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:56] "GET /maintenance/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:56,804 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:56] "GET /odoo_web_login/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:56,845 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:56] "GET /scrum_agile_framework/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:57,114 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:57] "GET /support_package/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:57,127 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:57] "GET /task_pomodoro/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:57,136 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:57] "GET /base/static/img/icons/sign.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:57,146 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:57] "GET /base/static/img/icons/helpdesk.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:57,181 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:57] "GET /base/static/img/icons/sale_subscription.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:57,445 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:57] "GET /base/static/img/icons/quality_control.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:57,466 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:57] "GET /website_slides/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:57,474 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:57] "GET /base/static/img/icons/planning.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:57,476 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:57] "GET /website_event/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:57,499 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:57] "GET /mail/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:57,779 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:57] "GET /contacts/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:57,796 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:57] "GET /base/static/img/icons/mrp_plm.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:57,803 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:57] "GET /calendar/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:57,812 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:57] "GET /base/static/img/icons/hr_appraisal.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:57,820 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:57] "GET /fleet/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:58,097 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:58] "GET /base/static/img/icons/marketing_automation.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:58,122 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:58] "GET /website_blog/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:58,130 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:58] "GET /im_livechat/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:58,138 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:58] "GET /base/static/img/icons/website_calendar.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:58,138 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:58] "GET /survey/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:58,417 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:58] "GET /base/static/img/icons/web_mobile.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:58,441 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:58] "GET /board/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:58,449 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:58] "GET /repair/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:58,458 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:58] "GET /hr_attendance/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:58,468 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:58] "GET /mass_mailing_sms/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:58,770 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:58] "GET /base/static/img/icons/stock_barcode.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:58,799 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:58] "GET /note/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:58,810 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:58] "GET /website_forum/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:58,811 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:58] "GET /hr_skills/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:58,911 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:58] "POST /web/dataset/call_kw/ir.module.module/search_panel_select_range HTTP/1.1" 200 - 42 0.069 0.094
2026-03-06 05:58:59,119 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:59] "POST /web/dataset/search_read HTTP/1.1" 200 - 3 0.002 0.020
2026-03-06 05:58:59,135 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:59] "GET /base/static/img/icons/voip.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:59,146 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:59] "GET /lunch/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:59,155 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:59] "GET /website_hr_recruitment/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:59,233 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:59] "GET /base/static/img/icons/sale_ebay.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:59,448 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:59] "GET /payment_adyen/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:59,473 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:59] "GET /payment_alipay/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:59,485 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:59] "GET /payment_authorize/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:59,493 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:59] "GET /payment_buckaroo/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:59,553 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:59] "GET /payment_ingenico/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:59,802 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:59] "GET /payment_payumoney/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:58:59,809 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:58:59] "GET /payment_paypal/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:59:00,647 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:00] "POST /web/dataset/call_kw/ir.module.module/search_panel_select_range HTTP/1.1" 200 - 42 0.116 0.096
2026-03-06 05:59:01,019 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:01] "POST /web/dataset/search_read HTTP/1.1" 200 - 3 0.014 0.030
2026-03-06 05:59:01,398 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:01] "GET /website_crm_partner_assign/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:59:01,427 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:01] "GET /website_crm/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:59:05,227 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:05] "POST /web/dataset/call_kw/ir.module.module/read HTTP/1.1" 200 - 16 0.051 0.335
2026-03-06 05:59:05,594 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:05] "POST /web/dataset/call_kw/ir.module.module.dependency/read HTTP/1.1" 200 - 4 0.012 0.031
2026-03-06 05:59:05,967 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:05] "POST /web/dataset/call_kw/ir.module.category/name_search HTTP/1.1" 200 - 3 0.008 0.035
2026-03-06 05:59:06,442 19452 INFO kanjabung_MRP odoo.http: <function odoo.addons.web_editor.controllers.main.public_render_template> called ignoring args <kwargs={'context': {'lang': 'id_ID', 'tz': 'Asia/Jakarta', 'uid': 2, 'allowed_company_ids': [1]}}>
2026-03-06 05:59:06,445 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:06] "GET /web/image?model=ir.module.module&id=402&field=icon_image&unique=05032026224356 HTTP/1.1" 200 - 3 0.025 0.035
2026-03-06 05:59:09,029 19452 INFO kanjabung_MRP odoo.modules.registry: At least one model cache has been invalidated, signaling through the database.
2026-03-06 05:59:09,030 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:09] "POST /web_editor/public_render_template HTTP/1.1" 200 - 125 0.308 2.376
2026-03-06 05:59:09,439 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:09] "GET /web/content/258-de6a5e2/web_editor.assets_summernote.css HTTP/1.1" 200 - 4 0.016 0.050
2026-03-06 05:59:09,464 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:09] "GET /web/content/260-ec403c9/web_editor.assets_wysiwyg.css HTTP/1.1" 200 - 2 0.011 0.068
2026-03-06 05:59:09,484 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:09] "GET /web/content/259-de6a5e2/web_editor.assets_summernote.js HTTP/1.1" 200 - 2 0.006 0.071
2026-03-06 05:59:09,879 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:09] "GET /web/content/261-ec403c9/web_editor.assets_wysiwyg.js HTTP/1.1" 200 - 2 0.000 0.040
2026-03-06 05:59:10,309 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:10] "GET /base/static/src/css/description.css HTTP/1.1" 304 - - - -
2026-03-06 05:59:10,317 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:10] "GET /web/static/src/img/form_sheetbg.png HTTP/1.1" 304 - - - -
2026-03-06 05:59:12,607 19452 INFO kanjabung_MRP odoo.addons.base.models.ir_module: ALLOW access to module.button_immediate_upgrade on ['GRT CRM Business Category'] to user admin #2 via 127.0.0.1
2026-03-06 05:59:12,613 19452 INFO kanjabung_MRP odoo.addons.base.models.ir_module: ALLOW access to module.button_upgrade on ['GRT CRM Business Category'] to user admin #2 via 127.0.0.1
2026-03-06 05:59:12,616 19452 INFO kanjabung_MRP odoo.addons.base.models.ir_module: ALLOW access to module.update_list on ['GRT CRM Business Category'] to user admin #2 via 127.0.0.1
2026-03-06 05:59:15,579 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:15] "GET /web/static/src/img/spin.png HTTP/1.1" 304 - - - -
2026-03-06 05:59:16,048 19452 INFO kanjabung_MRP odoo.addons.base.models.ir_module: ALLOW access to module.button_install on [] to user admin #2 via 127.0.0.1
2026-03-06 05:59:16,155 19452 INFO kanjabung_MRP odoo.modules.loading: loading 1 modules...
2026-03-06 05:59:16,187 19452 INFO kanjabung_MRP odoo.modules.loading: 1 modules loaded in 0.03s, 0 queries (+0 extra)
2026-03-06 05:59:16,532 19452 INFO kanjabung_MRP odoo.modules.loading: updating modules list
2026-03-06 05:59:16,532 19452 INFO kanjabung_MRP odoo.addons.base.models.ir_module: ALLOW access to module.update_list on [] to user __system__ #1 via 127.0.0.1
2026-03-06 05:59:19,634 19452 INFO kanjabung_MRP odoo.modules.loading: loading 87 modules...
2026-03-06 05:59:19,866 19452 WARNING kanjabung_MRP odoo.models: The model ins.general.ledger has no _description
2026-03-06 05:59:19,866 19452 WARNING kanjabung_MRP odoo.models: The model ins.partner.ledger has no _description
2026-03-06 05:59:19,866 19452 WARNING kanjabung_MRP odoo.models: The model ins.trial.balance has no _description
2026-03-06 05:59:19,866 19452 WARNING kanjabung_MRP odoo.models: The model ins.partner.ageing has no _description
2026-03-06 05:59:19,866 19452 WARNING kanjabung_MRP odoo.models: The model report.account_dynamic_reports.general_ledger has no _description
2026-03-06 05:59:19,866 19452 WARNING kanjabung_MRP odoo.models: The model report.account_dynamic_reports.partner_ledger has no _description
2026-03-06 05:59:19,871 19452 WARNING kanjabung_MRP odoo.models: The model report.account_dynamic_reports.trial_balance has no _description
2026-03-06 05:59:19,871 19452 WARNING kanjabung_MRP odoo.models: The model report.account_dynamic_reports.partner_ageing has no _description
2026-03-06 05:59:19,889 19452 INFO kanjabung_MRP odoo.modules.loading: Loading module grt_crm_business_category (50/87)
2026-03-06 05:59:21,117 19452 INFO kanjabung_MRP odoo.modules.registry: module grt_crm_business_category: creating or updating database tables
2026-03-06 05:59:21,498 19452 INFO kanjabung_MRP odoo.schema: Table 'crm_team': unable to set NOT NULL on column 'business_category_id'
2026-03-06 05:59:22,529 19452 INFO kanjabung_MRP odoo.modules.loading: loading grt_crm_business_category/security/ir.model.access.csv
2026-03-06 05:59:22,634 19452 INFO kanjabung_MRP odoo.modules.loading: loading grt_crm_business_category/security/ir.rule.csv
2026-03-06 05:59:22,896 19452 INFO kanjabung_MRP odoo.modules.loading: loading grt_crm_business_category/data/crm_business_category_data.xml
2026-03-06 05:59:22,917 19452 INFO kanjabung_MRP odoo.modules.loading: loading grt_crm_business_category/views/assets.xml
2026-03-06 05:59:22,988 19452 INFO kanjabung_MRP odoo.modules.loading: loading grt_crm_business_category/views/crm_activity_history_views.xml
2026-03-06 05:59:23,226 19452 INFO kanjabung_MRP odoo.modules.loading: loading grt_crm_business_category/views/crm_business_category_views.xml
2026-03-06 05:59:23,337 19452 INFO kanjabung_MRP odoo.modules.loading: loading grt_crm_business_category/views/crm_lead_views.xml
2026-03-06 05:59:23,632 19452 INFO kanjabung_MRP odoo.modules.loading: loading grt_crm_business_category/views/crm_team_views.xml
2026-03-06 05:59:23,966 19452 INFO kanjabung_MRP odoo.modules.loading: loading grt_crm_business_category/views/crm_team_business_category_views.xml
2026-03-06 05:59:24,091 19452 INFO kanjabung_MRP odoo.modules.loading: loading grt_crm_business_category/views/mail_activity_views.xml
2026-03-06 05:59:24,221 19452 INFO kanjabung_MRP odoo.modules.loading: loading grt_crm_business_category/views/res_users_business_category_views.xml
2026-03-06 05:59:24,466 19452 INFO kanjabung_MRP odoo.addons.base.models.ir_translation: module grt_crm_business_category: no translation for language id
2026-03-06 05:59:24,532 19452 INFO kanjabung_MRP odoo.modules.loading: Module grt_crm_business_category loaded in 4.64s, 637 queries
2026-03-06 05:59:24,663 19452 INFO kanjabung_MRP odoo.modules.loading: 87 modules loaded in 5.03s, 637 queries (+0 extra)
2026-03-06 05:59:25,185 19452 WARNING kanjabung_MRP odoo.schema: Table 'crm_team': unable to set NOT NULL on column 'business_category_id'
2026-03-06 05:59:25,188 19452 WARNING kanjabung_MRP odoo.modules.loading: The model scada.health has no access rules, consider adding one. E.g. access_scada_health,access_scada_health,model_scada_health,base.group_user,1,0,0,0
2026-03-06 05:59:25,188 19452 WARNING kanjabung_MRP odoo.modules.loading: The model scada.module has no access rules, consider adding one. E.g. access_scada_module,access_scada_module,model_scada_module,base.group_user,1,0,0,0
2026-03-06 05:59:25,188 19452 WARNING kanjabung_MRP odoo.modules.loading: The model scada.mo.data has no access rules, consider adding one. E.g. access_scada_mo_data,access_scada_mo_data,model_scada_mo_data,base.group_user,1,0,0,0
2026-03-06 05:59:25,188 19452 WARNING kanjabung_MRP odoo.modules.loading: The model scada.material.consumption has no access rules, consider adding one. E.g. access_scada_material_consumption,access_scada_material_consumption,model_scada_material_consumption,base.group_user,1,0,0,0
2026-03-06 05:59:25,616 19452 INFO kanjabung_MRP odoo.modules.registry: verifying fields for every extended model
2026-03-06 05:59:25,768 19452 ERROR kanjabung_MRP odoo.schema: Table 'crm_team': unable to set NOT NULL on column 'business_category_id'
2026-03-06 05:59:25,783 19452 INFO kanjabung_MRP odoo.modules.registry: Models have no table: scada.health, scada.module.
2026-03-06 05:59:25,783 19452 INFO kanjabung_MRP odoo.modules.registry: Recreate table of model scada.health.
2026-03-06 05:59:25,783 19452 INFO kanjabung_MRP odoo.modules.registry: Recreate table of model scada.module.
2026-03-06 05:59:25,785 19452 ERROR kanjabung_MRP odoo.modules.registry: Model scada.health has no table.
2026-03-06 05:59:25,787 19452 ERROR kanjabung_MRP odoo.modules.registry: Model scada.module has no table.
2026-03-06 05:59:26,369 19452 INFO kanjabung_MRP odoo.modules.loading: Modules loaded.
2026-03-06 05:59:26,384 19452 INFO kanjabung_MRP odoo.addons.base.models.ir_module: getting next ir.actions.todo()
2026-03-06 05:59:26,385 19452 INFO kanjabung_MRP odoo.modules.registry: Registry changed, signaling through the database
2026-03-06 05:59:26,385 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:26] "POST /web/dataset/call_button HTTP/1.1" 200 - 3785 2.797 11.021
2026-03-06 05:59:26,729 19452 INFO kanjabung_MRP odoo.addons.base.models.ir_http: Generating routing map for key None
2026-03-06 05:59:30,462 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:30] "GET /web HTTP/1.1" 200 - 677 0.617 3.121
2026-03-06 05:59:30,884 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:30] "GET /web/content/253-40402f3/web.assets_common.css HTTP/1.1" 200 - 2 0.016 0.062
2026-03-06 05:59:30,960 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:30] "GET /web/content/254-240b7d8/web.assets_backend.css HTTP/1.1" 200 - 2 0.012 0.127
2026-03-06 05:59:30,997 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:30] "GET /web/content/256-240b7d8/web.assets_backend.js HTTP/1.1" 304 - 2 0.036 0.084
2026-03-06 05:59:30,997 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:30] "GET /web/content/255-40402f3/web.assets_common.js HTTP/1.1" 304 - 2 0.013 0.136
2026-03-06 05:59:31,024 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:31] "GET /web/webclient/load_menus/5704b71a1de8c746443ad417c9673fdff26dccb2418ad322ac93af34b0377210 HTTP/1.1" 200 - 1 0.000 0.060
2026-03-06 05:59:31,029 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:31] "GET /web/content/257-b4d6493/web.assets_backend_prod_only.js HTTP/1.1" 304 - 2 0.009 0.057
2026-03-06 05:59:31,739 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:31] "GET /web/webclient/qweb/6d03d6361c541da8318a8d024f5bad5537bfebff4a21d6e533a8a8f29caf35c0?mods=base,web,base_setup,bus,web_tour,mail,product,web_editor,http_routing,auth_signup,portal,resource,digest,account,accounting_pdf_reports,om_account_asset,om_account_budget,om_account_bank_statement_import,om_account_accountant,sales_team,payment,utm,sale,sale_management,account_dynamic_reports,calendar,contacts,crm,barcodes,stock,purchase,mrp,hr,hr_contract,hr_expense,grt_scada,maintenance,purchase_stock,auth_totp,auth_totp_portal,base_iban,base_import,crm_iap_lead,grt_crm_business_category,hr_org_chart,iap,l10n_id,mail_bot,partner_autocomplete,payment_transfer,sale_expense,sale_stock,sms,snailmail,snailmail_account,web_kanban_gauge,web_unsplash HTTP/1.1" 200 - 1 0.000 0.190
2026-03-06 05:59:32,069 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:32] "GET /web/webclient/translations/745ce24ffe3acf4ad2cdb8ceb36272b8576d874f?mods=base%2Cweb%2Cbase_setup%2Cbus%2Cweb_tour%2Cmail%2Cproduct%2Cweb_editor%2Chttp_routing%2Cauth_signup%2Cportal%2Cresource%2Cdigest%2Caccount%2Caccounting_pdf_reports%2Com_account_asset%2Com_account_budget%2Com_account_bank_statement_import%2Com_account_accountant%2Csales_team%2Cpayment%2Cutm%2Csale%2Csale_management%2Caccount_dynamic_reports%2Ccalendar%2Ccontacts%2Ccrm%2Cbarcodes%2Cstock%2Cpurchase%2Cmrp%2Chr%2Chr_contract%2Chr_expense%2Cgrt_scada%2Cmaintenance%2Cpurchase_stock%2Cauth_totp%2Cauth_totp_portal%2Cbase_iban%2Cbase_import%2Ccrm_iap_lead%2Cgrt_crm_business_category%2Chr_org_chart%2Ciap%2Cl10n_id%2Cmail_bot%2Cpartner_autocomplete%2Cpayment_transfer%2Csale_expense%2Csale_stock%2Csms%2Csnailmail%2Csnailmail_account%2Cweb_kanban_gauge%2Cweb_unsplash&lang=id_ID HTTP/1.1" 200 - 5 0.025 0.252
2026-03-06 05:59:32,097 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:32] "GET /web/webclient/locale/id_ID HTTP/1.1" 200 - 1 0.000 0.014
2026-03-06 05:59:32,458 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:32] "GET /web/static/lib/fontawesome/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/1.1" 200 - - - -
2026-03-06 05:59:32,548 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:32] "GET /web/static/src/xml/debug.xml?debug=1772751572170 HTTP/1.1" 200 - - - -
2026-03-06 05:59:32,871 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:32] "POST /longpolling/poll HTTP/1.1" 200 - 19 0.136 50.173
2026-03-06 05:59:33,223 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:33] "POST /web/dataset/call_kw/res.users/systray_get_activities HTTP/1.1" 200 - 21 0.431 0.273
2026-03-06 05:59:33,403 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:33] "POST /web/dataset/call_kw/ir.rule/check_access_rights HTTP/1.1" 200 - 1 0.009 0.278
2026-03-06 05:59:33,468 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:33] "GET /web/image?model=res.users&field=image_128&id=2 HTTP/1.1" 304 - 17 0.516 0.412
2026-03-06 05:59:33,716 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:33] "POST /web/dataset/call_kw/ir.model.access/check_access_rights HTTP/1.1" 200 - 1 0.042 0.529
2026-03-06 05:59:34,226 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:34] "POST /web/dataset/call_kw/ir.ui.view/check_access_rights HTTP/1.1" 200 - 2 0.043 0.424
2026-03-06 05:59:34,275 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:34] "GET /crm/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 05:59:34,532 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:34] "POST /mail/init_messaging HTTP/1.1" 200 - 75 1.695 0.380
2026-03-06 05:59:34,736 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:34] "POST /web/dataset/call_kw/res.users/read HTTP/1.1" 200 - 2 0.005 0.003
2026-03-06 05:59:34,945 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:34] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.004 0.038
2026-03-06 05:59:35,120 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:35] "POST /calendar/notify HTTP/1.1" 200 - 3 0.017 0.032
2026-03-06 05:59:35,131 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:35] "POST /web/action/load HTTP/1.1" 200 - 9 0.026 0.041
2026-03-06 05:59:35,579 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:35] "POST /web/dataset/call_kw/mail.message/load_views HTTP/1.1" 200 - 27 0.047 0.079
2026-03-06 05:59:35,664 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:35] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 4 0.010 0.027
2026-03-06 05:59:36,005 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:36] "POST /web/dataset/call_kw/mail.message/message_fetch HTTP/1.1" 200 - 9 0.026 0.026
2026-03-06 05:59:37,170 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 05:59:37] "GET /web_tour/static/src/xml/tip.xml?debug=1772751576846 HTTP/1.1" 200 - - - -
2026-03-06 06:00:24,764 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:00:24] "POST /longpolling/poll HTTP/1.1" 200 - 19 0.145 52.130
2026-03-06 06:00:25,373 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:00:25] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.008 0.024
2026-03-06 06:00:33,949 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:00:33] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.000 0.021
2026-03-06 06:01:15,145 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:01:15] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.004 50.040
2026-03-06 06:01:16,073 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:01:16] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.012 0.034
2026-03-06 06:01:33,962 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:01:33] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.007 0.025
2026-03-06 06:02:05,539 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:02:05] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.014 50.049
2026-03-06 06:02:07,066 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:02:07] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.015 0.033
2026-03-06 06:02:36,138 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:02:36] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.017 0.024
2026-03-06 06:02:55,953 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:02:55] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.027 50.055
2026-03-06 06:02:58,071 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:02:58] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.003 0.042
2026-03-06 06:03:30,321 19452 INFO kanjabung_MRP odoo.addons.base.models.ir_cron: Starting job `Partner Autocomplete : Sync with remote DB`.
2026-03-06 06:03:30,366 19452 INFO kanjabung_MRP odoo.addons.base.models.ir_cron: Job `Partner Autocomplete : Sync with remote DB` done.
2026-03-06 06:03:33,468 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:03:33] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.001 0.014
2026-03-06 06:03:35,683 19452 INFO kanjabung_MRP odoo.addons.base.models.ir_cron: Starting job `SMS: SMS Queue Manager`.
2026-03-06 06:03:35,768 19452 INFO kanjabung_MRP odoo.addons.base.models.ir_cron: Job `SMS: SMS Queue Manager` done.
2026-03-06 06:03:35,770 19452 INFO kanjabung_MRP odoo.addons.base.models.ir_cron: Starting job `Snailmail: process letters queue`.
2026-03-06 06:03:35,832 19452 INFO kanjabung_MRP odoo.addons.base.models.ir_cron: Job `Snailmail: process letters queue` done.
2026-03-06 06:03:46,349 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:03:46] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.011 50.049
2026-03-06 06:03:49,054 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:03:49] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.000 0.030
2026-03-06 06:04:36,125 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:04:36] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.000 0.025
2026-03-06 06:04:36,719 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:04:36] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.004 50.046
2026-03-06 06:04:40,068 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:04:40] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.000 0.043
2026-03-06 06:05:27,108 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:05:27] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.012 50.046
2026-03-06 06:05:31,057 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:05:31] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.005 0.034
2026-03-06 06:05:33,536 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:05:33] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.000 0.024
2026-03-06 06:06:17,497 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:06:17] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.000 50.049
2026-03-06 06:06:22,067 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:06:22] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.006 0.036
2026-03-06 06:07:07,895 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:07:07] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.004 50.061
2026-03-06 06:07:13,073 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:07:13] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.005 0.043
2026-03-06 06:07:13,680 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:07:13] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.009 0.024
2026-03-06 06:07:58,277 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:07:58] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.002 50.052
2026-03-06 06:08:04,089 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:08:04] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.022 0.032
2026-03-06 06:08:13,940 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:08:13] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.002 0.034
2026-03-06 06:08:48,667 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:08:48] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.002 50.057
2026-03-06 06:08:55,084 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:08:55] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.002 0.039
2026-03-06 06:09:13,576 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:09:13] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.000 0.036
2026-03-06 06:09:39,047 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:09:39] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.000 50.054
2026-03-06 06:09:46,063 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:09:46] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.010 0.025
2026-03-06 06:10:13,721 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:10:13] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.000 0.027
2026-03-06 06:10:29,413 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:10:29] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.012 50.035
2026-03-06 06:10:37,060 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:10:37] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.000 0.048
2026-03-06 06:11:13,510 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:11:13] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.002 0.018
2026-03-06 06:11:19,816 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:11:19] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.000 50.063
2026-03-06 06:11:28,063 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:11:28] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.012 0.017
2026-03-06 06:12:10,197 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:12:10] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.004 50.042
2026-03-06 06:12:13,030 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:12:13] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.000 0.028
2026-03-06 06:12:19,372 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:12:19] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.008 0.025
2026-03-06 06:13:00,580 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:13:00] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.016 50.042
2026-03-06 06:13:10,056 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:13:10] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.023 0.004
2026-03-06 06:13:13,515 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:13:13] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.000 0.035
2026-03-06 06:13:50,956 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:13:50] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.008 50.047
2026-03-06 06:14:01,050 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:14:01] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.015 0.017
2026-03-06 06:14:13,972 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:14:13] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.005 0.016
2026-03-06 06:14:41,346 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:14:41] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.000 50.055
2026-03-06 06:14:52,069 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:14:52] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.006 0.040
2026-03-06 06:15:13,591 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:15:13] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.002 0.024
2026-03-06 06:15:31,728 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:15:31] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.015 50.043
2026-03-06 06:15:43,054 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:15:43] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.004 0.022
2026-03-06 06:16:13,545 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:16:13] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.000 0.032
2026-03-06 06:16:22,115 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:16:22] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.002 50.057
2026-03-06 06:16:34,059 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:16:34] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.006 0.030
2026-03-06 06:16:52,224 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:16:52] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.012 0.000
2026-03-06 06:16:54,621 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:16:54] "POST /web/action/load HTTP/1.1" 200 - 14 0.048 0.073
2026-03-06 06:16:55,348 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:16:55] "POST /web/action/run HTTP/1.1" 200 - 73 0.124 0.277
2026-03-06 06:16:56,796 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:16:56] "POST /web/dataset/call_kw/crm.lead/load_views HTTP/1.1" 200 - 207 0.253 0.859
2026-03-06 06:16:57,197 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:16:57] "POST /web/dataset/call_kw/crm.lead/web_read_group HTTP/1.1" 200 - 7 0.036 0.014
2026-03-06 06:16:57,213 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:16:57] "POST /web/dataset/call_kw/crm.lead/read_progress_bar HTTP/1.1" 200 - 3 0.030 0.022
2026-03-06 06:16:57,786 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:16:57] "POST /web/dataset/search_read HTTP/1.1" 200 - 19 0.100 0.149
2026-03-06 06:16:58,161 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:16:58] "POST /web/dataset/call_kw/crm.stage/read HTTP/1.1" 200 - 3 0.010 0.016
2026-03-06 06:16:58,501 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:16:58] "POST /web/dataset/call_kw/res.users/has_group HTTP/1.1" 200 - 2 0.005 0.011
2026-03-06 06:16:58,997 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:16:58] "GET /web/image/res.users/2/image_128 HTTP/1.1" 200 - 6 0.000 0.076
2026-03-06 06:17:12,496 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:17:12] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.000 50.045
2026-03-06 06:17:25,064 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:17:25] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.010 0.037
2026-03-06 06:17:32,791 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:17:32] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.000 0.029
2026-03-06 06:17:34,942 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:17:34] "POST /web/action/load HTTP/1.1" 200 - 13 0.020 0.085
2026-03-06 06:17:35,454 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:17:35] "POST /web/dataset/call_kw/kpi.assignment/load_views HTTP/1.1" 200 - 33 0.053 0.128
2026-03-06 06:17:35,868 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:17:35] "POST /web/dataset/search_read HTTP/1.1" 200 - 11 0.035 0.039
2026-03-06 06:17:36,221 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:17:36] "POST /web/dataset/call_kw/res.users/has_group HTTP/1.1" 200 - 2 0.000 0.024
2026-03-06 06:17:39,260 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:17:39] "POST /web/dataset/call_kw/kpi.assignment/onchange HTTP/1.1" 200 - 3 0.007 0.026
2026-03-06 06:17:39,640 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:17:39] "GET /web/static/src/img/form_sheetbg.png HTTP/1.1" 304 - - - -
2026-03-06 06:17:41,444 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:17:41] "POST /web/dataset/call_kw/kpi.definition/name_search HTTP/1.1" 200 - 4 0.012 0.016
2026-03-06 06:18:02,872 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:18:02] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.000 50.058
2026-03-06 06:18:16,075 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:18:16] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.000 0.038
2026-03-06 06:18:33,877 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:18:33] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.005 0.021
2026-03-06 06:18:53,235 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:18:53] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.000 50.036
2026-03-06 06:19:07,085 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:19:07] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.000 0.052
2026-03-06 06:19:43,631 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:19:43] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.008 50.064
2026-03-06 06:19:58,064 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:19:58] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.009 0.028
2026-03-06 06:20:13,500 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:20:13] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.004 0.028
2026-03-06 06:20:34,035 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:20:34] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.007 50.070
2026-03-06 06:20:49,088 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:20:49] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.006 0.039
2026-03-06 06:21:13,522 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:21:13] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.002 0.037
2026-03-06 06:21:24,394 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:21:24] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.000 50.043
2026-03-06 06:21:40,066 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:21:40] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.018 0.024
2026-03-06 06:21:53,550 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:21:53] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.007 0.017
2026-03-06 06:21:54,839 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:21:54] "POST /web/action/run HTTP/1.1" 200 - 27 0.022 0.121
2026-03-06 06:21:55,242 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:21:55] "POST /web/dataset/call_kw/crm.lead/web_read_group HTTP/1.1" 200 - 6 0.028 0.047
2026-03-06 06:21:55,261 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:21:55] "POST /web/dataset/call_kw/crm.lead/read_progress_bar HTTP/1.1" 200 - 3 0.047 0.038
2026-03-06 06:21:55,743 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:21:55] "POST /web/dataset/search_read HTTP/1.1" 200 - 14 0.026 0.140
2026-03-06 06:21:56,108 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:21:56] "POST /web/dataset/call_kw/crm.stage/read HTTP/1.1" 200 - 2 0.009 0.025
2026-03-06 06:22:01,479 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:01] "POST /web/action/run HTTP/1.1" 200 - 27 0.050 0.141
2026-03-06 06:22:01,896 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:01] "POST /web/dataset/call_kw/crm.lead/web_read_group HTTP/1.1" 200 - 6 0.040 0.044
2026-03-06 06:22:01,905 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:01] "POST /web/dataset/call_kw/crm.lead/read_progress_bar HTTP/1.1" 200 - 3 0.017 0.064
2026-03-06 06:22:02,411 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:02] "POST /web/dataset/search_read HTTP/1.1" 200 - 14 0.038 0.146
2026-03-06 06:22:02,758 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:02] "POST /web/dataset/call_kw/crm.stage/read HTTP/1.1" 200 - 2 0.005 0.011
2026-03-06 06:22:03,988 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:03] "POST /web/dataset/call_kw/mail.followers/load_views HTTP/1.1" 200 - 16 0.063 0.168
2026-03-06 06:22:04,009 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:04] "POST /web/dataset/call_kw/mail.message/load_views HTTP/1.1" 200 - 8 0.066 0.137
2026-03-06 06:22:04,080 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:04] "POST /web/dataset/call_kw/mail.activity/load_views HTTP/1.1" 200 - 29 0.087 0.229
2026-03-06 06:22:04,902 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:04] "POST /web/dataset/call_kw/crm.lead/read HTTP/1.1" 200 - 67 0.154 0.333
2026-03-06 06:22:05,281 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:05] "POST /web/dataset/call_kw/mail.activity/read HTTP/1.1" 200 - 3 0.007 0.029
2026-03-06 06:22:05,335 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:05] "POST /web/dataset/call_kw/mail.followers/read HTTP/1.1" 200 - 3 0.019 0.058
2026-03-06 06:22:05,338 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:05] "POST /web/dataset/call_kw/mail.message/read HTTP/1.1" 200 - 5 0.028 0.039
2026-03-06 06:22:05,730 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:05] "POST /web/dataset/call_kw/crm.stage/search_read HTTP/1.1" 200 - 3 0.015 0.039
2026-03-06 06:22:05,730 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:05] "POST /web/dataset/call_kw/crm.team/name_search HTTP/1.1" 200 - 3 0.011 0.031
2026-03-06 06:22:06,088 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:06] "POST /web/dataset/call_kw/crm.stage/name_get HTTP/1.1" 200 - 2 0.000 0.029
2026-03-06 06:22:06,437 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:06] "GET /web/static/src/xml/ribbon.xml?debug=1772752926125 HTTP/1.1" 200 - - - -
2026-03-06 06:22:06,625 19452 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:06] "GET /partner_autocomplete/static/lib/jsvat.js HTTP/1.1" 200 - - - -
2026-03-06 06:22:07,122 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:07] "POST /web/dataset/call_kw/crm.lead/read HTTP/1.1" 200 - 4 0.025 0.132
2026-03-06 06:22:07,213 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:07] "POST /mail/thread/data HTTP/1.1" 200 - 5 0.063 0.125
2026-03-06 06:22:07,267 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:07] "POST /mail/read_followers HTTP/1.1" 200 - 17 0.191 0.102
2026-03-06 06:22:07,269 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:07] "POST /mail/get_suggested_recipients HTTP/1.1" 200 - 14 0.098 0.172
2026-03-06 06:22:07,392 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:07] "POST /web/dataset/call_kw/mail.message/message_fetch HTTP/1.1" 200 - 27 0.277 0.158
2026-03-06 06:22:07,478 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:07] "POST /web/dataset/call_kw/crm.lead/read HTTP/1.1" 200 - 4 0.002 0.031
2026-03-06 06:22:07,609 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:07] "POST /mail/read_followers HTTP/1.1" 200 - 9 0.017 0.062
2026-03-06 06:22:07,646 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:07] "POST /mail/thread/data HTTP/1.1" 200 - 3 0.006 0.031
2026-03-06 06:22:07,692 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:07] "POST /mail/get_suggested_recipients HTTP/1.1" 200 - 8 0.028 0.073
2026-03-06 06:22:07,813 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:07] "POST /web/action/load HTTP/1.1" 200 - 21 0.029 0.074
2026-03-06 06:22:07,916 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:07] "POST /web/dataset/call_kw/mail.activity/activity_format HTTP/1.1" 200 - 13 0.052 0.050
2026-03-06 06:22:07,976 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:07] "POST /web/dataset/call_kw/mail.message/mark_all_as_read HTTP/1.1" 200 - 5 0.010 0.023
2026-03-06 06:22:08,045 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:08] "POST /web/dataset/call_kw/mail.activity/activity_format HTTP/1.1" 200 - 8 0.008 0.078
2026-03-06 06:22:08,211 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:08] "GET /web/image/res.partner/3/image_128 HTTP/1.1" 200 - 5 0.012 0.046
2026-03-06 06:22:08,224 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:08] "POST /web/dataset/call_kw/crm.activity.history/load_views HTTP/1.1" 200 - 35 0.078 0.120
2026-03-06 06:22:08,644 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:08] "POST /web/dataset/search_read HTTP/1.1" 200 - 14 0.045 0.055
2026-03-06 06:22:13,371 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:13] "POST /web/dataset/call_kw/crm.activity.history/read HTTP/1.1" 200 - 8 0.017 0.094
2026-03-06 06:22:13,795 19452 INFO kanjabung_MRP odoo.http: <function odoo.addons.web_editor.controllers.main.public_render_template> called ignoring args <kwargs={'context': {'lang': 'id_ID', 'tz': 'Asia/Jakarta', 'uid': 2, 'allowed_company_ids': [1]}}>
2026-03-06 06:22:14,177 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:14] "POST /web_editor/public_render_template HTTP/1.1" 200 - 43 0.112 0.325
2026-03-06 06:22:14,558 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:14] "GET /web/content/258-de6a5e2/web_editor.assets_summernote.css HTTP/1.1" 200 - 2 0.000 0.049
2026-03-06 06:22:14,574 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:14] "GET /web/content/260-ec403c9/web_editor.assets_wysiwyg.css HTTP/1.1" 200 - 2 0.009 0.049
2026-03-06 06:22:14,574 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:14] "GET /web/content/259-de6a5e2/web_editor.assets_summernote.js HTTP/1.1" 200 - 2 0.008 0.033
2026-03-06 06:22:14,794 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:14] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.014 50.065
2026-03-06 06:22:15,153 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:15] "GET /web/content/261-ec403c9/web_editor.assets_wysiwyg.js HTTP/1.1" 200 - 2 0.002 0.023
2026-03-06 06:22:21,524 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:21] "POST /web/dataset/search_read HTTP/1.1" 200 - 9 0.037 0.079
2026-03-06 06:22:30,430 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:30] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.020 0.008
2026-03-06 06:22:32,618 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:22:32] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.000 0.029
2026-03-05 23:22:45,453 11504 INFO ? odoo: Odoo version 14.0-20231205
2026-03-05 23:22:45,453 11504 INFO ? odoo: Using configuration file at C:\addon14\odoo.conf
2026-03-05 23:22:45,453 11504 INFO ? odoo: addons paths: ['C:\\odoo14c\\server\\odoo\\addons', 'c:\\users\\sapta\\appdata\\local\\openerp s.a\\odoo\\addons\\14.0', 'c:\\odoo14c\\server\\odoo\\addons', 'c:\\addon14']
2026-03-05 23:22:45,453 11504 INFO ? odoo: database: openpg@localhost:5432
2026-03-05 23:22:45,820 11504 INFO ? odoo.addons.base.models.ir_actions_report: Will use the Wkhtmltopdf binary at C:\odoo14c\thirdparty\wkhtmltopdf.exe
2026-03-05 23:22:46,204 11504 INFO kanjabung_MRP odoo.modules.loading: loading 1 modules...
2026-03-05 23:22:46,220 11504 INFO kanjabung_MRP odoo.modules.loading: 1 modules loaded in 0.02s, 0 queries (+0 extra)
2026-03-05 23:22:46,352 11504 INFO kanjabung_MRP odoo.modules.loading: updating modules list
2026-03-05 23:22:46,358 11504 INFO kanjabung_MRP odoo.addons.base.models.ir_module: ALLOW access to module.update_list on [] to user __system__ #1 via n/a
2026-03-05 23:22:48,249 11504 INFO kanjabung_MRP odoo.addons.base.models.ir_module: ALLOW access to module.button_upgrade on ['Odoo KPI System'] to user __system__ #1 via n/a
2026-03-05 23:22:48,249 11504 INFO kanjabung_MRP odoo.addons.base.models.ir_module: ALLOW access to module.update_list on ['Odoo KPI System'] to user __system__ #1 via n/a
2026-03-05 23:22:50,406 11504 INFO kanjabung_MRP odoo.addons.base.models.ir_module: ALLOW access to module.button_install on [] to user __system__ #1 via n/a
2026-03-05 23:22:50,653 11504 INFO kanjabung_MRP odoo.modules.loading: loading 87 modules...
2026-03-05 23:22:51,006 11504 WARNING kanjabung_MRP py.warnings: C:\odoo14c\python\lib\site-packages\jinja2\sandbox.py:82: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3,and in 3.9 it will stop working
from collections import MutableSet, MutableMapping, MutableSequence
2026-03-05 23:22:51,630 11504 INFO kanjabung_MRP odoo.modules.loading: Loading module odoo_kpi (34/87)
2026-03-05 23:22:52,319 11504 INFO kanjabung_MRP odoo.modules.registry: module odoo_kpi: creating or updating database tables
2026-03-05 23:22:52,781 11504 INFO kanjabung_MRP odoo.modules.loading: loading odoo_kpi/security/kpi_security.xml
2026-03-05 23:22:53,180 11504 INFO kanjabung_MRP odoo.modules.loading: loading odoo_kpi/security/ir.model.access.csv
2026-03-05 23:22:53,584 11504 INFO kanjabung_MRP odoo.modules.loading: loading odoo_kpi/views/kpi_department_views.xml
2026-03-05 23:22:53,639 11504 INFO kanjabung_MRP odoo.modules.loading: loading odoo_kpi/views/kpi_definition_views.xml
2026-03-05 23:22:53,704 11504 INFO kanjabung_MRP odoo.modules.loading: loading odoo_kpi/views/kpi_target_views.xml
2026-03-05 23:22:53,753 11504 INFO kanjabung_MRP odoo.modules.loading: loading odoo_kpi/views/kpi_period_views.xml
2026-03-05 23:22:53,810 11504 INFO kanjabung_MRP odoo.modules.loading: loading odoo_kpi/views/kpi_assignment_views.xml
2026-03-05 23:22:53,866 11504 INFO kanjabung_MRP odoo.modules.loading: loading odoo_kpi/views/kpi_value_views.xml
2026-03-05 23:22:53,921 11504 INFO kanjabung_MRP odoo.modules.loading: loading odoo_kpi/views/kpi_score_views.xml
2026-03-05 23:22:54,044 11504 INFO kanjabung_MRP odoo.modules.loading: loading odoo_kpi/views/kpi_team_views.xml
2026-03-05 23:22:54,093 11504 INFO kanjabung_MRP odoo.modules.loading: loading odoo_kpi/views/kpi_evidence_views.xml
2026-03-05 23:22:54,140 11504 INFO kanjabung_MRP odoo.modules.loading: loading odoo_kpi/views/kpi_menu.xml
2026-03-05 23:22:54,372 11504 INFO kanjabung_MRP odoo.modules.loading: loading odoo_kpi/data/kpi_cron.xml
2026-03-05 23:22:54,403 11504 INFO kanjabung_MRP odoo.addons.base.models.ir_translation: module odoo_kpi: no translation for language id
2026-03-05 23:22:54,448 11504 INFO kanjabung_MRP odoo.modules.loading: Module odoo_kpi loaded in 2.82s, 925 queries
2026-03-06 06:22:55,102 19452 WARNING ? odoo.addons.base.models.ir_cron: Skipping database kanjabung_MRP because of modules to install/upgrade/remove.
2026-03-05 23:22:55,123 11504 WARNING kanjabung_MRP odoo.models: The model ins.general.ledger has no _description
2026-03-05 23:22:55,125 11504 WARNING kanjabung_MRP odoo.models: The model ins.partner.ledger has no _description
2026-03-05 23:22:55,125 11504 WARNING kanjabung_MRP odoo.models: The model ins.trial.balance has no _description
2026-03-05 23:22:55,125 11504 WARNING kanjabung_MRP odoo.models: The model ins.partner.ageing has no _description
2026-03-05 23:22:55,127 11504 WARNING kanjabung_MRP odoo.models: The model report.account_dynamic_reports.general_ledger has no _description
2026-03-05 23:22:55,127 11504 WARNING kanjabung_MRP odoo.models: The model report.account_dynamic_reports.partner_ledger has no _description
2026-03-05 23:22:55,127 11504 WARNING kanjabung_MRP odoo.models: The model report.account_dynamic_reports.trial_balance has no _description
2026-03-05 23:22:55,127 11504 WARNING kanjabung_MRP odoo.models: The model report.account_dynamic_reports.partner_ageing has no _description
2026-03-05 23:22:56,494 11504 INFO kanjabung_MRP odoo.modules.loading: 87 modules loaded in 5.84s, 925 queries (+0 extra)
2026-03-05 23:22:57,499 11504 WARNING kanjabung_MRP odoo.modules.loading: The model scada.health has no access rules, consider adding one. E.g. access_scada_health,access_scada_health,model_scada_health,base.group_user,1,0,0,0
2026-03-05 23:22:57,499 11504 WARNING kanjabung_MRP odoo.modules.loading: The model scada.module has no access rules, consider adding one. E.g. access_scada_module,access_scada_module,model_scada_module,base.group_user,1,0,0,0
2026-03-05 23:22:57,499 11504 WARNING kanjabung_MRP odoo.modules.loading: The model scada.mo.data has no access rules, consider adding one. E.g. access_scada_mo_data,access_scada_mo_data,model_scada_mo_data,base.group_user,1,0,0,0
2026-03-05 23:22:57,500 11504 WARNING kanjabung_MRP odoo.modules.loading: The model scada.material.consumption has no access rules, consider adding one. E.g. access_scada_material_consumption,access_scada_material_consumption,model_scada_material_consumption,base.group_user,1,0,0,0
2026-03-05 23:22:58,624 11504 INFO kanjabung_MRP odoo.modules.loading: Modules loaded.
2026-03-05 23:22:58,624 11504 INFO kanjabung_MRP odoo.service.server: Initiating shutdown
2026-03-05 23:22:58,624 11504 INFO kanjabung_MRP odoo.service.server: Hit CTRL-C again or send a second signal to force the shutdown.
2026-03-05 23:22:58,624 11504 INFO kanjabung_MRP odoo.sql_db: ConnectionPool(used=0/count=0/max=64): Closed 1 connections
2026-03-06 06:23:04,966 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:23:04] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.004 50.036
2026-03-06 06:23:21,050 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:23:21] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.007 0.024
2026-03-06 06:23:33,614 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:23:33] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.002 0.015
2026-03-06 06:23:55,344 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:23:55] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.010 50.043
2026-03-06 06:24:12,054 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:24:12] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.004 0.024
2026-03-06 06:24:45,683 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:24:45] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.003 50.019
2026-03-06 06:25:03,036 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:25:03] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.001 0.021
2026-03-06 06:25:13,318 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:25:13] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.001 0.013
2026-03-06 06:25:36,050 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:25:36] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.007 50.037
2026-03-06 06:25:54,037 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:25:54] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.003 0.022
2026-03-06 06:26:13,324 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:26:13] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.002 0.011
2026-03-06 06:26:26,391 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:26:26] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.007 50.018
2026-03-06 06:26:45,040 19452 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:26:45] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.009 0.008
2026-03-06 06:27:12,055 10572 INFO ? odoo: Odoo version 14.0-20231205
2026-03-06 06:27:12,055 10572 INFO ? odoo: Using configuration file at C:\addon14\odoo.conf
2026-03-06 06:27:12,056 10572 INFO ? odoo: addons paths: ['C:\\odoo14c\\server\\odoo\\addons', 'c:\\users\\sapta\\appdata\\local\\openerp s.a\\odoo\\addons\\14.0', 'c:\\odoo14c\\server\\odoo\\addons', 'c:\\addon14']
2026-03-06 06:27:12,056 10572 INFO ? odoo: database: openpg@localhost:5432
2026-03-06 06:27:12,516 10572 INFO ? odoo.addons.base.models.ir_actions_report: Will use the Wkhtmltopdf binary at C:\odoo14c\thirdparty\wkhtmltopdf.exe
2026-03-06 06:27:12,717 10572 INFO ? odoo.service.server: HTTP service (werkzeug) running on ThinkpadSaptadi:8070
2026-03-06 06:27:12,761 10572 INFO kanjabung_MRP odoo.modules.loading: loading 1 modules...
2026-03-06 06:27:12,781 10572 INFO kanjabung_MRP odoo.modules.loading: 1 modules loaded in 0.02s, 0 queries (+0 extra)
2026-03-06 06:27:12,871 10572 INFO kanjabung_MRP odoo.modules.loading: loading 87 modules...
2026-03-06 06:27:13,052 10572 WARNING kanjabung_MRP py.warnings: C:\odoo14c\python\lib\site-packages\jinja2\sandbox.py:82: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3,and in 3.9 it will stop working
from collections import MutableSet, MutableMapping, MutableSequence
2026-03-06 06:27:13,757 10572 WARNING kanjabung_MRP odoo.models: The model ins.general.ledger has no _description
2026-03-06 06:27:13,757 10572 WARNING kanjabung_MRP odoo.models: The model ins.partner.ledger has no _description
2026-03-06 06:27:13,757 10572 WARNING kanjabung_MRP odoo.models: The model ins.trial.balance has no _description
2026-03-06 06:27:13,757 10572 WARNING kanjabung_MRP odoo.models: The model ins.partner.ageing has no _description
2026-03-06 06:27:13,758 10572 WARNING kanjabung_MRP odoo.models: The model report.account_dynamic_reports.general_ledger has no _description
2026-03-06 06:27:13,759 10572 WARNING kanjabung_MRP odoo.models: The model report.account_dynamic_reports.partner_ledger has no _description
2026-03-06 06:27:13,759 10572 WARNING kanjabung_MRP odoo.models: The model report.account_dynamic_reports.trial_balance has no _description
2026-03-06 06:27:13,759 10572 WARNING kanjabung_MRP odoo.models: The model report.account_dynamic_reports.partner_ageing has no _description
2026-03-06 06:27:14,467 10572 INFO kanjabung_MRP odoo.modules.loading: 87 modules loaded in 1.60s, 0 queries (+0 extra)
2026-03-06 06:27:15,661 10572 INFO kanjabung_MRP odoo.modules.loading: Modules loaded.
2026-03-06 06:27:15,825 10572 INFO ? odoo.http: HTTP Configuring static files
2026-03-06 06:27:15,841 10572 INFO kanjabung_MRP odoo.addons.base.models.ir_http: Generating routing map for key None
2026-03-06 06:27:16,194 10572 INFO kanjabung_MRP odoo.addons.base.models.ir_http: Generating routing map for key None
2026-03-06 06:27:17,976 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:17] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 6 0.103 1.791
2026-03-06 06:27:17,993 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:17] "GET /web/static/src/img/spin.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:18,050 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:18] "POST /web/action/load HTTP/1.1" 200 - 32 0.092 2.117
2026-03-06 06:27:18,551 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:18] "POST /web/dataset/call_kw/ir.module.module/load_views HTTP/1.1" 200 - 79 0.108 0.075
2026-03-06 06:27:18,691 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:18] "POST /web/dataset/call_kw/ir.module.module/search_panel_select_range HTTP/1.1" 200 - 46 0.006 0.050
2026-03-06 06:27:18,882 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:18] "POST /web/dataset/search_read HTTP/1.1" 200 - 4 0.000 0.014
2026-03-06 06:27:19,019 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:19] "GET /base_territory/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:19,246 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:19] "GET /base/static/img/icons/web_studio.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:19,246 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:19] "GET /purchase/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:19,268 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:19] "GET /hr/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:19,270 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:19] "GET /point_of_sale/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:19,273 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:19] "GET /stock/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:19,332 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:19] "GET /hr_expense/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:19,563 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:19] "GET /account_dynamic_reports/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:19,563 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:19] "GET /mrp/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:19,585 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:19] "GET /base/static/img/icons/mrp_workorder.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:19,589 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:19] "GET /mass_mailing/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:19,591 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:19] "GET /project/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:19,649 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:19] "GET /base/static/img/icons/timesheet_grid.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:19,886 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:19] "GET /website/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:19,889 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:19] "GET /website_sale/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:19,894 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:19] "GET /hr_holidays/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:19,900 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:19] "GET /hr_recruitment/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:19,900 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:19] "GET /abs_project_task_template/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:19,969 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:19] "GET /bi_project_template/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:20,205 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:20] "GET /abs_meeting_from_task/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:20,206 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:20] "GET /base/static/img/icons/account_accountant.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:20,214 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:20] "GET /fl_quick_task/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:20,219 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:20] "GET /odoo_traccar_tracking/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:20,222 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:20] "GET /om_account_accountant/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:20,285 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:20] "GET /sale_management/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:20,516 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:20] "GET /account/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:20,516 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:20] "GET /foss_project_tags/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:20,532 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:20] "GET /bt_asset_management/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:20,532 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:20] "GET /fieldservice/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:20,532 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:20] "GET /garazd_product_label/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:20,602 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:20] "GET /base/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:20,847 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:20] "GET /knowledge/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:20,853 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:20] "GET /maintenance/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:20,857 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:20] "GET /odoo_web_login/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:20,861 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:20] "GET /scrum_agile_framework/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:20,862 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:20] "GET /support_package/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:20,917 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:20] "GET /task_pomodoro/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:21,162 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:21] "GET /base/static/img/icons/sign.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:21,176 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:21] "GET /base/static/img/icons/helpdesk.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:21,180 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:21] "GET /base/static/img/icons/sale_subscription.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:21,180 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:21] "GET /base/static/img/icons/quality_control.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:21,180 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:21] "GET /website_slides/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:21,230 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:21] "GET /base/static/img/icons/planning.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:21,482 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:21] "GET /website_event/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:21,482 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:21] "GET /mail/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:21,498 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:21] "GET /contacts/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:21,499 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:21] "GET /base/static/img/icons/mrp_plm.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:21,499 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:21] "GET /calendar/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:21,546 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:21] "GET /base/static/img/icons/hr_appraisal.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:21,815 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:21] "GET /fleet/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:21,821 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:21] "GET /base/static/img/icons/marketing_automation.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:21,826 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:21] "GET /website_blog/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:21,830 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:21] "GET /im_livechat/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:21,833 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:21] "GET /base/static/img/icons/website_calendar.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:21,873 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:21] "GET /survey/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:22,123 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:22] "GET /base/static/img/icons/web_mobile.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:22,133 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:22] "GET /board/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:22,133 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:22] "GET /repair/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:22,147 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:22] "GET /hr_attendance/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:22,148 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:22] "GET /mass_mailing_sms/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:22,186 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:22] "GET /base/static/img/icons/stock_barcode.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:22,464 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:22] "GET /note/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:22,464 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:22] "GET /website_forum/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:22,482 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:22] "GET /hr_skills/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:22,482 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:22] "GET /base/static/img/icons/voip.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:22,499 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:22] "GET /lunch/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:22,537 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:22] "POST /web/dataset/call_kw/ir.module.module/search_panel_select_range HTTP/1.1" 200 - 42 0.036 0.053
2026-03-06 06:27:22,791 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:22] "GET /website_hr_recruitment/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:22,801 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:22] "POST /web/dataset/search_read HTTP/1.1" 200 - 3 0.005 0.010
2026-03-06 06:27:22,805 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:22] "GET /base/static/img/icons/sale_ebay.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:22,807 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:22] "GET /payment_adyen/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:22,815 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:22] "GET /payment_alipay/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:22,851 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:22] "GET /payment_authorize/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:23,107 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:23] "GET /payment_buckaroo/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:23,107 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:23] "GET /payment_ingenico/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:23,123 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:23] "GET /payment_paypal/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:23,123 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:23] "GET /payment_payumoney/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:25,663 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:25] "POST /web/dataset/call_kw/ir.module.module/search_panel_select_range HTTP/1.1" 200 - 42 0.040 0.039
2026-03-06 06:27:25,863 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:25] "POST /web/dataset/search_read HTTP/1.1" 200 - 3 0.006 0.011
2026-03-06 06:27:25,982 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:25] "GET /website_crm/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:26,195 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:26] "GET /website_crm_partner_assign/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:33,077 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:33] "POST /web/dataset/call_kw/ir.module.module/read HTTP/1.1" 200 - 16 0.018 0.162
2026-03-06 06:27:33,412 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:33] "POST /web/dataset/call_kw/ir.module.module.dependency/read HTTP/1.1" 200 - 4 0.002 0.011
2026-03-06 06:27:33,671 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:33] "POST /web/dataset/call_kw/ir.module.category/name_search HTTP/1.1" 200 - 3 0.002 0.013
2026-03-06 06:27:33,734 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:33] "GET /base/static/src/css/description.css HTTP/1.1" 304 - - - -
2026-03-06 06:27:34,021 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:34] "GET /web/image?model=ir.module.module&id=402&field=icon_image&unique=06032026055924 HTTP/1.1" 200 - 3 0.004 0.020
2026-03-06 06:27:34,040 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:34] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.004 0.013
2026-03-06 06:27:35,430 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:35] "POST /longpolling/im_status HTTP/1.1" 200 - 16 0.032 0.034
2026-03-06 06:27:35,612 10572 INFO kanjabung_MRP odoo.addons.base.models.ir_module: ALLOW access to module.button_immediate_upgrade on ['GRT CRM Business Category'] to user admin #2 via 127.0.0.1
2026-03-06 06:27:35,612 10572 INFO kanjabung_MRP odoo.addons.base.models.ir_module: ALLOW access to module.button_upgrade on ['GRT CRM Business Category'] to user admin #2 via 127.0.0.1
2026-03-06 06:27:35,612 10572 INFO kanjabung_MRP odoo.addons.base.models.ir_module: ALLOW access to module.update_list on ['GRT CRM Business Category'] to user admin #2 via 127.0.0.1
2026-03-06 06:27:35,708 10572 INFO ? odoo.addons.bus.models.bus: Bus.loop listen imbus on db postgres
2026-03-06 06:27:37,421 10572 INFO kanjabung_MRP odoo.addons.base.models.ir_module: ALLOW access to module.button_install on [] to user admin #2 via 127.0.0.1
2026-03-06 06:27:37,494 10572 INFO kanjabung_MRP odoo.modules.loading: loading 1 modules...
2026-03-06 06:27:37,513 10572 INFO kanjabung_MRP odoo.modules.loading: 1 modules loaded in 0.02s, 0 queries (+0 extra)
2026-03-06 06:27:37,659 10572 INFO kanjabung_MRP odoo.modules.loading: updating modules list
2026-03-06 06:27:37,659 10572 INFO kanjabung_MRP odoo.addons.base.models.ir_module: ALLOW access to module.update_list on [] to user __system__ #1 via 127.0.0.1
2026-03-06 06:27:38,300 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:38] "GET /web/static/src/img/spin.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:39,498 10572 INFO kanjabung_MRP odoo.modules.loading: loading 87 modules...
2026-03-06 06:27:39,642 10572 WARNING kanjabung_MRP odoo.models: The model ins.general.ledger has no _description
2026-03-06 06:27:39,642 10572 WARNING kanjabung_MRP odoo.models: The model ins.partner.ledger has no _description
2026-03-06 06:27:39,642 10572 WARNING kanjabung_MRP odoo.models: The model ins.trial.balance has no _description
2026-03-06 06:27:39,642 10572 WARNING kanjabung_MRP odoo.models: The model ins.partner.ageing has no _description
2026-03-06 06:27:39,642 10572 WARNING kanjabung_MRP odoo.models: The model report.account_dynamic_reports.general_ledger has no _description
2026-03-06 06:27:39,642 10572 WARNING kanjabung_MRP odoo.models: The model report.account_dynamic_reports.partner_ledger has no _description
2026-03-06 06:27:39,642 10572 WARNING kanjabung_MRP odoo.models: The model report.account_dynamic_reports.trial_balance has no _description
2026-03-06 06:27:39,642 10572 WARNING kanjabung_MRP odoo.models: The model report.account_dynamic_reports.partner_ageing has no _description
2026-03-06 06:27:39,642 10572 INFO kanjabung_MRP odoo.modules.loading: Loading module grt_crm_business_category (51/87)
2026-03-06 06:27:40,369 10572 INFO kanjabung_MRP odoo.modules.registry: module grt_crm_business_category: creating or updating database tables
2026-03-06 06:27:40,564 10572 INFO kanjabung_MRP odoo.schema: Table 'crm_team': unable to set NOT NULL on column 'business_category_id'
2026-03-06 06:27:41,110 10572 INFO kanjabung_MRP odoo.modules.loading: loading grt_crm_business_category/security/ir.model.access.csv
2026-03-06 06:27:41,186 10572 INFO kanjabung_MRP odoo.modules.loading: loading grt_crm_business_category/security/ir.rule.csv
2026-03-06 06:27:41,312 10572 INFO kanjabung_MRP odoo.modules.loading: loading grt_crm_business_category/data/crm_business_category_data.xml
2026-03-06 06:27:41,322 10572 INFO kanjabung_MRP odoo.modules.loading: loading grt_crm_business_category/views/assets.xml
2026-03-06 06:27:41,371 10572 INFO kanjabung_MRP odoo.modules.loading: loading grt_crm_business_category/views/crm_activity_history_views.xml
2026-03-06 06:27:41,491 10572 INFO kanjabung_MRP odoo.modules.loading: loading grt_crm_business_category/views/crm_business_category_views.xml
2026-03-06 06:27:41,527 10572 INFO kanjabung_MRP odoo.modules.loading: loading grt_crm_business_category/views/crm_lead_views.xml
2026-03-06 06:27:41,666 10572 INFO kanjabung_MRP odoo.modules.loading: loading grt_crm_business_category/views/crm_team_views.xml
2026-03-06 06:27:41,793 10572 INFO kanjabung_MRP odoo.modules.loading: loading grt_crm_business_category/views/crm_team_business_category_views.xml
2026-03-06 06:27:41,862 10572 INFO kanjabung_MRP odoo.modules.loading: loading grt_crm_business_category/views/mail_activity_views.xml
2026-03-06 06:27:41,919 10572 INFO kanjabung_MRP odoo.modules.loading: loading grt_crm_business_category/views/res_users_business_category_views.xml
2026-03-06 06:27:42,027 10572 INFO kanjabung_MRP odoo.addons.base.models.ir_translation: module grt_crm_business_category: no translation for language id
2026-03-06 06:27:42,065 10572 INFO kanjabung_MRP odoo.modules.loading: Module grt_crm_business_category loaded in 2.42s, 635 queries
2026-03-06 06:27:42,126 10572 INFO kanjabung_MRP odoo.modules.loading: 87 modules loaded in 2.63s, 635 queries (+0 extra)
2026-03-06 06:27:42,424 10572 WARNING kanjabung_MRP odoo.schema: Table 'crm_team': unable to set NOT NULL on column 'business_category_id'
2026-03-06 06:27:42,425 10572 WARNING kanjabung_MRP odoo.modules.loading: The model scada.health has no access rules, consider adding one. E.g. access_scada_health,access_scada_health,model_scada_health,base.group_user,1,0,0,0
2026-03-06 06:27:42,426 10572 WARNING kanjabung_MRP odoo.modules.loading: The model scada.module has no access rules, consider adding one. E.g. access_scada_module,access_scada_module,model_scada_module,base.group_user,1,0,0,0
2026-03-06 06:27:42,426 10572 WARNING kanjabung_MRP odoo.modules.loading: The model scada.mo.data has no access rules, consider adding one. E.g. access_scada_mo_data,access_scada_mo_data,model_scada_mo_data,base.group_user,1,0,0,0
2026-03-06 06:27:42,426 10572 WARNING kanjabung_MRP odoo.modules.loading: The model scada.material.consumption has no access rules, consider adding one. E.g. access_scada_material_consumption,access_scada_material_consumption,model_scada_material_consumption,base.group_user,1,0,0,0
2026-03-06 06:27:42,642 10572 INFO kanjabung_MRP odoo.modules.registry: verifying fields for every extended model
2026-03-06 06:27:42,761 10572 ERROR kanjabung_MRP odoo.schema: Table 'crm_team': unable to set NOT NULL on column 'business_category_id'
2026-03-06 06:27:42,775 10572 INFO kanjabung_MRP odoo.modules.registry: Models have no table: scada.module, scada.health.
2026-03-06 06:27:42,775 10572 INFO kanjabung_MRP odoo.modules.registry: Recreate table of model scada.module.
2026-03-06 06:27:42,775 10572 INFO kanjabung_MRP odoo.modules.registry: Recreate table of model scada.health.
2026-03-06 06:27:42,777 10572 ERROR kanjabung_MRP odoo.modules.registry: Model scada.module has no table.
2026-03-06 06:27:42,777 10572 ERROR kanjabung_MRP odoo.modules.registry: Model scada.health has no table.
2026-03-06 06:27:43,292 10572 INFO kanjabung_MRP odoo.modules.loading: Modules loaded.
2026-03-06 06:27:43,310 10572 INFO kanjabung_MRP odoo.addons.base.models.ir_module: getting next ir.actions.todo()
2026-03-06 06:27:43,324 10572 INFO kanjabung_MRP odoo.modules.registry: Registry changed, signaling through the database
2026-03-06 06:27:43,324 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:43] "POST /web/dataset/call_button HTTP/1.1" 200 - 3771 2.012 5.713
2026-03-06 06:27:43,646 10572 INFO kanjabung_MRP odoo.addons.base.models.ir_http: Generating routing map for key None
2026-03-06 06:27:45,893 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:45] "GET /web HTTP/1.1" 200 - 677 0.461 1.786
2026-03-06 06:27:46,277 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:46] "GET /web/content/253-40402f3/web.assets_common.css HTTP/1.1" 200 - 2 0.004 0.042
2026-03-06 06:27:46,380 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:46] "GET /web/content/255-40402f3/web.assets_common.js HTTP/1.1" 304 - 2 0.000 0.135
2026-03-06 06:27:46,380 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:46] "GET /web/content/254-240b7d8/web.assets_backend.css HTTP/1.1" 200 - 2 0.021 0.123
2026-03-06 06:27:46,380 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:46] "GET /web/content/257-b4d6493/web.assets_backend_prod_only.js HTTP/1.1" 304 - 2 0.021 0.100
2026-03-06 06:27:46,380 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:46] "GET /web/webclient/load_menus/98685199286b7997bfa2e759c6da128839524087a81bceeb7cbde1a1a073b185 HTTP/1.1" 200 - 1 0.001 0.119
2026-03-06 06:27:46,397 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:46] "GET /web/content/256-240b7d8/web.assets_backend.js HTTP/1.1" 304 - 2 0.009 0.135
2026-03-06 06:27:46,833 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:46] "GET /web/webclient/qweb/6d03d6361c541da8318a8d024f5bad5537bfebff4a21d6e533a8a8f29caf35c0?mods=base,web,base_setup,bus,web_tour,mail,product,web_editor,http_routing,auth_signup,portal,resource,digest,account,accounting_pdf_reports,om_account_asset,om_account_budget,om_account_bank_statement_import,om_account_accountant,sales_team,payment,utm,sale,sale_management,account_dynamic_reports,calendar,contacts,crm,barcodes,stock,purchase,mrp,hr,hr_contract,hr_expense,grt_scada,maintenance,purchase_stock,auth_totp,auth_totp_portal,base_iban,base_import,crm_iap_lead,grt_crm_business_category,hr_org_chart,iap,l10n_id,mail_bot,partner_autocomplete,payment_transfer,sale_expense,sale_stock,sms,snailmail,snailmail_account,web_kanban_gauge,web_unsplash HTTP/1.1" 200 - 1 0.002 0.057
2026-03-06 06:27:47,168 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:47] "GET /web/webclient/translations/745ce24ffe3acf4ad2cdb8ceb36272b8576d874f?mods=base%2Cweb%2Cbase_setup%2Cbus%2Cweb_tour%2Cmail%2Cproduct%2Cweb_editor%2Chttp_routing%2Cauth_signup%2Cportal%2Cresource%2Cdigest%2Caccount%2Caccounting_pdf_reports%2Com_account_asset%2Com_account_budget%2Com_account_bank_statement_import%2Com_account_accountant%2Csales_team%2Cpayment%2Cutm%2Csale%2Csale_management%2Caccount_dynamic_reports%2Ccalendar%2Ccontacts%2Ccrm%2Cbarcodes%2Cstock%2Cpurchase%2Cmrp%2Chr%2Chr_contract%2Chr_expense%2Cgrt_scada%2Cmaintenance%2Cpurchase_stock%2Cauth_totp%2Cauth_totp_portal%2Cbase_iban%2Cbase_import%2Ccrm_iap_lead%2Cgrt_crm_business_category%2Chr_org_chart%2Ciap%2Cl10n_id%2Cmail_bot%2Cpartner_autocomplete%2Cpayment_transfer%2Csale_expense%2Csale_stock%2Csms%2Csnailmail%2Csnailmail_account%2Cweb_kanban_gauge%2Cweb_unsplash&lang=id_ID HTTP/1.1" 200 - 5 0.011 0.125
2026-03-06 06:27:47,184 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:47] "GET /web/webclient/locale/id_ID HTTP/1.1" 200 - 1 0.000 0.016
2026-03-06 06:27:47,513 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:47] "GET /web/static/lib/fontawesome/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/1.1" 304 - - - -
2026-03-06 06:27:47,562 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:47] "GET /web/static/src/xml/debug.xml?debug=1772753267226 HTTP/1.1" 200 - - - -
2026-03-06 06:27:48,295 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:48] "GET /web/image?model=res.users&field=image_128&id=2 HTTP/1.1" 304 - 17 0.470 0.262
2026-03-06 06:27:48,421 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:48] "POST /web/dataset/call_kw/ir.rule/check_access_rights HTTP/1.1" 200 - 1 0.016 0.360
2026-03-06 06:27:48,421 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:48] "POST /web/dataset/call_kw/ir.model.access/check_access_rights HTTP/1.1" 200 - 1 0.025 0.144
2026-03-06 06:27:48,421 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:48] "POST /web/dataset/call_kw/res.users/systray_get_activities HTTP/1.1" 200 - 21 0.680 0.188
2026-03-06 06:27:48,499 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:48] "POST /mail/init_messaging HTTP/1.1" 200 - 80 0.870 0.107
2026-03-06 06:27:48,675 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:48] "POST /web/dataset/call_kw/ir.ui.view/check_access_rights HTTP/1.1" 200 - 2 0.008 0.007
2026-03-06 06:27:48,777 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:48] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.000 0.016
2026-03-06 06:27:48,822 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:48] "POST /web/dataset/call_kw/res.users/read HTTP/1.1" 200 - 2 0.001 0.008
2026-03-06 06:27:49,027 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:49] "POST /web/action/load HTTP/1.1" 200 - 9 0.017 0.016
2026-03-06 06:27:49,166 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:49] "POST /calendar/notify HTTP/1.1" 200 - 3 0.009 0.009
2026-03-06 06:27:49,232 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:49] "POST /web/dataset/call_kw/mail.message/load_views HTTP/1.1" 200 - 27 0.049 0.033
2026-03-06 06:27:49,374 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:49] "POST /web/dataset/call_kw/mail.message/message_fetch HTTP/1.1" 200 - 9 0.016 0.014
2026-03-06 06:27:49,615 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:49] "GET /crm/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:27:49,623 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:49] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 4 0.009 0.017
2026-03-06 06:27:51,114 10572 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:51] "GET /web_tour/static/src/xml/tip.xml?debug=1772753270791 HTTP/1.1" 200 - - - -
2026-03-06 06:27:53,470 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:53] "POST /web/action/load HTTP/1.1" 200 - 13 0.009 0.029
2026-03-06 06:27:53,811 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:53] "POST /web/dataset/call_kw/kpi.department/load_views HTTP/1.1" 200 - 21 0.001 0.031
2026-03-06 06:27:54,154 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:54] "POST /web/dataset/search_read HTTP/1.1" 200 - 3 0.007 0.005
2026-03-06 06:27:54,476 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:27:54] "POST /web/dataset/call_kw/res.users/has_group HTTP/1.1" 200 - 2 0.000 0.000
2026-03-06 06:28:25,708 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:28:25] "POST /longpolling/poll HTTP/1.1" 200 - 19 0.032 50.036
2026-03-06 06:28:38,436 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:28:38] "POST /longpolling/poll HTTP/1.1" 200 - 18 0.066 50.827
2026-03-06 06:28:39,032 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:28:39] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.000 0.016
2026-03-06 06:28:47,836 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:28:47] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.000 0.000
2026-03-06 06:29:28,802 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:29:28] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.002 50.035
2026-03-06 06:29:30,042 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:29:30] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.010 0.006
2026-03-06 06:29:48,315 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:29:48] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.000 0.000
2026-03-06 06:30:19,155 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:30:19] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.000 50.025
2026-03-06 06:30:21,033 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:30:21] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.012 0.000
2026-03-06 06:30:48,821 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:30:48] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.000 0.000
2026-03-06 06:31:09,503 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:31:09] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.000 50.033
2026-03-06 06:31:12,037 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:31:12] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.000 0.016
2026-03-06 06:31:49,681 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:31:49] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.000 0.016
2026-03-06 06:31:59,851 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:31:59] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.016 50.018
2026-03-06 06:32:03,048 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:32:03] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.001 0.015
2026-03-06 06:32:48,189 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:32:48] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.000 0.016
2026-03-06 06:32:50,205 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:32:50] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.000 50.025
2026-03-06 06:32:54,037 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:32:54] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.016 0.000
2026-03-06 06:33:40,549 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:33:40] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.002 50.024
2026-03-06 06:33:45,048 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:33:45] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.003 0.013
2026-03-06 06:33:49,500 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:33:49] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.002 0.012
2026-03-06 06:34:30,901 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:34:30] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.010 50.024
2026-03-06 06:34:36,043 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:34:36] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.000 0.012
2026-03-06 06:35:15,362 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:35:15] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.000 0.016
2026-03-06 06:35:21,252 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:35:21] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.004 50.016
2026-03-06 06:35:27,032 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:35:27] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.016 0.000
2026-03-06 06:36:11,593 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:36:11] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.000 50.024
2026-03-06 06:36:16,147 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:36:16] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.001 0.018
2026-03-06 06:36:18,355 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:36:18] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.003 0.022
2026-03-06 06:37:01,956 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:37:01] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.016 50.034
2026-03-06 06:37:09,040 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:37:09] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.001 0.016
2026-03-06 06:37:13,387 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:37:13] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.006 0.007
2026-03-06 06:37:52,315 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:37:52] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.007 50.032
2026-03-06 06:38:00,035 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:38:00] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.000 0.016
2026-03-06 06:38:13,208 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:38:13] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.000 0.000
2026-03-06 06:38:42,647 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:38:42] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.000 50.019
2026-03-06 06:38:51,046 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:38:51] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.002 0.015
2026-03-06 06:39:13,399 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:39:13] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.000 0.020
2026-03-06 06:39:32,976 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:39:32] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.000 50.020
2026-03-06 06:39:42,037 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:39:42] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.003 0.014
2026-03-06 06:40:15,397 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:40:15] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.001 0.011
2026-03-06 06:40:23,315 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:40:23] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.001 50.027
2026-03-06 06:40:33,032 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:40:33] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.015 0.005
2026-03-06 06:41:13,654 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:41:13] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.004 50.020
2026-03-06 06:41:13,708 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:41:13] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.000 0.000
2026-03-06 06:41:24,360 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:41:24] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.003 0.014
2026-03-06 06:42:04,007 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:42:04] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.006 50.025
2026-03-06 06:42:14,649 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:42:14] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.002 0.012
2026-03-06 06:42:15,341 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:42:15] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.001 0.023
2026-03-06 06:42:48,274 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:42:48] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.000 0.016
2026-03-06 06:42:54,353 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:42:54] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.003 50.023
2026-03-06 06:43:06,045 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:43:06] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.013 0.004
2026-03-06 06:43:44,700 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:43:44] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.006 50.024
2026-03-06 06:43:57,041 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:43:57] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.001 0.020
2026-03-06 06:44:15,436 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:44:15] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.001 0.011
2026-03-06 06:44:35,052 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:44:35] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.002 50.035
2026-03-06 06:44:48,030 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:44:48] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.002 0.012
2026-03-06 06:45:13,444 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:45:13] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.001 0.006
2026-03-06 06:45:25,394 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:45:25] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.002 50.025
2026-03-06 06:45:39,045 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:45:39] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.001 0.020
2026-03-06 06:46:13,753 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:46:13] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.000 0.020
2026-03-06 06:46:15,739 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:46:15] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.004 50.025
2026-03-06 06:46:29,072 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:46:29] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.004 0.014
2026-03-06 06:46:49,830 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:46:49] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.000 0.013
2026-03-06 06:47:06,083 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:47:06] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.005 50.026
2026-03-06 06:47:20,044 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:47:20] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.004 0.012
2026-03-05 23:47:29,126 22400 INFO ? odoo: Odoo version 14.0-20231205
2026-03-05 23:47:29,126 22400 INFO ? odoo: Using configuration file at C:\addon14\odoo.conf
2026-03-05 23:47:29,126 22400 INFO ? odoo: addons paths: ['C:\\odoo14c\\server\\odoo\\addons', 'c:\\users\\sapta\\appdata\\local\\openerp s.a\\odoo\\addons\\14.0', 'c:\\odoo14c\\server\\odoo\\addons', 'c:\\addon14']
2026-03-05 23:47:29,126 22400 INFO ? odoo: database: openpg@localhost:5432
2026-03-05 23:47:29,356 22400 INFO ? odoo.addons.base.models.ir_actions_report: Will use the Wkhtmltopdf binary at C:\odoo14c\thirdparty\wkhtmltopdf.exe
2026-03-05 23:47:29,542 22400 INFO kanjabung_MRP odoo.modules.loading: loading 1 modules...
2026-03-05 23:47:29,559 22400 INFO kanjabung_MRP odoo.modules.loading: 1 modules loaded in 0.02s, 0 queries (+0 extra)
2026-03-05 23:47:29,642 22400 INFO kanjabung_MRP odoo.modules.loading: updating modules list
2026-03-05 23:47:29,646 22400 INFO kanjabung_MRP odoo.addons.base.models.ir_module: ALLOW access to module.update_list on [] to user __system__ #1 via n/a
2026-03-05 23:47:30,591 22400 INFO kanjabung_MRP odoo.addons.base.models.ir_module: ALLOW access to module.button_install on ['Odoo KPI CRM Trigger'] to user __system__ #1 via n/a
2026-03-05 23:47:30,709 22400 INFO kanjabung_MRP odoo.modules.loading: loading 87 modules...
2026-03-05 23:47:30,840 22400 WARNING kanjabung_MRP py.warnings: C:\odoo14c\python\lib\site-packages\jinja2\sandbox.py:82: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3,and in 3.9 it will stop working
from collections import MutableSet, MutableMapping, MutableSequence
2026-03-05 23:47:31,288 22400 WARNING kanjabung_MRP odoo.models: The model ins.general.ledger has no _description
2026-03-05 23:47:31,289 22400 WARNING kanjabung_MRP odoo.models: The model ins.partner.ledger has no _description
2026-03-05 23:47:31,289 22400 WARNING kanjabung_MRP odoo.models: The model ins.trial.balance has no _description
2026-03-05 23:47:31,289 22400 WARNING kanjabung_MRP odoo.models: The model ins.partner.ageing has no _description
2026-03-05 23:47:31,289 22400 WARNING kanjabung_MRP odoo.models: The model report.account_dynamic_reports.general_ledger has no _description
2026-03-05 23:47:31,289 22400 WARNING kanjabung_MRP odoo.models: The model report.account_dynamic_reports.partner_ledger has no _description
2026-03-05 23:47:31,289 22400 WARNING kanjabung_MRP odoo.models: The model report.account_dynamic_reports.trial_balance has no _description
2026-03-05 23:47:31,290 22400 WARNING kanjabung_MRP odoo.models: The model report.account_dynamic_reports.partner_ageing has no _description
2026-03-05 23:47:31,784 22400 INFO kanjabung_MRP odoo.modules.loading: 87 modules loaded in 1.08s, 0 queries (+0 extra)
2026-03-05 23:47:31,788 22400 INFO kanjabung_MRP odoo.modules.loading: loading 88 modules...
2026-03-05 23:47:31,788 22400 INFO kanjabung_MRP odoo.modules.loading: Loading module odoo_kpi_crm_trigger (73/88)
2026-03-05 23:47:32,375 22400 INFO kanjabung_MRP odoo.modules.registry: module odoo_kpi_crm_trigger: creating or updating database tables
2026-03-05 23:47:32,677 22400 INFO kanjabung_MRP odoo.modules.registry: Models have no table: scada.health, scada.module.
2026-03-05 23:47:32,677 22400 INFO kanjabung_MRP odoo.modules.registry: Recreate table of model scada.health.
2026-03-05 23:47:32,677 22400 INFO kanjabung_MRP odoo.modules.registry: Recreate table of model scada.module.
2026-03-05 23:47:32,677 22400 ERROR kanjabung_MRP odoo.modules.registry: Model scada.module has no table.
2026-03-05 23:47:32,677 22400 ERROR kanjabung_MRP odoo.modules.registry: Model scada.health has no table.
2026-03-05 23:47:32,724 22400 INFO kanjabung_MRP odoo.modules.loading: loading odoo_kpi_crm_trigger/security/ir.model.access.csv
2026-03-05 23:47:32,757 22400 INFO kanjabung_MRP odoo.modules.loading: loading odoo_kpi_crm_trigger/views/kpi_crm_trigger_rule_views.xml
2026-03-05 23:47:32,831 22400 INFO kanjabung_MRP odoo.addons.base.models.ir_translation: module odoo_kpi_crm_trigger: no translation for language id
2026-03-05 23:47:32,841 22400 INFO kanjabung_MRP odoo.modules.loading: Module odoo_kpi_crm_trigger loaded in 1.05s, 207 queries
2026-03-05 23:47:32,841 22400 INFO kanjabung_MRP odoo.modules.loading: 88 modules loaded in 1.05s, 207 queries (+0 extra)
2026-03-05 23:47:32,945 22400 WARNING kanjabung_MRP odoo.modules.loading: The model scada.health has no access rules, consider adding one. E.g. access_scada_health,access_scada_health,model_scada_health,base.group_user,1,0,0,0
2026-03-05 23:47:32,945 22400 WARNING kanjabung_MRP odoo.modules.loading: The model scada.module has no access rules, consider adding one. E.g. access_scada_module,access_scada_module,model_scada_module,base.group_user,1,0,0,0
2026-03-05 23:47:32,945 22400 WARNING kanjabung_MRP odoo.modules.loading: The model scada.mo.data has no access rules, consider adding one. E.g. access_scada_mo_data,access_scada_mo_data,model_scada_mo_data,base.group_user,1,0,0,0
2026-03-05 23:47:32,945 22400 WARNING kanjabung_MRP odoo.modules.loading: The model scada.material.consumption has no access rules, consider adding one. E.g. access_scada_material_consumption,access_scada_material_consumption,model_scada_material_consumption,base.group_user,1,0,0,0
2026-03-05 23:47:33,641 22400 INFO kanjabung_MRP odoo.modules.loading: Modules loaded.
2026-03-05 23:47:33,649 22400 INFO kanjabung_MRP odoo.service.server: Initiating shutdown
2026-03-05 23:47:33,650 22400 INFO kanjabung_MRP odoo.service.server: Hit CTRL-C again or send a second signal to force the shutdown.
2026-03-05 23:47:33,650 22400 INFO kanjabung_MRP odoo.sql_db: ConnectionPool(used=0/count=0/max=64): Closed 1 connections
2026-03-06 06:47:48,491 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:47:48] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.012 0.004
2026-03-06 06:47:56,441 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:47:56] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.008 50.036
2026-03-06 06:48:11,050 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:48:11] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.005 0.020
2026-03-06 06:48:46,800 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:48:46] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.002 50.040
2026-03-06 06:49:02,041 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:49:02] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.005 0.017
2026-03-06 06:49:15,400 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:49:15] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.012 0.006
2026-03-06 06:49:37,162 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:49:37] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.002 50.026
2026-03-06 06:49:53,045 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:49:53] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.003 0.016
2026-03-06 06:50:13,336 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:50:13] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.001 0.012
2026-03-06 06:50:27,516 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:50:27] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.002 50.035
2026-03-06 06:50:44,038 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:50:44] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.002 0.020
2026-03-06 06:51:16,184 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:51:16] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.002 0.011
2026-03-06 06:51:17,861 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:51:17] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.012 50.011
2026-03-06 06:51:35,055 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:51:35] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.007 0.018
2026-03-06 06:52:08,209 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:52:08] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.009 50.019
2026-03-06 06:52:14,523 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:52:14] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.014 0.002
2026-03-06 06:52:26,359 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:52:26] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.002 0.017
2026-03-06 06:52:58,568 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:52:58] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.003 50.038
2026-03-06 06:53:13,012 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:53:13] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.000 0.002
2026-03-06 06:53:17,370 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:53:17] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.001 0.025
2026-03-06 06:53:48,911 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:53:48] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.014 50.011
2026-03-06 06:54:08,052 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:54:08] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.006 0.020
2026-03-06 06:54:13,326 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:54:13] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.001 0.017
2026-03-06 06:54:39,265 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:54:39] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.001 50.041
2026-03-06 06:54:49,458 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:54:49] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.000 0.008
2026-03-06 06:54:59,336 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:54:59] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.000 0.016
2026-03-06 06:55:29,609 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:55:29] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.017 50.013
2026-03-06 06:55:50,036 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:55:50] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.000 0.016
2026-03-06 06:55:51,226 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:55:51] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.000 0.016
2026-03-06 06:56:19,958 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:56:19] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.005 50.024
2026-03-06 06:56:41,035 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:56:41] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.011 0.002
2026-03-06 06:57:10,317 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:57:10] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.004 50.026
2026-03-06 06:57:14,573 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:57:14] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.003 0.007
2026-03-06 06:57:32,348 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:57:32] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.016 0.000
2026-03-06 06:58:00,658 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:00] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.004 50.019
2026-03-06 06:58:13,038 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:13] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 2 0.001 0.009
2026-03-06 06:58:23,358 10572 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:23] "POST /longpolling/im_status HTTP/1.1" 200 - 4 0.001 0.015
2026-03-06 06:58:26,519 18168 INFO ? odoo: Odoo version 14.0-20231205
2026-03-06 06:58:26,520 18168 INFO ? odoo: Using configuration file at C:\addon14\odoo.conf
2026-03-06 06:58:26,520 18168 INFO ? odoo: addons paths: ['C:\\odoo14c\\server\\odoo\\addons', 'c:\\users\\sapta\\appdata\\local\\openerp s.a\\odoo\\addons\\14.0', 'c:\\odoo14c\\server\\odoo\\addons', 'c:\\addon14']
2026-03-06 06:58:26,520 18168 INFO ? odoo: database: openpg@localhost:5432
2026-03-06 06:58:26,965 18168 INFO ? odoo.addons.base.models.ir_actions_report: Will use the Wkhtmltopdf binary at C:\odoo14c\thirdparty\wkhtmltopdf.exe
2026-03-06 06:58:27,155 18168 INFO ? odoo.service.server: HTTP service (werkzeug) running on ThinkpadSaptadi:8070
2026-03-06 06:58:27,187 18168 INFO kanjabung_MRP odoo.modules.loading: loading 1 modules...
2026-03-06 06:58:27,211 18168 INFO kanjabung_MRP odoo.modules.loading: 1 modules loaded in 0.02s, 0 queries (+0 extra)
2026-03-06 06:58:27,303 18168 INFO kanjabung_MRP odoo.modules.loading: loading 88 modules...
2026-03-06 06:58:27,470 18168 WARNING kanjabung_MRP py.warnings: C:\odoo14c\python\lib\site-packages\jinja2\sandbox.py:82: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3,and in 3.9 it will stop working
from collections import MutableSet, MutableMapping, MutableSequence
2026-03-06 06:58:28,170 18168 WARNING kanjabung_MRP odoo.models: The model ins.general.ledger has no _description
2026-03-06 06:58:28,170 18168 WARNING kanjabung_MRP odoo.models: The model ins.partner.ledger has no _description
2026-03-06 06:58:28,170 18168 WARNING kanjabung_MRP odoo.models: The model ins.trial.balance has no _description
2026-03-06 06:58:28,170 18168 WARNING kanjabung_MRP odoo.models: The model ins.partner.ageing has no _description
2026-03-06 06:58:28,170 18168 WARNING kanjabung_MRP odoo.models: The model report.account_dynamic_reports.general_ledger has no _description
2026-03-06 06:58:28,170 18168 WARNING kanjabung_MRP odoo.models: The model report.account_dynamic_reports.partner_ledger has no _description
2026-03-06 06:58:28,170 18168 WARNING kanjabung_MRP odoo.models: The model report.account_dynamic_reports.trial_balance has no _description
2026-03-06 06:58:28,170 18168 WARNING kanjabung_MRP odoo.models: The model report.account_dynamic_reports.partner_ageing has no _description
2026-03-06 06:58:28,973 18168 INFO kanjabung_MRP odoo.modules.loading: 88 modules loaded in 1.67s, 0 queries (+0 extra)
2026-03-06 06:58:30,153 18168 INFO kanjabung_MRP odoo.modules.loading: Modules loaded.
2026-03-06 06:58:30,341 18168 INFO ? odoo.http: HTTP Configuring static files
2026-03-06 06:58:30,357 18168 INFO kanjabung_MRP odoo.addons.base.models.ir_http: Generating routing map for key None
2026-03-06 06:58:31,592 18168 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:31] "POST /web/action/load HTTP/1.1" 200 - 32 0.071 1.164
2026-03-06 06:58:31,788 18168 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:31] "POST /web/dataset/call_kw/ir.module.module/load_views HTTP/1.1" 200 - 81 0.048 0.129
2026-03-06 06:58:32,169 18168 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:32] "POST /web/dataset/call_kw/ir.module.module/search_panel_select_range HTTP/1.1" 200 - 46 0.006 0.045
2026-03-06 06:58:32,401 18168 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:32] "POST /web/dataset/search_read HTTP/1.1" 200 - 4 0.000 0.016
2026-03-06 06:58:32,484 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:32] "GET /fl_quick_task/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:32,772 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:32] "GET /base_territory/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:32,772 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:32] "GET /hr_expense/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:32,787 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:32] "GET /mrp/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:32,787 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:32] "GET /base/static/img/icons/mrp_workorder.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:32,787 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:32] "GET /base/static/img/icons/timesheet_grid.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:32,804 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:32] "GET /website_sale/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:33,088 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:33] "GET /project/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:33,097 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:33] "GET /hr/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:33,106 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:33] "GET /hr_holidays/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:33,106 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:33] "GET /stock/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:33,106 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:33] "GET /purchase/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:33,106 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:33] "GET /point_of_sale/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:33,400 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:33] "GET /hr_recruitment/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:33,423 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:33] "GET /mass_mailing/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:33,426 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:33] "GET /base/static/img/icons/account_accountant.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:33,428 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:33] "GET /base/static/img/icons/web_studio.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:33,428 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:33] "GET /website/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:33,437 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:33] "GET /abs_meeting_from_task/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:33,722 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:33] "GET /bi_project_template/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:33,728 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:33] "GET /abs_project_task_template/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:33,728 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:33] "GET /odoo_traccar_tracking/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:33,741 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:33] "GET /om_account_accountant/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:33,741 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:33] "GET /sale_management/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:33,741 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:33] "GET /account/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:34,029 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:34] "GET /foss_project_tags/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:34,039 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:34] "GET /account_dynamic_reports/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:34,039 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:34] "GET /bt_asset_management/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:34,056 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:34] "GET /fieldservice/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:34,057 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:34] "GET /garazd_product_label/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:34,057 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:34] "GET /base/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:34,341 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:34] "GET /knowledge/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:34,357 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:34] "GET /maintenance/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:34,357 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:34] "GET /odoo_web_login/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:34,371 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:34] "GET /scrum_agile_framework/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:34,371 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:34] "GET /support_package/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:34,371 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:34] "GET /task_pomodoro/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:34,674 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:34] "GET /base/static/img/icons/sign.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:34,677 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:34] "GET /base/static/img/icons/helpdesk.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:34,683 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:34] "GET /base/static/img/icons/sale_subscription.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:34,687 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:34] "GET /base/static/img/icons/quality_control.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:34,688 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:34] "GET /website_slides/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:34,688 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:34] "GET /base/static/img/icons/planning.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:34,982 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:34] "GET /website_event/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:34,982 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:34] "GET /mail/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:34,995 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:34] "GET /contacts/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:35,004 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:35] "GET /base/static/img/icons/mrp_plm.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:35,004 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:35] "GET /calendar/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:35,004 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:35] "GET /base/static/img/icons/hr_appraisal.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:35,325 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:35] "GET /fleet/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:35,338 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:35] "GET /base/static/img/icons/marketing_automation.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:35,339 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:35] "GET /website_blog/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:35,339 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:35] "GET /im_livechat/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:35,339 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:35] "GET /base/static/img/icons/website_calendar.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:35,339 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:35] "GET /survey/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:35,653 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:35] "GET /base/static/img/icons/web_mobile.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:35,655 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:35] "GET /board/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:35,660 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:35] "GET /repair/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:35,671 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:35] "GET /hr_attendance/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:35,671 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:35] "GET /mass_mailing_sms/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:35,671 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:35] "GET /base/static/img/icons/stock_barcode.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:35,964 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:35] "GET /note/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:35,988 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:35] "GET /website_forum/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:35,990 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:35] "GET /hr_skills/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:35,992 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:35] "GET /base/static/img/icons/voip.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:35,992 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:35] "GET /lunch/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:35,992 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:35] "GET /website_hr_recruitment/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:36,294 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:36] "GET /base/static/img/icons/sale_ebay.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:36,309 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:36] "GET /payment_adyen/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:36,309 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:36] "GET /payment_alipay/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:36,309 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:36] "GET /payment_authorize/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:36,321 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:36] "GET /payment_buckaroo/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:36,321 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:36] "GET /payment_ingenico/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:36,623 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:36] "GET /payment_paypal/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:36,634 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:36] "GET /payment_payumoney/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:41,131 18168 INFO ? odoo.addons.bus.models.bus: Bus.loop listen imbus on db postgres
2026-03-06 06:58:48,235 18168 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:48] "POST /web/dataset/call_kw/ir.module.module/search_panel_select_range HTTP/1.1" 200 - 42 0.014 0.046
2026-03-06 06:58:48,569 18168 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:48] "POST /web/dataset/search_read HTTP/1.1" 200 - 3 0.000 0.016
2026-03-06 06:58:49,302 18168 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:49] "POST /grt_crm_business_category/gps/ping HTTP/1.1" 200 - 4 0.007 0.016
2026-03-06 06:58:50,479 18168 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:50] "POST /web/dataset/call_kw/ir.module.module/search_panel_select_range HTTP/1.1" 200 - 42 0.043 0.031
2026-03-06 06:58:50,802 18168 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:50] "POST /web/dataset/search_read HTTP/1.1" 200 - 3 0.001 0.015
2026-03-06 06:58:51,134 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:51] "GET /website_crm/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:51,150 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:51] "GET /website_crm_partner_assign/static/description/icon.png HTTP/1.1" 304 - - - -
2026-03-06 06:58:58,094 18168 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:58] "POST /web/action/load HTTP/1.1" 200 - 17 0.002 0.038
2026-03-06 06:58:58,419 18168 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:58] "POST /web/dataset/call_kw/base.module.update/load_views HTTP/1.1" 200 - 12 0.001 0.011
2026-03-06 06:58:58,765 18168 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:58] "POST /web/dataset/call_kw/base.module.update/onchange HTTP/1.1" 200 - 3 0.000 0.012
2026-03-06 06:58:59,094 18168 INFO ? werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:59] "GET /web/static/src/xml/dialog.xml?debug=1772755138779 HTTP/1.1" 200 - - - -
2026-03-06 06:58:59,498 18168 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:59] "POST /web/dataset/call_kw/ir.rule/check_access_rights HTTP/1.1" 200 - 2 0.003 0.063
2026-03-06 06:58:59,507 18168 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:59] "POST /web/dataset/call_kw/ir.model.access/check_access_rights HTTP/1.1" 200 - 2 0.003 0.069
2026-03-06 06:58:59,515 18168 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:58:59] "POST /web/dataset/call_kw/ir.ui.view/check_access_rights HTTP/1.1" 200 - 2 0.010 0.059
2026-03-06 06:59:00,872 18168 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:59:00] "POST /web/dataset/call_kw/base.module.update/create HTTP/1.1" 200 - 5 0.001 0.018
2026-03-06 06:59:01,202 18168 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:59:01] "POST /web/dataset/call_kw/base.module.update/read HTTP/1.1" 200 - 3 0.017 0.000
2026-03-06 06:59:01,544 18168 INFO kanjabung_MRP odoo.addons.base.models.ir_module: ALLOW access to module.update_list on [] to user admin #2 via 127.0.0.1
2026-03-06 06:59:03,246 18168 INFO kanjabung_MRP werkzeug: 127.0.0.1 - - [06/Mar/2026 06:59:03] "POST /web/dataset/call_button HTTP/1.1" 200 - 999 0.430 1.288
Binary file not shown.

Before

Width:  |  Height:  |  Size: 569 KiB

After

Width:  |  Height:  |  Size: 580 KiB

+2 -3
View File
@@ -2,10 +2,10 @@
{
"name": "Odoo KPI System",
"summary": "Dynamic KPI management for employee, department, and team",
"version": "14.0.1.0.0",
"version": "14.0.1.0.2",
"category": "Human Resources",
"author": "Custom",
"depends": ["base", "mail", "hr", "crm"],
"depends": ["base", "mail", "hr"],
"data": [
"security/kpi_security.xml",
"security/ir.model.access.csv",
@@ -25,4 +25,3 @@
"application": True,
"license": "LGPL-3",
}
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -13,6 +13,7 @@ class KpiAssignment(models.Model):
weight_override = fields.Float()
effective_target = fields.Float(compute="_compute_effective_values", store=True)
effective_weight = fields.Float(compute="_compute_effective_values", store=True)
value_ids = fields.One2many("kpi.value", "assignment_id", string="KPI Values")
_sql_constraints = [
(
@@ -35,4 +36,3 @@ class KpiAssignment(models.Model):
target = rec.kpi_definition_id.target_ids[:1]
rec.effective_target = rec.target_override if rec.target_override else (target.target_value or 0.0)
rec.effective_weight = rec.weight_override if rec.weight_override else (target.weight or 0.0)
+1 -4
View File
@@ -48,9 +48,7 @@ class KpiScore(models.Model):
continue
values = value_model.search(
[
("employee_id", "=", employee.id),
("period_id", "=", period.id),
("kpi_definition_id", "=", assignment.kpi_definition_id.id),
("assignment_id", "=", assignment.id),
]
)
actual = sum(values.mapped("value"))
@@ -121,4 +119,3 @@ class KpiTeamScore(models.Model):
else:
self.create(vals)
return True
+24 -4
View File
@@ -6,10 +6,30 @@ class KpiValue(models.Model):
_description = "KPI Value"
_order = "created_at desc, id desc"
employee_id = fields.Many2one("hr.employee", required=True, ondelete="cascade", index=True)
kpi_definition_id = fields.Many2one("kpi.definition", required=True, ondelete="cascade", index=True)
period_id = fields.Many2one("kpi.period", required=True, ondelete="cascade", index=True)
assignment_id = fields.Many2one("kpi.assignment", required=True, ondelete="cascade", index=True)
employee_id = fields.Many2one(
"hr.employee",
related="assignment_id.employee_id",
store=True,
readonly=True,
index=True,
)
kpi_definition_id = fields.Many2one(
"kpi.definition",
related="assignment_id.kpi_definition_id",
store=True,
readonly=True,
index=True,
)
period_id = fields.Many2one(
"kpi.period",
related="assignment_id.period_id",
store=True,
readonly=True,
index=True,
)
value = fields.Float(required=True, default=0.0)
source_module = fields.Char(help="Example: crm, sale, stock, mrp, manual")
reference_model = fields.Char()
reference_id = fields.Integer()
created_at = fields.Datetime(default=fields.Datetime.now, required=True, readonly=True)
+13 -1
View File
@@ -33,6 +33,19 @@
<field name="effective_target" readonly="1"/>
<field name="effective_weight" readonly="1"/>
</group>
<notebook>
<page string="KPI Values">
<field name="value_ids">
<tree editable="bottom">
<field name="created_at" readonly="1"/>
<field name="value"/>
<field name="source_module"/>
<field name="reference_model"/>
<field name="reference_id"/>
</tree>
</field>
</page>
</notebook>
</sheet>
</form>
</field>
@@ -44,4 +57,3 @@
<field name="view_mode">tree,form</field>
</record>
</odoo>
+1 -1
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<menuitem id="menu_kpi_root" name="KPI" parent="crm.crm_menu_root" sequence="80" groups="odoo_kpi.group_kpi_employee,odoo_kpi.group_kpi_manager,odoo_kpi.group_kpi_admin,base.group_system"/>
<menuitem id="menu_kpi_root" name="KPI" sequence="80" groups="odoo_kpi.group_kpi_employee,odoo_kpi.group_kpi_manager,odoo_kpi.group_kpi_admin,base.group_system"/>
<menuitem id="menu_kpi_master" name="Master" parent="menu_kpi_root" sequence="10" groups="odoo_kpi.group_kpi_manager,odoo_kpi.group_kpi_admin,base.group_system"/>
<menuitem id="menu_kpi_operations" name="Operations" parent="menu_kpi_root" sequence="20" groups="odoo_kpi.group_kpi_employee,odoo_kpi.group_kpi_manager,odoo_kpi.group_kpi_admin,base.group_system"/>
+9 -4
View File
@@ -6,11 +6,14 @@
<field name="arch" type="xml">
<tree>
<field name="created_at"/>
<field name="assignment_id"/>
<field name="employee_id"/>
<field name="kpi_definition_id"/>
<field name="period_id"/>
<field name="value"/>
<field name="source_module"/>
<field name="reference_model"/>
<field name="reference_id"/>
</tree>
</field>
</record>
@@ -22,13 +25,16 @@
<form>
<sheet>
<group>
<field name="employee_id"/>
<field name="kpi_definition_id"/>
<field name="period_id"/>
<field name="assignment_id"/>
<field name="employee_id" readonly="1"/>
<field name="kpi_definition_id" readonly="1"/>
<field name="period_id" readonly="1"/>
</group>
<group>
<field name="value"/>
<field name="source_module"/>
<field name="reference_model"/>
<field name="reference_id"/>
<field name="created_at" readonly="1"/>
</group>
</sheet>
@@ -42,4 +48,3 @@
<field name="view_mode">tree,form</field>
</record>
</odoo>
+2
View File
@@ -0,0 +1,2 @@
from . import models
+16
View File
@@ -0,0 +1,16 @@
# -*- coding: utf-8 -*-
{
"name": "Odoo KPI CRM Trigger",
"summary": "CRM event rules to send KPI values by assignment",
"version": "14.0.1.0.0",
"category": "Sales/CRM",
"author": "Custom",
"depends": ["crm", "mail", "hr", "odoo_kpi", "grt_crm_business_category"],
"data": [
"security/ir.model.access.csv",
"views/kpi_crm_trigger_rule_views.xml",
],
"installable": True,
"application": False,
"license": "LGPL-3",
}
+4
View File
@@ -0,0 +1,4 @@
from . import kpi_crm_trigger_rule
from . import crm_lead
from . import mail_activity
+18
View File
@@ -0,0 +1,18 @@
from odoo import models
class CrmLead(models.Model):
_inherit = "crm.lead"
def write(self, vals):
previous_stage_map = {}
if "stage_id" in vals:
previous_stage_map = {lead.id: lead.stage_id.id for lead in self}
result = super().write(vals)
if "stage_id" in vals:
changed = self.filtered(lambda lead: lead.stage_id and previous_stage_map.get(lead.id) != lead.stage_id.id)
if changed:
self.env["kpi.crm.trigger.rule"].sudo().process_lead_stage_change(changed, previous_stage_map)
return result
@@ -0,0 +1,173 @@
from odoo import _, api, fields, models
from odoo.exceptions import ValidationError
class KpiCrmTriggerRule(models.Model):
_name = "kpi.crm.trigger.rule"
_description = "KPI CRM Trigger Rule"
_order = "sequence, id"
name = fields.Char(required=True)
sequence = fields.Integer(default=10)
active = fields.Boolean(default=True)
business_category_id = fields.Many2one("crm.business.category", required=True, ondelete="cascade", index=True)
line_ids = fields.One2many("kpi.crm.trigger.rule.line", "rule_id", string="Trigger Lines")
def _find_employee_from_user(self, user):
if not user:
return self.env["hr.employee"]
return self.env["hr.employee"].search([("user_id", "=", user.id)], limit=1)
@api.model
def _assignment_matches_date(self, assignment, event_date):
period = assignment.period_id
return bool(period and period.date_start and period.date_end and period.date_start <= event_date <= period.date_end)
@api.model
def _create_value_if_missing(self, line, value, ref_model, ref_id):
value_model = self.env["kpi.value"].sudo()
existing = value_model.search(
[
("assignment_id", "=", line.assignment_id.id),
("reference_model", "=", ref_model),
("reference_id", "=", ref_id),
("source_module", "=", line.source_module),
],
limit=1,
)
if existing:
return existing
return value_model.create(
{
"assignment_id": line.assignment_id.id,
"value": value,
"source_module": line.source_module,
"reference_model": ref_model,
"reference_id": ref_id,
}
)
@api.model
def process_lead_stage_change(self, leads, previous_stage_map=None):
if not leads:
return False
event_date = fields.Date.today()
for lead in leads:
if not lead.business_category_id or not lead.stage_id:
continue
if previous_stage_map and previous_stage_map.get(lead.id) == lead.stage_id.id:
continue
employee = self._find_employee_from_user(lead.user_id)
if not employee:
continue
rules = self.search(
[
("active", "=", True),
("business_category_id", "=", lead.business_category_id.id),
]
)
for rule in rules:
lines = rule.line_ids.filtered(
lambda l: l.active
and l.employee_id.id == employee.id
and l.stage_id.id == lead.stage_id.id
and not l.activity_type_id
and self._assignment_matches_date(l.assignment_id, event_date)
)
for line in lines:
self._create_value_if_missing(
line=line,
value=line.value,
ref_model="crm.lead.stage.rule.line.%s" % line.id,
ref_id=lead.id,
)
return True
@api.model
def process_activity_feedback_payload(self, payloads):
if not payloads:
return False
lead_model = self.env["crm.lead"]
event_date = fields.Date.today()
for payload in payloads:
lead = lead_model.browse(payload.get("res_id"))
if not lead.exists() or not lead.business_category_id:
continue
activity_type_id = payload.get("activity_type_id")
if not activity_type_id:
continue
employee = self._find_employee_from_user(self.env["res.users"].browse(payload.get("user_id")))
if not employee and lead.user_id:
employee = self._find_employee_from_user(lead.user_id)
if not employee:
continue
rules = self.search(
[
("active", "=", True),
("business_category_id", "=", lead.business_category_id.id),
]
)
for rule in rules:
lines = rule.line_ids.filtered(
lambda l: l.active
and l.employee_id.id == employee.id
and l.activity_type_id.id == activity_type_id
and (not l.stage_id or l.stage_id.id == lead.stage_id.id)
and self._assignment_matches_date(l.assignment_id, event_date)
)
for line in lines:
self._create_value_if_missing(
line=line,
value=line.value,
ref_model="mail.activity.done.rule.line.%s" % line.id,
ref_id=payload.get("id"),
)
return True
class KpiCrmTriggerRuleLine(models.Model):
_name = "kpi.crm.trigger.rule.line"
_description = "KPI CRM Trigger Rule Line"
_order = "sequence, id"
rule_id = fields.Many2one("kpi.crm.trigger.rule", required=True, ondelete="cascade", index=True)
sequence = fields.Integer(default=10)
active = fields.Boolean(default=True)
stage_id = fields.Many2one("crm.stage", string="Stage")
activity_type_id = fields.Many2one("mail.activity.type", string="Activity Type")
employee_id = fields.Many2one("hr.employee", required=True, ondelete="cascade", index=True)
assignment_id = fields.Many2one("kpi.assignment", required=True, ondelete="cascade", index=True)
value = fields.Float(required=True, default=1.0)
source_module = fields.Char(default="crm", required=True)
note = fields.Char()
@api.constrains("stage_id", "activity_type_id")
def _check_trigger_dimension(self):
for rec in self:
if rec.stage_id or rec.activity_type_id:
continue
raise ValidationError(_("Either Stage or Activity Type must be set."))
@api.constrains("employee_id", "assignment_id")
def _check_assignment_employee(self):
for rec in self:
if rec.assignment_id.employee_id != rec.employee_id:
raise ValidationError(_("Employee must match KPI Assignment employee."))
@api.constrains("rule_id", "stage_id")
def _check_stage_business_category(self):
for rec in self:
if not rec.stage_id or not rec.rule_id.business_category_id:
continue
stage_category = rec.stage_id.business_category_id
if stage_category and stage_category != rec.rule_id.business_category_id:
raise ValidationError(
_("Stage business category must match rule business category.")
)
@@ -0,0 +1,25 @@
from odoo import models
class MailActivity(models.Model):
_inherit = "mail.activity"
def action_feedback(self, feedback=False, attachment_ids=None):
crm_payload = []
for activity in self:
if activity.res_model != "crm.lead" or not activity.res_id or not activity.activity_type_id:
continue
crm_payload.append(
{
"id": activity.id,
"res_id": activity.res_id,
"activity_type_id": activity.activity_type_id.id,
"user_id": activity.user_id.id,
}
)
result = super().action_feedback(feedback=feedback, attachment_ids=attachment_ids)
if crm_payload:
self.env["kpi.crm.trigger.rule"].sudo().process_activity_feedback_payload(crm_payload)
return result
@@ -0,0 +1,7 @@
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
access_kpi_crm_trigger_rule_kpi_manager,kpi.crm.trigger.rule.kpi.manager,model_kpi_crm_trigger_rule,odoo_kpi.group_kpi_manager,1,1,1,1
access_kpi_crm_trigger_rule_kpi_admin,kpi.crm.trigger.rule.kpi.admin,model_kpi_crm_trigger_rule,odoo_kpi.group_kpi_admin,1,1,1,1
access_kpi_crm_trigger_rule_sale_manager,kpi.crm.trigger.rule.sale.manager,model_kpi_crm_trigger_rule,sales_team.group_sale_manager,1,1,1,1
access_kpi_crm_trigger_rule_line_kpi_manager,kpi.crm.trigger.rule.line.kpi.manager,model_kpi_crm_trigger_rule_line,odoo_kpi.group_kpi_manager,1,1,1,1
access_kpi_crm_trigger_rule_line_kpi_admin,kpi.crm.trigger.rule.line.kpi.admin,model_kpi_crm_trigger_rule_line,odoo_kpi.group_kpi_admin,1,1,1,1
access_kpi_crm_trigger_rule_line_sale_manager,kpi.crm.trigger.rule.line.sale.manager,model_kpi_crm_trigger_rule_line,sales_team.group_sale_manager,1,1,1,1
1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
2 access_kpi_crm_trigger_rule_kpi_manager kpi.crm.trigger.rule.kpi.manager model_kpi_crm_trigger_rule odoo_kpi.group_kpi_manager 1 1 1 1
3 access_kpi_crm_trigger_rule_kpi_admin kpi.crm.trigger.rule.kpi.admin model_kpi_crm_trigger_rule odoo_kpi.group_kpi_admin 1 1 1 1
4 access_kpi_crm_trigger_rule_sale_manager kpi.crm.trigger.rule.sale.manager model_kpi_crm_trigger_rule sales_team.group_sale_manager 1 1 1 1
5 access_kpi_crm_trigger_rule_line_kpi_manager kpi.crm.trigger.rule.line.kpi.manager model_kpi_crm_trigger_rule_line odoo_kpi.group_kpi_manager 1 1 1 1
6 access_kpi_crm_trigger_rule_line_kpi_admin kpi.crm.trigger.rule.line.kpi.admin model_kpi_crm_trigger_rule_line odoo_kpi.group_kpi_admin 1 1 1 1
7 access_kpi_crm_trigger_rule_line_sale_manager kpi.crm.trigger.rule.line.sale.manager model_kpi_crm_trigger_rule_line sales_team.group_sale_manager 1 1 1 1
@@ -0,0 +1,77 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="view_kpi_crm_trigger_rule_tree" model="ir.ui.view">
<field name="name">kpi.crm.trigger.rule.tree</field>
<field name="model">kpi.crm.trigger.rule</field>
<field name="arch" type="xml">
<tree>
<field name="sequence"/>
<field name="name"/>
<field name="business_category_id"/>
<field name="active"/>
</tree>
</field>
</record>
<record id="view_kpi_crm_trigger_rule_form" model="ir.ui.view">
<field name="name">kpi.crm.trigger.rule.form</field>
<field name="model">kpi.crm.trigger.rule</field>
<field name="arch" type="xml">
<form>
<sheet>
<group>
<field name="name"/>
<field name="sequence"/>
<field name="business_category_id"/>
<field name="active"/>
</group>
<notebook>
<page string="Trigger Lines">
<field name="line_ids">
<tree editable="bottom">
<field name="sequence"/>
<field name="active"/>
<field name="stage_id"/>
<field name="activity_type_id"/>
<field name="employee_id"/>
<field name="assignment_id"/>
<field name="value"/>
<field name="source_module"/>
<field name="note"/>
</tree>
<form>
<group>
<field name="sequence"/>
<field name="active"/>
<field name="stage_id"/>
<field name="activity_type_id"/>
<field name="employee_id"/>
<field name="assignment_id" domain="[('employee_id', '=', employee_id)]"/>
</group>
<group>
<field name="value"/>
<field name="source_module"/>
<field name="note"/>
</group>
</form>
</field>
</page>
</notebook>
</sheet>
</form>
</field>
</record>
<record id="action_kpi_crm_trigger_rule" model="ir.actions.act_window">
<field name="name">KPI CRM Triggers</field>
<field name="res_model">kpi.crm.trigger.rule</field>
<field name="view_mode">tree,form</field>
</record>
<menuitem id="menu_kpi_crm_trigger_rule"
name="KPI Triggers"
parent="crm.crm_menu_config"
action="action_kpi_crm_trigger_rule"
sequence="95"
groups="odoo_kpi.group_kpi_manager,odoo_kpi.group_kpi_admin,sales_team.group_sale_manager"/>
</odoo>