[IMP]pms: account move not check property journal

This commit is contained in:
Darío Lodeiros
2022-02-23 22:10:59 +01:00
parent d7b40219b6
commit 4253dede40
2 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<data noupdate="0">
<data noupdate="1">
<!-- Set reservation like No Show if the client does not show up -->
<record model="ir.cron" id="noshow_reservations">
<field name="name">Automatic No Show Reservation</field>

View File

@@ -29,9 +29,9 @@ class AccountMove(models.Model):
compute="_compute_pms_property_id",
store=True,
readonly=False,
check_pms_properties=True,
# check_pms_properties=True,
)
journal_id = fields.Many2one(check_pms_properties=True)
# journal_id = fields.Many2one(check_pms_properties=True)
@api.onchange("pms_property_id")
def _onchange_pms_property_id(self):