Skip to content

Commit

Permalink
[IMP] portal_event_tickets: добавил подсказки к полям was_transfered …
Browse files Browse the repository at this point in the history
…и origin_registration
  • Loading branch information
em230418 committed Dec 23, 2024
1 parent 6377650 commit 220328d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion portal_event_tickets/models/event_registration.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,13 @@ class EventRegistration(models.Model):
)
was_transferred = fields.Boolean(
"Ticket was transferred",
help="Ticket was transferred",
help="Checked if the ticket was transferred",
default=False,
)
origin_registration = fields.Many2one(
"event.registration",
compute="_compute_origin_registration",
help="From which registration it was upgraded from",
store=True,
string="Original Ticket",
tracking=True,
Expand Down

0 comments on commit 220328d

Please sign in to comment.