39052-vm/backend/src/db/api/companies.js
2026-03-08 11:41:55 +00:00

707 lines
17 KiB
JavaScript

const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class CompaniesDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const companies = await db.companies.create(
{
id: data.id || undefined,
legal_name: data.legal_name
||
null
,
display_name: data.display_name
||
null
,
tax_registration_number: data.tax_registration_number
||
null
,
email: data.email
||
null
,
phone: data.phone
||
null
,
website: data.website
||
null
,
address_line_1: data.address_line_1
||
null
,
address_line_2: data.address_line_2
||
null
,
city: data.city
||
null
,
state_region: data.state_region
||
null
,
postal_code: data.postal_code
||
null
,
country: data.country
||
null
,
base_currency: data.base_currency
||
null
,
fiscal_year_start_month: data.fiscal_year_start_month
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
return companies;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const companiesData = data.map((item, index) => ({
id: item.id || undefined,
legal_name: item.legal_name
||
null
,
display_name: item.display_name
||
null
,
tax_registration_number: item.tax_registration_number
||
null
,
email: item.email
||
null
,
phone: item.phone
||
null
,
website: item.website
||
null
,
address_line_1: item.address_line_1
||
null
,
address_line_2: item.address_line_2
||
null
,
city: item.city
||
null
,
state_region: item.state_region
||
null
,
postal_code: item.postal_code
||
null
,
country: item.country
||
null
,
base_currency: item.base_currency
||
null
,
fiscal_year_start_month: item.fiscal_year_start_month
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const companies = await db.companies.bulkCreate(companiesData, { transaction });
// For each item created, replace relation files
return companies;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const companies = await db.companies.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.legal_name !== undefined) updatePayload.legal_name = data.legal_name;
if (data.display_name !== undefined) updatePayload.display_name = data.display_name;
if (data.tax_registration_number !== undefined) updatePayload.tax_registration_number = data.tax_registration_number;
if (data.email !== undefined) updatePayload.email = data.email;
if (data.phone !== undefined) updatePayload.phone = data.phone;
if (data.website !== undefined) updatePayload.website = data.website;
if (data.address_line_1 !== undefined) updatePayload.address_line_1 = data.address_line_1;
if (data.address_line_2 !== undefined) updatePayload.address_line_2 = data.address_line_2;
if (data.city !== undefined) updatePayload.city = data.city;
if (data.state_region !== undefined) updatePayload.state_region = data.state_region;
if (data.postal_code !== undefined) updatePayload.postal_code = data.postal_code;
if (data.country !== undefined) updatePayload.country = data.country;
if (data.base_currency !== undefined) updatePayload.base_currency = data.base_currency;
if (data.fiscal_year_start_month !== undefined) updatePayload.fiscal_year_start_month = data.fiscal_year_start_month;
updatePayload.updatedById = currentUser.id;
await companies.update(updatePayload, {transaction});
return companies;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const companies = await db.companies.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of companies) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of companies) {
await record.destroy({transaction});
}
});
return companies;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const companies = await db.companies.findByPk(id, options);
await companies.update({
deletedBy: currentUser.id
}, {
transaction,
});
await companies.destroy({
transaction
});
return companies;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const companies = await db.companies.findOne(
{ where },
{ transaction },
);
if (!companies) {
return companies;
}
const output = companies.get({plain: true});
output.customers_company = await companies.getCustomers_company({
transaction
});
output.vendors_company = await companies.getVendors_company({
transaction
});
output.tax_rates_company = await companies.getTax_rates_company({
transaction
});
output.chart_of_accounts_company = await companies.getChart_of_accounts_company({
transaction
});
output.items_company = await companies.getItems_company({
transaction
});
output.invoices_company = await companies.getInvoices_company({
transaction
});
output.bills_company = await companies.getBills_company({
transaction
});
output.payments_company = await companies.getPayments_company({
transaction
});
output.journal_entries_company = await companies.getJournal_entries_company({
transaction
});
output.bank_accounts_company = await companies.getBank_accounts_company({
transaction
});
output.bank_transactions_company = await companies.getBank_transactions_company({
transaction
});
output.report_snapshots_company = await companies.getReport_snapshots_company({
transaction
});
return output;
}
static async findAll(
filter,
options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.legal_name) {
where = {
...where,
[Op.and]: Utils.ilike(
'companies',
'legal_name',
filter.legal_name,
),
};
}
if (filter.display_name) {
where = {
...where,
[Op.and]: Utils.ilike(
'companies',
'display_name',
filter.display_name,
),
};
}
if (filter.tax_registration_number) {
where = {
...where,
[Op.and]: Utils.ilike(
'companies',
'tax_registration_number',
filter.tax_registration_number,
),
};
}
if (filter.email) {
where = {
...where,
[Op.and]: Utils.ilike(
'companies',
'email',
filter.email,
),
};
}
if (filter.phone) {
where = {
...where,
[Op.and]: Utils.ilike(
'companies',
'phone',
filter.phone,
),
};
}
if (filter.website) {
where = {
...where,
[Op.and]: Utils.ilike(
'companies',
'website',
filter.website,
),
};
}
if (filter.address_line_1) {
where = {
...where,
[Op.and]: Utils.ilike(
'companies',
'address_line_1',
filter.address_line_1,
),
};
}
if (filter.address_line_2) {
where = {
...where,
[Op.and]: Utils.ilike(
'companies',
'address_line_2',
filter.address_line_2,
),
};
}
if (filter.city) {
where = {
...where,
[Op.and]: Utils.ilike(
'companies',
'city',
filter.city,
),
};
}
if (filter.state_region) {
where = {
...where,
[Op.and]: Utils.ilike(
'companies',
'state_region',
filter.state_region,
),
};
}
if (filter.postal_code) {
where = {
...where,
[Op.and]: Utils.ilike(
'companies',
'postal_code',
filter.postal_code,
),
};
}
if (filter.country) {
where = {
...where,
[Op.and]: Utils.ilike(
'companies',
'country',
filter.country,
),
};
}
if (filter.base_currency) {
where = {
...where,
[Op.and]: Utils.ilike(
'companies',
'base_currency',
filter.base_currency,
),
};
}
if (filter.fiscal_year_start_month) {
where = {
...where,
[Op.and]: Utils.ilike(
'companies',
'fiscal_year_start_month',
filter.fiscal_year_start_month,
),
};
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.companies.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset, ) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'companies',
'display_name',
query,
),
],
};
}
const records = await db.companies.findAll({
attributes: [ 'id', 'display_name' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['display_name', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.display_name,
}));
}
};