Skip to content

Commit

Permalink
[ssi_meeting_outsource_work] 14.0.2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mikevhe18 committed Sep 5, 2024
1 parent 0cb79f6 commit b7672fa
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
4 changes: 2 additions & 2 deletions ssi_meeting_outsource_work/__manifest__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Copyright 2023 OpenSynergy Indonesia
# Copyright 2023 PT. Simetri Sinergi Indonesia
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

# pylint: disable=C8101
{
"name": "Meeting + Outsource Work Integration",
"version": "14.0.1.0.1",
"version": "14.0.2.0.0",
"website": "https://simetri-sinergi.id",
"author": "OpenSynergy Indonesia, PT. Simetri Sinergi Indonesia",
"license": "AGPL-3",
Expand Down
4 changes: 3 additions & 1 deletion ssi_meeting_outsource_work/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@
# Copyright 2023 PT. Simetri Sinergi Indonesia
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

from . import employee_expense_account
from . import (
calendar_event,
)
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@
from odoo import models


class EmployeeExpenseAccount(models.Model):
class CalendarEvent(models.Model):
_name = "calendar.event"
_inherit = ["calendar.event", "mixin.outsource_work_object"]
_inherit = [
"calendar.event",
"mixin.outsource_work_object",
]
_outsource_work_create_page = True

0 comments on commit b7672fa

Please sign in to comment.