2026-01-16 14:32:22 +00:00

230 lines
2.9 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 orders = sequelize.define(
'orders',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
order_number: {
type: DataTypes.TEXT,
},
status: {
type: DataTypes.ENUM,
values: [
"draft",
"pending",
"paid",
"processing",
"fulfilled",
"cancelled",
"returned",
"refunded"
],
},
total: {
type: DataTypes.DECIMAL,
},
currency: {
type: DataTypes.TEXT,
},
placed_at: {
type: DataTypes.DATE,
},
shipping_start: {
type: DataTypes.DATE,
},
delivery_date: {
type: DataTypes.DATE,
},
shipping_address: {
type: DataTypes.TEXT,
},
billing_address: {
type: DataTypes.TEXT,
},
notes: {
type: DataTypes.TEXT,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
orders.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
db.orders.hasMany(db.order_items, {
as: 'order_items_order',
foreignKey: {
name: 'orderId',
},
constraints: false,
});
db.orders.hasMany(db.payments, {
as: 'payments_order',
foreignKey: {
name: 'orderId',
},
constraints: false,
});
db.orders.hasMany(db.fulfillments, {
as: 'fulfillments_order',
foreignKey: {
name: 'orderId',
},
constraints: false,
});
db.orders.hasMany(db.returns, {
as: 'returns_order',
foreignKey: {
name: 'orderId',
},
constraints: false,
});
db.orders.hasMany(db.alerts, {
as: 'alerts_related_order',
foreignKey: {
name: 'related_orderId',
},
constraints: false,
});
//end loop
db.orders.belongsTo(db.customers, {
as: 'customer',
foreignKey: {
name: 'customerId',
},
constraints: false,
});
db.orders.belongsTo(db.organizations, {
as: 'organizations',
foreignKey: {
name: 'organizationsId',
},
constraints: false,
});
db.orders.belongsTo(db.users, {
as: 'createdBy',
});
db.orders.belongsTo(db.users, {
as: 'updatedBy',
});
};
return orders;
};