Final commit.

This commit is contained in:
Dennis Nemec
2026-06-01 17:12:28 +02:00
parent 3ecbc82885
commit a9bf8ecdd1
385 changed files with 29081 additions and 12089 deletions

View File

@ -10,14 +10,24 @@ class _$TourDetails extends TourDetails {
@override
final BuiltList<Article> articles;
@override
final BuiltList<ContactChannel> contactChannels;
@override
final BuiltList<ContactSource> contactSources;
@override
final BuiltList<DeliveryCredit> credits;
@override
final BuiltList<CustomerContact> customerContacts;
@override
final BuiltList<Customer> customers;
@override
final BuiltList<DeliveryWithItems> deliveries;
@override
final BuiltList<DeliveryServiceValue> deliveryServices;
@override
final BuiltList<DeliveryNote> notes;
@override
final BuiltList<Service> services;
@override
final Tour tour;
@override
final BuiltList<Warehouse> warehouses;
@ -27,10 +37,15 @@ class _$TourDetails extends TourDetails {
_$TourDetails._(
{required this.articles,
required this.contactChannels,
required this.contactSources,
required this.credits,
required this.customerContacts,
required this.customers,
required this.deliveries,
required this.deliveryServices,
required this.notes,
required this.services,
required this.tour,
required this.warehouses})
: super._();
@ -46,10 +61,15 @@ class _$TourDetails extends TourDetails {
if (identical(other, this)) return true;
return other is TourDetails &&
articles == other.articles &&
contactChannels == other.contactChannels &&
contactSources == other.contactSources &&
credits == other.credits &&
customerContacts == other.customerContacts &&
customers == other.customers &&
deliveries == other.deliveries &&
deliveryServices == other.deliveryServices &&
notes == other.notes &&
services == other.services &&
tour == other.tour &&
warehouses == other.warehouses;
}
@ -58,10 +78,15 @@ class _$TourDetails extends TourDetails {
int get hashCode {
var _$hash = 0;
_$hash = $jc(_$hash, articles.hashCode);
_$hash = $jc(_$hash, contactChannels.hashCode);
_$hash = $jc(_$hash, contactSources.hashCode);
_$hash = $jc(_$hash, credits.hashCode);
_$hash = $jc(_$hash, customerContacts.hashCode);
_$hash = $jc(_$hash, customers.hashCode);
_$hash = $jc(_$hash, deliveries.hashCode);
_$hash = $jc(_$hash, deliveryServices.hashCode);
_$hash = $jc(_$hash, notes.hashCode);
_$hash = $jc(_$hash, services.hashCode);
_$hash = $jc(_$hash, tour.hashCode);
_$hash = $jc(_$hash, warehouses.hashCode);
_$hash = $jf(_$hash);
@ -72,10 +97,15 @@ class _$TourDetails extends TourDetails {
String toString() {
return (newBuiltValueToStringHelper(r'TourDetails')
..add('articles', articles)
..add('contactChannels', contactChannels)
..add('contactSources', contactSources)
..add('credits', credits)
..add('customerContacts', customerContacts)
..add('customers', customers)
..add('deliveries', deliveries)
..add('deliveryServices', deliveryServices)
..add('notes', notes)
..add('services', services)
..add('tour', tour)
..add('warehouses', warehouses))
.toString();
@ -90,6 +120,24 @@ class TourDetailsBuilder implements Builder<TourDetails, TourDetailsBuilder> {
_$this._articles ??= ListBuilder<Article>();
set articles(ListBuilder<Article>? articles) => _$this._articles = articles;
ListBuilder<ContactChannel>? _contactChannels;
ListBuilder<ContactChannel> get contactChannels =>
_$this._contactChannels ??= ListBuilder<ContactChannel>();
set contactChannels(ListBuilder<ContactChannel>? contactChannels) =>
_$this._contactChannels = contactChannels;
ListBuilder<ContactSource>? _contactSources;
ListBuilder<ContactSource> get contactSources =>
_$this._contactSources ??= ListBuilder<ContactSource>();
set contactSources(ListBuilder<ContactSource>? contactSources) =>
_$this._contactSources = contactSources;
ListBuilder<DeliveryCredit>? _credits;
ListBuilder<DeliveryCredit> get credits =>
_$this._credits ??= ListBuilder<DeliveryCredit>();
set credits(ListBuilder<DeliveryCredit>? credits) =>
_$this._credits = credits;
ListBuilder<CustomerContact>? _customerContacts;
ListBuilder<CustomerContact> get customerContacts =>
_$this._customerContacts ??= ListBuilder<CustomerContact>();
@ -108,11 +156,22 @@ class TourDetailsBuilder implements Builder<TourDetails, TourDetailsBuilder> {
set deliveries(ListBuilder<DeliveryWithItems>? deliveries) =>
_$this._deliveries = deliveries;
ListBuilder<DeliveryServiceValue>? _deliveryServices;
ListBuilder<DeliveryServiceValue> get deliveryServices =>
_$this._deliveryServices ??= ListBuilder<DeliveryServiceValue>();
set deliveryServices(ListBuilder<DeliveryServiceValue>? deliveryServices) =>
_$this._deliveryServices = deliveryServices;
ListBuilder<DeliveryNote>? _notes;
ListBuilder<DeliveryNote> get notes =>
_$this._notes ??= ListBuilder<DeliveryNote>();
set notes(ListBuilder<DeliveryNote>? notes) => _$this._notes = notes;
ListBuilder<Service>? _services;
ListBuilder<Service> get services =>
_$this._services ??= ListBuilder<Service>();
set services(ListBuilder<Service>? services) => _$this._services = services;
TourBuilder? _tour;
TourBuilder get tour => _$this._tour ??= TourBuilder();
set tour(TourBuilder? tour) => _$this._tour = tour;
@ -131,10 +190,15 @@ class TourDetailsBuilder implements Builder<TourDetails, TourDetailsBuilder> {
final $v = _$v;
if ($v != null) {
_articles = $v.articles.toBuilder();
_contactChannels = $v.contactChannels.toBuilder();
_contactSources = $v.contactSources.toBuilder();
_credits = $v.credits.toBuilder();
_customerContacts = $v.customerContacts.toBuilder();
_customers = $v.customers.toBuilder();
_deliveries = $v.deliveries.toBuilder();
_deliveryServices = $v.deliveryServices.toBuilder();
_notes = $v.notes.toBuilder();
_services = $v.services.toBuilder();
_tour = $v.tour.toBuilder();
_warehouses = $v.warehouses.toBuilder();
_$v = null;
@ -161,10 +225,15 @@ class TourDetailsBuilder implements Builder<TourDetails, TourDetailsBuilder> {
_$result = _$v ??
_$TourDetails._(
articles: articles.build(),
contactChannels: contactChannels.build(),
contactSources: contactSources.build(),
credits: credits.build(),
customerContacts: customerContacts.build(),
customers: customers.build(),
deliveries: deliveries.build(),
deliveryServices: deliveryServices.build(),
notes: notes.build(),
services: services.build(),
tour: tour.build(),
warehouses: warehouses.build(),
);
@ -173,14 +242,24 @@ class TourDetailsBuilder implements Builder<TourDetails, TourDetailsBuilder> {
try {
_$failedField = 'articles';
articles.build();
_$failedField = 'contactChannels';
contactChannels.build();
_$failedField = 'contactSources';
contactSources.build();
_$failedField = 'credits';
credits.build();
_$failedField = 'customerContacts';
customerContacts.build();
_$failedField = 'customers';
customers.build();
_$failedField = 'deliveries';
deliveries.build();
_$failedField = 'deliveryServices';
deliveryServices.build();
_$failedField = 'notes';
notes.build();
_$failedField = 'services';
services.build();
_$failedField = 'tour';
tour.build();
_$failedField = 'warehouses';