import 'package:built_collection/built_collection.dart'; import 'package:built_value/built_value.dart'; import 'package:built_value/serializer.dart'; import 'package:flutter/foundation.dart'; import 'package:invoiceninja_flutter/constants.dart'; import 'package:invoiceninja_flutter/data/models/company_model.dart'; import 'package:invoiceninja_flutter/data/models/entities.dart'; import 'package:invoiceninja_flutter/data/models/gateway_token_model.dart'; import 'package:invoiceninja_flutter/data/models/group_model.dart'; import 'package:invoiceninja_flutter/data/models/models.dart'; import 'package:invoiceninja_flutter/redux/app/app_state.dart'; import 'package:invoiceninja_flutter/utils/formatting.dart'; part 'client_model.g.dart'; abstract class ClientListResponse implements Built { factory ClientListResponse([void updates(ClientListResponseBuilder b)]) = _$ClientListResponse; ClientListResponse._(); BuiltList get data; static Serializer get serializer => _$clientListResponseSerializer; } abstract class ClientItemResponse implements Built { factory ClientItemResponse([void updates(ClientItemResponseBuilder b)]) = _$ClientItemResponse; ClientItemResponse._(); ClientEntity get data; static Serializer get serializer => _$clientItemResponseSerializer; } class ClientFields { static const String name = 'name'; static const String balance = 'balance'; static const String vatNumber = 'vatNumber'; static const String idNumber = 'idNumber'; static const String paidToDate = 'paidToDate'; static const String createdAt = 'createdAt'; static const String updatedAt = 'updatedAt'; static const String archivedAt = 'archivedAt'; static const String isDeleted = 'isDeleted'; static const String contact = 'contact'; static const String phone = 'phone'; static const String language = 'language'; static const String currency = 'currency'; } abstract class ClientEntity extends Object with BaseEntity, SelectableEntity implements Built { factory ClientEntity({String id, AppState state}) { return _$ClientEntity._( id: id ?? BaseEntity.nextId, isChanged: false, settings: SettingsEntity(), name: '', displayName: '', balance: 0.0, paidToDate: 0.0, address1: '', address2: '', city: '', state: '', postalCode: '', countryId: '', phone: '', privateNotes: '', publicNotes: '', website: '', industryId: '', sizeId: '', vatNumber: '', idNumber: '', shippingAddress1: '', shippingAddress2: '', shippingCity: '', shippingState: '', shippingPostalCode: '', shippingCountryId: '', customValue1: '', customValue2: '', contacts: BuiltList( [ContactEntity().rebuild((b) => b..isPrimary = true)], ), activities: BuiltList(), gatewayTokens: BuiltList(), lastUpdatedActivities: 0, updatedAt: 0, archivedAt: 0, isDeleted: false, ); } ClientEntity._(); ClientEntity get clone => rebuild((b) => b ..id = BaseEntity.nextId ..isChanged = false ..isDeleted = false); @nullable @BuiltValueField(wireName: 'group_settings_id') String get groupId; @nullable int get lastUpdatedActivities; bool get areActivitiesLoaded => lastUpdatedActivities != null && lastUpdatedActivities > 0; bool get areActivitiesStale { if (!areActivitiesLoaded) { return true; } return DateTime.now().millisecondsSinceEpoch - lastUpdatedActivities > kMillisecondsToRefreshActivities; } @override EntityType get entityType { return EntityType.client; } @BuiltValueField(wireName: 'name') String get name; @BuiltValueField(wireName: 'display_name') String get displayName; @BuiltValueField(wireName: 'balance') double get balance; @BuiltValueField(wireName: 'paid_to_date') double get paidToDate; String get address1; String get address2; String get city; String get state; @BuiltValueField(wireName: 'postal_code') String get postalCode; @nullable @BuiltValueField(wireName: 'country_id') String get countryId; @nullable @BuiltValueField(wireName: 'phone') String get phone; @BuiltValueField(wireName: 'private_notes') String get privateNotes; @nullable @BuiltValueField(wireName: 'public_notes') String get publicNotes; String get website; @nullable @BuiltValueField(wireName: 'industry_id') String get industryId; @nullable @BuiltValueField(wireName: 'size_id') String get sizeId; @BuiltValueField(wireName: 'vat_number') String get vatNumber; @BuiltValueField(wireName: 'id_number') String get idNumber; @BuiltValueField(wireName: 'shipping_address1') String get shippingAddress1; @BuiltValueField(wireName: 'shipping_address2') String get shippingAddress2; @BuiltValueField(wireName: 'shipping_city') String get shippingCity; @BuiltValueField(wireName: 'shipping_state') String get shippingState; @BuiltValueField(wireName: 'shipping_postal_code') String get shippingPostalCode; @nullable @BuiltValueField(wireName: 'shipping_country_id') String get shippingCountryId; SettingsEntity get settings; @BuiltValueField(wireName: 'custom_value1') String get customValue1; @BuiltValueField(wireName: 'custom_value2') String get customValue2; @BuiltValueField(wireName: 'custom_value3') String get customValue3; @BuiltValueField(wireName: 'custom_value4') String get customValue4; BuiltList get contacts; BuiltList get activities; @BuiltValueField(wireName: 'gateway_tokens') BuiltList get gatewayTokens; //String get last_login; //String get custom_messages; @override String get listDisplayName { return displayName; } String getCurrencyId( {@required CompanyEntity company, @required GroupEntity group}) { if (hasCurrency) { return settings.currencyId; } else if (group.hasCurrency) { return group.currencyId; } else { return company.currencyId; } } Iterable getActivities({String invoiceId, String typeId}) { return activities.where((activity) { if (invoiceId != null && activity.invoiceId != invoiceId) { return false; } if (typeId != null && activity.activityTypeId != typeId) { return false; } return true; }); } EmailTemplate getNextEmailTemplate(String invoiceId) { EmailTemplate template = EmailTemplate.invoiceEmail; getActivities(invoiceId: invoiceId, typeId: kActivityEmailInvoice) .forEach((activity) { if (template == EmailTemplate.invoiceEmail) { template = EmailTemplate.firstReminder; } if (activity.notes == 'reminder1') { template = EmailTemplate.secondReminder; } else if (activity.notes == 'reminder2') { template = EmailTemplate.thirdReminder; } }); return template; } String getPaymentTerm(String netLabel) { if (settings.defaultPaymentTerms == 0 || settings.defaultPaymentTerms == null) { return ''; } else if (settings.defaultPaymentTerms == -1) { return '$netLabel 0'; } else { return '$netLabel ${settings.defaultPaymentTerms}'; } } bool get hasGroup => groupId != null && groupId.isNotEmpty; bool get hasLanguage => settings.languageId != null && settings.languageId.isNotEmpty; bool get hasEmailAddress => contacts.where((contact) => contact.email?.isNotEmpty).isNotEmpty; int compareTo(ClientEntity client, String sortField, bool sortAscending) { int response = 0; final ClientEntity clientA = sortAscending ? this : client; final ClientEntity clientB = sortAscending ? client : this; switch (sortField) { case ClientFields.balance: response = clientA.balance.compareTo(clientB.balance); break; case ClientFields.updatedAt: response = clientA.updatedAt.compareTo(clientB.updatedAt); break; } if (response == 0) { return clientA.displayName .toLowerCase() .compareTo(clientB.displayName.toLowerCase()); } else { return response; } } @override bool matchesFilter(String filter) { if (filter == null || filter.isEmpty) { return true; } filter = filter.toLowerCase(); if (displayName.toLowerCase().contains(filter)) { return true; } else if (vatNumber.toLowerCase().contains(filter)) { return true; } else if (idNumber.toLowerCase().contains(filter)) { return true; } else if (phone.toLowerCase().contains(filter)) { return true; } else if (address1.toLowerCase().contains(filter)) { return true; } else if (city.toLowerCase().contains(filter)) { return true; } else if (postalCode.toLowerCase().contains(filter)) { return true; } else if (contacts .where((contact) => contact.matchesFilter(filter)) .isNotEmpty) { return true; } return false; } @override String matchesFilterValue(String filter) { if (filter == null || filter.isEmpty) { return null; } filter = filter.toLowerCase(); final contact = contacts.firstWhere( (contact) => contact.matchesFilter(filter), orElse: () => null); if (vatNumber.toLowerCase().contains(filter)) { return vatNumber; } else if (idNumber.toLowerCase().contains(filter)) { return idNumber; } else if (phone.toLowerCase().contains(filter)) { return phone; } else if (address1.toLowerCase().contains(filter)) { return address1; } else if (city.toLowerCase().contains(filter)) { return city; } else if (postalCode.toLowerCase().contains(filter)) { return postalCode; } else if (contact != null) { final match = contact.matchesFilterValue(filter); return match == displayName ? null : match; } return null; } @override List getActions( {UserCompanyEntity userCompany, ClientEntity client, bool includeEdit = false, bool multiselect = false}) { final actions = []; if (!isDeleted && !multiselect) { if (includeEdit && userCompany.canEditEntity(this)) { actions.add(EntityAction.edit); } if (userCompany.canCreate(EntityType.client)) { actions.add(EntityAction.newInvoice); } if (userCompany.canCreate(EntityType.expense)) { actions.add(EntityAction.newExpense); } if (userCompany.canCreate(EntityType.payment)) { actions.add(EntityAction.newPayment); } } if (actions.isNotEmpty) { actions.add(null); } return actions..addAll(super.getActions(userCompany: userCompany)); } @override double get listDisplayAmount => null; @override FormatNumberType get listDisplayAmountType => FormatNumberType.money; bool get areAddressesDifferent => address1 != shippingAddress1 || address2 != shippingAddress2 || city != shippingCity || state != shippingState || postalCode != shippingPostalCode || countryId != shippingCountryId; bool get hasShippingAddress => shippingAddress1.isNotEmpty || shippingAddress2.isNotEmpty || shippingCity.isNotEmpty || shippingState.isNotEmpty || shippingPostalCode.isNotEmpty || (shippingCountryId ?? '').isNotEmpty; bool get hasBillingAddress => address1.isNotEmpty || address2.isNotEmpty || city.isNotEmpty || state.isNotEmpty || postalCode.isNotEmpty || (countryId ?? '').isNotEmpty; bool get hasCountry => countryId != null && countryId.isNotEmpty; String get currencyId => settings.currencyId; bool get hasCurrency => settings.currencyId != null && settings.currencyId.isNotEmpty; String get languageId => settings.languageId; bool get hasNameSet { if (contacts.isEmpty) { return false; } final contact = contacts.first; return name.isNotEmpty || contact.fullName.isNotEmpty || contact.email.isNotEmpty; } /* @override String toString() { return displayName; } */ static Serializer get serializer => _$clientEntitySerializer; } class ContactFields { static const String firstName = 'firstName'; static const String lastName = 'lastName'; static const String email = 'email'; static const String phone = 'phone'; } abstract class ContactEntity extends Object with BaseEntity, SelectableEntity implements Built { factory ContactEntity() { return _$ContactEntity._( id: BaseEntity.nextId, isChanged: false, firstName: '', lastName: '', email: '', password: '', phone: '', contactKey: '', isPrimary: false, sendInvoice: true, customValue1: '', customValue2: '', updatedAt: 0, archivedAt: 0, isDeleted: false, ); } ContactEntity._(); @BuiltValueField(wireName: 'first_name') String get firstName; @BuiltValueField(wireName: 'last_name') String get lastName; String get email; @nullable String get password; String get phone; @BuiltValueField(wireName: 'contact_key') String get contactKey; @BuiltValueField(wireName: 'is_primary') bool get isPrimary; @BuiltValueField(wireName: 'send_invoice') bool get sendInvoice; @BuiltValueField(wireName: 'custom_value1') String get customValue1; @BuiltValueField(wireName: 'custom_value2') String get customValue2; @BuiltValueField(wireName: 'custom_value3') String get customValue3; @BuiltValueField(wireName: 'custom_value4') String get customValue4; String get fullName { return (firstName + ' ' + lastName).trim(); } @override EntityType get entityType { return EntityType.contact; } @override bool matchesFilter(String filter) { if (filter == null || filter.isEmpty) { return true; } filter = filter.toLowerCase(); if (firstName.toLowerCase().contains(filter)) { return true; } if (lastName.toLowerCase().contains(filter)) { return true; } if (phone.toLowerCase().contains(filter)) { return true; } if (email.toLowerCase().contains(filter)) { return true; } return false; } @override String matchesFilterValue(String filter) { if (filter == null || filter.isEmpty) { return null; } filter = filter.toLowerCase(); if (fullName.toLowerCase().contains(filter)) { return fullName; } else if (email.toLowerCase().contains(filter)) { return email; } else if (phone.toLowerCase().contains(filter)) { return phone; } return null; } @override String get listDisplayName { return fullName; } @override double get listDisplayAmount => null; @override FormatNumberType get listDisplayAmountType => FormatNumberType.money; static Serializer get serializer => _$contactEntitySerializer; }