- Introduced a new 'sleep' boolean field in the Production model to indicate if production is suspended. - Updated FalukantService to include 'sleep' in the production attributes. - Enhanced MessagesDialog and ProductionSection components to display the production status and handle branch names. - Added corresponding translations for 'status', 'sleep', and 'active' in both German and English locale files.
40 lines
1.0 KiB
JavaScript
40 lines
1.0 KiB
JavaScript
import { Model, DataTypes } from 'sequelize';
|
|
import { sequelize } from '../../../utils/sequelize.js';
|
|
import WeatherType from '../type/weather.js';
|
|
|
|
class Production extends Model { }
|
|
|
|
Production.init({
|
|
branchId: {
|
|
type: DataTypes.INTEGER,
|
|
allowNull: false},
|
|
productId: {
|
|
type: DataTypes.INTEGER,
|
|
allowNull: false},
|
|
quantity: {
|
|
type: DataTypes.INTEGER,
|
|
allowNull: false},
|
|
weatherTypeId: {
|
|
type: DataTypes.INTEGER,
|
|
allowNull: true,
|
|
comment: 'Wetter zum Zeitpunkt der Produktionserstellung'
|
|
},
|
|
startTimestamp: {
|
|
type: DataTypes.DATE,
|
|
allowNull: false,
|
|
defaultValue: sequelize.literal('CURRENT_TIMESTAMP')},
|
|
sleep: {
|
|
type: DataTypes.BOOLEAN,
|
|
allowNull: false,
|
|
defaultValue: false,
|
|
comment: 'Produktion ist zurückgestellt'}
|
|
}, {
|
|
sequelize,
|
|
modelName: 'Production',
|
|
tableName: 'production',
|
|
schema: 'falukant_data',
|
|
timestamps: false,
|
|
underscored: true});
|
|
|
|
export default Production;
|