39212-vm/backend/src/db/models/payments.js
2026-03-16 10:55:49 +00:00

191 lines
2.4 KiB
JavaScript

const config = require('../../config');
const providers = config.providers;
const crypto = require('crypto');
const bcrypt = require('bcrypt');
const moment = require('moment');
module.exports = function(sequelize, DataTypes) {
const payments = sequelize.define(
'payments',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
reference: {
type: DataTypes.TEXT,
},
amount: {
type: DataTypes.DECIMAL,
},
paid_at: {
type: DataTypes.DATE,
},
method: {
type: DataTypes.ENUM,
values: [
"cash",
"check",
"bank_transfer",
"credit_card",
"online"
],
},
status: {
type: DataTypes.ENUM,
values: [
"pending",
"completed",
"failed",
"refunded"
],
},
notes: {
type: DataTypes.TEXT,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
payments.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
//end loop
db.payments.belongsTo(db.events, {
as: 'event',
foreignKey: {
name: 'eventId',
},
constraints: false,
});
db.payments.belongsTo(db.budget_items, {
as: 'budget_item',
foreignKey: {
name: 'budget_itemId',
},
constraints: false,
});
db.payments.belongsTo(db.vendor_contracts, {
as: 'vendor_contract',
foreignKey: {
name: 'vendor_contractId',
},
constraints: false,
});
db.payments.belongsTo(db.organizations, {
as: 'organizations',
foreignKey: {
name: 'organizationsId',
},
constraints: false,
});
db.payments.hasMany(db.file, {
as: 'attachments',
foreignKey: 'belongsToId',
constraints: false,
scope: {
belongsTo: db.payments.getTableName(),
belongsToColumn: 'attachments',
},
});
db.payments.belongsTo(db.users, {
as: 'createdBy',
});
db.payments.belongsTo(db.users, {
as: 'updatedBy',
});
};
return payments;
};