@@ -55,6 +55,7 @@ public enum Profile {
5555 protected String software_brand ;
5656 protected String software_version ;
5757 protected String rsa_pubkey ;
58+ protected String salesChannel ;
5859 protected CheckConnectivityFeedback connectivityFeedback ;
5960
6061 public class CanceledState {
@@ -112,6 +113,7 @@ public SyncManager(
112113 String software_brand ,
113114 String software_version ,
114115 String rsa_pubkey ,
116+ String salesChannel ,
115117 CheckConnectivityFeedback connectivityFeedback
116118 ) {
117119 this .configStore = configStore ;
@@ -133,6 +135,7 @@ public SyncManager(
133135 this .software_brand = software_brand ;
134136 this .software_version = software_version ;
135137 this .rsa_pubkey = rsa_pubkey ;
138+ this .salesChannel = salesChannel ;
136139 this .connectivityFeedback = connectivityFeedback ;
137140 }
138141
@@ -426,7 +429,7 @@ protected void downloadData(ProgressFeedback feedback, Boolean skip_orders, Stri
426429 if (profile == Profile .PRETIXPOS ) {
427430 download (new QuotaSyncAdapter (dataStore , fileStorage , eventSlug , api , configStore .getSyncCycleId (), feedback , subEvent ));
428431 download (new TaxRuleSyncAdapter (dataStore , fileStorage , eventSlug , api , configStore .getSyncCycleId (), feedback ));
429- download (new TicketLayoutSyncAdapter (dataStore , fileStorage , eventSlug , api , configStore .getSyncCycleId (), feedback ));
432+ download (new TicketLayoutSyncAdapter (dataStore , fileStorage , eventSlug , api , configStore .getSyncCycleId (), salesChannel , feedback ));
430433 }
431434 download (new BadgeLayoutSyncAdapter (dataStore , fileStorage , eventSlug , api , configStore .getSyncCycleId (), feedback ));
432435 download (new BadgeLayoutItemSyncAdapter (dataStore , fileStorage , eventSlug , api , configStore .getSyncCycleId (), feedback ));
0 commit comments