From 4253dede40d47edc0a91ac2a4a3f354f4620b54f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dar=C3=ADo=20Lodeiros?= Date: Wed, 23 Feb 2022 22:10:59 +0100 Subject: [PATCH] [IMP]pms: account move not check property journal --- pms/data/cron_jobs.xml | 2 +- pms/models/account_move.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pms/data/cron_jobs.xml b/pms/data/cron_jobs.xml index ec067d944..87ace086f 100644 --- a/pms/data/cron_jobs.xml +++ b/pms/data/cron_jobs.xml @@ -1,6 +1,6 @@ - + Automatic No Show Reservation diff --git a/pms/models/account_move.py b/pms/models/account_move.py index fb5fdcef5..5857b620b 100644 --- a/pms/models/account_move.py +++ b/pms/models/account_move.py @@ -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):