38937-vm/backend/src/db/models/payments.js
2026-03-02 18:12:07 +00:00

207 lines
2.5 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,
},
paid_at: {
type: DataTypes.DATE,
},
method: {
type: DataTypes.ENUM,
values: [
"cash",
"debit_card",
"credit_card",
"pix",
"bank_transfer",
"voucher"
],
},
status: {
type: DataTypes.ENUM,
values: [
"pending",
"paid",
"refunded",
"voided"
],
},
amount: {
type: DataTypes.DECIMAL,
},
external_reference: {
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.venues, {
as: 'venue',
foreignKey: {
name: 'venueId',
},
constraints: false,
});
db.payments.belongsTo(db.cash_sessions, {
as: 'cash_session',
foreignKey: {
name: 'cash_sessionId',
},
constraints: false,
});
db.payments.belongsTo(db.bookings, {
as: 'booking',
foreignKey: {
name: 'bookingId',
},
constraints: false,
});
db.payments.belongsTo(db.pos_tabs, {
as: 'pos_tab',
foreignKey: {
name: 'pos_tabId',
},
constraints: false,
});
db.payments.belongsTo(db.users, {
as: 'received_by_user',
foreignKey: {
name: 'received_by_userId',
},
constraints: false,
});
db.payments.belongsTo(db.organizations, {
as: 'organizations',
foreignKey: {
name: 'organizationsId',
},
constraints: false,
});
db.payments.belongsTo(db.users, {
as: 'createdBy',
});
db.payments.belongsTo(db.users, {
as: 'updatedBy',
});
};
return payments;
};