243 lines
7.1 KiB
Dart
243 lines
7.1 KiB
Dart
import 'package:built_collection/built_collection.dart';
|
|
import 'package:invoiceninja_flutter/utils/enums.dart';
|
|
import 'package:invoiceninja_flutter/constants.dart';
|
|
import 'package:invoiceninja_flutter/data/models/quote_model.dart';
|
|
import 'package:invoiceninja_flutter/data/models/company_model.dart';
|
|
import 'package:invoiceninja_flutter/data/models/models.dart';
|
|
import 'package:invoiceninja_flutter/redux/reports/reports_state.dart';
|
|
import 'package:invoiceninja_flutter/redux/static/static_state.dart';
|
|
import 'package:invoiceninja_flutter/ui/reports/reports_screen.dart';
|
|
import 'package:memoize/memoize.dart';
|
|
|
|
enum QuoteReportFields {
|
|
amount,
|
|
balance,
|
|
client,
|
|
client_balance,
|
|
client_address1,
|
|
client_address2,
|
|
client_shipping_address1,
|
|
client_shipping_address2,
|
|
status,
|
|
discount,
|
|
po_number,
|
|
partial_due_date,
|
|
due_date,
|
|
partial,
|
|
auto_bill,
|
|
custom_value1,
|
|
custom_value2,
|
|
custom_value3,
|
|
custom_value4,
|
|
custom_taxes1,
|
|
custom_taxes2,
|
|
custom_taxes3,
|
|
custom_taxes4,
|
|
has_expenses,
|
|
custom_surcharge1,
|
|
custom_surcharge2,
|
|
custom_surcharge3,
|
|
custom_surcharge4,
|
|
updated_at,
|
|
archived_at,
|
|
is_deleted,
|
|
is_approved,
|
|
}
|
|
|
|
var memoizedQuoteReport = memo7((
|
|
UserCompanyEntity userCompany,
|
|
ReportsUIState reportsUIState,
|
|
BuiltMap<String, InvoiceEntity> quoteMap,
|
|
BuiltMap<String, ClientEntity> clientMap,
|
|
BuiltMap<String, VendorEntity> vendorMap,
|
|
BuiltMap<String, UserEntity> userMap,
|
|
StaticState staticState,
|
|
) =>
|
|
quoteReport(userCompany, reportsUIState, quoteMap, clientMap, vendorMap,
|
|
userMap, staticState));
|
|
|
|
ReportResult quoteReport(
|
|
UserCompanyEntity userCompany,
|
|
ReportsUIState reportsUIState,
|
|
BuiltMap<String, InvoiceEntity> quoteMap,
|
|
BuiltMap<String, ClientEntity> clientMap,
|
|
BuiltMap<String, VendorEntity> vendorMap,
|
|
BuiltMap<String, UserEntity> userMap,
|
|
StaticState staticState,
|
|
) {
|
|
final List<List<ReportElement>> data = [];
|
|
BuiltList<QuoteReportFields> columns;
|
|
|
|
final reportSettings = userCompany.settings.reportSettings;
|
|
final quoteReportSettings =
|
|
reportSettings != null && reportSettings.containsKey(kReportQuote)
|
|
? reportSettings[kReportQuote]
|
|
: ReportSettingsEntity();
|
|
|
|
final defaultColumns = [
|
|
QuoteReportFields.amount,
|
|
QuoteReportFields.balance,
|
|
QuoteReportFields.due_date,
|
|
QuoteReportFields.client,
|
|
];
|
|
|
|
if (quoteReportSettings.columns.isNotEmpty) {
|
|
columns = BuiltList(quoteReportSettings.columns
|
|
.map((e) => EnumUtils.fromString(QuoteReportFields.values, e))
|
|
.toList());
|
|
} else {
|
|
columns = BuiltList(defaultColumns);
|
|
}
|
|
|
|
for (var quoteId in quoteMap.keys) {
|
|
final quote = quoteMap[quoteId];
|
|
final client = clientMap[quote.clientId];
|
|
//final vendor = vendorMap[quote.vendorId];
|
|
|
|
if (quote.isDeleted) {
|
|
continue;
|
|
}
|
|
|
|
bool skip = false;
|
|
final List<ReportElement> row = [];
|
|
|
|
for (var column in columns) {
|
|
dynamic value = '';
|
|
|
|
switch (column) {
|
|
case QuoteReportFields.amount:
|
|
value = quote.amount;
|
|
break;
|
|
case QuoteReportFields.balance:
|
|
value = quote.balance;
|
|
break;
|
|
case QuoteReportFields.client:
|
|
value = client.displayName;
|
|
break;
|
|
case QuoteReportFields.client_balance:
|
|
value = client.balance;
|
|
break;
|
|
case QuoteReportFields.client_address1:
|
|
value = client.address1;
|
|
break;
|
|
case QuoteReportFields.client_address2:
|
|
value = client.address2;
|
|
break;
|
|
case QuoteReportFields.client_shipping_address1:
|
|
value = client.shippingAddress1;
|
|
break;
|
|
case QuoteReportFields.client_shipping_address2:
|
|
value = client.shippingAddress2;
|
|
break;
|
|
case QuoteReportFields.status:
|
|
value = staticState.invoiceStatusMap[quote.statusId].name;
|
|
break;
|
|
case QuoteReportFields.discount:
|
|
value = quote.discount;
|
|
break;
|
|
case QuoteReportFields.po_number:
|
|
value = quote.poNumber;
|
|
break;
|
|
case QuoteReportFields.partial_due_date:
|
|
value = quote.partialDueDate;
|
|
break;
|
|
case QuoteReportFields.due_date:
|
|
value = quote.dueDate;
|
|
break;
|
|
case QuoteReportFields.partial:
|
|
value = quote.partial;
|
|
break;
|
|
case QuoteReportFields.auto_bill:
|
|
value = quote.autoBill;
|
|
break;
|
|
case QuoteReportFields.custom_value1:
|
|
value = quote.customValue1;
|
|
break;
|
|
case QuoteReportFields.custom_value2:
|
|
value = quote.customValue2;
|
|
break;
|
|
case QuoteReportFields.custom_value3:
|
|
value = quote.customValue3;
|
|
break;
|
|
case QuoteReportFields.custom_value4:
|
|
value = quote.customValue4;
|
|
break;
|
|
case QuoteReportFields.custom_taxes1:
|
|
value = quote.customTaxes1;
|
|
break;
|
|
case QuoteReportFields.custom_taxes2:
|
|
value = quote.customTaxes2;
|
|
break;
|
|
case QuoteReportFields.custom_taxes3:
|
|
value = quote.customTaxes3;
|
|
break;
|
|
case QuoteReportFields.custom_taxes4:
|
|
value = quote.customTaxes4;
|
|
break;
|
|
case QuoteReportFields.has_expenses:
|
|
value = quote.hasExpenses;
|
|
break;
|
|
case QuoteReportFields.custom_surcharge1:
|
|
value = quote.customSurcharge1;
|
|
break;
|
|
case QuoteReportFields.custom_surcharge2:
|
|
value = quote.customSurcharge2;
|
|
break;
|
|
case QuoteReportFields.custom_surcharge3:
|
|
value = quote.customSurcharge3;
|
|
break;
|
|
case QuoteReportFields.custom_surcharge4:
|
|
value = quote.customSurcharge4;
|
|
break;
|
|
case QuoteReportFields.updated_at:
|
|
value = quote.updatedAt;
|
|
break;
|
|
case QuoteReportFields.archived_at:
|
|
value = quote.archivedAt;
|
|
break;
|
|
case QuoteReportFields.is_deleted:
|
|
value = quote.isDeleted;
|
|
break;
|
|
case QuoteReportFields.is_approved:
|
|
value = quote.isApproved;
|
|
break;
|
|
}
|
|
|
|
if (!ReportResult.matchField(
|
|
value: value,
|
|
userCompany: userCompany,
|
|
reportsUIState: reportsUIState,
|
|
column: EnumUtils.parse(column),
|
|
)) {
|
|
skip = true;
|
|
}
|
|
|
|
if (value.runtimeType == bool) {
|
|
row.add(quote.getReportBool(value: value));
|
|
} else if (value.runtimeType == double || value.runtimeType == int) {
|
|
row.add(quote.getReportNumber(
|
|
value: value, currencyId: client.settings.currencyId));
|
|
} else {
|
|
row.add(quote.getReportString(value: value));
|
|
}
|
|
}
|
|
|
|
if (!skip) {
|
|
data.add(row);
|
|
}
|
|
}
|
|
|
|
final selectedColumns = columns.map((item) => EnumUtils.parse(item)).toList();
|
|
data.sort((rowA, rowB) =>
|
|
sortReportTableRows(rowA, rowB, quoteReportSettings, selectedColumns));
|
|
|
|
return ReportResult(
|
|
allColumns:
|
|
QuoteReportFields.values.map((e) => EnumUtils.parse(e)).toList(),
|
|
columns: selectedColumns,
|
|
defaultColumns:
|
|
defaultColumns.map((item) => EnumUtils.parse(item)).toList(),
|
|
data: data,
|
|
);
|
|
}
|