Merge PR #13 into 14.0

Signed-off-by DarioLodeiros
This commit is contained in:
OCA-git-bot
2021-06-19 06:16:56 +00:00
6 changed files with 24 additions and 26 deletions

View File

@@ -497,17 +497,16 @@ class PmsReservation(models.Model):
invoice_status = fields.Selection(
string="Invoice Status",
help="The status of the invoices in folio. Can be 'invoiced',"
" 'to invoice' or 'no'.",
compute="_compute_invoice_status",
" 'to_invoice' or 'no'.",
store=True,
readonly=True,
selection=[
("upselling", "Upselling Opportunity"),
("invoiced", "Fully Invoiced"),
("to invoice", "To Invoice"),
("to_invoice", "To Invoice"),
("no", "Nothing to Invoice"),
],
default="no",
compute="_compute_invoice_status",
)
analytic_tag_ids = fields.Many2many(
string="Analytic Tags",