salix/services/client/common/models/ClientObservation.js

13 lines
391 B
JavaScript
Raw Normal View History

2017-01-18 13:48:35 +00:00
module.exports = function(ClientObservation) {
2017-03-10 10:18:16 +00:00
ClientObservation.validate('text', isEnabled, {message: 'Se debe rellenar el campo de texto'});
2017-01-18 13:48:35 +00:00
function isEnabled(err) {
2017-03-10 10:18:16 +00:00
if (!this.text) err();
2017-01-18 13:48:35 +00:00
}
2017-03-10 10:18:16 +00:00
ClientObservation.observe('before save', function(ctx, next) {
2017-01-18 13:48:35 +00:00
ctx.instance.creationDate = Date();
2017-05-12 11:58:08 +00:00
ctx.instance.employeeFk = 20;
2017-01-18 13:48:35 +00:00
next();
});
2017-03-10 10:18:16 +00:00
};