37379-vm/backend/src/db/models/inventory.js
2026-01-12 11:51:16 +00:00

123 lines
1.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 inventory = sequelize.define(
'inventory',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
quantity: {
type: DataTypes.INTEGER,
},
location: {
type: DataTypes.TEXT,
},
change_type: {
type: DataTypes.ENUM,
values: [
"addition",
"deduction",
"adjustment",
"transfer"
],
},
note: {
type: DataTypes.TEXT,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
inventory.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.inventory.belongsTo(db.product_variants, {
as: 'variant',
foreignKey: {
name: 'variantId',
},
constraints: false,
});
db.inventory.belongsTo(db.users, {
as: 'createdBy',
});
db.inventory.belongsTo(db.users, {
as: 'updatedBy',
});
};
return inventory;
};