169 lines
2.4 KiB
JavaScript
169 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 price_lists = sequelize.define(
|
|
'price_lists',
|
|
{
|
|
id: {
|
|
type: DataTypes.UUID,
|
|
defaultValue: DataTypes.UUIDV4,
|
|
primaryKey: true,
|
|
},
|
|
|
|
name: {
|
|
type: DataTypes.TEXT,
|
|
|
|
|
|
|
|
},
|
|
|
|
currency_code: {
|
|
type: DataTypes.TEXT,
|
|
|
|
|
|
|
|
},
|
|
|
|
valid_from: {
|
|
type: DataTypes.DATE,
|
|
|
|
|
|
|
|
},
|
|
|
|
valid_to: {
|
|
type: DataTypes.DATE,
|
|
|
|
|
|
|
|
},
|
|
|
|
is_active: {
|
|
type: DataTypes.BOOLEAN,
|
|
|
|
allowNull: false,
|
|
defaultValue: false,
|
|
|
|
|
|
|
|
},
|
|
|
|
importHash: {
|
|
type: DataTypes.STRING(255),
|
|
allowNull: true,
|
|
unique: true,
|
|
},
|
|
},
|
|
{
|
|
timestamps: true,
|
|
paranoid: true,
|
|
freezeTableName: true,
|
|
},
|
|
);
|
|
|
|
price_lists.associate = (db) => {
|
|
|
|
db.price_lists.belongsToMany(db.price_list_items, {
|
|
as: 'price_list_items',
|
|
foreignKey: {
|
|
name: 'price_lists_price_list_itemsId',
|
|
},
|
|
constraints: false,
|
|
through: 'price_listsPrice_list_itemsPrice_list_items',
|
|
});
|
|
|
|
db.price_lists.belongsToMany(db.price_list_items, {
|
|
as: 'price_list_items_filter',
|
|
foreignKey: {
|
|
name: 'price_lists_price_list_itemsId',
|
|
},
|
|
constraints: false,
|
|
through: 'price_listsPrice_list_itemsPrice_list_items',
|
|
});
|
|
|
|
|
|
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
db.price_lists.hasMany(db.price_list_items, {
|
|
as: 'price_list_items_price_list',
|
|
foreignKey: {
|
|
name: 'price_listId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
|
|
db.price_lists.hasMany(db.sales_orders, {
|
|
as: 'sales_orders_price_list',
|
|
foreignKey: {
|
|
name: 'price_listId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//end loop
|
|
|
|
|
|
|
|
db.price_lists.belongsTo(db.organizations, {
|
|
as: 'organization',
|
|
foreignKey: {
|
|
name: 'organizationId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
|
|
|
|
|
|
db.price_lists.belongsTo(db.users, {
|
|
as: 'createdBy',
|
|
});
|
|
|
|
db.price_lists.belongsTo(db.users, {
|
|
as: 'updatedBy',
|
|
});
|
|
};
|
|
|
|
|
|
|
|
return price_lists;
|
|
};
|
|
|
|
|