117 lines
3.9 KiB
Dart
117 lines
3.9 KiB
Dart
import 'package:flutter_redux/flutter_redux.dart';
|
|
import 'package:invoiceninja_flutter/data/models/vendor_model.dart';
|
|
import 'package:invoiceninja_flutter/data/models/entities.dart';
|
|
import 'package:invoiceninja_flutter/redux/app/app_state.dart';
|
|
import 'package:invoiceninja_flutter/redux/expense/expense_selectors.dart';
|
|
import 'package:invoiceninja_flutter/redux/vendor/vendor_selectors.dart';
|
|
import 'package:invoiceninja_flutter/ui/app/FieldGrid.dart';
|
|
import 'package:invoiceninja_flutter/ui/app/entity_header.dart';
|
|
import 'package:invoiceninja_flutter/ui/app/lists/list_divider.dart';
|
|
import 'package:invoiceninja_flutter/ui/vendor/view/vendor_view_vm.dart';
|
|
import 'package:invoiceninja_flutter/utils/formatting.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:invoiceninja_flutter/ui/app/icon_message.dart';
|
|
import 'package:invoiceninja_flutter/utils/icons.dart';
|
|
import 'package:invoiceninja_flutter/utils/localization.dart';
|
|
|
|
class VendorOverview extends StatelessWidget {
|
|
const VendorOverview({
|
|
Key key,
|
|
@required this.viewModel,
|
|
}) : super(key: key);
|
|
|
|
final VendorViewVM viewModel;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final localization = AppLocalization.of(context);
|
|
final vendor = viewModel.vendor;
|
|
final company = viewModel.company;
|
|
final state = StoreProvider.of<AppState>(context).state;
|
|
final statics = state.staticState;
|
|
final fields = <String, String>{};
|
|
|
|
if (vendor.hasCurrency && vendor.currencyId != company.currencyId) {
|
|
fields[VendorFields.currencyId] =
|
|
statics.currencyMap[vendor.currencyId].name;
|
|
}
|
|
|
|
if (vendor.customValue1.isNotEmpty) {
|
|
final label1 = company.getCustomFieldLabel(CustomFieldType.vendor1);
|
|
fields[label1] = formatCustomValue(
|
|
context: context,
|
|
field: CustomFieldType.vendor1,
|
|
value: vendor.customValue1);
|
|
}
|
|
|
|
if (vendor.customValue2.isNotEmpty) {
|
|
final label2 = company.getCustomFieldLabel(CustomFieldType.vendor2);
|
|
fields[label2] = formatCustomValue(
|
|
context: context,
|
|
field: CustomFieldType.vendor2,
|
|
value: vendor.customValue2);
|
|
}
|
|
|
|
return ListView(
|
|
children: <Widget>[
|
|
EntityHeader(
|
|
label: localization.total,
|
|
value: formatNumber(
|
|
memoizedCalculateVendorBalance(vendor.id, vendor.currencyId,
|
|
state.expenseState.map, state.expenseState.list),
|
|
context,
|
|
currencyId: vendor.currencyId ?? company.currencyId),
|
|
),
|
|
vendor.privateNotes != null && vendor.privateNotes.isNotEmpty
|
|
? IconMessage(vendor.privateNotes)
|
|
: Container(),
|
|
FieldGrid(fields),
|
|
Divider(
|
|
height: 1.0,
|
|
),
|
|
EntityListTile(
|
|
icon: getEntityIcon(EntityType.expense),
|
|
title: localization.expenses,
|
|
onTap: () => viewModel.onEntityPressed(context, EntityType.expense),
|
|
onLongPress: () =>
|
|
viewModel.onEntityPressed(context, EntityType.expense, true),
|
|
subtitle:
|
|
memoizedExpenseStatsForVendor(vendor.id, state.expenseState.map)
|
|
.present(localization.active, localization.archived),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|
|
|
|
class EntityListTile extends StatelessWidget {
|
|
const EntityListTile(
|
|
{this.icon, this.onTap, this.onLongPress, this.title, this.subtitle});
|
|
|
|
final Function onTap;
|
|
final Function onLongPress;
|
|
final IconData icon;
|
|
final String title;
|
|
final String subtitle;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Column(
|
|
children: <Widget>[
|
|
Material(
|
|
color: Theme.of(context).canvasColor,
|
|
child: ListTile(
|
|
title: Text(title),
|
|
subtitle: Text(subtitle),
|
|
leading: Icon(icon, size: 18.0),
|
|
trailing: Icon(Icons.navigate_next),
|
|
onTap: onTap,
|
|
onLongPress: onLongPress,
|
|
),
|
|
),
|
|
ListDivider(),
|
|
],
|
|
);
|
|
}
|
|
}
|