187 lines
2.1 KiB
JavaScript
187 lines
2.1 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 work_order_operations = sequelize.define(
|
|
'work_order_operations',
|
|
{
|
|
id: {
|
|
type: DataTypes.UUID,
|
|
defaultValue: DataTypes.UUIDV4,
|
|
primaryKey: true,
|
|
},
|
|
|
|
sequence: {
|
|
type: DataTypes.INTEGER,
|
|
|
|
|
|
|
|
},
|
|
|
|
status: {
|
|
type: DataTypes.ENUM,
|
|
|
|
|
|
|
|
values: [
|
|
|
|
"pending",
|
|
|
|
|
|
"ready",
|
|
|
|
|
|
"in_progress",
|
|
|
|
|
|
"blocked",
|
|
|
|
|
|
"completed",
|
|
|
|
|
|
"skipped"
|
|
|
|
],
|
|
|
|
},
|
|
|
|
started_at: {
|
|
type: DataTypes.DATE,
|
|
|
|
|
|
|
|
},
|
|
|
|
ended_at: {
|
|
type: DataTypes.DATE,
|
|
|
|
|
|
|
|
},
|
|
|
|
good_quantity: {
|
|
type: DataTypes.DECIMAL,
|
|
|
|
|
|
|
|
},
|
|
|
|
scrap_quantity: {
|
|
type: DataTypes.DECIMAL,
|
|
|
|
|
|
|
|
},
|
|
|
|
operator_notes: {
|
|
type: DataTypes.TEXT,
|
|
|
|
|
|
|
|
},
|
|
|
|
importHash: {
|
|
type: DataTypes.STRING(255),
|
|
allowNull: true,
|
|
unique: true,
|
|
},
|
|
},
|
|
{
|
|
timestamps: true,
|
|
paranoid: true,
|
|
freezeTableName: true,
|
|
},
|
|
);
|
|
|
|
work_order_operations.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.work_order_operations.belongsTo(db.work_orders, {
|
|
as: 'work_order',
|
|
foreignKey: {
|
|
name: 'work_orderId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.work_order_operations.belongsTo(db.operations, {
|
|
as: 'operation',
|
|
foreignKey: {
|
|
name: 'operationId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.work_order_operations.belongsTo(db.machines, {
|
|
as: 'machine',
|
|
foreignKey: {
|
|
name: 'machineId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
|
|
|
|
|
|
db.work_order_operations.belongsTo(db.users, {
|
|
as: 'createdBy',
|
|
});
|
|
|
|
db.work_order_operations.belongsTo(db.users, {
|
|
as: 'updatedBy',
|
|
});
|
|
};
|
|
|
|
|
|
|
|
return work_order_operations;
|
|
};
|
|
|
|
|