2025-12-24 16:44:27 +08:00
|
|
|
const { DataTypes } = require('sequelize');
|
|
|
|
|
const { sequelize } = require('../db');
|
|
|
|
|
|
|
|
|
|
const ConsumableLog = sequelize.define('ConsumableLog', {
|
|
|
|
|
id: {
|
|
|
|
|
type: DataTypes.INTEGER,
|
|
|
|
|
primaryKey: true,
|
|
|
|
|
autoIncrement: true
|
|
|
|
|
},
|
|
|
|
|
consumableId: {
|
|
|
|
|
type: DataTypes.STRING,
|
|
|
|
|
allowNull: false,
|
|
|
|
|
comment: '耗材ID'
|
|
|
|
|
},
|
|
|
|
|
consumableName: {
|
|
|
|
|
type: DataTypes.STRING,
|
|
|
|
|
allowNull: false,
|
|
|
|
|
comment: '耗材名称'
|
|
|
|
|
},
|
|
|
|
|
operationType: {
|
|
|
|
|
type: DataTypes.ENUM('in', 'out', 'create', 'update', 'delete', 'adjust', 'import'),
|
|
|
|
|
allowNull: false,
|
|
|
|
|
comment: '操作类型'
|
|
|
|
|
},
|
|
|
|
|
quantity: {
|
|
|
|
|
type: DataTypes.INTEGER,
|
|
|
|
|
defaultValue: 0,
|
|
|
|
|
comment: '变动数量(入库为正,出库为负)'
|
|
|
|
|
},
|
|
|
|
|
previousStock: {
|
|
|
|
|
type: DataTypes.INTEGER,
|
|
|
|
|
allowNull: false,
|
|
|
|
|
comment: '操作前库存'
|
|
|
|
|
},
|
|
|
|
|
currentStock: {
|
|
|
|
|
type: DataTypes.INTEGER,
|
|
|
|
|
allowNull: false,
|
|
|
|
|
comment: '操作后库存'
|
|
|
|
|
},
|
|
|
|
|
operator: {
|
|
|
|
|
type: DataTypes.STRING,
|
|
|
|
|
comment: '操作人'
|
|
|
|
|
},
|
|
|
|
|
reason: {
|
|
|
|
|
type: DataTypes.STRING,
|
|
|
|
|
comment: '操作原因'
|
|
|
|
|
},
|
|
|
|
|
notes: {
|
|
|
|
|
type: DataTypes.TEXT,
|
|
|
|
|
comment: '备注'
|
|
|
|
|
},
|
|
|
|
|
relatedId: {
|
|
|
|
|
type: DataTypes.STRING,
|
|
|
|
|
comment: '关联ID(如订单号、盘点ID等)'
|
2026-01-30 14:01:23 +08:00
|
|
|
},
|
|
|
|
|
isEditable: {
|
|
|
|
|
type: DataTypes.BOOLEAN,
|
|
|
|
|
defaultValue: true,
|
|
|
|
|
comment: '是否可编辑(创建、导入的记录可编辑,系统生成的出入库记录不可编辑)'
|
|
|
|
|
},
|
|
|
|
|
originalLogId: {
|
|
|
|
|
type: DataTypes.INTEGER,
|
|
|
|
|
allowNull: true,
|
|
|
|
|
comment: '原始日志ID(用于追踪修改历史链)'
|
|
|
|
|
},
|
|
|
|
|
modifiedBy: {
|
|
|
|
|
type: DataTypes.STRING,
|
|
|
|
|
allowNull: true,
|
|
|
|
|
comment: '修改人'
|
|
|
|
|
},
|
|
|
|
|
modifiedAt: {
|
|
|
|
|
type: DataTypes.DATE,
|
|
|
|
|
allowNull: true,
|
|
|
|
|
comment: '修改时间'
|
|
|
|
|
},
|
|
|
|
|
modificationReason: {
|
|
|
|
|
type: DataTypes.STRING,
|
|
|
|
|
allowNull: true,
|
|
|
|
|
comment: '修改原因'
|
2026-02-24 11:58:31 +08:00
|
|
|
},
|
|
|
|
|
isConsumableDeleted: {
|
|
|
|
|
type: DataTypes.BOOLEAN,
|
|
|
|
|
defaultValue: false,
|
|
|
|
|
comment: '关联耗材是否已被删除'
|
|
|
|
|
},
|
|
|
|
|
consumableSnapshot: {
|
|
|
|
|
type: DataTypes.JSON,
|
|
|
|
|
allowNull: true,
|
|
|
|
|
comment: '耗材快照信息(分类、单位、供应商等),用于耗材删除后追溯'
|
2025-12-24 16:44:27 +08:00
|
|
|
}
|
|
|
|
|
}, {
|
|
|
|
|
tableName: 'consumable_logs',
|
|
|
|
|
timestamps: true,
|
2026-01-20 14:31:20 +08:00
|
|
|
comment: '耗材操作日志表',
|
|
|
|
|
indexes: [
|
|
|
|
|
{ fields: ['consumableId'] },
|
|
|
|
|
{ fields: ['operationType'] },
|
|
|
|
|
{ fields: ['createdAt'] },
|
2026-01-30 14:01:23 +08:00
|
|
|
{ fields: ['consumableId', 'createdAt'] },
|
|
|
|
|
{ fields: ['originalLogId'] },
|
2026-02-24 11:58:31 +08:00
|
|
|
{ fields: ['isEditable'] },
|
|
|
|
|
{ fields: ['isConsumableDeleted'] }
|
2026-01-20 14:31:20 +08:00
|
|
|
]
|
2025-12-24 16:44:27 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
module.exports = ConsumableLog;
|