Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pms/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{
"name": "PMS (Property Management System)",
"summary": "A property management system",
"version": "16.0.4.7.0",
"version": "16.0.4.7.1",
"development_status": "Beta",
"category": "Generic Modules/Property Management System",
"website": "https://github.com/OCA/pms",
Expand Down
2 changes: 1 addition & 1 deletion pms/models/res_partner.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class ResPartner(models.Model):
ondelete="restrict",
index=True,
)
default_commission = fields.Integer(string="Commission", help="Default commission")
default_commission = fields.Float(string="Commission", help="Default commission")
commission_type = fields.Selection(
selection=[
("included", "Commission Included in Price"),
Expand Down
Loading