import 'package:built_collection/built_collection.dart'; import 'package:built_value/built_value.dart'; import 'package:built_value/serializer.dart'; import 'package:invoiceninja/data/models/entities.dart'; part 'vendor_model.g.dart'; abstract class VendorListResponse implements Built { BuiltList get data; VendorListResponse._(); factory VendorListResponse([updates(VendorListResponseBuilder b)]) = _$VendorListResponse; static Serializer get serializer => _$vendorListResponseSerializer; } abstract class VendorItemResponse implements Built { VendorEntity get data; VendorItemResponse._(); factory VendorItemResponse([updates(VendorItemResponseBuilder b)]) = _$VendorItemResponse; static Serializer get serializer => _$vendorItemResponseSerializer; } class VendorFields { static const String name = 'name'; static const String balance = 'balance'; static const String paidToDate = 'paidToDate'; static const String address1 = 'address1'; static const String address2 = 'address2'; static const String city = 'city'; static const String state = 'state'; static const String postalCode = 'postalCode'; static const String countryId = 'countryId'; static const String workPhone = 'workPhone'; static const String privateNotes = 'privateNotes'; static const String lastLogin = 'lastLogin'; static const String website = 'website'; static const String vatNumber = 'vatNumber'; static const String idNumber = 'idNumber'; static const String currencyId = 'currencyId'; static const String customValue1 = 'customValue1'; static const String customValue2 = 'customValue2'; static const String updatedAt = 'updatedAt'; static const String archivedAt = 'archivedAt'; static const String isDeleted = 'isDeleted'; } abstract class VendorEntity extends Object with BaseEntity implements Built { static int counter = 0; factory VendorEntity() { return _$VendorEntity._( id: --VendorEntity.counter, name: '', balance: 0.0, paidToDate: 0.0, address1: '', address2: '', city: '', state: '', postalCode: '', countryId: 0, workPhone: '', privateNotes: '', lastLogin: '', website: '', vatNumber: '', idNumber: '', currencyId: 0, customValue1: '', customValue2: '', vendorContacts: BuiltList(), updatedAt: 0, archivedAt: 0, isDeleted: false, ); } String get name; 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; @BuiltValueField(wireName: 'country_id') int get countryId; @BuiltValueField(wireName: 'work_phone') String get workPhone; @BuiltValueField(wireName: 'private_notes') String get privateNotes; @BuiltValueField(wireName: 'last_login') String get lastLogin; String get website; @BuiltValueField(wireName: 'vat_number') String get vatNumber; @BuiltValueField(wireName: 'id_number') String get idNumber; @BuiltValueField(wireName: 'currency_id') int get currencyId; @BuiltValueField(wireName: 'custom_value1') String get customValue1; @BuiltValueField(wireName: 'custom_value2') String get customValue2; @BuiltValueField(wireName: 'vendor_contacts') BuiltList get vendorContacts; int compareTo(VendorEntity vendor, String sortField, bool sortAscending) { int response = 0; VendorEntity vendorA = sortAscending ? this : vendor; VendorEntity vendorB = sortAscending ? vendor: this; switch (sortField) { case VendorFields.name: response = vendorA.name.compareTo(vendorB.name); } return response; } bool matchesSearch(String search) { if (search == null || search.isEmpty) { return true; } return name.contains(search); } VendorEntity._(); static Serializer get serializer => _$vendorEntitySerializer; } abstract class VendorContactEntity extends Object with BaseEntity implements Built { static int counter = 0; factory VendorContactEntity() { return _$VendorContactEntity._( id: --VendorContactEntity.counter, firstName: '', lastName: '', email: '', isPrimary: false, phone: '', updatedAt: 0, archivedAt: 0, isDeleted: false, ); } @BuiltValueField(wireName: 'first_name') String get firstName; @BuiltValueField(wireName: 'last_name') String get lastName; String get email; @BuiltValueField(wireName: 'is_primary') bool get isPrimary; String get phone; VendorContactEntity._(); static Serializer get serializer => _$vendorContactEntitySerializer; }