Start Monetary Implementation (RIS)

This commit is contained in:
paoloar77
2022-04-07 08:19:40 +02:00
parent 14d45646d2
commit f39639d5f2
3 changed files with 312 additions and 0 deletions

81
src/server/models/account.js Executable file
View File

@@ -0,0 +1,81 @@
const mongoose = require('mongoose').set('debug', false);
const Schema = mongoose.Schema;
mongoose.Promise = global.Promise;
mongoose.level = 'F';
const tools = require('../tools/general');
const {ObjectID} = require('mongodb');
// Resolving error Unknown modifier: $pushAll
mongoose.plugin(schema => {
schema.options.usePushEach = true;
});
const AccountSchema = new Schema({
_id: {
type: Number,
},
circuitId: {
type: Number,
},
userId: {
type: String,
},
nome_conto: {
type: String,
},
deperibile: {
type: Boolean,
},
importo_iniziale: {
type: Number,
},
saldo: {
type: Number,
},
});
AccountSchema.statics.findAllIdApp = async function(idapp) {
const MyAccount = this;
const myfind = {idapp};
return await MyAccount.find(myfind, (err, arrrec) => {
return arrrec;
});
};
AccountSchema.pre('save', async function(next) {
if (this.isNew) {
const myrec = await Account.findOne().limit(1).sort({_id: -1});
if (!!myrec) {
if (myrec._doc._id === 0)
this._id = 1;
else
this._id = myrec._doc._id + 1;
} else {
this._id = 1;
}
}
next();
});
AccountSchema.statics.getFieldsForSearch = function() {
return [
{field: 'nome_conto', type: tools.FieldType.string},
];
};
AccountSchema.statics.executeQueryTable = function(idapp, params) {
params.fieldsearch = this.getFieldsForSearch();
return tools.executeQueryTable(this, 0, params);
};
const Account = mongoose.model('Account', AccountSchema);
module.exports = {Account};