Add missing export types
This commit is contained in:
parent
e963ee2bd1
commit
2521b982cc
|
|
@ -704,9 +704,9 @@ final kReportMap = {
|
||||||
kReportQuoteItem: ExportType.quote_items,
|
kReportQuoteItem: ExportType.quote_items,
|
||||||
kReportRecurringExpense: null,
|
kReportRecurringExpense: null,
|
||||||
kReportRecurringInvoice: ExportType.recurring_invoices,
|
kReportRecurringInvoice: ExportType.recurring_invoices,
|
||||||
kReportPurchaseOrder: null,
|
kReportPurchaseOrder: ExportType.purchase_order,
|
||||||
kReportPurchaseOrderItem: null,
|
kReportPurchaseOrderItem: ExportType.purchase_order_item,
|
||||||
kReportVendor: null,
|
kReportVendor: ExportType.vendor,
|
||||||
kReportTransaction: null,
|
kReportTransaction: null,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -202,6 +202,9 @@ class ExportType extends EnumClass {
|
||||||
static const ExportType products = _$products;
|
static const ExportType products = _$products;
|
||||||
static const ExportType tasks = _$tasks;
|
static const ExportType tasks = _$tasks;
|
||||||
static const ExportType profitloss = _$profitloss;
|
static const ExportType profitloss = _$profitloss;
|
||||||
|
static const ExportType vendor = _$vendor;
|
||||||
|
static const ExportType purchase_order = _$purchase_order;
|
||||||
|
static const ExportType purchase_order_item = _$purchase_order_item;
|
||||||
static const ExportType ar_detailed = _$ar_detailed;
|
static const ExportType ar_detailed = _$ar_detailed;
|
||||||
static const ExportType ar_summary = _$ar_summary;
|
static const ExportType ar_summary = _$ar_summary;
|
||||||
static const ExportType client_balance = _$client_balance;
|
static const ExportType client_balance = _$client_balance;
|
||||||
|
|
|
||||||
|
|
@ -62,6 +62,10 @@ const ExportType _$payments = const ExportType._('payments');
|
||||||
const ExportType _$products = const ExportType._('products');
|
const ExportType _$products = const ExportType._('products');
|
||||||
const ExportType _$tasks = const ExportType._('tasks');
|
const ExportType _$tasks = const ExportType._('tasks');
|
||||||
const ExportType _$profitloss = const ExportType._('profitloss');
|
const ExportType _$profitloss = const ExportType._('profitloss');
|
||||||
|
const ExportType _$vendor = const ExportType._('vendor');
|
||||||
|
const ExportType _$purchase_order = const ExportType._('purchase_order');
|
||||||
|
const ExportType _$purchase_order_item =
|
||||||
|
const ExportType._('purchase_order_item');
|
||||||
const ExportType _$ar_detailed = const ExportType._('ar_detailed');
|
const ExportType _$ar_detailed = const ExportType._('ar_detailed');
|
||||||
const ExportType _$ar_summary = const ExportType._('ar_summary');
|
const ExportType _$ar_summary = const ExportType._('ar_summary');
|
||||||
const ExportType _$client_balance = const ExportType._('client_balance');
|
const ExportType _$client_balance = const ExportType._('client_balance');
|
||||||
|
|
@ -101,6 +105,12 @@ ExportType _$exportValueOf(String name) {
|
||||||
return _$tasks;
|
return _$tasks;
|
||||||
case 'profitloss':
|
case 'profitloss':
|
||||||
return _$profitloss;
|
return _$profitloss;
|
||||||
|
case 'vendor':
|
||||||
|
return _$vendor;
|
||||||
|
case 'purchase_order':
|
||||||
|
return _$purchase_order;
|
||||||
|
case 'purchase_order_item':
|
||||||
|
return _$purchase_order_item;
|
||||||
case 'ar_detailed':
|
case 'ar_detailed':
|
||||||
return _$ar_detailed;
|
return _$ar_detailed;
|
||||||
case 'ar_summary':
|
case 'ar_summary':
|
||||||
|
|
@ -135,6 +145,9 @@ final BuiltSet<ExportType> _$exportValues =
|
||||||
_$products,
|
_$products,
|
||||||
_$tasks,
|
_$tasks,
|
||||||
_$profitloss,
|
_$profitloss,
|
||||||
|
_$vendor,
|
||||||
|
_$purchase_order,
|
||||||
|
_$purchase_order_item,
|
||||||
_$ar_detailed,
|
_$ar_detailed,
|
||||||
_$ar_summary,
|
_$ar_summary,
|
||||||
_$client_balance,
|
_$client_balance,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue