2815 - Fix ticket without state #598
|
@ -27,9 +27,12 @@ class Controller extends Section {
|
||||||
}
|
}
|
||||||
|
|
||||||
get ticketState() {
|
get ticketState() {
|
||||||
if (!this.ticket) return null;
|
const ticket = this.ticket;
|
||||||
|
if (!ticket) return null;
|
||||||
|
|
||||||
return this.ticket.ticketState.state.code;
|
const ticketState = ticket.ticketState;
|
||||||
|
|
||||||
|
return ticketState && ticketState.state.code;
|
||||||
}
|
}
|
||||||
|
|
||||||
getSaleTotal(sale) {
|
getSaleTotal(sale) {
|
||||||
|
|
Loading…
Reference in New Issue