Skip to content

Commit

Permalink
[MIG] resource_booking: Finish migration
Browse files Browse the repository at this point in the history
TT45643
  • Loading branch information
victoralmau committed Mar 11, 2024
1 parent ef8336f commit 9a7f2c4
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 65 deletions.
6 changes: 0 additions & 6 deletions resource_booking/i18n/es.po
Original file line number Diff line number Diff line change
Expand Up @@ -1349,9 +1349,3 @@ msgstr ""
#: model_terms:ir.ui.view,arch_db:resource_booking.message_combination_assigned
msgid "because you belong to the chosen resource combination:"
msgstr ""

#~ msgid "Next Activity Resource Booking"
#~ msgstr "Siguiente actividad de reserva de recursos"

#~ msgid "Who requested this booking?"
#~ msgstr "¿Quién solicitó esta reserva/cita?"
9 changes: 0 additions & 9 deletions resource_booking/i18n/fr_FR.po
Original file line number Diff line number Diff line change
Expand Up @@ -1360,12 +1360,3 @@ msgstr ""
#: model_terms:ir.ui.view,arch_db:resource_booking.message_combination_assigned
msgid "because you belong to the chosen resource combination:"
msgstr ""

#~ msgid "Who requested this booking?"
#~ msgstr "Qui a demandé cette réservation ?"

#~ msgid "SMS Delivery error"
#~ msgstr "Erreur de livraison SMS"

#~ msgid "Followers (Channels)"
#~ msgstr "Abonnés (Chaînes)"
8 changes: 6 additions & 2 deletions resource_booking/models/res_partner.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,12 @@ class ResPartner(models.Model):
)

def _compute_resource_booking_count(self):
for p in self:
p.resource_booking_count = len(p.resource_booking_ids)
booking_data = self.env["resource.booking"].read_group(

Check warning on line 15 in resource_booking/models/res_partner.py

View check run for this annotation

Codecov / codecov/patch

resource_booking/models/res_partner.py#L15

Added line #L15 was not covered by tests
[("partner_id", "in", self.ids)], ["partner_id"], ["partner_id"]
)
data = {x["partner_id"][0]: x["partner_id_count"] for x in booking_data}
for record in self:
record.resource_booking_count = data.get(record.id, 0)

Check warning on line 20 in resource_booking/models/res_partner.py

View check run for this annotation

Codecov / codecov/patch

resource_booking/models/res_partner.py#L20

Added line #L20 was not covered by tests

