Files
ezbookkeeping/src/lib/transaction.ts
T
2025-03-23 14:55:17 +08:00

185 lines
7.0 KiB
TypeScript

import { CategoryType } from '@/core/category.ts';
import { TransactionType } from '@/core/transaction.ts';
import { Account } from '@/models/account.ts';
import { TransactionCategory } from '@/models/transaction_category.ts';
import { TransactionTag } from '@/models/transaction_tag.ts';
import { Transaction, TransactionPicture } from '@/models/transaction.ts';
import {
isNumber
} from './common.ts';
import {
getBrowserTimezoneOffsetMinutes,
getDummyUnixTimeForLocalUsage
} from './datetime.ts';
import {
categoryTypeToTransactionType,
isSubCategoryIdAvailable,
getFirstAvailableCategoryId,
getFirstAvailableSubCategoryId
} from './category.ts';
export interface SetTransactionOptions {
type?: number;
categoryId?: string;
accountId?: string;
destinationAccountId?: string;
amount?: number;
destinationAmount?: number;
tagIds?: string;
comment?: string;
}
export function setTransactionModelByTransaction(transaction: Transaction, transaction2: Transaction | null | undefined, allCategories: Record<number, TransactionCategory[]>, allCategoriesMap: Record<string, TransactionCategory>, allVisibleAccounts: Account[], allAccountsMap: Record<string, Account>, allTagsMap: Record<string, TransactionTag>, defaultAccountId: string, options: SetTransactionOptions, setContextData: boolean, convertContextTime: boolean): void {
if (!options.type && options.categoryId && options.categoryId !== '0' && allCategoriesMap[options.categoryId]) {
const category = allCategoriesMap[options.categoryId];
const type = categoryTypeToTransactionType(category.type);
if (isNumber(type)) {
transaction.type = type;
}
}
if (allCategories[CategoryType.Expense] &&
allCategories[CategoryType.Expense].length) {
if (options.categoryId && options.categoryId !== '0') {
if (isSubCategoryIdAvailable(allCategories[CategoryType.Expense], options.categoryId)) {
transaction.expenseCategoryId = options.categoryId;
} else {
transaction.expenseCategoryId = getFirstAvailableSubCategoryId(allCategories[CategoryType.Expense], options.categoryId);
}
}
if (!transaction.expenseCategoryId) {
transaction.expenseCategoryId = getFirstAvailableCategoryId(allCategories[CategoryType.Expense]);
}
}
if (allCategories[CategoryType.Income] &&
allCategories[CategoryType.Income].length) {
if (options.categoryId && options.categoryId !== '0') {
if (isSubCategoryIdAvailable(allCategories[CategoryType.Income], options.categoryId)) {
transaction.incomeCategoryId = options.categoryId;
} else {
transaction.incomeCategoryId = getFirstAvailableSubCategoryId(allCategories[CategoryType.Income], options.categoryId);
}
}
if (!transaction.incomeCategoryId) {
transaction.incomeCategoryId = getFirstAvailableCategoryId(allCategories[CategoryType.Income]);
}
}
if (allCategories[CategoryType.Transfer] &&
allCategories[CategoryType.Transfer].length) {
if (options.categoryId && options.categoryId !== '0') {
if (isSubCategoryIdAvailable(allCategories[CategoryType.Transfer], options.categoryId)) {
transaction.transferCategoryId = options.categoryId;
} else {
transaction.transferCategoryId = getFirstAvailableSubCategoryId(allCategories[CategoryType.Transfer], options.categoryId);
}
}
if (!transaction.transferCategoryId) {
transaction.transferCategoryId = getFirstAvailableCategoryId(allCategories[CategoryType.Transfer]);
}
}
if (allVisibleAccounts.length) {
if (options.accountId && options.accountId !== '0') {
for (let i = 0; i < allVisibleAccounts.length; i++) {
if (allVisibleAccounts[i].id === options.accountId) {
transaction.sourceAccountId = options.accountId;
transaction.destinationAccountId = options.accountId;
break;
}
}
}
if (!transaction.sourceAccountId) {
if (defaultAccountId && allAccountsMap[defaultAccountId]) {
transaction.sourceAccountId = defaultAccountId;
} else {
transaction.sourceAccountId = allVisibleAccounts[0].id;
}
}
if (!transaction.destinationAccountId) {
if (defaultAccountId && allAccountsMap[defaultAccountId]) {
transaction.destinationAccountId = defaultAccountId;
} else {
transaction.destinationAccountId = allVisibleAccounts[0].id;
}
}
}
if (allTagsMap && options.tagIds) {
const tagIds = options.tagIds.split(',');
const finalTagIds = [];
for (let i = 0; i < tagIds.length; i++) {
const tagId = tagIds[i];
const tag = allTagsMap[tagId];
if (tag && !tag.hidden) {
finalTagIds.push(tag.id);
}
}
transaction.tagIds = finalTagIds;
}
if (transaction2) {
if (setContextData) {
transaction.id = transaction2.id;
}
transaction.type = transaction2.type;
if (transaction.type === TransactionType.Expense) {
transaction.expenseCategoryId = transaction2.categoryId || '';
} else if (transaction.type === TransactionType.Income) {
transaction.incomeCategoryId = transaction2.categoryId || '';
} else if (transaction.type === TransactionType.Transfer) {
transaction.transferCategoryId = transaction2.categoryId || '';
}
if (setContextData) {
transaction.utcOffset = transaction2.utcOffset;
transaction.timeZone = transaction2.timeZone;
if (convertContextTime) {
transaction.time = getDummyUnixTimeForLocalUsage(transaction2.time, transaction.utcOffset, getBrowserTimezoneOffsetMinutes());
} else {
transaction.time = transaction2.time;
}
}
transaction.sourceAccountId = transaction2.sourceAccountId;
if (transaction2.destinationAccountId) {
transaction.destinationAccountId = transaction2.destinationAccountId;
} else {
transaction.destinationAccountId = '';
}
transaction.sourceAmount = transaction2.sourceAmount;
if (transaction2.destinationAmount) {
transaction.destinationAmount = transaction2.destinationAmount;
} else {
transaction.destinationAmount = 0;
}
transaction.hideAmount = transaction2.hideAmount;
transaction.tagIds = transaction2.tagIds || [];
transaction.setPictures(TransactionPicture.ofMulti(transaction2.pictures || []));
transaction.comment = transaction2.comment;
if (setContextData) {
transaction.setGeoLocation(transaction2.geoLocation);
}
}
}