39209-vm/backend/src/db/models/payments.js
2026-03-16 09:58:16 +00:00

218 lines
2.2 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,
},
provider: {
type: DataTypes.ENUM,
values: [
"stripe",
"paypal",
"manual",
"other"
],
},
method: {
type: DataTypes.ENUM,
values: [
"card",
"bank_transfer",
"cash_on_delivery",
"wallet",
"other"
],
},
status: {
type: DataTypes.ENUM,
values: [
"pending",
"authorized",
"captured",
"failed",
"voided",
"refunded"
],
},
amount: {
type: DataTypes.DECIMAL,
},
currency: {
type: DataTypes.TEXT,
},
provider_reference: {
type: DataTypes.TEXT,
},
authorized_at: {
type: DataTypes.DATE,
},
captured_at: {
type: DataTypes.DATE,
},
refunded_at: {
type: DataTypes.DATE,
},
failure_reason: {
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
db.payments.hasMany(db.refunds, {
as: 'refunds_payment',
foreignKey: {
name: 'paymentId',
},
constraints: false,
});
//end loop
db.payments.belongsTo(db.orders, {
as: 'order',
foreignKey: {
name: 'orderId',
},
constraints: false,
});
db.payments.belongsTo(db.users, {
as: 'createdBy',
});
db.payments.belongsTo(db.users, {
as: 'updatedBy',
});
};
return payments;
};