mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-23 16:19:49 +00:00
fix: syntax error
This commit is contained in:
@@ -108,7 +108,7 @@ export default class UncategorizedCashflowTransaction extends mixin(
|
||||
query.whereNotNull('excluded_at')
|
||||
}
|
||||
};
|
||||
},
|
||||
}
|
||||
|
||||
/**
|
||||
* Relationship mapping.
|
||||
|
||||
@@ -5,7 +5,7 @@ import { entries, groupBy } from 'lodash';
|
||||
import { CreateAccount } from '@/services/Accounts/CreateAccount';
|
||||
import {
|
||||
IAccountCreateDTO,
|
||||
\ IPlaidTransactionsSyncedEventPayload,
|
||||
IPlaidTransactionsSyncedEventPayload,
|
||||
PlaidAccount,
|
||||
PlaidTransaction,
|
||||
} from '@/interfaces';
|
||||
|
||||
@@ -3,13 +3,13 @@ import { Knex } from 'knex';
|
||||
export enum BankRuleConditionField {
|
||||
Amount = 'Amount',
|
||||
Description = 'Description',
|
||||
Payee = 'Payee'
|
||||
Payee = 'Payee',
|
||||
}
|
||||
|
||||
export enum BankRuleConditionComparator {
|
||||
Contains = 'contains',
|
||||
Equals = 'equals',
|
||||
NotContain = 'not_contain';
|
||||
NotContain = 'not_contain',
|
||||
}
|
||||
|
||||
export interface IBankRuleCondition {
|
||||
@@ -21,7 +21,7 @@ export interface IBankRuleCondition {
|
||||
|
||||
export enum BankRuleConditionType {
|
||||
Or = 'or',
|
||||
And = 'and'
|
||||
And = 'and',
|
||||
}
|
||||
|
||||
export enum BankRuleApplyIfTransactionType {
|
||||
|
||||
Reference in New Issue
Block a user