tickera-angular-components 0.0.1-dev.53 → 0.0.1-dev.55

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3071,6 +3071,9 @@ class TicketSelectionService {
3071
3071
  };
3072
3072
  return lists[ticket.status] ?? null;
3073
3073
  }
3074
+ setSelectedTickets(tickets) {
3075
+ this._selectedTickets.set(new Set(tickets));
3076
+ }
3074
3077
  toggle(ticket) {
3075
3078
  const list = this.getListByStatus(ticket);
3076
3079
  if (list) {
@@ -3184,6 +3187,7 @@ class TicketSelectionService {
3184
3187
  coupon_code: this.selectionDiscountService.coupon()?.code ?? undefined,
3185
3188
  gift_bond_code: this.selectionDiscountService.giftBondCode() ?? undefined,
3186
3189
  corporate_bond_code: this.selectionDiscountService.corporateBondCode() ?? undefined,
3190
+ payment_method: paymentMethod,
3187
3191
  billing: {
3188
3192
  first_name: billing?.first_name ?? '',
3189
3193
  last_name: billing?.last_name ?? '',
@@ -3195,7 +3199,6 @@ class TicketSelectionService {
3195
3199
  city_id: billing?.city_id ?? 0,
3196
3200
  postal_code: billing?.postal_code ?? undefined,
3197
3201
  address_notes: undefined,
3198
- payment_method: paymentMethod,
3199
3202
  terms_accepted: termsAccepted,
3200
3203
  data_processing_accepted: dataProcessingAccepted,
3201
3204
  comments: undefined,