39261-vm/backend/src/db/models/payments.js
2026-03-21 23:45:15 +00:00

233 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,
},
payment_type: {
type: DataTypes.ENUM,
values: [
"rent",
"deposit",
"commission",
"maintenance",
"utility",
"other"
],
},
status: {
type: DataTypes.ENUM,
values: [
"pending",
"paid",
"overdue",
"cancelled",
"refunded"
],
},
amount: {
type: DataTypes.DECIMAL,
},
currency: {
type: DataTypes.ENUM,
values: [
"TRY",
"USD",
"EUR",
"GBP"
],
},
due_at: {
type: DataTypes.DATE,
},
paid_at: {
type: DataTypes.DATE,
},
method: {
type: DataTypes.ENUM,
values: [
"cash",
"bank_transfer",
"credit_card",
"online",
"other"
],
},
reference_code: {
type: DataTypes.TEXT,
},
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.organizations, {
as: 'organization',
foreignKey: {
name: 'organizationId',
},
constraints: false,
});
db.payments.belongsTo(db.contracts, {
as: 'contract',
foreignKey: {
name: 'contractId',
},
constraints: false,
});
db.payments.hasMany(db.file, {
as: 'receipts',
foreignKey: 'belongsToId',
constraints: false,
scope: {
belongsTo: db.payments.getTableName(),
belongsToColumn: 'receipts',
},
});
db.payments.belongsTo(db.users, {
as: 'createdBy',
});
db.payments.belongsTo(db.users, {
as: 'updatedBy',
});
};
return payments;
};