Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Xbus Common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package Registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
XCG
Odoo modules
Xbus Common
Merge requests
!5
Updated the changes set in 16.0.1.1.0
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Updated the changes set in 16.0.1.1.0
topic/16.0/2023-01952
into
branch/16.0
Overview
0
Commits
1
Pipelines
1
Changes
4
Merged
aronabencherif.diatta@xcg.africa
requested to merge
topic/16.0/2023-01952
into
branch/16.0
1 year ago
Overview
0
Commits
1
Pipelines
1
Changes
4
Expand
Odoo Task
Mint PR....
Edited
1 year ago
by
aronabencherif.diatta@xcg.africa
0
0
Merge request reports
Compare
branch/16.0
branch/16.0 (base)
and
latest version
latest version
8754477c
1 commit,
1 year ago
4 files
+
10
−
2
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
models/xbus_envelope.py
+
2
−
1
Options
@@ -45,7 +45,7 @@
@@ -45,7 +45,7 @@
)
)
message_count
=
fields
.
Integer
(
message_count
=
fields
.
Integer
(
string
=
"
Number of messages
"
,
compute
=
"
_compute_message_count
"
string
=
"
Number of messages
"
,
compute
=
"
_compute_message_count
"
,
store
=
True
)
)
@api.depends
(
"
message_ids
"
)
@api.depends
(
"
message_ids
"
)
@@ -60,6 +60,7 @@
@@ -60,6 +60,7 @@
id serial primary key,
id serial primary key,
create_date timestamp without time zone DEFAULT (now() at time zone
'
utc
'
),
create_date timestamp without time zone DEFAULT (now() at time zone
'
utc
'
),
comment character varying not null,
comment character varying not null,
message_count int null,
uid uuid not null
uid uuid not null
)
"""
)
"""
)
)
Loading