2025-06-02 14:34:14 +00:00

80 lines
1.6 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 sales = sequelize.define(
'sales',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
sale_date: {
type: DataTypes.DATE,
},
total_revenue: {
type: DataTypes.DECIMAL,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
sales.associate = (db) => {
db.sales.belongsToMany(db.products, {
as: 'products',
foreignKey: {
name: 'sales_productsId',
},
constraints: false,
through: 'salesProductsProducts',
});
db.sales.belongsToMany(db.products, {
as: 'products_filter',
foreignKey: {
name: 'sales_productsId',
},
constraints: false,
through: 'salesProductsProducts',
});
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
//end loop
db.sales.belongsTo(db.users, {
as: 'seller',
foreignKey: {
name: 'sellerId',
},
constraints: false,
});
db.sales.belongsTo(db.users, {
as: 'createdBy',
});
db.sales.belongsTo(db.users, {
as: 'updatedBy',
});
};
return sales;
};