def action_view_resource_booking(self):
self.ensure_one()
Expand Down
17 changes: 0 additions & 17 deletions resource_booking/models/resource_booking.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,14 +172,6 @@ class ResourceBooking(models.Model):
tracking=True,
help="Who will attend this booking?",
)
partner_ids = fields.Many2many(
"res.partner",
string="Contacts",
store=True,
compute="_compute_partner_ids",
inverse="_inverse_partner_ids",
help="E.g. multiple people in a room. Used by sale_resource_booking_period",
)
user_id = fields.Many2one(
comodel_name="res.users",
default=lambda self: self._default_user_id(),
Expand Down Expand Up @@ -405,15 +397,6 @@ def _compute_stop(self):
# Either value is False: no stop date
record.stop = False

@api.depends("partner_id")
def _compute_partner_ids(self):
for record in self:
if record.partner_id:
record.partner_ids = [(6, 0, [record.partner_id.id])]

def _inverse_partner_ids(self):
pass

@api.depends("meeting_id.user_id")
def _compute_user_id(self):
"""Get user from related meeting, if available."""
Expand Down
16 changes: 8 additions & 8 deletions resource_booking/tests/test_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -645,22 +645,22 @@ def test_videocall_location(self):
with Form(rb) as rb_f:
rb_f.start = "2021-03-01 08:00:00"
self.assertEqual(rb.state, "scheduled")
self.assertEqual(rb.videocall_location, "Videocall Office 1")
self.assertEqual(rb.meeting_id.videocall_location, "Videocall Office 1")
self.assertTrue("Videocall Office 1" in rb.videocall_location)
self.assertTrue("Videocall Office 1" in rb.meeting_id.videocall_location)
# Changing meeting videocall location changes videocall location of booking
with Form(rb.meeting_id) as meeting_f:
meeting_f.videocall_location = "Videocall Office 2"
self.assertEqual(rb.videocall_location, "Videocall Office 2")
self.assertEqual(rb.meeting_id.videocall_location, "Videocall Office 2")
self.assertTrue("Videocall Office 2" in rb.videocall_location)
self.assertTrue("Videocall Office 2" in rb.meeting_id.videocall_location)
# Changing booking videocall location changes meeting location
with Form(rb) as rb_f:
rb_f.videocall_location = "Videocall Office 3"
self.assertEqual(rb.meeting_id.videocall_location, "Videocall Office 3")
self.assertEqual(rb.videocall_location, "Videocall Office 3")
self.assertTrue("Videocall Office 3" in rb.meeting_id.videocall_location)
self.assertTrue("Videocall Office 3" in rb.videocall_location)
# When unscheduled, it keeps videocall location untouched
rb.action_unschedule()
self.assertFalse(rb.meeting_id)
self.assertEqual(rb.videocall_location, "Videocall Office 3")
self.assertTrue("Videocall Office 3" in rb.videocall_location)

def test_organizer_sync(self):
"""Resource booking and meeting organizers are properly synced."""
Expand Down Expand Up @@ -777,7 +777,7 @@ def test_suggested_and_subscribed_recipients(self):
# Requester and combination must be suggested
self.assertEqual(
rb._message_get_suggested_recipients(),
{rb.id: [(rb.partner_id.id, "some customer", None, "Requester")]},
{rb.id: [(rb.partner_id.id, "some customer", None, "Attendees")]},
)

def test_creating_rbt_has_tags(self):
Expand Down
38 changes: 17 additions & 21 deletions resource_booking/tests/test_portal.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,33 +7,29 @@
from freezegun import freeze_time
from lxml.html import fromstring

import odoo
from odoo.tests import new_test_user
from odoo.tests.common import HttpCase

from .common import create_test_data


@freeze_time("2021-02-26 09:00:00", tick=True)
@odoo.tests.tagged("post_install", "-at_install")
class PortalCase(HttpCase):
def setUp(self):
super().setUp()
create_test_data(self)
self.user_portal, self.user_manager = self.env["res.users"].create(
[
{
"name": "portal",
"login": "ptl",
"password": "ptl",
"groups_id": [(4, self.env.ref("base.group_portal").id, 0)],
},
{
"name": "manager",
"login": "mgr",
"password": "mgr",
"groups_id": [
(4, self.env.ref("resource_booking.group_manager").id, 0)
],
},
]
@classmethod
def setUpClass(cls):
super().setUpClass()
create_test_data(cls)

cls.user_portal = new_test_user(
cls.env, login="ptl", password="ptl", groups="base.group_portal"
)
cls.user_manager = new_test_user(
cls.env,
login="mgr",
password="mgr",
groups="resource_booking.group_manager",
)

def _url_xml(self, url, data=None, timeout=10):
Expand Down Expand Up @@ -195,7 +191,7 @@ def test_portal_scheduling_conflict(self):
)
)
# Public guy's booking and related meeting are OK in backend
booking_public.invalidate_cache(ids=booking_public.ids)
booking_public.invalidate_model()
self.assertEqual(booking_public.state, "confirmed")
self.assertEqual(len(booking_public.meeting_id.attendee_ids), 2)
for attendee in booking_public.meeting_id.attendee_ids:
Expand Down
2 changes: 0 additions & 2 deletions resource_booking/views/resource_booking_views.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
<tree>
<field name="name" />
<field name="partner_ids" widget="many2many_tags" optional="hide" />
<field name="partner_id" />
<field name="type_id" />
<field name="combination_id" />
<field name="state" />
Expand Down Expand Up @@ -136,7 +135,6 @@
</div>
<group name="main">
<group name="booking">
<field name="partner_id" />
<field name="partner_ids" widget="many2many_tags" />
<field name="type_id" />
<label for="combination_id" />
Expand Down

0 comments on commit 9a7f2c4

Please sign in to comment.